{
    "node_modules/@nestia/e2e/lib/ArrayUtil.d.ts": "/**\n * A namespace providing utility functions for array manipulation.\n *\n * This namespace contains utility functions for array operations including\n * asynchronous processing, filtering, mapping, and repetition tasks implemented\n * in functional programming style. Functions use direct parameter passing for\n * simplicity while maintaining functional programming principles.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   ```typescript\n *   // Asynchronous filtering example\n *   const numbers = [1, 2, 3, 4, 5];\n *   const evenNumbers = await ArrayUtil.asyncFilter(numbers,\n *     async (num) => num % 2 === 0\n *   );\n *   console.log(evenNumbers); // [2, 4]\n *   ```;\n */\nexport declare namespace ArrayUtil {\n    /**\n     * Filters an array by applying an asynchronous predicate function to each\n     * element.\n     *\n     * Elements are processed sequentially, ensuring order is maintained. The\n     * predicate function receives the element, index, and the full array as\n     * parameters.\n     *\n     * @example\n     *   ```typescript\n     *   const users = [\n     *     { id: 1, name: 'Alice', active: true },\n     *     { id: 2, name: 'Bob', active: false },\n     *     { id: 3, name: 'Charlie', active: true }\n     *   ];\n     *\n     *   const activeUsers = await ArrayUtil.asyncFilter(users,\n     *     async (user) => {\n     *       // Async validation logic (e.g., API call)\n     *       await new Promise(resolve => setTimeout(resolve, 100));\n     *       return user.active;\n     *     }\n     *   );\n     *   console.log(activeUsers); // [{ id: 1, name: 'Alice', active: true }, { id: 3, name: 'Charlie', active: true }]\n     *   ```;\n     *\n     * @template Input - The type of elements in the input array\n     * @param elements - The readonly array to filter\n     * @param pred - The asynchronous predicate function to test each element\n     * @returns A Promise resolving to the filtered array\n     */\n    const asyncFilter: <Input>(elements: readonly Input[], pred: (elem: Input, index: number, array: readonly Input[]) => Promise<boolean>) => Promise<Input[]>;\n    /**\n     * Executes an asynchronous function for each element in an array\n     * sequentially.\n     *\n     * Unlike JavaScript's native forEach, this function processes asynchronous\n     * functions sequentially and waits for all operations to complete. It\n     * performs sequential processing rather than parallel processing, making it\n     * suitable for operations where order matters.\n     *\n     * @example\n     *   ```typescript\n     *   const urls = ['url1', 'url2', 'url3'];\n     *\n     *   await ArrayUtil.asyncForEach(urls, async (url, index) => {\n     *   console.log(`Processing ${index}: ${url}`);\n     *   const data = await fetch(url);\n     *   await processData(data);\n     *   console.log(`Completed ${index}: ${url}`);\n     *   });\n     *   console.log('All URLs processed sequentially');\n     *   ```\n     *\n     * @template Input - The type of elements in the input array\n     * @param elements - The readonly array to process\n     * @param closure - The asynchronous function to execute for each element\n     * @returns A Promise<void> that resolves when all operations complete\n     */\n    const asyncForEach: <Input>(elements: readonly Input[], closure: (elem: Input, index: number, array: readonly Input[]) => Promise<any>) => Promise<void>;\n    /**\n     * Transforms each element of an array using an asynchronous function to\n     * create a new array.\n     *\n     * Similar to JavaScript's native map but processes asynchronous functions\n     * sequentially. Each element's transformation is completed before proceeding\n     * to the next element, ensuring order is maintained. This function still\n     * maintains the currying pattern for composition.\n     *\n     * @example\n     *   ```typescript\n     *   const userIds = [1, 2, 3, 4, 5];\n     *\n     *   const userDetails = await ArrayUtil.asyncMap(userIds)(\n     *   async (id, index) => {\n     *   console.log(`Fetching user ${id} (${index + 1}/${userIds.length})`);\n     *   const response = await fetch(`/api/users/${id}`);\n     *   return await response.json();\n     *   }\n     *   );\n     *   console.log('All users fetched:', userDetails);\n     *   ```\n     *\n     * @template Input - The type of elements in the input array\n     * @param elements - The readonly array to transform\n     * @returns A function that takes a transformation function and returns a\n     *   Promise resolving to the transformed array\n     */\n    const asyncMap: <Input, Output>(elements: readonly Input[], closure: (elem: Input, index: number, array: readonly Input[]) => Promise<Output>) => Promise<Output[]>;\n    /**\n     * Executes an asynchronous function a specified number of times sequentially.\n     *\n     * Executes the function with indices from 0 to count-1 incrementally. Each\n     * execution is performed sequentially, and all results are collected into an\n     * array.\n     *\n     * @example\n     *   ```typescript\n     *   // Generate random data 5 times\n     *   const randomData = await ArrayUtil.asyncRepeat(5, async (index) => {\n     *     await new Promise(resolve => setTimeout(resolve, 100)); // Wait 0.1 seconds\n     *     return {\n     *       id: index,\n     *       value: Math.random(),\n     *       timestamp: new Date().toISOString()\n     *     };\n     *   });\n     *   console.log('Generated data:', randomData);\n     *   ```;\n     *\n     * @template T - The type of the result from each execution\n     * @param count - The number of times to repeat (non-negative integer)\n     * @param closure - The asynchronous function to execute repeatedly\n     * @returns A Promise resolving to an array of results\n     */\n    const asyncRepeat: <T>(count: number, closure: (index: number) => Promise<T>) => Promise<T[]>;\n    /**\n     * Checks if at least one element in the array satisfies the given condition.\n     *\n     * Similar to JavaScript's native some() method. Returns true immediately when\n     * the first element satisfying the condition is found.\n     *\n     * @example\n     *   ```typescript\n     *   const numbers = [1, 3, 5, 7, 8, 9];\n     *   const products = [\n     *     { name: 'Apple', price: 100, inStock: true },\n     *     { name: 'Banana', price: 50, inStock: false },\n     *     { name: 'Orange', price: 80, inStock: true }\n     *   ];\n     *\n     *   const hasEvenNumber = ArrayUtil.has(numbers, num => num % 2 === 0);\n     *   console.log(hasEvenNumber); // true (8 exists)\n     *\n     *   const hasExpensiveItem = ArrayUtil.has(products, product => product.price > 90);\n     *   console.log(hasExpensiveItem); // true (Apple costs 100)\n     *\n     *   const hasOutOfStock = ArrayUtil.has(products, product => !product.inStock);\n     *   console.log(hasOutOfStock); // true (Banana is out of stock)\n     *   ```;\n     *\n     * @template T - The type of elements in the array\n     * @param elements - The readonly array to check\n     * @param pred - The predicate function to test elements\n     * @returns Boolean indicating if any element satisfies the condition\n     */\n    const has: <T>(elements: readonly T[], pred: (elem: T) => boolean) => boolean;\n    /**\n     * Executes a function a specified number of times and collects the results\n     * into an array.\n     *\n     * A synchronous repetition function that executes the given function for each\n     * index (from 0 to count-1) and collects the results into an array.\n     *\n     * @example\n     *   ```typescript\n     *   // Generate an array of squares from 1 to 5\n     *   const squares = ArrayUtil.repeat(5, index => (index + 1) ** 2);\n     *   console.log(squares); // [1, 4, 9, 16, 25]\n     *\n     *   // Generate an array of default user objects\n     *   const users = ArrayUtil.repeat(3, index => ({\n     *   id: index + 1,\n     *   name: `User${index + 1}`,\n     *   email: `user${index + 1}@example.com`\n     *   }));\n     *   console.log(users);\n     *   // [\n     *   //   { id: 1, name: 'User1', email: 'user1@example.com' },\n     *   //   { id: 2, name: 'User2', email: 'user2@example.com' },\n     *   //   { id: 3, name: 'User3', email: 'user3@example.com' }\n     *   // ]\n     *   ```\n     *\n     * @template T - The type of the result from each execution\n     * @param count - The number of times to repeat (non-negative integer)\n     * @param closure - The function to execute repeatedly\n     * @returns An array of results\n     */\n    const repeat: <T>(count: number, closure: (index: number) => T) => T[];\n    /**\n     * Generates all possible subsets of a given array.\n     *\n     * Implements the mathematical concept of power set, generating 2^n subsets\n     * from an array of n elements. Uses depth-first search (DFS) algorithm to\n     * calculate all possible combinations of including or excluding each\n     * element.\n     *\n     * @example\n     *   ```typescript\n     *   const numbers = [1, 2, 3];\n     *   const allSubsets = ArrayUtil.subsets(numbers);\n     *   console.log(allSubsets);\n     *   // [\n     *   //   [],           // empty set\n     *   //   [3],          // {3}\n     *   //   [2],          // {2}\n     *   //   [2, 3],       // {2, 3}\n     *   //   [1],          // {1}\n     *   //   [1, 3],       // {1, 3}\n     *   //   [1, 2],       // {1, 2}\n     *   //   [1, 2, 3]     // {1, 2, 3}\n     *   // ]\n     *\n     *   const colors = ['red', 'blue'];\n     *   const colorSubsets = ArrayUtil.subsets(colors);\n     *   console.log(colorSubsets);\n     *   // [\n     *   //   [],\n     *   //   ['blue'],\n     *   //   ['red'],\n     *   //   ['red', 'blue']\n     *   // ]\n     *\n     *   // Warning: Result size grows exponentially with array size\n     *   // Example: 10 elements → 1,024 subsets, 20 elements → 1,048,576 subsets\n     *   ```;\n     *\n     * @template T - The type of elements in the array\n     * @param array - The array to generate subsets from\n     * @returns An array containing all possible subsets\n     */\n    const subsets: <T>(array: T[]) => T[][];\n}\n",
    "node_modules/@nestia/e2e/lib/DynamicExecutor.d.ts": "/**\n * Dynamic Executor running prefixed functions.\n *\n * `DynamicExecutor` runs every (or some filtered) prefixed functions in a\n * specific directory.\n *\n * For reference, it's useful for test program development of a backend server.\n * Just write test functions under a directory, and just specify it.\n * Furthermore, if you compose e2e test programs to utilize the `@nestia/sdk`\n * generated API functions, you can take advantage of {@link DynamicBenchmarker}\n * at the same time.\n *\n * When you want to see some utilization cases, see the below example links.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   https://github.com/samchon/nestia-start/blob/master/test/index.ts\n *\n * @example\n *   https://github.com/samchon/backend/blob/master/test/index.ts\n */\nexport declare namespace DynamicExecutor {\n    /**\n     * Function type of a prefixed.\n     *\n     * @template Arguments Type of parameters\n     * @template Ret Type of return value\n     */\n    interface Closure<Arguments extends any[], Ret = any> {\n        (...args: Arguments): Promise<Ret>;\n    }\n    /** Options for dynamic executor. */\n    interface IProps<Parameters extends any[], Ret = any> {\n        /**\n         * Prefix of function name.\n         *\n         * Every prefixed function will be executed.\n         *\n         * In other words, if a function name doesn't start with the prefix, then it\n         * would never be executed.\n         */\n        prefix: string;\n        /** Location of the test functions. */\n        location: string;\n        /**\n         * Get parameters of a function.\n         *\n         * @param name Function name\n         * @returns Parameters\n         */\n        parameters: (name: string) => Parameters;\n        /**\n         * On complete function.\n         *\n         * Listener of completion of a test function.\n         *\n         * @param exec Execution result of a test function\n         */\n        onComplete?: (exec: IExecution) => void;\n        /**\n         * Filter function whether to run or not.\n         *\n         * @param name Function name\n         * @returns Whether to run or not\n         */\n        filter?: (name: string) => boolean;\n        /**\n         * Wrapper of test function.\n         *\n         * If you specify this `wrapper` property, every dynamic functions loaded\n         * and called by this `DynamicExecutor` would be wrapped by the `wrapper`\n         * function.\n         *\n         * @param name Function name\n         * @param closure Function to be executed\n         * @param parameters Parameters, result of options.parameters function.\n         * @returns Wrapper function\n         */\n        wrapper?: (name: string, closure: Closure<Parameters, Ret>, parameters: Parameters) => Promise<any>;\n        /**\n         * Number of simultaneous requests.\n         *\n         * The number of requests to be executed simultaneously.\n         *\n         * If you configure a value greater than one, the dynamic executor will\n         * process the functions concurrently with the given capacity value.\n         *\n         * @default 1\n         */\n        simultaneous?: number;\n        /**\n         * Extension of dynamic functions.\n         *\n         * @default js\n         */\n        extension?: string;\n    }\n    /** Report, result of dynamic execution. */\n    interface IReport {\n        /** Location path of dynamic functions. */\n        location: string;\n        /** Execution results of dynamic functions. */\n        executions: IExecution[];\n        /** Total elapsed time. */\n        time: number;\n    }\n    /** Execution of a test function. */\n    interface IExecution {\n        /** Name of function. */\n        name: string;\n        /** Location path of the function. */\n        location: string;\n        /** Returned value from the function. */\n        value: unknown;\n        /** Error when occurred. */\n        error: Error | null;\n        /** Elapsed time. */\n        started_at: string;\n        /** Completion time. */\n        completed_at: string;\n    }\n    /**\n     * Prepare dynamic executor in strict mode.\n     *\n     * In strict mode, if any error occurs, the program will be terminated\n     * directly. Otherwise, {@link validate} mode does not terminate when error\n     * occurs, but just archive the error log.\n     *\n     * @param props Properties of dynamic execution\n     * @returns Report of dynamic test functions execution\n     */\n    const assert: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n    /**\n     * Prepare dynamic executor in loose mode.\n     *\n     * In loose mode, the program would not be terminated even when error occurs.\n     * Instead, the error would be archived and returns as a list. Otherwise,\n     * {@link assert} mode terminates the program directly when error occurs.\n     *\n     * @param props Properties of dynamic executor\n     * @returns Report of dynamic test functions execution\n     */\n    const validate: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n}\n",
    "node_modules/@nestia/e2e/lib/GaffComparator.d.ts": "/**\n * Type-safe comparator functions for Array.sort() operations with advanced\n * field access.\n *\n * GaffComparator provides a collection of specialized comparator functions\n * designed to work seamlessly with Array.sort() and testing frameworks like\n * TestValidator.sort(). Each comparator supports both single values and arrays\n * of values, enabling complex multi-field sorting scenarios with lexicographic\n * ordering.\n *\n * Key features:\n *\n * - Generic type safety for any object structure\n * - Support for single values or arrays of values per field\n * - Lexicographic comparison for multi-value scenarios\n * - Locale-aware string comparison\n * - Automatic type conversion for dates and numbers\n *\n * The comparators follow the standard JavaScript sort contract:\n *\n * - Return < 0 if first element should come before second\n * - Return > 0 if first element should come after second\n * - Return 0 if elements are equal\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   ```typescript\n *   // Basic usage with single fields\n *   users.sort(GaffComparator.strings(user => user.name));\n *   posts.sort(GaffComparator.dates(post => post.createdAt));\n *   products.sort(GaffComparator.numbers(product => product.price));\n *\n *   // Multi-field sorting with arrays\n *   users.sort(GaffComparator.strings(user => [user.lastName, user.firstName]));\n *   events.sort(GaffComparator.dates(event => [event.startDate, event.endDate]));\n *\n *   // Integration with TestValidator's currying pattern\n *   const validator = TestValidator.sort(\"user sorting\",\n *     (sortable) => api.getUsers({ sort: sortable })\n *   )(\"name\", \"email\")(\n *     GaffComparator.strings(user => [user.name, user.email])\n *   );\n *   await validator(\"+\"); // ascending\n *   await validator(\"-\"); // descending\n *   ```;\n */\nexport declare namespace GaffComparator {\n    /**\n     * Creates a comparator function for string-based sorting with locale-aware\n     * comparison.\n     *\n     * Generates a comparator that extracts string values from objects and\n     * performs lexicographic comparison using locale-sensitive string comparison.\n     * Supports both single strings and arrays of strings for multi-field sorting\n     * scenarios.\n     *\n     * When comparing arrays, performs lexicographic ordering: compares the first\n     * elements, then the second elements if the first are equal, and so on. This\n     * enables complex sorting like \"sort by last name, then by first name\".\n     *\n     * @example\n     *   ```typescript\n     *   interface User {\n     *     id: string;\n     *     firstName: string;\n     *     lastName: string;\n     *     email: string;\n     *     status: 'active' | 'inactive';\n     *   }\n     *\n     *   const users: User[] = [\n     *     { id: '1', firstName: 'John', lastName: 'Doe', email: 'john@example.com', status: 'active' },\n     *     { id: '2', firstName: 'Jane', lastName: 'Doe', email: 'jane@example.com', status: 'inactive' },\n     *     { id: '3', firstName: 'Bob', lastName: 'Smith', email: 'bob@example.com', status: 'active' }\n     *   ];\n     *\n     *   // Single field sorting\n     *   users.sort(GaffComparator.strings(user => user.lastName));\n     *   // Result: Doe, Doe, Smith\n     *\n     *   // Multi-field sorting: last name, then first name\n     *   users.sort(GaffComparator.strings(user => [user.lastName, user.firstName]));\n     *   // Result: Doe Jane, Doe John, Smith Bob\n     *\n     *   // Status-based sorting\n     *   users.sort(GaffComparator.strings(user => user.status));\n     *   // Result: active users first, then inactive\n     *\n     *   // Complex multi-field: status, then last name, then first name\n     *   users.sort(GaffComparator.strings(user => [user.status, user.lastName, user.firstName]));\n     *\n     *   // Integration with TestValidator sorting validation\n     *   const sortValidator = TestValidator.sort(\"user name sorting\",\n     *     (sortFields) => userApi.getUsers({ sort: sortFields })\n     *   )(\"lastName\", \"firstName\")(\n     *     GaffComparator.strings(user => [user.lastName, user.firstName])\n     *   );\n     *   await sortValidator(\"+\"); // test ascending order\n     *   await sortValidator(\"-\"); // test descending order\n     *   ```;\n     *\n     * @template T - The type of objects being compared\n     * @param getter - Function that extracts string value(s) from input objects\n     * @returns A comparator function suitable for Array.sort()\n     */\n    const strings: <T>(getter: (input: T) => string | string[]) => (x: T, y: T) => number;\n    /**\n     * Creates a comparator function for date-based sorting with automatic string\n     * parsing.\n     *\n     * Generates a comparator that extracts date values from objects,\n     * automatically converting string representations to Date objects for\n     * numerical comparison. Supports both single dates and arrays of dates for\n     * complex temporal sorting.\n     *\n     * Date strings are parsed using the standard Date constructor, which supports\n     * ISO 8601 format, RFC 2822 format, and other common date representations.\n     * The comparison is performed on millisecond timestamps for precise\n     * ordering.\n     *\n     * @example\n     *   ```typescript\n     *   interface Event {\n     *     id: string;\n     *     title: string;\n     *     startDate: string;\n     *     endDate: string;\n     *     createdAt: string;\n     *     updatedAt: string;\n     *   }\n     *\n     *   const events: Event[] = [\n     *     {\n     *       id: '1',\n     *       title: 'Conference',\n     *       startDate: '2024-03-15T09:00:00Z',\n     *       endDate: '2024-03-15T17:00:00Z',\n     *       createdAt: '2024-01-10T10:00:00Z',\n     *       updatedAt: '2024-02-01T15:30:00Z'\n     *     },\n     *     {\n     *       id: '2',\n     *       title: 'Workshop',\n     *       startDate: '2024-03-10T14:00:00Z',\n     *       endDate: '2024-03-10T16:00:00Z',\n     *       createdAt: '2024-01-15T11:00:00Z',\n     *       updatedAt: '2024-01-20T09:15:00Z'\n     *     }\n     *   ];\n     *\n     *   // Sort by start date (chronological order)\n     *   events.sort(GaffComparator.dates(event => event.startDate));\n     *\n     *   // Sort by creation date (oldest first)\n     *   events.sort(GaffComparator.dates(event => event.createdAt));\n     *\n     *   // Multi-field: start date, then end date\n     *   events.sort(GaffComparator.dates(event => [event.startDate, event.endDate]));\n     *\n     *   // Sort by modification history: created date, then updated date\n     *   events.sort(GaffComparator.dates(event => [event.createdAt, event.updatedAt]));\n     *\n     *   // Validate API date sorting with TestValidator\n     *   const dateValidator = TestValidator.sort(\"event chronological sorting\",\n     *     (sortFields) => eventApi.getEvents({ sort: sortFields })\n     *   )(\"startDate\")(\n     *     GaffComparator.dates(event => event.startDate)\n     *   );\n     *   await dateValidator(\"+\", true); // ascending with trace logging\n     *\n     *   // Test complex date-based sorting\n     *   const sortByEventSchedule = GaffComparator.dates(event => [\n     *     event.startDate,\n     *     event.endDate\n     *   ]);\n     *   ```;\n     *\n     * @template T - The type of objects being compared\n     * @param getter - Function that extracts date string(s) from input objects\n     * @returns A comparator function suitable for Array.sort()\n     */\n    const dates: <T>(getter: (input: T) => string | string[]) => (x: T, y: T) => number;\n    /**\n     * Creates a comparator function for numerical sorting with multi-value\n     * support.\n     *\n     * Generates a comparator that extracts numerical values from objects and\n     * performs mathematical comparison. Supports both single numbers and arrays\n     * of numbers for complex numerical sorting scenarios like sorting by price\n     * then by rating.\n     *\n     * When comparing arrays, performs lexicographic numerical ordering: compares\n     * the first numbers, then the second numbers if the first are equal, and so\n     * on. This enables sophisticated sorting like \"sort by price ascending, then\n     * by rating descending\".\n     *\n     * @example\n     *   ```typescript\n     *   interface Product {\n     *     id: string;\n     *     name: string;\n     *     price: number;\n     *     rating: number;\n     *     stock: number;\n     *     categoryId: number;\n     *     salesCount: number;\n     *   }\n     *\n     *   const products: Product[] = [\n     *     { id: '1', name: 'Laptop', price: 999.99, rating: 4.5, stock: 15, categoryId: 1, salesCount: 150 },\n     *     { id: '2', name: 'Mouse', price: 29.99, rating: 4.2, stock: 50, categoryId: 1, salesCount: 300 },\n     *     { id: '3', name: 'Keyboard', price: 79.99, rating: 4.8, stock: 25, categoryId: 1, salesCount: 200 }\n     *   ];\n     *\n     *   // Sort by price (ascending)\n     *   products.sort(GaffComparator.numbers(product => product.price));\n     *   // Result: Mouse ($29.99), Keyboard ($79.99), Laptop ($999.99)\n     *\n     *   // Sort by rating (descending requires negation)\n     *   products.sort(GaffComparator.numbers(product => -product.rating));\n     *   // Result: Keyboard (4.8), Laptop (4.5), Mouse (4.2)\n     *\n     *   // Multi-field: category, then price\n     *   products.sort(GaffComparator.numbers(product => [product.categoryId, product.price]));\n     *\n     *   // Complex business logic: popularity (sales) then rating\n     *   products.sort(GaffComparator.numbers(product => [-product.salesCount, -product.rating]));\n     *   // Negative values for descending order\n     *\n     *   // Sort by inventory priority: low stock first, then by sales\n     *   products.sort(GaffComparator.numbers(product => [product.stock, -product.salesCount]));\n     *\n     *   // Validate API numerical sorting with TestValidator\n     *   const priceValidator = TestValidator.sort(\"product price sorting\",\n     *     (sortFields) => productApi.getProducts({ sort: sortFields })\n     *   )(\"price\")(\n     *     GaffComparator.numbers(product => product.price)\n     *   );\n     *   await priceValidator(\"+\"); // test ascending order\n     *   await priceValidator(\"-\"); // test descending order\n     *\n     *   // Test multi-criteria sorting\n     *   const sortByBusinessValue = GaffComparator.numbers(product => [\n     *     -product.salesCount,  // High sales first\n     *     -product.rating,      // High rating first\n     *     product.price         // Low price first (for tie-breaking)\n     *   ]);\n     *   ```;\n     *\n     * @template T - The type of objects being compared\n     * @param closure - Function that extracts number value(s) from input objects\n     * @returns A comparator function suitable for Array.sort()\n     */\n    const numbers: <T>(closure: (input: T) => number | number[]) => (x: T, y: T) => number;\n}\n",
    "node_modules/@nestia/e2e/lib/MapUtil.d.ts": "/**\n * A namespace providing utility functions for Map manipulation.\n *\n * This namespace contains helper functions for working with JavaScript Map\n * objects, providing convenient methods for common Map operations like\n * retrieving values with lazy initialization.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   ```typescript\n *   // Create a cache with lazy initialization\n *   const cache = new Map<string, ExpensiveObject>();\n *\n *   const obj = MapUtil.take(cache, \"key1\", () => {\n *     console.log(\"Creating expensive object...\");\n *     return new ExpensiveObject();\n *   });\n *\n *   // Subsequent calls return cached value without re-creating\n *   const sameObj = MapUtil.take(cache, \"key1\", () => new ExpensiveObject());\n *   console.log(obj === sameObj); // true\n *   ```;\n */\nexport declare namespace MapUtil {\n    /**\n     * Retrieves a value from a Map or creates it using a lazy initialization\n     * function.\n     *\n     * This function implements the \"get or create\" pattern for Maps. If the key\n     * exists in the Map, it returns the existing value. Otherwise, it calls the\n     * provided factory function to create a new value, stores it in the Map, and\n     * returns it. The factory function is only called when the key doesn't exist,\n     * enabling lazy initialization and caching patterns.\n     *\n     * @example\n     *   ```typescript\n     *   // Simple caching example\n     *   const userCache = new Map<number, User>();\n     *\n     *   const user = MapUtil.take(userCache, userId, () => {\n     *     // This expensive operation only runs if userId is not cached\n     *     return fetchUserFromDatabase(userId);\n     *   });\n     *\n     *   // Configuration object caching\n     *   const configs = new Map<string, Config>();\n     *\n     *   const dbConfig = MapUtil.take(configs, \"database\", () => ({\n     *     host: \"localhost\",\n     *     port: 5432,\n     *     database: \"myapp\"\n     *   }));\n     *\n     *   // Lazy computation results\n     *   const computationCache = new Map<string, number>();\n     *\n     *   const result = MapUtil.take(computationCache, \"fibonacci-40\", () => {\n     *     console.log(\"Computing fibonacci(40)...\");\n     *     return fibonacci(40); // Only computed once\n     *   });\n     *\n     *   // Using with complex keys\n     *   const cache = new Map<[number, number], Matrix>();\n     *   const key: [number, number] = [rows, cols];\n     *\n     *   const matrix = MapUtil.take(cache, key, () =>\n     *     generateIdentityMatrix(rows, cols)\n     *   );\n     *   ```;\n     *\n     * @template K - The type of keys in the Map\n     * @template V - The type of values in the Map\n     * @param map - The Map to retrieve from or update\n     * @param key - The key to look up in the Map\n     * @param value - A factory function that creates the value if key doesn't exist\n     * @returns The existing value if found, or the newly created value\n     */\n    function take<K, V>(map: Map<K, V>, key: K, value: () => V): V;\n}\n",
    "node_modules/@nestia/e2e/lib/RandomGenerator.d.ts": "/**\n * Comprehensive random data generation utilities for testing and development.\n *\n * RandomGenerator provides a collection of functions for generating random data\n * including strings, names, content, dates, and array sampling. All functions\n * are designed to be deterministic within a single execution but produce varied\n * output across different runs, making them ideal for testing scenarios.\n *\n * The namespace includes specialized generators for:\n *\n * - Text content (alphabets, alphanumeric, names, paragraphs)\n * - Phone numbers and contact information\n * - Date ranges and time-based data\n * - Array sampling and element selection\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   ```typescript\n *   // Generate test user data\n *   const testUser = {\n *     id: RandomGenerator.alphaNumeric(8),\n *     name: RandomGenerator.name(),\n *     bio: RandomGenerator.paragraph({ sentences: 3, wordMin: 5, wordMax: 10 }),\n *     phone: RandomGenerator.mobile(),\n *     createdAt: RandomGenerator.date(new Date(), 1000 * 60 * 60 * 24 * 30) // 30 days\n *   };\n *\n *   // Sample data for testing\n *   const testSample = RandomGenerator.sample(allUsers, 5);\n *   ```;\n */\nexport declare namespace RandomGenerator {\n    /**\n     * Generates a random string containing only lowercase alphabetical\n     * characters.\n     *\n     * Creates a string of specified length using only characters a-z. Each\n     * character is independently randomly selected, so the same character may\n     * appear multiple times. Useful for generating random identifiers, test\n     * names, or placeholder text.\n     *\n     * @example\n     *   ```typescript\n     *   RandomGenerator.alphabets(5);  // e.g. \"kxqpw\"\n     *   RandomGenerator.alphabets(3);  // e.g. \"mzr\"\n     *   RandomGenerator.alphabets(10); // e.g. \"qwertasdfg\"\n     *\n     *   // Generate random CSS class names\n     *   const className = `test-${RandomGenerator.alphabets(6)}`;\n     *\n     *   // Create random variable names for testing\n     *   const varName = RandomGenerator.alphabets(8);\n     *   ```\n     *\n     * @param length - The desired length of the generated alphabetic string\n     * @returns A string containing only lowercase letters of the specified length\n     */\n    const alphabets: (length: number) => string;\n    /**\n     * Generates a random alphanumeric string containing digits and lowercase\n     * letters.\n     *\n     * Creates a string of specified length using characters from 0-9 and a-z.\n     * Each position is independently randomly selected from the combined\n     * character set. Ideal for generating random IDs, tokens, passwords, or\n     * unique identifiers that need both numeric and alphabetic characters.\n     *\n     * @example\n     *   ```typescript\n     *   RandomGenerator.alphaNumeric(8);  // e.g. \"a1b2c3d4\"\n     *   RandomGenerator.alphaNumeric(12); // e.g. \"x9y8z7w6v5u4\"\n     *\n     *   // Generate random API keys\n     *   const apiKey = RandomGenerator.alphaNumeric(32);\n     *\n     *   // Create session tokens\n     *   const sessionId = `sess_${RandomGenerator.alphaNumeric(16)}`;\n     *\n     *   // Generate test database IDs\n     *   const testId = RandomGenerator.alphaNumeric(10);\n     *   ```\n     *\n     * @param length - The desired length of the generated alphanumeric string\n     * @returns A string containing digits and lowercase letters of the specified\n     *   length\n     */\n    const alphaNumeric: (length: number) => string;\n    /**\n     * Generates a random name-like string with realistic length variation.\n     *\n     * Creates a name by generating a paragraph with 2-3 words (randomly chosen).\n     * The resulting string resembles typical human names in structure and length.\n     * Each word is between 3-7 characters by default, creating realistic-looking\n     * names.\n     *\n     * @example\n     *   ```typescript\n     *   RandomGenerator.name();    // e.g. \"lorem ipsum\" (2-3 words)\n     *   RandomGenerator.name(1);   // e.g. \"dolor\" (single word)\n     *   RandomGenerator.name(3);   // e.g. \"sit amet consectetur\" (3 words)\n     *\n     *   // Generate test user names\n     *   const users = Array.from({ length: 10 }, () => ({\n     *   id: RandomGenerator.alphaNumeric(8),\n     *   name: RandomGenerator.name(),\n     *   email: `${RandomGenerator.name(1)}@test.com`\n     *   }));\n     *\n     *   // Create random author names for blog posts\n     *   const authorName = RandomGenerator.name();\n     *   ```\n     *\n     * @param length - Number of words in the name (default: random between 2-3)\n     * @returns A space-separated string of random words (each 3-7 chars by\n     *   default)\n     */\n    const name: (length?: number) => string;\n    /**\n     * Generates a random paragraph with configurable sentence structure.\n     *\n     * Creates a paragraph consisting of a specified number of \"sentences\"\n     * (words). Each sentence is a random alphabetic string, and sentences are\n     * joined with spaces. Accepts an optional configuration object for fine-tuned\n     * control over the paragraph structure.\n     *\n     * @example\n     *   ```typescript\n     *   // Generate with defaults (random 2-5 words, 3-7 characters each)\n     *   RandomGenerator.paragraph();  // e.g. \"lorem ipsum dolor\"\n     *\n     *   // Specific number of sentences\n     *   RandomGenerator.paragraph({ sentences: 5 });  // \"lorem ipsum dolor sit amet\"\n     *\n     *   // Custom word length ranges\n     *   RandomGenerator.paragraph({ sentences: 4, wordMin: 2, wordMax: 5 });\n     *   // \"ab cd ef gh\"\n     *\n     *   // Generate product descriptions\n     *   const description = RandomGenerator.paragraph({\n     *     sentences: 8,\n     *     wordMin: 4,\n     *     wordMax: 8\n     *   });\n     *\n     *   // Create test content for forms\n     *   const placeholder = RandomGenerator.paragraph({\n     *     sentences: 3,\n     *     wordMin: 5,\n     *     wordMax: 10\n     *   });\n     *   ```;\n     *\n     * @param props - Optional configuration object with sentences count and word\n     *   length ranges\n     * @returns A string containing the generated paragraph\n     */\n    const paragraph: (props?: Partial<{\n        sentences: number;\n        wordMin: number;\n        wordMax: number;\n    }>) => string;\n    /**\n     * Generates random multi-paragraph content with customizable structure.\n     *\n     * Creates content consisting of multiple paragraphs separated by double\n     * newlines. Accepts an optional configuration object to control content\n     * structure including paragraph count, sentences per paragraph, and word\n     * character lengths. Ideal for generating realistic-looking text content for\n     * testing.\n     *\n     * @example\n     *   ```typescript\n     *   // Generate with all defaults\n     *   const article = RandomGenerator.content();\n     *\n     *   // Specific structure: 5 paragraphs, 15-25 sentences each, 4-8 char words\n     *   const longContent = RandomGenerator.content({\n     *     paragraphs: 5,\n     *     sentenceMin: 15,\n     *     sentenceMax: 25,\n     *     wordMin: 4,\n     *     wordMax: 8\n     *   });\n     *\n     *   // Short content with brief sentences\n     *   const shortContent = RandomGenerator.content({\n     *     paragraphs: 2,\n     *     sentenceMin: 5,\n     *     sentenceMax: 8,\n     *     wordMin: 2,\n     *     wordMax: 4\n     *   });\n     *\n     *   // Generate blog post content\n     *   const blogPost = {\n     *     title: RandomGenerator.name(3),\n     *     content: RandomGenerator.content({\n     *       paragraphs: 4,\n     *       sentenceMin: 10,\n     *       sentenceMax: 20,\n     *       wordMin: 3,\n     *       wordMax: 7\n     *     }),\n     *     summary: RandomGenerator.paragraph({ sentences: 2 })\n     *   };\n     *\n     *   // Create test data for CMS\n     *   const pages = Array.from({ length: 10 }, () => ({\n     *     id: RandomGenerator.alphaNumeric(8),\n     *     content: RandomGenerator.content({\n     *       paragraphs: randint(2, 6),\n     *       sentenceMin: 8,\n     *       sentenceMax: 15\n     *     })\n     *   }));\n     *   ```;\n     *\n     * @param props - Optional configuration object with paragraph, sentence, and\n     *   word parameters\n     * @returns A string containing the generated multi-paragraph content\n     */\n    const content: (props?: Partial<{\n        paragraphs: number;\n        sentenceMin: number;\n        sentenceMax: number;\n        wordMin: number;\n        wordMax: number;\n    }>) => string;\n    /**\n     * Extracts a random substring from the provided content string.\n     *\n     * Selects two random positions within the content and returns the substring\n     * between them. The starting position is always before the ending position.\n     * Automatically trims whitespace from the beginning and end of the result.\n     * Useful for creating excerpts, search terms, or partial content samples.\n     *\n     * @example\n     *   ```typescript\n     *   const text = \"The quick brown fox jumps over the lazy dog\";\n     *\n     *   RandomGenerator.substring(text);  // e.g. \"quick brown fox\"\n     *   RandomGenerator.substring(text);  // e.g. \"jumps over\"\n     *   RandomGenerator.substring(text);  // e.g. \"fox jumps over the lazy\"\n     *\n     *   // Generate search terms from content\n     *   const searchQuery = RandomGenerator.substring(articleContent);\n     *\n     *   // Create excerpts for previews\n     *   const excerpt = RandomGenerator.substring(fullBlogPost);\n     *\n     *   // Generate partial matches for testing search functionality\n     *   const partialMatch = RandomGenerator.substring(productDescription);\n     *\n     *   // Create random selections for highlight testing\n     *   const selectedText = RandomGenerator.substring(documentContent);\n     *   ```;\n     *\n     * @param content - The source string to extract a substring from\n     * @returns A trimmed substring of the original content\n     */\n    const substring: (content: string) => string;\n    /**\n     * Generates a random mobile phone number with customizable prefix.\n     *\n     * Creates a mobile phone number in the format: [prefix][3-4 digits][4\n     * digits]. The middle section is 3 digits if the random number is less than\n     * 1000, otherwise 4 digits. The last section is always 4 digits, zero-padded\n     * if necessary. Commonly used for generating Korean mobile phone numbers or\n     * similar formats.\n     *\n     * @example\n     *   ```typescript\n     *   RandomGenerator.mobile();        // e.g. \"0103341234\" or \"01012345678\"\n     *   RandomGenerator.mobile(\"011\");   // e.g. \"0119876543\" or \"01112345678\"\n     *   RandomGenerator.mobile(\"+82\");   // e.g. \"+823341234\" or \"+8212345678\"\n     *\n     *   // Generate test user phone numbers\n     *   const testUsers = Array.from({ length: 100 }, () => ({\n     *     name: RandomGenerator.name(),\n     *     phone: RandomGenerator.mobile(),\n     *     altPhone: RandomGenerator.mobile(\"011\")\n     *   }));\n     *\n     *   // Create international phone numbers\n     *   const internationalPhone = RandomGenerator.mobile(\"+821\");\n     *\n     *   // Generate contact list for testing\n     *   const contacts = [\"010\", \"011\", \"016\", \"017\", \"018\", \"019\"].map(prefix => ({\n     *     carrier: prefix,\n     *     number: RandomGenerator.mobile(prefix)\n     *   }));\n     *   ```;\n     *\n     * @param prefix - The prefix string for the phone number (default: \"010\")\n     * @returns A formatted mobile phone number string\n     */\n    const mobile: (prefix?: string) => string;\n    /**\n     * Generates a random date within a specified range from a starting point.\n     *\n     * Returns a random date between the start date and start date + range. The\n     * range represents the maximum number of milliseconds to add to the starting\n     * date. Useful for generating timestamps, creation dates, or scheduling test\n     * data.\n     *\n     * @example\n     *   ```typescript\n     *   const now = new Date();\n     *   const oneDay = 24 * 60 * 60 * 1000;\n     *   const oneMonth = 30 * oneDay;\n     *\n     *   // Random date within the next 30 days\n     *   const futureDate = RandomGenerator.date(now, oneMonth);\n     *\n     *   // Random date within the past week\n     *   const pastWeek = new Date(now.getTime() - 7 * oneDay);\n     *   const recentDate = RandomGenerator.date(pastWeek, 7 * oneDay);\n     *\n     *   // Generate random creation dates for test data\n     *   const startOfYear = new Date(2024, 0, 1);\n     *   const endOfYear = new Date(2024, 11, 31).getTime() - startOfYear.getTime();\n     *   const randomCreationDate = RandomGenerator.date(startOfYear, endOfYear);\n     *\n     *   // Create test events with random timestamps\n     *   const events = Array.from({ length: 50 }, () => ({\n     *     id: RandomGenerator.alphaNumeric(8),\n     *     title: RandomGenerator.name(2),\n     *     createdAt: RandomGenerator.date(new Date(), oneMonth),\n     *     scheduledFor: RandomGenerator.date(new Date(), oneMonth * 3)\n     *   }));\n     *   ```;\n     *\n     * @param from - The starting date for the random range\n     * @param range - The range in milliseconds from the starting date\n     * @returns A random date within the specified range\n     */\n    const date: (from: Date, range: number) => Date;\n    /**\n     * Randomly samples a specified number of unique elements from an array.\n     *\n     * Selects random elements from the input array without replacement, ensuring\n     * all returned elements are unique. The sample size is automatically capped\n     * at the array length to prevent errors. Uses a Set-based approach to\n     * guarantee uniqueness of selected indices. Ideal for creating test datasets\n     * or selecting random subsets for validation.\n     *\n     * @example\n     *   ```typescript\n     *   const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\n     *\n     *   RandomGenerator.sample(numbers, 3);  // e.g. [2, 7, 9]\n     *   RandomGenerator.sample(numbers, 5);  // e.g. [1, 4, 6, 8, 10]\n     *   RandomGenerator.sample(numbers, 15); // returns all 10 elements (capped at array length)\n     *\n     *   // Sample users for testing\n     *   const allUsers = await getUsersFromDatabase();\n     *   const testUsers = RandomGenerator.sample(allUsers, 10);\n     *\n     *   // Create random product selections\n     *   const featuredProducts = RandomGenerator.sample(allProducts, 5);\n     *\n     *   // Generate test data subsets\n     *   const validationSet = RandomGenerator.sample(trainingData, 100);\n     *\n     *   // Random A/B testing groups\n     *   const groupA = RandomGenerator.sample(allParticipants, 50);\n     *   const remaining = allParticipants.filter(p => !groupA.includes(p));\n     *   const groupB = RandomGenerator.sample(remaining, 50);\n     *   ```;\n     *\n     * @param array - The source array to sample from\n     * @param count - The number of elements to sample\n     * @returns An array containing the randomly selected elements\n     */\n    const sample: <T>(array: T[], count: number) => T[];\n    /**\n     * Randomly selects a single element from an array.\n     *\n     * Chooses one element at random from the provided array using uniform\n     * distribution. Each element has an equal probability of being selected. This\n     * is a convenience function equivalent to sampling with a count of 1, but\n     * returns the element directly rather than an array containing one element.\n     *\n     * @example\n     *   ```typescript\n     *   const colors = ['red', 'blue', 'green', 'yellow', 'purple'];\n     *   const fruits = ['apple', 'banana', 'orange', 'grape', 'kiwi'];\n     *\n     *   RandomGenerator.pick(colors);  // e.g. \"blue\"\n     *   RandomGenerator.pick(fruits);  // e.g. \"apple\"\n     *\n     *   // Select random configuration options\n     *   const randomTheme = RandomGenerator.pick(['light', 'dark', 'auto']);\n     *   const randomLocale = RandomGenerator.pick(['en', 'ko', 'ja', 'zh']);\n     *\n     *   // Choose random test scenarios\n     *   const testScenario = RandomGenerator.pick([\n     *     'happy_path',\n     *     'edge_case',\n     *     'error_condition',\n     *     'boundary_test'\n     *   ]);\n     *\n     *   // Random user role assignment\n     *   const userRole = RandomGenerator.pick(['admin', 'user', 'moderator']);\n     *\n     *   // Select random API endpoints for testing\n     *   const endpoints = ['/users', '/posts', '/comments', '/categories'];\n     *   const randomEndpoint = RandomGenerator.pick(endpoints);\n     *   ```;\n     *\n     * @param array - The source array to pick an element from\n     * @returns A randomly selected element from the array\n     */\n    const pick: <T>(array: readonly T[]) => T;\n}\n",
    "node_modules/@nestia/e2e/lib/TestValidator.d.ts": "/**\n * A comprehensive collection of E2E validation utilities for testing\n * applications.\n *\n * TestValidator provides type-safe validation functions for common testing\n * scenarios including condition checking, equality validation, error testing,\n * HTTP error validation, pagination testing, search functionality validation,\n * and sorting validation.\n *\n * Most functions use direct parameter passing for simplicity, while some\n * maintain currying patterns for advanced composition. All provide detailed\n * error messages for debugging failed assertions.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   ```typescript\n *   // Basic condition testing\n *   TestValidator.predicate(\"user should be authenticated\", user.isAuthenticated);\n *\n *   // Equality validation\n *   TestValidator.equals(\"API response should match expected\", x, y);\n *\n *   // Error validation\n *   TestValidator.error(\"should throw on invalid input\", () => assertInput(\"\"));\n *   ```;\n */\nexport declare namespace TestValidator {\n    /**\n     * Validates that a given condition evaluates to true.\n     *\n     * Supports synchronous boolean values, synchronous functions returning\n     * boolean, and asynchronous functions returning Promise<boolean>. The return\n     * type is automatically inferred based on the input type.\n     *\n     * @example\n     *   ```typescript\n     *   // Synchronous boolean\n     *   TestValidator.predicate(\"user should exist\", user !== null);\n     *\n     *   // Synchronous function\n     *   TestValidator.predicate(\"array should be empty\", () => arr.length === 0);\n     *\n     *   // Asynchronous function\n     *   await TestValidator.predicate(\"database should be connected\",\n     *     async () => await db.ping()\n     *   );\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when validation\n     *   fails\n     * @param condition - The condition to validate (boolean, function, or async\n     *   function)\n     * @returns Void or Promise<void> based on the input type\n     * @throws Error with descriptive message when condition is not satisfied\n     */\n    function predicate<T extends boolean | (() => boolean) | (() => Promise<boolean>)>(title: string, condition: T): T extends () => Promise<boolean> ? Promise<void> : void;\n    /**\n     * Validates deep equality between two values using JSON comparison.\n     *\n     * Performs recursive comparison of objects and arrays. Supports an optional\n     * exception filter to ignore specific keys during comparison. Useful for\n     * validating API responses, data transformations, and object state changes.\n     *\n     * @example\n     *   ```typescript\n     *   // Basic equality\n     *   TestValidator.equals(\"response should match expected\", expectedUser, actualUser);\n     *\n     *   // Ignore timestamps in comparison\n     *   TestValidator.equals(\"user data should match\", expectedUser, actualUser,\n     *     (key) => key === \"updatedAt\"\n     *   );\n     *\n     *   // Validate API response structure\n     *   TestValidator.equals(\"API response structure\",\n     *     { id: 1, name: \"John\" },\n     *     { id: 1, name: \"John\" }\n     *   );\n     *\n     *   // Type-safe nullable comparisons\n     *   const nullableData: { name: string } | null = getData();\n     *   TestValidator.equals(\"nullable check\", nullableData, null);\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when values differ\n     * @param X - The first value to compare\n     * @param y - The second value to compare (can be null or undefined)\n     * @param exception - Optional filter function to exclude specific keys from\n     *   comparison\n     * @throws Error with detailed diff information when values are not equal\n     */\n    function equals<X, Y extends X = X>(title: string, X: X, y: Y | null | undefined, exception?: (key: string) => boolean): void;\n    /**\n     * Validates deep inequality between two values using JSON comparison.\n     *\n     * Performs recursive comparison of objects and arrays to ensure they are NOT\n     * equal. Supports an optional exception filter to ignore specific keys during\n     * comparison. Useful for validating that data has changed, objects are\n     * different, or mutations have occurred.\n     *\n     * @example\n     *   ```typescript\n     *   // Basic inequality\n     *   TestValidator.notEquals(\"user should be different after update\", originalUser, updatedUser);\n     *\n     *   // Ignore timestamps in comparison\n     *   TestValidator.notEquals(\"user data should differ\", originalUser, modifiedUser,\n     *     (key) => key === \"updatedAt\"\n     *   );\n     *\n     *   // Validate state changes\n     *   TestValidator.notEquals(\"state should have changed\", initialState, currentState);\n     *\n     *   // Type-safe nullable comparisons\n     *   const mutableData: { count: number } | null = getMutableData();\n     *   TestValidator.notEquals(\"should have changed\", mutableData, null);\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when values are\n     *   equal\n     * @param x - The first value to compare\n     * @param y - The second value to compare (can be null or undefined)\n     * @param exception - Optional filter function to exclude specific keys from\n     *   comparison\n     * @throws Error when values are equal (indicating validation failure)\n     */\n    function notEquals<X, Y extends X = X>(title: string, x: X, y: Y | null | undefined, exception?: (key: string) => boolean): void;\n    /**\n     * Validates that a function throws an error or rejects when executed.\n     *\n     * Expects the provided function to fail. If the function executes\n     * successfully without throwing an error or rejecting, this validator will\n     * throw an exception. Supports both synchronous and asynchronous functions.\n     *\n     * @example\n     *   ```typescript\n     *   // Synchronous error validation\n     *   TestValidator.error(\"should reject invalid email\",\n     *     () => validateEmail(\"invalid-email\")\n     *   );\n     *\n     *   // Asynchronous error validation\n     *   await TestValidator.error(\"should reject unauthorized access\",\n     *     async () => await api.functional.getSecretData()\n     *   );\n     *\n     *   // Validate input validation\n     *   TestValidator.error(\"should throw on empty string\",\n     *     () => processRequiredInput(\"\")\n     *   );\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when no error\n     *   occurs\n     * @param task - The function that should throw an error or reject\n     * @returns Void or Promise<void> based on the input type\n     * @throws Error when the task function does not throw an error or reject\n     */\n    function error<T>(title: string, task: () => T): T extends Promise<any> ? Promise<void> : void;\n    /**\n     * Validates that a function throws an HTTP error with specific status codes.\n     *\n     * Specialized error validator for HTTP operations. Validates that the\n     * function throws an HttpError with one of the specified status codes. Useful\n     * for testing API endpoints, authentication, and authorization logic.\n     *\n     * @example\n     *   ```typescript\n     *   // Validate 401 Unauthorized\n     *   await TestValidator.httpError(\"should return 401 for invalid token\", 401,\n     *     async () => await api.functional.getProtectedResource(\"invalid-token\")\n     *   );\n     *\n     *   // Validate multiple possible error codes\n     *   await TestValidator.httpError(\"should return client error\", [400, 404, 422],\n     *     async () => await api.functional.updateNonexistentResource(data)\n     *   );\n     *\n     *   // Validate server errors\n     *   TestValidator.httpError(\"should handle server errors\", [500, 502, 503],\n     *     () => callFaultyEndpoint()\n     *   );\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages\n     * @param status - Expected status code(s), can be a single number or array\n     * @param task - The function that should throw an HttpError\n     * @returns Void or Promise<void> based on the input type\n     * @throws Error when function doesn't throw HttpError or status code doesn't\n     *   match\n     */\n    function httpError<T>(title: string, status: number | number[], task: () => T): T extends Promise<any> ? Promise<void> : void;\n    /**\n     * Validates pagination index API results against expected entity order.\n     *\n     * Compares the order of entities returned by a pagination API with manually\n     * sorted expected results. Validates that entity IDs appear in the correct\n     * sequence. Commonly used for testing database queries, search results, and\n     * any paginated data APIs.\n     *\n     * @example\n     *   ```typescript\n     *   // Test article pagination\n     *   const expectedArticles = await db.articles.findAll({ order: 'created_at DESC' });\n     *   const actualArticles = await api.functional.getArticles({ page: 1, limit: 10 });\n     *\n     *   TestValidator.index(\"article pagination order\", expectedArticles, actualArticles,\n     *     true // enable trace logging\n     *   );\n     *\n     *   // Test user search results\n     *   const manuallyFilteredUsers = allUsers.filter(u => u.name.includes(\"John\"));\n     *   const apiSearchResults = await api.functional.searchUsers({ query: \"John\" });\n     *\n     *   TestValidator.index(\"user search results\", manuallyFilteredUsers, apiSearchResults);\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when order differs\n     * @param expected - The expected entities in correct order\n     * @param gotten - The actual entities returned by the API\n     * @param trace - Optional flag to enable debug logging (default: false)\n     * @throws Error when entity order differs between expected and actual results\n     */\n    const index: <X extends IEntity<any>, Y extends X = X>(title: string, expected: X[], gotten: Y[], trace?: boolean) => void;\n    /**\n     * Validates search functionality by testing API results against manual\n     * filtering.\n     *\n     * Comprehensive search validation that samples entities from a complete\n     * dataset, extracts search values, applies manual filtering, calls the search\n     * API, and compares results. Validates that search APIs return the correct\n     * subset of data matching the search criteria.\n     *\n     * @example\n     *   ```typescript\n     *   // Test article search functionality with exact matching\n     *   const allArticles = await db.articles.findAll();\n     *   const searchValidator = TestValidator.search(\n     *     \"article search API\",\n     *     (req) => api.searchArticles(req),\n     *     allArticles,\n     *     5 // test with 5 random samples\n     *   );\n     *\n     *   // Test exact match search\n     *   await searchValidator({\n     *     fields: [\"title\"],\n     *     values: (article) => [article.title], // full title for exact match\n     *     filter: (article, [title]) => article.title === title, // exact match\n     *     request: ([title]) => ({ search: { title } })\n     *   });\n     *\n     *   // Test partial match search with includes\n     *   await searchValidator({\n     *     fields: [\"content\"],\n     *     values: (article) => [article.content.substring(0, 20)], // partial content\n     *     filter: (article, [keyword]) => article.content.includes(keyword),\n     *     request: ([keyword]) => ({ q: keyword })\n     *   });\n     *\n     *   // Test multi-field search with exact matching\n     *   await searchValidator({\n     *     fields: [\"writer\", \"title\"],\n     *     values: (article) => [article.writer, article.title],\n     *     filter: (article, [writer, title]) =>\n     *       article.writer === writer && article.title === title,\n     *     request: ([writer, title]) => ({ search: { writer, title } })\n     *   });\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when search fails\n     * @param getter - API function that performs the search\n     * @param total - Complete dataset to sample from for testing\n     * @param sampleCount - Number of random samples to test (default: 1)\n     * @returns A function that accepts search configuration properties\n     * @throws Error when API search results don't match manual filtering results\n     */\n    const search: <Entity extends IEntity<any>, Request>(title: string, getter: (input: Request) => Promise<Entity[]>, total: Entity[], sampleCount?: number) => <Values extends any[]>(props: ISearchProps<Entity, Values, Request>) => Promise<void>;\n    /**\n     * Configuration interface for search validation functionality.\n     *\n     * Defines the structure needed to validate search operations by specifying\n     * how to extract search values from entities, filter the dataset manually,\n     * and construct API requests.\n     *\n     * @template Entity - Type of entities being searched, must have an ID field\n     * @template Values - Tuple type representing the search values extracted from\n     *   entities\n     * @template Request - Type of the API request object\n     */\n    interface ISearchProps<Entity extends IEntity<any>, Values extends any[], Request> {\n        /** Field names being searched, used in error messages for identification */\n        fields: string[];\n        /**\n         * Extracts search values from a sample entity\n         *\n         * @param entity - The entity to extract search values from\n         * @returns Tuple of values used for searching\n         */\n        values(entity: Entity): Values;\n        /**\n         * Manual filter function to determine if an entity matches search criteria\n         *\n         * @param entity - Entity to test against criteria\n         * @param values - Search values to match against\n         * @returns True if entity matches the search criteria\n         */\n        filter(entity: Entity, values: Values): boolean;\n        /**\n         * Constructs API request object from search values\n         *\n         * @param values - Search values to include in request\n         * @returns Request object for the search API\n         */\n        request(values: Values): Request;\n    }\n    /**\n     * Validates sorting functionality of pagination APIs.\n     *\n     * Tests sorting operations by calling the API with sort parameters and\n     * validating that results are correctly ordered. Supports multiple fields,\n     * ascending/descending order, and optional filtering. Provides detailed error\n     * reporting for sorting failures.\n     *\n     * @example\n     *   ```typescript\n     *   // Test single field sorting with GaffComparator\n     *   const sortValidator = TestValidator.sort(\n     *     \"article sorting\",\n     *     (sortable) => api.getArticles({ sort: sortable })\n     *   )(\"created_at\")(\n     *     GaffComparator.dates((a) => a.created_at)\n     *   );\n     *\n     *   await sortValidator(\"+\"); // ascending\n     *   await sortValidator(\"-\"); // descending\n     *\n     *   // Test multi-field sorting with GaffComparator\n     *   const userSortValidator = TestValidator.sort(\n     *     \"user sorting\",\n     *     (sortable) => api.getUsers({ sort: sortable })\n     *   )(\"lastName\", \"firstName\")(\n     *     GaffComparator.strings((user) => [user.lastName, user.firstName]),\n     *     (user) => user.isActive // only test active users\n     *   );\n     *\n     *   await userSortValidator(\"+\", true); // ascending with trace logging\n     *\n     *   // Custom comparator for complex logic\n     *   const customSortValidator = TestValidator.sort(\n     *     \"custom sorting\",\n     *     (sortable) => api.getProducts({ sort: sortable })\n     *   )(\"price\", \"rating\")(\n     *     (a, b) => {\n     *       const priceDiff = a.price - b.price;\n     *       return priceDiff !== 0 ? priceDiff : b.rating - a.rating; // price asc, rating desc\n     *     }\n     *   );\n     *   ```;\n     *\n     * @param title - Descriptive title used in error messages when sorting fails\n     * @param getter - API function that fetches sorted data\n     * @returns A currying function chain: field names, comparator, then direction\n     * @throws Error when API results are not properly sorted according to\n     *   specification\n     */\n    const sort: <T extends object, Fields extends string, Sortable extends Array<`-${Fields}` | `+${Fields}`> = Array<`-${Fields}` | `+${Fields}`>>(title: string, getter: (sortable: Sortable) => Promise<T[]>) => (...fields: Fields[]) => (comp: (x: T, y: T) => number, filter?: (elem: T) => boolean) => (direction: \"+\" | \"-\", trace?: boolean) => Promise<void>;\n    /**\n     * Type alias for sortable field specifications.\n     *\n     * Represents an array of sort field specifications where each field can be\n     * prefixed with '+' for ascending order or '-' for descending order.\n     *\n     * @example\n     *   ```typescript\n     *   type UserSortable = TestValidator.Sortable<\"name\" | \"email\" | \"created_at\">;\n     *   // Results in: Array<\"-name\" | \"+name\" | \"-email\" | \"+email\" | \"-created_at\" | \"+created_at\">\n     *\n     *   const userSort: UserSortable = [\"+name\", \"-created_at\"];\n     *   ```;\n     *\n     * @template Literal - String literal type representing available field names\n     */\n    type Sortable<Literal extends string> = Array<`-${Literal}` | `+${Literal}`>;\n}\ninterface IEntity<Type extends string | number | bigint> {\n    id: Type;\n}\nexport {};\n",
    "node_modules/@nestia/e2e/lib/index.d.ts": "import * as e2e from \"./module\";\nexport default e2e;\nexport * from \"./module\";\n",
    "node_modules/@nestia/e2e/lib/internal/json_equal_to.d.ts": "export declare const json_equal_to: (exception: (key: string) => boolean) => <T>(x: T) => (y: T | null | undefined) => string[];\n",
    "node_modules/@nestia/e2e/lib/module.d.ts": "export * from \"./ArrayUtil\";\nexport * from \"./MapUtil\";\nexport * from \"./RandomGenerator\";\nexport * from \"./DynamicExecutor\";\nexport * from \"./GaffComparator\";\nexport * from \"./TestValidator\";\n",
    "node_modules/@nestia/e2e/package.json": "{\n  \"name\": \"@nestia/e2e\",\n  \"version\": \"11.0.1\",\n  \"description\": \"E2E test utilify functions\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/nestia\"\n  },\n  \"keywords\": [\n    \"e2e\",\n    \"nestia\",\n    \"nestjs\",\n    \"test\",\n    \"tdd\",\n    \"utility\"\n  ],\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/nestia/issues\"\n  },\n  \"homepage\": \"https://nestia.io\",\n  \"devDependencies\": {\n    \"@types/node\": \"^25.3.3\",\n    \"rimraf\": \"^6.1.3\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"files\": [\n    \"lib\",\n    \"src\",\n    \"README.md\",\n    \"LICENSE\",\n    \"package.json\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/@nestia/fetcher/lib/AesPkcs5.d.ts": "/**\n * Utility class for the AES-128/256 encryption.\n *\n * - AES-128/256\n * - CBC mode\n * - PKCS#5 Padding\n * - Base64 Encoding\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace AesPkcs5 {\n    /**\n     * Encrypt data\n     *\n     * @param data Target data\n     * @param key Key value of the encryption.\n     * @param iv Initializer Vector for the encryption\n     * @returns Encrypted data\n     */\n    function encrypt(data: string, key: string, iv: string): string;\n    /**\n     * Decrypt data.\n     *\n     * @param data Target data\n     * @param key Key value of the decryption.\n     * @param iv Initializer Vector for the decryption\n     * @returns Decrypted data.\n     */\n    function decrypt(data: string, key: string, iv: string): string;\n}\n",
    "node_modules/@nestia/fetcher/lib/EncryptedFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk` with encryption.\n *\n * `EncryptedFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP API encrypted by AES-PKCS algorithm. In other words, this is a\n * collection of dedicated `fetch()` functions for `@nestia/sdk` with\n * encryption.\n *\n * For reference, `EncryptedFetcher` class being used only when target\n * controller method is encrypting body data by `@EncryptedRoute` or\n * `@EncryptedBody` decorators. If those decorators are not used,\n * {@link PlainFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace EncryptedFetcher {\n    /**\n     * Fetch function only for `HEAD` method.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Nothing because of `HEAD` method\n     */\n    function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n    /**\n     * Fetch function only for `GET` method.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Response body data from the remote API\n     */\n    function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n    /**\n     * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Response body data from the remote API\n     */\n    function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n    function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n    function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
    "node_modules/@nestia/fetcher/lib/FormDataInput.d.ts": "/**\n * FormData input type.\n *\n * `FormDataInput<T>` is a type for the input of the `FormData` request, casting\n * `File` property value type as an union of `File` and\n * {@link FormDataInput.IFileProps}, especially for the React Native\n * environment.\n *\n * You know what? In the React Native environment, `File` class is not\n * supported. Therefore, when composing a `FormData` request, you have to put\n * the URI address of the local filesystem with file name and content type that\n * is represented by the {@link FormDataInput.IFileProps} type.\n *\n * This `FormDataInput<T>` type is designed for that purpose. If the property\n * value type is a `File` class, it converts it to an union type of `File` and\n * {@link FormDataInput.IFileProps} type. Also, if the property value type is an\n * array of `File` class, it converts it to an array of union type of `File` and\n * {@link FormDataInput.IFileProps} type too.\n *\n * Before | After ----------|------------------------ `boolean` | `boolean`\n * `bigint` | `bigint` `number` | `number` `string` | `string` `File` | `File \\|\n * IFileProps`\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target object type.\n */\nexport type FormDataInput<T extends object> = T extends Array<any> ? never : T extends Function ? never : {\n    [P in keyof T]: T[P] extends Array<infer U> ? FormDataInput.Value<U>[] : FormDataInput.Value<T[P]>;\n};\nexport declare namespace FormDataInput {\n    /**\n     * Value type of the `FormDataInput`.\n     *\n     * `Value<T>` is a type for the property value defined in the `FormDataInput`.\n     *\n     * If the original value type is a `File` class, `Value<T>` converts it to an\n     * union type of `File` and {@link IFileProps} type which is a structured data\n     * for the URI file location in the React Native environment.\n     */\n    type Value<T> = T extends File ? T | IFileProps : T;\n    /**\n     * Properties of a file.\n     *\n     * In the React Native, this `IFileProps` structured data can replace the\n     * `File` class instance in the `FormData` request.\n     *\n     * Just put the {@link uri URI address} of the local file system with the\n     * file's {@link name} and {@link type}. It would be casted to the `File` class\n     * instance automatically in the `FormData` request.\n     *\n     * Note that, this `IFileProps` type works only in the React Native\n     * environment. If you are developing a Web or NodeJS application, you have to\n     * utilize the `File` class instance directly.\n     */\n    interface IFileProps {\n        /**\n         * URI address of the file.\n         *\n         * In the React Native, the URI address in the local file system can replace\n         * the `File` class instance. If\n         *\n         * @format uri\n         */\n        uri: string;\n        /** Name of the file. */\n        name: string;\n        /** Content type of the file. */\n        type: string;\n    }\n}\n",
    "node_modules/@nestia/fetcher/lib/HttpError.d.ts": "export { HttpError } from \"@typia/utils\";\n",
    "node_modules/@nestia/fetcher/lib/IConnection.d.ts": "import { IEncryptionPassword } from \"./IEncryptionPassword\";\nimport { IFetchEvent } from \"./IFetchEvent\";\n/**\n * Connection information.\n *\n * `IConnection` is an interface ttype who represents connection information of\n * the remote HTTP server. You can target the remote HTTP server by wring the\n * {@link IConnection.host} variable down. Also, you can configure special header\n * values by specializing the {@link IConnection.headers} variable.\n *\n * If the remote HTTP server encrypts or decrypts its body data through the\n * AES-128/256 algorithm, specify the {@link IConnection.encryption} with\n * {@link IEncryptionPassword} or {@link IEncryptionPassword.Closure} variable.\n *\n * @author Jenogho Nam - https://github.com/samchon\n * @author Seungjun We - https://github.com/SeungjunWe\n */\nexport interface IConnection<Headers extends object | undefined = object | undefined> {\n    /** Host address of the remote HTTP server. */\n    host: string;\n    /** Header values delivered to the remote HTTP server. */\n    headers?: Record<string, IConnection.HeaderValue> & IConnection.Headerify<Headers>;\n    /**\n     * Use simulation mode.\n     *\n     * If you configure this property to be `true`, your SDK library does not send\n     * any request to remote backend server, but just returns random data\n     * generated by `typia.random<T>()` function with request data validation.\n     *\n     * By the way, to utilize this simulation mode, SDK library must be generated\n     * with {@link INestiaConfig.simulate} option, too. Open `nestia.config.ts`\n     * file, and configure {@link INestiaConfig.simulate} property to be `true`.\n     * Them, newly generated SDK library would have a built-in mock-up data\n     * generator.\n     *\n     * @default false\n     */\n    simulate?: boolean;\n    /**\n     * Logger function.\n     *\n     * This function is called when the fetch event is completed.\n     *\n     * @param event Event information of the fetch event.\n     */\n    logger?: (event: IFetchEvent) => Promise<void>;\n    /**\n     * Encryption password of its closure function.\n     *\n     * Define it only when target backend server is encrypting body data through\n     * `@EncryptedRoute` or `@EncryptedBody` decorators of `@nestia/core` for\n     * security reason.\n     */\n    encryption?: IEncryptionPassword | IEncryptionPassword.Closure;\n    /** Additional options for the `fetch` function. */\n    options?: IConnection.IOptions;\n    /**\n     * Custom fetch function.\n     *\n     * If you want to use custom `fetch` function instead of built-in, assign your\n     * custom `fetch` function into this property.\n     *\n     * For reference, the `fetch` function has started to be supported since\n     * version 20 of NodeJS. Therefore, if you are using NodeJS version 19 or\n     * lower, you have to assign the `node-fetch` module into this property.\n     */\n    fetch?: typeof fetch;\n}\nexport declare namespace IConnection {\n    /**\n     * Additional options for the `fetch` function.\n     *\n     * Almost same with {@link RequestInit} type of the {@link fetch} function, but\n     * `body`, `headers` and `method` properties are omitted.\n     *\n     * The reason why defining duplicated definition of {@link RequestInit} is for\n     * legacy NodeJS environments, which does not have the {@link fetch} function\n     * type.\n     */\n    interface IOptions {\n        /**\n         * A string indicating how the request will interact with the browser's\n         * cache to set request's cache.\n         */\n        cache?: \"default\" | \"force-cache\" | \"no-cache\" | \"no-store\" | \"only-if-cached\" | \"reload\";\n        /**\n         * A string indicating whether credentials will be sent with the request\n         * always, never, or only when sent to a same-origin URL. Sets request's\n         * credentials.\n         */\n        credentials?: \"omit\" | \"same-origin\" | \"include\";\n        /**\n         * A cryptographic hash of the resource to be fetched by request.\n         *\n         * Sets request's integrity.\n         */\n        integrity?: string;\n        /** A boolean to set request's keepalive. */\n        keepalive?: boolean;\n        /**\n         * A string to indicate whether the request will use CORS, or will be\n         * restricted to same-origin URLs.\n         *\n         * Sets request's mode.\n         */\n        mode?: \"cors\" | \"navigate\" | \"no-cors\" | \"same-origin\";\n        /**\n         * A string indicating whether request follows redirects, results in an\n         * error upon encountering a redirect, or returns the redirect (in an opaque\n         * fashion).\n         *\n         * Sets request's redirect.\n         */\n        redirect?: \"error\" | \"follow\" | \"manual\";\n        /**\n         * A string whose value is a same-origin URL, \"about:client\", or the empty\n         * string, to set request's referrer.\n         */\n        referrer?: string;\n        /** A referrer policy to set request's referrerPolicy. */\n        referrerPolicy?: \"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\";\n        /** An AbortSignal to set request's signal. */\n        signal?: AbortSignal | null;\n    }\n    /**\n     * Type of allowed header values.\n     *\n     * Only atomic or array of atomic values are allowed.\n     */\n    type HeaderValue = string | boolean | number | bigint | string | Array<boolean> | Array<number> | Array<bigint> | Array<number> | Array<string>;\n    /**\n     * Type of headers\n     *\n     * `Headerify` removes every properties that are not allowed in the HTTP\n     * headers type.\n     *\n     * Below are list of prohibited in HTTP headers.\n     *\n     * 1. Value type one of {@link HeaderValue}\n     * 2. Key is \"set-cookie\", but value is not an Array type\n     * 3. Key is one of them, but value is Array type\n     *\n     * - \"age\"\n     * - \"authorization\"\n     * - \"content-length\"\n     * - \"content-type\"\n     * - \"etag\"\n     * - \"expires\"\n     * - \"from\"\n     * - \"host\"\n     * - \"if-modified-since\"\n     * - \"if-unmodified-since\"\n     * - \"last-modified\"\n     * - \"location\"\n     * - \"max-forwards\"\n     * - \"proxy-authorization\"\n     * - \"referer\"\n     * - \"retry-after\"\n     * - \"server\"\n     * - \"user-agent\"\n     */\n    type Headerify<T extends object | undefined> = {\n        [P in keyof T]?: T[P] extends HeaderValue | undefined ? P extends string ? Lowercase<P> extends \"set-cookie\" ? T[P] extends Array<HeaderValue> ? T[P] | undefined : never : Lowercase<P> extends \"age\" | \"authorization\" | \"content-length\" | \"content-type\" | \"etag\" | \"expires\" | \"from\" | \"host\" | \"if-modified-since\" | \"if-unmodified-since\" | \"last-modified\" | \"location\" | \"max-forwards\" | \"proxy-authorization\" | \"referer\" | \"retry-after\" | \"server\" | \"user-agent\" ? T[P] extends Array<HeaderValue> ? never : T[P] | undefined : T[P] | undefined : never : never;\n    };\n}\n",
    "node_modules/@nestia/fetcher/lib/IEncryptionPassword.d.ts": "import { IConnection } from \"./IConnection\";\n/**\n * Encryption password.\n *\n * `IEncryptionPassword` is a type of interface who represents encryption\n * password used by the {@link Fetcher} with AES-128/256 algorithm. If your\n * encryption password is not fixed but changes according to the input content,\n * you can utilize the {@link IEncryptionPassword.Closure} function type.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IEncryptionPassword {\n    /** Secret key. */\n    key: string;\n    /** Initialization Vector. */\n    iv: string;\n}\nexport declare namespace IEncryptionPassword {\n    /**\n     * Type of a closure function returning the {@link IEncryptionPassword} object.\n     *\n     * `IEncryptionPassword.Closure` is a type of closure function who are\n     * returning the {@link IEncryptionPassword} object. It would be used when your\n     * encryption password be changed according to the input content.\n     */\n    interface Closure {\n        /**\n         * Encryption password getter.\n         *\n         * @param props Properties for predication\n         * @returns Encryption password\n         */\n        (props: IProps): IEncryptionPassword;\n    }\n    /** Properties for the closure. */\n    interface IProps {\n        headers: Record<string, IConnection.HeaderValue | undefined>;\n        body: string;\n        direction: \"encode\" | \"decode\";\n    }\n}\n",
    "node_modules/@nestia/fetcher/lib/IFetchEvent.d.ts": "import { IFetchRoute } from \"./IFetchRoute\";\nexport interface IFetchEvent {\n    route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">;\n    path: string;\n    status: number | null;\n    input: any;\n    output: any;\n    started_at: Date;\n    respond_at: Date | null;\n    completed_at: Date;\n}\n",
    "node_modules/@nestia/fetcher/lib/IFetchRoute.d.ts": "/**\n * Properties of remote API route.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IFetchRoute<Method extends \"HEAD\" | \"GET\" | \"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\"> {\n    /** Method of the HTTP request. */\n    method: Method;\n    /** Path of the HTTP request. */\n    path: string;\n    /**\n     * Path template.\n     *\n     * Filled since 3.2.2 version.\n     */\n    template?: string;\n    /** Request body data info. */\n    request: Method extends \"DELETE\" | \"POST\" | \"PUT\" | \"PATCH\" ? IFetchRoute.IBody | null : null;\n    /** Response body data info. */\n    response: Method extends \"HEAD\" ? null : IFetchRoute.IBody;\n    /** When special status code being used. */\n    status: number | null;\n    /**\n     * Parser of the query string.\n     *\n     * If content type of response body is `application/x-www-form-urlencoded`,\n     * then this `parseQuery` function would be called.\n     *\n     * If you've forgotten to configuring this `parseQuery` property about the\n     * `application/x-www-form-urlencoded` typed response body data, then only the\n     * `URLSearchParams` typed instance would be returned instead.\n     */\n    parseQuery?(input: URLSearchParams): any;\n}\nexport declare namespace IFetchRoute {\n    /**\n     * Metadata of body.\n     *\n     * Describes how content-type being used in body, and whether encrypted or\n     * not.\n     */\n    interface IBody {\n        type: \"application/json\" | \"application/x-www-form-urlencoded\" | \"multipart/form-data\" | \"text/plain\";\n        encrypted?: boolean;\n    }\n}\n",
    "node_modules/@nestia/fetcher/lib/IPropagation.d.ts": "/**\n * Propagation type.\n *\n * `IPropagation` is a type gathering all possible status codes and their body\n * data types as a discriminated union type. You can specify the status code and\n * its body data type just by using conditional statement like below.\n *\n * ```typescript\n * type Output = IPropagation<{\n *    200: ISeller.IAuthorized;\n *    400: TypeGuardError.IProps;\n * >};\n *\n * const output: Output = await sdk.sellers.authenticate.join(input);\n * if (output.success) {\n *     // automatically casted to \"ISeller.IAuthorized\" type\n *     const authorized: ISeller.IAuthorized = output.data;\n * } else if (output.status === 400) {\n *     // automatically casted to \"TypeGuardError.IProps\" type\n *     const error: TypeGuardError.IProps = output.data;\n * } else {\n *     // unknown type when out of pre-defined status codes\n *     const result: unknown = output.data;\n * }\n * ```\n *\n * For reference, this `IPropagation` type is utilized by SDK library generated\n * by `@nestia/sdk`, when you've configured {@link INestiaConfig.propagate} to be\n * `true`. In that case, SDK functions generated by `@nestia/sdk` no more\n * returns response DTO typed data directly, but returns this `IPropagation`\n * typed object instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template StatusMap Map of status code and its body data type.\n * @template Success Default success status code.\n */\nexport type IPropagation<StatusMap extends {\n    [P in IPropagation.Status]?: any;\n}, Success extends number = 200 | 201> = {\n    [P in keyof StatusMap]: IPropagation.IBranch<P extends Success ? true : false, P, StatusMap[P]>;\n}[keyof StatusMap] | IPropagation.IBranch<false, unknown, unknown>;\nexport declare namespace IPropagation {\n    /**\n     * Type of configurable status codes.\n     *\n     * The special characters like `2XX`, `3XX`, `4XX`, `5XX` are meaning the\n     * range of status codes. If `5XX` is specified, it means the status code is\n     * in the range of `500` to `599`.\n     */\n    export type Status = number | \"2XX\" | \"3XX\" | \"4XX\" | \"5XX\";\n    /**\n     * Branch type of propagation.\n     *\n     * `IPropagation.IBranch` is a branch type composing `IPropagation` type,\n     * which is gathering all possible status codes and their body data types as a\n     * union type.\n     */\n    export interface IBranch<Success extends boolean, StatusValue, BodyData> {\n        success: Success;\n        status: StatusValue extends \"2XX\" | \"3XX\" | \"4XX\" | \"5XX\" ? StatusRange<StatusValue> : StatusValue extends number ? StatusValue : never;\n        data: BodyData;\n        headers: Record<string, string | string[]>;\n    }\n    /** Range of status codes by the first digit. */\n    export type StatusRange<T extends \"2XX\" | \"3XX\" | \"4XX\" | \"5XX\"> = T extends 0 ? IntRange<200, 299> : T extends 3 ? IntRange<300, 399> : T extends 4 ? IntRange<400, 499> : IntRange<500, 599>;\n    type IntRange<F extends number, T extends number> = Exclude<Enumerate<T>, Enumerate<F>>;\n    type Enumerate<N extends number, Acc extends number[] = []> = Acc[\"length\"] extends N ? Acc[number] : Enumerate<N, [...Acc, Acc[\"length\"]]>;\n    export {};\n}\n",
    "node_modules/@nestia/fetcher/lib/NestiaSimulator.d.ts": "export declare namespace NestiaSimulator {\n    interface IProps {\n        host: string;\n        path: string;\n        method: \"GET\" | \"POST\" | \"PATCH\" | \"PUT\" | \"DELETE\";\n        contentType: string;\n    }\n    const assert: (props: IProps) => {\n        param: (name: string) => <T>(task: () => T) => void;\n        query: <T>(task: () => T) => void;\n        body: <T>(task: () => T) => void;\n    };\n}\n",
    "node_modules/@nestia/fetcher/lib/PlainFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk`.\n *\n * `PlainFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP sever API. In other words, this is a collection of dedicated `fetch()`\n * functions for `@nestia/sdk`.\n *\n * For reference, `PlainFetcher` class does not encrypt or decrypt the body data\n * at all. It just delivers plain data without any post processing. If you've\n * defined a controller method through `@EncryptedRoute` or `@EncryptedBody`\n * decorator, then {@liink EncryptedFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace PlainFetcher {\n    /**\n     * Fetch function only for `HEAD` method.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Nothing because of `HEAD` method\n     */\n    function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n    /**\n     * Fetch function only for `GET` method.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Response body data from the remote API\n     */\n    function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n    /**\n     * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n     *\n     * @param connection Connection information for the remote HTTP server\n     * @param route Route information about the target API\n     * @returns Response body data from the remote API\n     */\n    function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n    function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n    function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
    "node_modules/@nestia/fetcher/lib/index.d.ts": "export * from \"./AesPkcs5\";\nexport * from \"./EncryptedFetcher\";\nexport * from \"./FormDataInput\";\nexport * from \"./HttpError\";\nexport * from \"./IConnection\";\nexport * from \"./IEncryptionPassword\";\nexport * from \"./IFetchEvent\";\nexport * from \"./IFetchRoute\";\nexport * from \"./IPropagation\";\nexport * from \"./NestiaSimulator\";\nexport * from \"./PlainFetcher\";\n",
    "node_modules/@nestia/fetcher/lib/internal/FetcherBase.d.ts": "export {};\n",
    "node_modules/@nestia/fetcher/package.json": "{\n  \"name\": \"@nestia/fetcher\",\n  \"version\": \"11.0.1\",\n  \"description\": \"Fetcher library of Nestia SDK\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/nestia\"\n  },\n  \"keywords\": [\n    \"nestia\",\n    \"fetcher\",\n    \"sdk\"\n  ],\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/nestia/issues\"\n  },\n  \"homepage\": \"https://nestia.io\",\n  \"dependencies\": {\n    \"@typia/interface\": \"^12.0.0\",\n    \"@typia/utils\": \"^12.0.0\"\n  },\n  \"devDependencies\": {\n    \"@types/node\": \"^25.3.3\",\n    \"rimraf\": \"^6.1.3\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"files\": [\n    \"README.md\",\n    \"LICENSE\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/@standard-schema/spec/dist/index.d.ts": "/** The Standard Schema interface. */\ninterface StandardSchemaV1<Input = unknown, Output = Input> {\n    /** The Standard Schema properties. */\n    readonly \"~standard\": StandardSchemaV1.Props<Input, Output>;\n}\ndeclare namespace StandardSchemaV1 {\n    /** The Standard Schema properties interface. */\n    export interface Props<Input = unknown, Output = Input> {\n        /** The version number of the standard. */\n        readonly version: 1;\n        /** The vendor name of the schema library. */\n        readonly vendor: string;\n        /** Validates unknown input values. */\n        readonly validate: (value: unknown) => Result<Output> | Promise<Result<Output>>;\n        /** Inferred types associated with the schema. */\n        readonly types?: Types<Input, Output> | undefined;\n    }\n    /** The result interface of the validate function. */\n    export type Result<Output> = SuccessResult<Output> | FailureResult;\n    /** The result interface if validation succeeds. */\n    export interface SuccessResult<Output> {\n        /** The typed output value. */\n        readonly value: Output;\n        /** The non-existent issues. */\n        readonly issues?: undefined;\n    }\n    /** The result interface if validation fails. */\n    export interface FailureResult {\n        /** The issues of failed validation. */\n        readonly issues: ReadonlyArray<Issue>;\n    }\n    /** The issue interface of the failure output. */\n    export interface Issue {\n        /** The error message of the issue. */\n        readonly message: string;\n        /** The path of the issue, if any. */\n        readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;\n    }\n    /** The path segment interface of the issue. */\n    export interface PathSegment {\n        /** The key representing a path segment. */\n        readonly key: PropertyKey;\n    }\n    /** The Standard Schema types interface. */\n    export interface Types<Input = unknown, Output = Input> {\n        /** The input type of the schema. */\n        readonly input: Input;\n        /** The output type of the schema. */\n        readonly output: Output;\n    }\n    /** Infers the input type of a Standard Schema. */\n    export type InferInput<Schema extends StandardSchemaV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"input\"];\n    /** Infers the output type of a Standard Schema. */\n    export type InferOutput<Schema extends StandardSchemaV1> = NonNullable<Schema[\"~standard\"][\"types\"]>[\"output\"];\n    export {  };\n}\n\nexport { StandardSchemaV1 };\n",
    "node_modules/@standard-schema/spec/package.json": "{\n  \"name\": \"@standard-schema/spec\",\n  \"description\": \"A standard interface for TypeScript schema validation libraries\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"author\": \"Colin McDonnell\",\n  \"homepage\": \"https://standardschema.dev\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/standard-schema/standard-schema\"\n  },\n  \"keywords\": [\n    \"typescript\",\n    \"schema\",\n    \"validation\",\n    \"standard\",\n    \"interface\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"./dist/index.js\",\n  \"types\": \"./dist/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"devDependencies\": {\n    \"tsup\": \"^8.3.0\",\n    \"typescript\": \"^5.6.2\"\n  },\n  \"scripts\": {\n    \"lint\": \"pnpm biome lint ./src\",\n    \"format\": \"pnpm biome format --write ./src\",\n    \"check\": \"pnpm biome check ./src\",\n    \"build\": \"tsup\"\n  }\n}",
    "node_modules/@types/node/assert/strict.d.ts": "declare module \"assert/strict\" {\n    import { strict } from \"node:assert\";\n    export = strict;\n}\ndeclare module \"node:assert/strict\" {\n    import { strict } from \"node:assert\";\n    export = strict;\n}\n",
    "node_modules/@types/node/assert.d.ts": "/**\n * The `node:assert` module provides a set of assertion functions for verifying\n * invariants.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/assert.js)\n */\ndeclare module \"assert\" {\n    /**\n     * An alias of {@link ok}.\n     * @since v0.5.9\n     * @param value The input that is checked for being truthy.\n     */\n    function assert(value: unknown, message?: string | Error): asserts value;\n    namespace assert {\n        /**\n         * Indicates the failure of an assertion. All errors thrown by the `node:assert` module will be instances of the `AssertionError` class.\n         */\n        class AssertionError extends Error {\n            /**\n             * Set to the `actual` argument for methods such as {@link assert.strictEqual()}.\n             */\n            actual: unknown;\n            /**\n             * Set to the `expected` argument for methods such as {@link assert.strictEqual()}.\n             */\n            expected: unknown;\n            /**\n             * Set to the passed in operator value.\n             */\n            operator: string;\n            /**\n             * Indicates if the message was auto-generated (`true`) or not.\n             */\n            generatedMessage: boolean;\n            /**\n             * Value is always `ERR_ASSERTION` to show that the error is an assertion error.\n             */\n            code: \"ERR_ASSERTION\";\n            constructor(options?: {\n                /** If provided, the error message is set to this value. */\n                message?: string | undefined;\n                /** The `actual` property on the error instance. */\n                actual?: unknown | undefined;\n                /** The `expected` property on the error instance. */\n                expected?: unknown | undefined;\n                /** The `operator` property on the error instance. */\n                operator?: string | undefined;\n                /** If provided, the generated stack trace omits frames before this function. */\n                // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type\n                stackStartFn?: Function | undefined;\n            });\n        }\n        /**\n         * This feature is deprecated and will be removed in a future version.\n         * Please consider using alternatives such as the `mock` helper function.\n         * @since v14.2.0, v12.19.0\n         * @deprecated Deprecated\n         */\n        class CallTracker {\n            /**\n             * The wrapper function is expected to be called exactly `exact` times. If the\n             * function has not been called exactly `exact` times when `tracker.verify()` is called, then `tracker.verify()` will throw an\n             * error.\n             *\n             * ```js\n             * import assert from 'node:assert';\n             *\n             * // Creates call tracker.\n             * const tracker = new assert.CallTracker();\n             *\n             * function func() {}\n             *\n             * // Returns a function that wraps func() that must be called exact times\n             * // before tracker.verify().\n             * const callsfunc = tracker.calls(func);\n             * ```\n             * @since v14.2.0, v12.19.0\n             * @param [fn='A no-op function']\n             * @param [exact=1]\n             * @return A function that wraps `fn`.\n             */\n            calls(exact?: number): () => void;\n            calls<Func extends (...args: any[]) => any>(fn?: Func, exact?: number): Func;\n            /**\n             * Example:\n             *\n             * ```js\n             * import assert from 'node:assert';\n             *\n             * const tracker = new assert.CallTracker();\n             *\n             * function func() {}\n             * const callsfunc = tracker.calls(func);\n             * callsfunc(1, 2, 3);\n             *\n             * assert.deepStrictEqual(tracker.getCalls(callsfunc),\n             *                        [{ thisArg: undefined, arguments: [1, 2, 3] }]);\n             * ```\n             * @since v18.8.0, v16.18.0\n             * @return An array with all the calls to a tracked function.\n             */\n            getCalls(fn: Function): CallTrackerCall[];\n            /**\n             * The arrays contains information about the expected and actual number of calls of\n             * the functions that have not been called the expected number of times.\n             *\n             * ```js\n             * import assert from 'node:assert';\n             *\n             * // Creates call tracker.\n             * const tracker = new assert.CallTracker();\n             *\n             * function func() {}\n             *\n             * // Returns a function that wraps func() that must be called exact times\n             * // before tracker.verify().\n             * const callsfunc = tracker.calls(func, 2);\n             *\n             * // Returns an array containing information on callsfunc()\n             * console.log(tracker.report());\n             * // [\n             * //  {\n             * //    message: 'Expected the func function to be executed 2 time(s) but was\n             * //    executed 0 time(s).',\n             * //    actual: 0,\n             * //    expected: 2,\n             * //    operator: 'func',\n             * //    stack: stack trace\n             * //  }\n             * // ]\n             * ```\n             * @since v14.2.0, v12.19.0\n             * @return An array of objects containing information about the wrapper functions returned by {@link tracker.calls()}.\n             */\n            report(): CallTrackerReportInformation[];\n            /**\n             * Reset calls of the call tracker. If a tracked function is passed as an argument, the calls will be reset for it.\n             * If no arguments are passed, all tracked functions will be reset.\n             *\n             * ```js\n             * import assert from 'node:assert';\n             *\n             * const tracker = new assert.CallTracker();\n             *\n             * function func() {}\n             * const callsfunc = tracker.calls(func);\n             *\n             * callsfunc();\n             * // Tracker was called once\n             * assert.strictEqual(tracker.getCalls(callsfunc).length, 1);\n             *\n             * tracker.reset(callsfunc);\n             * assert.strictEqual(tracker.getCalls(callsfunc).length, 0);\n             * ```\n             * @since v18.8.0, v16.18.0\n             * @param fn a tracked function to reset.\n             */\n            reset(fn?: Function): void;\n            /**\n             * Iterates through the list of functions passed to {@link tracker.calls()} and will throw an error for functions that\n             * have not been called the expected number of times.\n             *\n             * ```js\n             * import assert from 'node:assert';\n             *\n             * // Creates call tracker.\n             * const tracker = new assert.CallTracker();\n             *\n             * function func() {}\n             *\n             * // Returns a function that wraps func() that must be called exact times\n             * // before tracker.verify().\n             * const callsfunc = tracker.calls(func, 2);\n             *\n             * callsfunc();\n             *\n             * // Will throw an error since callsfunc() was only called once.\n             * tracker.verify();\n             * ```\n             * @since v14.2.0, v12.19.0\n             */\n            verify(): void;\n        }\n        interface CallTrackerCall {\n            thisArg: object;\n            arguments: unknown[];\n        }\n        interface CallTrackerReportInformation {\n            message: string;\n            /** The actual number of times the function was called. */\n            actual: number;\n            /** The number of times the function was expected to be called. */\n            expected: number;\n            /** The name of the function that is wrapped. */\n            operator: string;\n            /** A stack trace of the function. */\n            stack: object;\n        }\n        type AssertPredicate = RegExp | (new() => object) | ((thrown: unknown) => boolean) | object | Error;\n        /**\n         * Throws an `AssertionError` with the provided error message or a default\n         * error message. If the `message` parameter is an instance of an `Error` then\n         * it will be thrown instead of the `AssertionError`.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.fail();\n         * // AssertionError [ERR_ASSERTION]: Failed\n         *\n         * assert.fail('boom');\n         * // AssertionError [ERR_ASSERTION]: boom\n         *\n         * assert.fail(new TypeError('need array'));\n         * // TypeError: need array\n         * ```\n         *\n         * Using `assert.fail()` with more than two arguments is possible but deprecated.\n         * See below for further details.\n         * @since v0.1.21\n         * @param [message='Failed']\n         */\n        function fail(message?: string | Error): never;\n        /** @deprecated since v10.0.0 - use fail([message]) or other assert functions instead. */\n        function fail(\n            actual: unknown,\n            expected: unknown,\n            message?: string | Error,\n            operator?: string,\n            // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type\n            stackStartFn?: Function,\n        ): never;\n        /**\n         * Tests if `value` is truthy. It is equivalent to `assert.equal(!!value, true, message)`.\n         *\n         * If `value` is not truthy, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is `undefined`, a default\n         * error message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown instead of the `AssertionError`.\n         * If no arguments are passed in at all `message` will be set to the string:`` 'No value argument passed to `assert.ok()`' ``.\n         *\n         * Be aware that in the `repl` the error message will be different to the one\n         * thrown in a file! See below for further details.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.ok(true);\n         * // OK\n         * assert.ok(1);\n         * // OK\n         *\n         * assert.ok();\n         * // AssertionError: No value argument passed to `assert.ok()`\n         *\n         * assert.ok(false, 'it\\'s false');\n         * // AssertionError: it's false\n         *\n         * // In the repl:\n         * assert.ok(typeof 123 === 'string');\n         * // AssertionError: false == true\n         *\n         * // In a file (e.g. test.js):\n         * assert.ok(typeof 123 === 'string');\n         * // AssertionError: The expression evaluated to a falsy value:\n         * //\n         * //   assert.ok(typeof 123 === 'string')\n         *\n         * assert.ok(false);\n         * // AssertionError: The expression evaluated to a falsy value:\n         * //\n         * //   assert.ok(false)\n         *\n         * assert.ok(0);\n         * // AssertionError: The expression evaluated to a falsy value:\n         * //\n         * //   assert.ok(0)\n         * ```\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * // Using `assert()` works the same:\n         * assert(0);\n         * // AssertionError: The expression evaluated to a falsy value:\n         * //\n         * //   assert(0)\n         * ```\n         * @since v0.1.21\n         */\n        function ok(value: unknown, message?: string | Error): asserts value;\n        /**\n         * **Strict assertion mode**\n         *\n         * An alias of {@link strictEqual}.\n         *\n         * **Legacy assertion mode**\n         *\n         * > Stability: 3 - Legacy: Use {@link strictEqual} instead.\n         *\n         * Tests shallow, coercive equality between the `actual` and `expected` parameters\n         * using the [`==` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality). `NaN` is specially handled\n         * and treated as being identical if both sides are `NaN`.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         *\n         * assert.equal(1, 1);\n         * // OK, 1 == 1\n         * assert.equal(1, '1');\n         * // OK, 1 == '1'\n         * assert.equal(NaN, NaN);\n         * // OK\n         *\n         * assert.equal(1, 2);\n         * // AssertionError: 1 == 2\n         * assert.equal({ a: { b: 1 } }, { a: { b: 1 } });\n         * // AssertionError: { a: { b: 1 } } == { a: { b: 1 } }\n         * ```\n         *\n         * If the values are not equal, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is undefined, a default\n         * error message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown instead of the `AssertionError`.\n         * @since v0.1.21\n         */\n        function equal(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * **Strict assertion mode**\n         *\n         * An alias of {@link notStrictEqual}.\n         *\n         * **Legacy assertion mode**\n         *\n         * > Stability: 3 - Legacy: Use {@link notStrictEqual} instead.\n         *\n         * Tests shallow, coercive inequality with the [`!=` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality). `NaN` is\n         * specially handled and treated as being identical if both sides are `NaN`.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         *\n         * assert.notEqual(1, 2);\n         * // OK\n         *\n         * assert.notEqual(1, 1);\n         * // AssertionError: 1 != 1\n         *\n         * assert.notEqual(1, '1');\n         * // AssertionError: 1 != '1'\n         * ```\n         *\n         * If the values are equal, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is undefined, a default error\n         * message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown instead of the `AssertionError`.\n         * @since v0.1.21\n         */\n        function notEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * **Strict assertion mode**\n         *\n         * An alias of {@link deepStrictEqual}.\n         *\n         * **Legacy assertion mode**\n         *\n         * > Stability: 3 - Legacy: Use {@link deepStrictEqual} instead.\n         *\n         * Tests for deep equality between the `actual` and `expected` parameters. Consider\n         * using {@link deepStrictEqual} instead. {@link deepEqual} can have\n         * surprising results.\n         *\n         * _Deep equality_ means that the enumerable \"own\" properties of child objects\n         * are also recursively evaluated by the following rules.\n         * @since v0.1.21\n         */\n        function deepEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * **Strict assertion mode**\n         *\n         * An alias of {@link notDeepStrictEqual}.\n         *\n         * **Legacy assertion mode**\n         *\n         * > Stability: 3 - Legacy: Use {@link notDeepStrictEqual} instead.\n         *\n         * Tests for any deep inequality. Opposite of {@link deepEqual}.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         *\n         * const obj1 = {\n         *   a: {\n         *     b: 1,\n         *   },\n         * };\n         * const obj2 = {\n         *   a: {\n         *     b: 2,\n         *   },\n         * };\n         * const obj3 = {\n         *   a: {\n         *     b: 1,\n         *   },\n         * };\n         * const obj4 = { __proto__: obj1 };\n         *\n         * assert.notDeepEqual(obj1, obj1);\n         * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } }\n         *\n         * assert.notDeepEqual(obj1, obj2);\n         * // OK\n         *\n         * assert.notDeepEqual(obj1, obj3);\n         * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } }\n         *\n         * assert.notDeepEqual(obj1, obj4);\n         * // OK\n         * ```\n         *\n         * If the values are deeply equal, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is undefined, a default\n         * error message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown\n         * instead of the `AssertionError`.\n         * @since v0.1.21\n         */\n        function notDeepEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * Tests strict equality between the `actual` and `expected` parameters as\n         * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is).\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.strictEqual(1, 2);\n         * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal:\n         * //\n         * // 1 !== 2\n         *\n         * assert.strictEqual(1, 1);\n         * // OK\n         *\n         * assert.strictEqual('Hello foobar', 'Hello World!');\n         * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal:\n         * // + actual - expected\n         * //\n         * // + 'Hello foobar'\n         * // - 'Hello World!'\n         * //          ^\n         *\n         * const apples = 1;\n         * const oranges = 2;\n         * assert.strictEqual(apples, oranges, `apples ${apples} !== oranges ${oranges}`);\n         * // AssertionError [ERR_ASSERTION]: apples 1 !== oranges 2\n         *\n         * assert.strictEqual(1, '1', new TypeError('Inputs are not identical'));\n         * // TypeError: Inputs are not identical\n         * ```\n         *\n         * If the values are not strictly equal, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is undefined, a\n         * default error message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown\n         * instead of the `AssertionError`.\n         * @since v0.1.21\n         */\n        function strictEqual<T>(actual: unknown, expected: T, message?: string | Error): asserts actual is T;\n        /**\n         * Tests strict inequality between the `actual` and `expected` parameters as\n         * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is).\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.notStrictEqual(1, 2);\n         * // OK\n         *\n         * assert.notStrictEqual(1, 1);\n         * // AssertionError [ERR_ASSERTION]: Expected \"actual\" to be strictly unequal to:\n         * //\n         * // 1\n         *\n         * assert.notStrictEqual(1, '1');\n         * // OK\n         * ```\n         *\n         * If the values are strictly equal, an `AssertionError` is thrown with a `message` property set equal to the value of the `message` parameter. If the `message` parameter is undefined, a\n         * default error message is assigned. If the `message` parameter is an instance of an `Error` then it will be thrown\n         * instead of the `AssertionError`.\n         * @since v0.1.21\n         */\n        function notStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * Tests for deep equality between the `actual` and `expected` parameters.\n         * \"Deep\" equality means that the enumerable \"own\" properties of child objects\n         * are recursively evaluated also by the following rules.\n         * @since v1.2.0\n         */\n        function deepStrictEqual<T>(actual: unknown, expected: T, message?: string | Error): asserts actual is T;\n        /**\n         * Tests for deep strict inequality. Opposite of {@link deepStrictEqual}.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.notDeepStrictEqual({ a: 1 }, { a: '1' });\n         * // OK\n         * ```\n         *\n         * If the values are deeply and strictly equal, an `AssertionError` is thrown\n         * with a `message` property set equal to the value of the `message` parameter. If\n         * the `message` parameter is undefined, a default error message is assigned. If\n         * the `message` parameter is an instance of an `Error` then it will be thrown\n         * instead of the `AssertionError`.\n         * @since v1.2.0\n         */\n        function notDeepStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * Expects the function `fn` to throw an error.\n         *\n         * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes),\n         * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function,\n         * a validation object where each property will be tested for strict deep equality,\n         * or an instance of error where each property will be tested for strict deep\n         * equality including the non-enumerable `message` and `name` properties. When\n         * using an object, it is also possible to use a regular expression, when\n         * validating against a string property. See below for examples.\n         *\n         * If specified, `message` will be appended to the message provided by the `AssertionError` if the `fn` call fails to throw or in case the error validation\n         * fails.\n         *\n         * Custom validation object/error instance:\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * const err = new TypeError('Wrong value');\n         * err.code = 404;\n         * err.foo = 'bar';\n         * err.info = {\n         *   nested: true,\n         *   baz: 'text',\n         * };\n         * err.reg = /abc/i;\n         *\n         * assert.throws(\n         *   () => {\n         *     throw err;\n         *   },\n         *   {\n         *     name: 'TypeError',\n         *     message: 'Wrong value',\n         *     info: {\n         *       nested: true,\n         *       baz: 'text',\n         *     },\n         *     // Only properties on the validation object will be tested for.\n         *     // Using nested objects requires all properties to be present. Otherwise\n         *     // the validation is going to fail.\n         *   },\n         * );\n         *\n         * // Using regular expressions to validate error properties:\n         * assert.throws(\n         *   () => {\n         *     throw err;\n         *   },\n         *   {\n         *     // The `name` and `message` properties are strings and using regular\n         *     // expressions on those will match against the string. If they fail, an\n         *     // error is thrown.\n         *     name: /^TypeError$/,\n         *     message: /Wrong/,\n         *     foo: 'bar',\n         *     info: {\n         *       nested: true,\n         *       // It is not possible to use regular expressions for nested properties!\n         *       baz: 'text',\n         *     },\n         *     // The `reg` property contains a regular expression and only if the\n         *     // validation object contains an identical regular expression, it is going\n         *     // to pass.\n         *     reg: /abc/i,\n         *   },\n         * );\n         *\n         * // Fails due to the different `message` and `name` properties:\n         * assert.throws(\n         *   () => {\n         *     const otherErr = new Error('Not found');\n         *     // Copy all enumerable properties from `err` to `otherErr`.\n         *     for (const [key, value] of Object.entries(err)) {\n         *       otherErr[key] = value;\n         *     }\n         *     throw otherErr;\n         *   },\n         *   // The error's `message` and `name` properties will also be checked when using\n         *   // an error as validation object.\n         *   err,\n         * );\n         * ```\n         *\n         * Validate instanceof using constructor:\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.throws(\n         *   () => {\n         *     throw new Error('Wrong value');\n         *   },\n         *   Error,\n         * );\n         * ```\n         *\n         * Validate error message using [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions):\n         *\n         * Using a regular expression runs `.toString` on the error object, and will\n         * therefore also include the error name.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.throws(\n         *   () => {\n         *     throw new Error('Wrong value');\n         *   },\n         *   /^Error: Wrong value$/,\n         * );\n         * ```\n         *\n         * Custom error validation:\n         *\n         * The function must return `true` to indicate all internal validations passed.\n         * It will otherwise fail with an `AssertionError`.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.throws(\n         *   () => {\n         *     throw new Error('Wrong value');\n         *   },\n         *   (err) => {\n         *     assert(err instanceof Error);\n         *     assert(/value/.test(err));\n         *     // Avoid returning anything from validation functions besides `true`.\n         *     // Otherwise, it's not clear what part of the validation failed. Instead,\n         *     // throw an error about the specific validation that failed (as done in this\n         *     // example) and add as much helpful debugging information to that error as\n         *     // possible.\n         *     return true;\n         *   },\n         *   'unexpected error',\n         * );\n         * ```\n         *\n         * `error` cannot be a string. If a string is provided as the second\n         * argument, then `error` is assumed to be omitted and the string will be used for `message` instead. This can lead to easy-to-miss mistakes. Using the same\n         * message as the thrown error message is going to result in an `ERR_AMBIGUOUS_ARGUMENT` error. Please read the example below carefully if using\n         * a string as the second argument gets considered:\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * function throwingFirst() {\n         *   throw new Error('First');\n         * }\n         *\n         * function throwingSecond() {\n         *   throw new Error('Second');\n         * }\n         *\n         * function notThrowing() {}\n         *\n         * // The second argument is a string and the input function threw an Error.\n         * // The first case will not throw as it does not match for the error message\n         * // thrown by the input function!\n         * assert.throws(throwingFirst, 'Second');\n         * // In the next example the message has no benefit over the message from the\n         * // error and since it is not clear if the user intended to actually match\n         * // against the error message, Node.js throws an `ERR_AMBIGUOUS_ARGUMENT` error.\n         * assert.throws(throwingSecond, 'Second');\n         * // TypeError [ERR_AMBIGUOUS_ARGUMENT]\n         *\n         * // The string is only used (as message) in case the function does not throw:\n         * assert.throws(notThrowing, 'Second');\n         * // AssertionError [ERR_ASSERTION]: Missing expected exception: Second\n         *\n         * // If it was intended to match for the error message do this instead:\n         * // It does not throw because the error messages match.\n         * assert.throws(throwingSecond, /Second$/);\n         *\n         * // If the error message does not match, an AssertionError is thrown.\n         * assert.throws(throwingFirst, /Second$/);\n         * // AssertionError [ERR_ASSERTION]\n         * ```\n         *\n         * Due to the confusing error-prone notation, avoid a string as the second\n         * argument.\n         * @since v0.1.21\n         */\n        function throws(block: () => unknown, message?: string | Error): void;\n        function throws(block: () => unknown, error: AssertPredicate, message?: string | Error): void;\n        /**\n         * Asserts that the function `fn` does not throw an error.\n         *\n         * Using `assert.doesNotThrow()` is actually not useful because there\n         * is no benefit in catching an error and then rethrowing it. Instead, consider\n         * adding a comment next to the specific code path that should not throw and keep\n         * error messages as expressive as possible.\n         *\n         * When `assert.doesNotThrow()` is called, it will immediately call the `fn` function.\n         *\n         * If an error is thrown and it is the same type as that specified by the `error` parameter, then an `AssertionError` is thrown. If the error is of a\n         * different type, or if the `error` parameter is undefined, the error is\n         * propagated back to the caller.\n         *\n         * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes),\n         * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), or a validation\n         * function. See {@link throws} for more details.\n         *\n         * The following, for instance, will throw the `TypeError` because there is no\n         * matching error type in the assertion:\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.doesNotThrow(\n         *   () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   SyntaxError,\n         * );\n         * ```\n         *\n         * However, the following will result in an `AssertionError` with the message\n         * 'Got unwanted exception...':\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.doesNotThrow(\n         *   () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   TypeError,\n         * );\n         * ```\n         *\n         * If an `AssertionError` is thrown and a value is provided for the `message` parameter, the value of `message` will be appended to the `AssertionError` message:\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.doesNotThrow(\n         *   () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   /Wrong value/,\n         *   'Whoops',\n         * );\n         * // Throws: AssertionError: Got unwanted exception: Whoops\n         * ```\n         * @since v0.1.21\n         */\n        function doesNotThrow(block: () => unknown, message?: string | Error): void;\n        function doesNotThrow(block: () => unknown, error: AssertPredicate, message?: string | Error): void;\n        /**\n         * Throws `value` if `value` is not `undefined` or `null`. This is useful when\n         * testing the `error` argument in callbacks. The stack trace contains all frames\n         * from the error passed to `ifError()` including the potential new frames for `ifError()` itself.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.ifError(null);\n         * // OK\n         * assert.ifError(0);\n         * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 0\n         * assert.ifError('error');\n         * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 'error'\n         * assert.ifError(new Error());\n         * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: Error\n         *\n         * // Create some random error frames.\n         * let err;\n         * (function errorFrame() {\n         *   err = new Error('test error');\n         * })();\n         *\n         * (function ifErrorFrame() {\n         *   assert.ifError(err);\n         * })();\n         * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: test error\n         * //     at ifErrorFrame\n         * //     at errorFrame\n         * ```\n         * @since v0.1.97\n         */\n        function ifError(value: unknown): asserts value is null | undefined;\n        /**\n         * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately\n         * calls the function and awaits the returned promise to complete. It will then\n         * check that the promise is rejected.\n         *\n         * If `asyncFn` is a function and it throws an error synchronously, `assert.rejects()` will return a rejected `Promise` with that error. If the\n         * function does not return a promise, `assert.rejects()` will return a rejected `Promise` with an [ERR_INVALID_RETURN_VALUE](https://nodejs.org/docs/latest-v22.x/api/errors.html#err_invalid_return_value)\n         * error. In both cases the error handler is skipped.\n         *\n         * Besides the async nature to await the completion behaves identically to {@link throws}.\n         *\n         * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes),\n         * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function,\n         * an object where each property will be tested for, or an instance of error where\n         * each property will be tested for including the non-enumerable `message` and `name` properties.\n         *\n         * If specified, `message` will be the message provided by the `{@link AssertionError}` if the `asyncFn` fails to reject.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * await assert.rejects(\n         *   async () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   {\n         *     name: 'TypeError',\n         *     message: 'Wrong value',\n         *   },\n         * );\n         * ```\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * await assert.rejects(\n         *   async () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   (err) => {\n         *     assert.strictEqual(err.name, 'TypeError');\n         *     assert.strictEqual(err.message, 'Wrong value');\n         *     return true;\n         *   },\n         * );\n         * ```\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.rejects(\n         *   Promise.reject(new Error('Wrong value')),\n         *   Error,\n         * ).then(() => {\n         *   // ...\n         * });\n         * ```\n         *\n         * `error` cannot be a string. If a string is provided as the second argument, then `error` is assumed to\n         * be omitted and the string will be used for `message` instead. This can lead to easy-to-miss mistakes. Please read the\n         * example in {@link throws} carefully if using a string as the second argument gets considered.\n         * @since v10.0.0\n         */\n        function rejects(block: (() => Promise<unknown>) | Promise<unknown>, message?: string | Error): Promise<void>;\n        function rejects(\n            block: (() => Promise<unknown>) | Promise<unknown>,\n            error: AssertPredicate,\n            message?: string | Error,\n        ): Promise<void>;\n        /**\n         * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately\n         * calls the function and awaits the returned promise to complete. It will then\n         * check that the promise is not rejected.\n         *\n         * If `asyncFn` is a function and it throws an error synchronously, `assert.doesNotReject()` will return a rejected `Promise` with that error. If\n         * the function does not return a promise, `assert.doesNotReject()` will return a\n         * rejected `Promise` with an [ERR_INVALID_RETURN_VALUE](https://nodejs.org/docs/latest-v22.x/api/errors.html#err_invalid_return_value) error. In both cases\n         * the error handler is skipped.\n         *\n         * Using `assert.doesNotReject()` is actually not useful because there is little\n         * benefit in catching a rejection and then rejecting it again. Instead, consider\n         * adding a comment next to the specific code path that should not reject and keep\n         * error messages as expressive as possible.\n         *\n         * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes),\n         * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), or a validation\n         * function. See {@link throws} for more details.\n         *\n         * Besides the async nature to await the completion behaves identically to {@link doesNotThrow}.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * await assert.doesNotReject(\n         *   async () => {\n         *     throw new TypeError('Wrong value');\n         *   },\n         *   SyntaxError,\n         * );\n         * ```\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.doesNotReject(Promise.reject(new TypeError('Wrong value')))\n         *   .then(() => {\n         *     // ...\n         *   });\n         * ```\n         * @since v10.0.0\n         */\n        function doesNotReject(\n            block: (() => Promise<unknown>) | Promise<unknown>,\n            message?: string | Error,\n        ): Promise<void>;\n        function doesNotReject(\n            block: (() => Promise<unknown>) | Promise<unknown>,\n            error: AssertPredicate,\n            message?: string | Error,\n        ): Promise<void>;\n        /**\n         * Expects the `string` input to match the regular expression.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.match('I will fail', /pass/);\n         * // AssertionError [ERR_ASSERTION]: The input did not match the regular ...\n         *\n         * assert.match(123, /pass/);\n         * // AssertionError [ERR_ASSERTION]: The \"string\" argument must be of type string.\n         *\n         * assert.match('I will pass', /pass/);\n         * // OK\n         * ```\n         *\n         * If the values do not match, or if the `string` argument is of another type than `string`, an `{@link AssertionError}` is thrown with a `message` property set equal\n         * to the value of the `message` parameter. If the `message` parameter is\n         * undefined, a default error message is assigned. If the `message` parameter is an\n         * instance of an [Error](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-error) then it will be thrown instead of the `{@link AssertionError}`.\n         * @since v13.6.0, v12.16.0\n         */\n        function match(value: string, regExp: RegExp, message?: string | Error): void;\n        /**\n         * Expects the `string` input not to match the regular expression.\n         *\n         * ```js\n         * import assert from 'node:assert/strict';\n         *\n         * assert.doesNotMatch('I will fail', /fail/);\n         * // AssertionError [ERR_ASSERTION]: The input was expected to not match the ...\n         *\n         * assert.doesNotMatch(123, /pass/);\n         * // AssertionError [ERR_ASSERTION]: The \"string\" argument must be of type string.\n         *\n         * assert.doesNotMatch('I will pass', /different/);\n         * // OK\n         * ```\n         *\n         * If the values do match, or if the `string` argument is of another type than `string`, an `{@link AssertionError}` is thrown with a `message` property set equal\n         * to the value of the `message` parameter. If the `message` parameter is\n         * undefined, a default error message is assigned. If the `message` parameter is an\n         * instance of an [Error](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-error) then it will be thrown instead of the `{@link AssertionError}`.\n         * @since v13.6.0, v12.16.0\n         */\n        function doesNotMatch(value: string, regExp: RegExp, message?: string | Error): void;\n        /**\n         * Tests for partial deep equality between the `actual` and `expected` parameters.\n         * \"Deep\" equality means that the enumerable \"own\" properties of child objects\n         * are recursively evaluated also by the following rules. \"Partial\" equality means\n         * that only properties that exist on the `expected` parameter are going to be\n         * compared.\n         *\n         * This method always passes the same test cases as `assert.deepStrictEqual()`,\n         * behaving as a super set of it.\n         * @since v22.13.0\n         */\n        function partialDeepStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void;\n        /**\n         * In strict assertion mode, non-strict methods behave like their corresponding strict methods. For example,\n         * {@link deepEqual} will behave like {@link deepStrictEqual}.\n         *\n         * In strict assertion mode, error messages for objects display a diff. In legacy assertion mode, error\n         * messages for objects display the objects, often truncated.\n         *\n         * To use strict assertion mode:\n         *\n         * ```js\n         * import { strict as assert } from 'node:assert';\n         * import assert from 'node:assert/strict';\n         * ```\n         *\n         * Example error diff:\n         *\n         * ```js\n         * import { strict as assert } from 'node:assert';\n         *\n         * assert.deepEqual([[[1, 2, 3]], 4, 5], [[[1, 2, '3']], 4, 5]);\n         * // AssertionError: Expected inputs to be strictly deep-equal:\n         * // + actual - expected ... Lines skipped\n         * //\n         * //   [\n         * //     [\n         * // ...\n         * //       2,\n         * // +     3\n         * // -     '3'\n         * //     ],\n         * // ...\n         * //     5\n         * //   ]\n         * ```\n         *\n         * To deactivate the colors, use the `NO_COLOR` or `NODE_DISABLE_COLORS` environment variables. This will also\n         * deactivate the colors in the REPL. For more on color support in terminal environments, read the tty\n         * `getColorDepth()` documentation.\n         *\n         * @since v15.0.0, v13.9.0, v12.16.2, v9.9.0\n         */\n        namespace strict {\n            type AssertionError = assert.AssertionError;\n            type AssertPredicate = assert.AssertPredicate;\n            type CallTrackerCall = assert.CallTrackerCall;\n            type CallTrackerReportInformation = assert.CallTrackerReportInformation;\n        }\n        const strict:\n            & Omit<\n                typeof assert,\n                | \"equal\"\n                | \"notEqual\"\n                | \"deepEqual\"\n                | \"notDeepEqual\"\n                | \"ok\"\n                | \"strictEqual\"\n                | \"deepStrictEqual\"\n                | \"ifError\"\n                | \"strict\"\n                | \"AssertionError\"\n            >\n            & {\n                (value: unknown, message?: string | Error): asserts value;\n                equal: typeof strictEqual;\n                notEqual: typeof notStrictEqual;\n                deepEqual: typeof deepStrictEqual;\n                notDeepEqual: typeof notDeepStrictEqual;\n                // Mapped types and assertion functions are incompatible?\n                // TS2775: Assertions require every name in the call target\n                // to be declared with an explicit type annotation.\n                ok: typeof ok;\n                strictEqual: typeof strictEqual;\n                deepStrictEqual: typeof deepStrictEqual;\n                ifError: typeof ifError;\n                strict: typeof strict;\n                AssertionError: typeof AssertionError;\n            };\n    }\n    export = assert;\n}\ndeclare module \"node:assert\" {\n    import assert = require(\"assert\");\n    export = assert;\n}\n",
    "node_modules/@types/node/async_hooks.d.ts": "/**\n * We strongly discourage the use of the `async_hooks` API.\n * Other APIs that can cover most of its use cases include:\n *\n * * [`AsyncLocalStorage`](https://nodejs.org/docs/latest-v22.x/api/async_context.html#class-asynclocalstorage) tracks async context\n * * [`process.getActiveResourcesInfo()`](https://nodejs.org/docs/latest-v22.x/api/process.html#processgetactiveresourcesinfo) tracks active resources\n *\n * The `node:async_hooks` module provides an API to track asynchronous resources.\n * It can be accessed using:\n *\n * ```js\n * import async_hooks from 'node:async_hooks';\n * ```\n * @experimental\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/async_hooks.js)\n */\ndeclare module \"async_hooks\" {\n    /**\n     * ```js\n     * import { executionAsyncId } from 'node:async_hooks';\n     * import fs from 'node:fs';\n     *\n     * console.log(executionAsyncId());  // 1 - bootstrap\n     * const path = '.';\n     * fs.open(path, 'r', (err, fd) => {\n     *   console.log(executionAsyncId());  // 6 - open()\n     * });\n     * ```\n     *\n     * The ID returned from `executionAsyncId()` is related to execution timing, not\n     * causality (which is covered by `triggerAsyncId()`):\n     *\n     * ```js\n     * const server = net.createServer((conn) => {\n     *   // Returns the ID of the server, not of the new connection, because the\n     *   // callback runs in the execution scope of the server's MakeCallback().\n     *   async_hooks.executionAsyncId();\n     *\n     * }).listen(port, () => {\n     *   // Returns the ID of a TickObject (process.nextTick()) because all\n     *   // callbacks passed to .listen() are wrapped in a nextTick().\n     *   async_hooks.executionAsyncId();\n     * });\n     * ```\n     *\n     * Promise contexts may not get precise `executionAsyncIds` by default.\n     * See the section on [promise execution tracking](https://nodejs.org/docs/latest-v22.x/api/async_hooks.html#promise-execution-tracking).\n     * @since v8.1.0\n     * @return The `asyncId` of the current execution context. Useful to track when something calls.\n     */\n    function executionAsyncId(): number;\n    /**\n     * Resource objects returned by `executionAsyncResource()` are most often internal\n     * Node.js handle objects with undocumented APIs. Using any functions or properties\n     * on the object is likely to crash your application and should be avoided.\n     *\n     * Using `executionAsyncResource()` in the top-level execution context will\n     * return an empty object as there is no handle or request object to use,\n     * but having an object representing the top-level can be helpful.\n     *\n     * ```js\n     * import { open } from 'node:fs';\n     * import { executionAsyncId, executionAsyncResource } from 'node:async_hooks';\n     *\n     * console.log(executionAsyncId(), executionAsyncResource());  // 1 {}\n     * open(new URL(import.meta.url), 'r', (err, fd) => {\n     *   console.log(executionAsyncId(), executionAsyncResource());  // 7 FSReqWrap\n     * });\n     * ```\n     *\n     * This can be used to implement continuation local storage without the\n     * use of a tracking `Map` to store the metadata:\n     *\n     * ```js\n     * import { createServer } from 'node:http';\n     * import {\n     *   executionAsyncId,\n     *   executionAsyncResource,\n     *   createHook,\n     * } from 'node:async_hooks';\n     * const sym = Symbol('state'); // Private symbol to avoid pollution\n     *\n     * createHook({\n     *   init(asyncId, type, triggerAsyncId, resource) {\n     *     const cr = executionAsyncResource();\n     *     if (cr) {\n     *       resource[sym] = cr[sym];\n     *     }\n     *   },\n     * }).enable();\n     *\n     * const server = createServer((req, res) => {\n     *   executionAsyncResource()[sym] = { state: req.url };\n     *   setTimeout(function() {\n     *     res.end(JSON.stringify(executionAsyncResource()[sym]));\n     *   }, 100);\n     * }).listen(3000);\n     * ```\n     * @since v13.9.0, v12.17.0\n     * @return The resource representing the current execution. Useful to store data within the resource.\n     */\n    function executionAsyncResource(): object;\n    /**\n     * ```js\n     * const server = net.createServer((conn) => {\n     *   // The resource that caused (or triggered) this callback to be called\n     *   // was that of the new connection. Thus the return value of triggerAsyncId()\n     *   // is the asyncId of \"conn\".\n     *   async_hooks.triggerAsyncId();\n     *\n     * }).listen(port, () => {\n     *   // Even though all callbacks passed to .listen() are wrapped in a nextTick()\n     *   // the callback itself exists because the call to the server's .listen()\n     *   // was made. So the return value would be the ID of the server.\n     *   async_hooks.triggerAsyncId();\n     * });\n     * ```\n     *\n     * Promise contexts may not get valid `triggerAsyncId`s by default. See\n     * the section on [promise execution tracking](https://nodejs.org/docs/latest-v22.x/api/async_hooks.html#promise-execution-tracking).\n     * @return The ID of the resource responsible for calling the callback that is currently being executed.\n     */\n    function triggerAsyncId(): number;\n    interface HookCallbacks {\n        /**\n         * Called when a class is constructed that has the possibility to emit an asynchronous event.\n         * @param asyncId A unique ID for the async resource\n         * @param type The type of the async resource\n         * @param triggerAsyncId The unique ID of the async resource in whose execution context this async resource was created\n         * @param resource Reference to the resource representing the async operation, needs to be released during destroy\n         */\n        init?(asyncId: number, type: string, triggerAsyncId: number, resource: object): void;\n        /**\n         * When an asynchronous operation is initiated or completes a callback is called to notify the user.\n         * The before callback is called just before said callback is executed.\n         * @param asyncId the unique identifier assigned to the resource about to execute the callback.\n         */\n        before?(asyncId: number): void;\n        /**\n         * Called immediately after the callback specified in `before` is completed.\n         *\n         * If an uncaught exception occurs during execution of the callback, then `after` will run after the `'uncaughtException'` event is emitted or a `domain`'s handler runs.\n         * @param asyncId the unique identifier assigned to the resource which has executed the callback.\n         */\n        after?(asyncId: number): void;\n        /**\n         * Called when a promise has resolve() called. This may not be in the same execution id\n         * as the promise itself.\n         * @param asyncId the unique id for the promise that was resolve()d.\n         */\n        promiseResolve?(asyncId: number): void;\n        /**\n         * Called after the resource corresponding to asyncId is destroyed\n         * @param asyncId a unique ID for the async resource\n         */\n        destroy?(asyncId: number): void;\n    }\n    interface AsyncHook {\n        /**\n         * Enable the callbacks for a given AsyncHook instance. If no callbacks are provided enabling is a noop.\n         */\n        enable(): this;\n        /**\n         * Disable the callbacks for a given AsyncHook instance from the global pool of AsyncHook callbacks to be executed. Once a hook has been disabled it will not be called again until enabled.\n         */\n        disable(): this;\n    }\n    /**\n     * Registers functions to be called for different lifetime events of each async\n     * operation.\n     *\n     * The callbacks `init()`/`before()`/`after()`/`destroy()` are called for the\n     * respective asynchronous event during a resource's lifetime.\n     *\n     * All callbacks are optional. For example, if only resource cleanup needs to\n     * be tracked, then only the `destroy` callback needs to be passed. The\n     * specifics of all functions that can be passed to `callbacks` is in the `Hook Callbacks` section.\n     *\n     * ```js\n     * import { createHook } from 'node:async_hooks';\n     *\n     * const asyncHook = createHook({\n     *   init(asyncId, type, triggerAsyncId, resource) { },\n     *   destroy(asyncId) { },\n     * });\n     * ```\n     *\n     * The callbacks will be inherited via the prototype chain:\n     *\n     * ```js\n     * class MyAsyncCallbacks {\n     *   init(asyncId, type, triggerAsyncId, resource) { }\n     *   destroy(asyncId) {}\n     * }\n     *\n     * class MyAddedCallbacks extends MyAsyncCallbacks {\n     *   before(asyncId) { }\n     *   after(asyncId) { }\n     * }\n     *\n     * const asyncHook = async_hooks.createHook(new MyAddedCallbacks());\n     * ```\n     *\n     * Because promises are asynchronous resources whose lifecycle is tracked\n     * via the async hooks mechanism, the `init()`, `before()`, `after()`, and`destroy()` callbacks _must not_ be async functions that return promises.\n     * @since v8.1.0\n     * @param callbacks The `Hook Callbacks` to register\n     * @return Instance used for disabling and enabling hooks\n     */\n    function createHook(callbacks: HookCallbacks): AsyncHook;\n    interface AsyncResourceOptions {\n        /**\n         * The ID of the execution context that created this async event.\n         * @default executionAsyncId()\n         */\n        triggerAsyncId?: number | undefined;\n        /**\n         * Disables automatic `emitDestroy` when the object is garbage collected.\n         * This usually does not need to be set (even if `emitDestroy` is called\n         * manually), unless the resource's `asyncId` is retrieved and the\n         * sensitive API's `emitDestroy` is called with it.\n         * @default false\n         */\n        requireManualDestroy?: boolean | undefined;\n    }\n    /**\n     * The class `AsyncResource` is designed to be extended by the embedder's async\n     * resources. Using this, users can easily trigger the lifetime events of their\n     * own resources.\n     *\n     * The `init` hook will trigger when an `AsyncResource` is instantiated.\n     *\n     * The following is an overview of the `AsyncResource` API.\n     *\n     * ```js\n     * import { AsyncResource, executionAsyncId } from 'node:async_hooks';\n     *\n     * // AsyncResource() is meant to be extended. Instantiating a\n     * // new AsyncResource() also triggers init. If triggerAsyncId is omitted then\n     * // async_hook.executionAsyncId() is used.\n     * const asyncResource = new AsyncResource(\n     *   type, { triggerAsyncId: executionAsyncId(), requireManualDestroy: false },\n     * );\n     *\n     * // Run a function in the execution context of the resource. This will\n     * // * establish the context of the resource\n     * // * trigger the AsyncHooks before callbacks\n     * // * call the provided function `fn` with the supplied arguments\n     * // * trigger the AsyncHooks after callbacks\n     * // * restore the original execution context\n     * asyncResource.runInAsyncScope(fn, thisArg, ...args);\n     *\n     * // Call AsyncHooks destroy callbacks.\n     * asyncResource.emitDestroy();\n     *\n     * // Return the unique ID assigned to the AsyncResource instance.\n     * asyncResource.asyncId();\n     *\n     * // Return the trigger ID for the AsyncResource instance.\n     * asyncResource.triggerAsyncId();\n     * ```\n     */\n    class AsyncResource {\n        /**\n         * AsyncResource() is meant to be extended. Instantiating a\n         * new AsyncResource() also triggers init. If triggerAsyncId is omitted then\n         * async_hook.executionAsyncId() is used.\n         * @param type The type of async event.\n         * @param triggerAsyncId The ID of the execution context that created\n         *   this async event (default: `executionAsyncId()`), or an\n         *   AsyncResourceOptions object (since v9.3.0)\n         */\n        constructor(type: string, triggerAsyncId?: number | AsyncResourceOptions);\n        /**\n         * Binds the given function to the current execution context.\n         * @since v14.8.0, v12.19.0\n         * @param fn The function to bind to the current execution context.\n         * @param type An optional name to associate with the underlying `AsyncResource`.\n         */\n        static bind<Func extends (this: ThisArg, ...args: any[]) => any, ThisArg>(\n            fn: Func,\n            type?: string,\n            thisArg?: ThisArg,\n        ): Func;\n        /**\n         * Binds the given function to execute to this `AsyncResource`'s scope.\n         * @since v14.8.0, v12.19.0\n         * @param fn The function to bind to the current `AsyncResource`.\n         */\n        bind<Func extends (...args: any[]) => any>(fn: Func): Func;\n        /**\n         * Call the provided function with the provided arguments in the execution context\n         * of the async resource. This will establish the context, trigger the AsyncHooks\n         * before callbacks, call the function, trigger the AsyncHooks after callbacks, and\n         * then restore the original execution context.\n         * @since v9.6.0\n         * @param fn The function to call in the execution context of this async resource.\n         * @param thisArg The receiver to be used for the function call.\n         * @param args Optional arguments to pass to the function.\n         */\n        runInAsyncScope<This, Result>(\n            fn: (this: This, ...args: any[]) => Result,\n            thisArg?: This,\n            ...args: any[]\n        ): Result;\n        /**\n         * Call all `destroy` hooks. This should only ever be called once. An error will\n         * be thrown if it is called more than once. This **must** be manually called. If\n         * the resource is left to be collected by the GC then the `destroy` hooks will\n         * never be called.\n         * @return A reference to `asyncResource`.\n         */\n        emitDestroy(): this;\n        /**\n         * @return The unique `asyncId` assigned to the resource.\n         */\n        asyncId(): number;\n        /**\n         * @return The same `triggerAsyncId` that is passed to the `AsyncResource` constructor.\n         */\n        triggerAsyncId(): number;\n    }\n    /**\n     * This class creates stores that stay coherent through asynchronous operations.\n     *\n     * While you can create your own implementation on top of the `node:async_hooks` module, `AsyncLocalStorage` should be preferred as it is a performant and memory\n     * safe implementation that involves significant optimizations that are non-obvious\n     * to implement.\n     *\n     * The following example uses `AsyncLocalStorage` to build a simple logger\n     * that assigns IDs to incoming HTTP requests and includes them in messages\n     * logged within each request.\n     *\n     * ```js\n     * import http from 'node:http';\n     * import { AsyncLocalStorage } from 'node:async_hooks';\n     *\n     * const asyncLocalStorage = new AsyncLocalStorage();\n     *\n     * function logWithId(msg) {\n     *   const id = asyncLocalStorage.getStore();\n     *   console.log(`${id !== undefined ? id : '-'}:`, msg);\n     * }\n     *\n     * let idSeq = 0;\n     * http.createServer((req, res) => {\n     *   asyncLocalStorage.run(idSeq++, () => {\n     *     logWithId('start');\n     *     // Imagine any chain of async operations here\n     *     setImmediate(() => {\n     *       logWithId('finish');\n     *       res.end();\n     *     });\n     *   });\n     * }).listen(8080);\n     *\n     * http.get('http://localhost:8080');\n     * http.get('http://localhost:8080');\n     * // Prints:\n     * //   0: start\n     * //   1: start\n     * //   0: finish\n     * //   1: finish\n     * ```\n     *\n     * Each instance of `AsyncLocalStorage` maintains an independent storage context.\n     * Multiple instances can safely exist simultaneously without risk of interfering\n     * with each other's data.\n     * @since v13.10.0, v12.17.0\n     */\n    class AsyncLocalStorage<T> {\n        /**\n         * Binds the given function to the current execution context.\n         * @since v19.8.0\n         * @param fn The function to bind to the current execution context.\n         * @return A new function that calls `fn` within the captured execution context.\n         */\n        static bind<Func extends (...args: any[]) => any>(fn: Func): Func;\n        /**\n         * Captures the current execution context and returns a function that accepts a\n         * function as an argument. Whenever the returned function is called, it\n         * calls the function passed to it within the captured context.\n         *\n         * ```js\n         * const asyncLocalStorage = new AsyncLocalStorage();\n         * const runInAsyncScope = asyncLocalStorage.run(123, () => AsyncLocalStorage.snapshot());\n         * const result = asyncLocalStorage.run(321, () => runInAsyncScope(() => asyncLocalStorage.getStore()));\n         * console.log(result);  // returns 123\n         * ```\n         *\n         * AsyncLocalStorage.snapshot() can replace the use of AsyncResource for simple\n         * async context tracking purposes, for example:\n         *\n         * ```js\n         * class Foo {\n         *   #runInAsyncScope = AsyncLocalStorage.snapshot();\n         *\n         *   get() { return this.#runInAsyncScope(() => asyncLocalStorage.getStore()); }\n         * }\n         *\n         * const foo = asyncLocalStorage.run(123, () => new Foo());\n         * console.log(asyncLocalStorage.run(321, () => foo.get())); // returns 123\n         * ```\n         * @since v19.8.0\n         * @return A new function with the signature `(fn: (...args) : R, ...args) : R`.\n         */\n        static snapshot(): <R, TArgs extends any[]>(fn: (...args: TArgs) => R, ...args: TArgs) => R;\n        /**\n         * Disables the instance of `AsyncLocalStorage`. All subsequent calls\n         * to `asyncLocalStorage.getStore()` will return `undefined` until `asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()` is called again.\n         *\n         * When calling `asyncLocalStorage.disable()`, all current contexts linked to the\n         * instance will be exited.\n         *\n         * Calling `asyncLocalStorage.disable()` is required before the `asyncLocalStorage` can be garbage collected. This does not apply to stores\n         * provided by the `asyncLocalStorage`, as those objects are garbage collected\n         * along with the corresponding async resources.\n         *\n         * Use this method when the `asyncLocalStorage` is not in use anymore\n         * in the current process.\n         * @since v13.10.0, v12.17.0\n         * @experimental\n         */\n        disable(): void;\n        /**\n         * Returns the current store.\n         * If called outside of an asynchronous context initialized by\n         * calling `asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()`, it\n         * returns `undefined`.\n         * @since v13.10.0, v12.17.0\n         */\n        getStore(): T | undefined;\n        /**\n         * Runs a function synchronously within a context and returns its\n         * return value. The store is not accessible outside of the callback function.\n         * The store is accessible to any asynchronous operations created within the\n         * callback.\n         *\n         * The optional `args` are passed to the callback function.\n         *\n         * If the callback function throws an error, the error is thrown by `run()` too.\n         * The stacktrace is not impacted by this call and the context is exited.\n         *\n         * Example:\n         *\n         * ```js\n         * const store = { id: 2 };\n         * try {\n         *   asyncLocalStorage.run(store, () => {\n         *     asyncLocalStorage.getStore(); // Returns the store object\n         *     setTimeout(() => {\n         *       asyncLocalStorage.getStore(); // Returns the store object\n         *     }, 200);\n         *     throw new Error();\n         *   });\n         * } catch (e) {\n         *   asyncLocalStorage.getStore(); // Returns undefined\n         *   // The error will be caught here\n         * }\n         * ```\n         * @since v13.10.0, v12.17.0\n         */\n        run<R>(store: T, callback: () => R): R;\n        run<R, TArgs extends any[]>(store: T, callback: (...args: TArgs) => R, ...args: TArgs): R;\n        /**\n         * Runs a function synchronously outside of a context and returns its\n         * return value. The store is not accessible within the callback function or\n         * the asynchronous operations created within the callback. Any `getStore()` call done within the callback function will always return `undefined`.\n         *\n         * The optional `args` are passed to the callback function.\n         *\n         * If the callback function throws an error, the error is thrown by `exit()` too.\n         * The stacktrace is not impacted by this call and the context is re-entered.\n         *\n         * Example:\n         *\n         * ```js\n         * // Within a call to run\n         * try {\n         *   asyncLocalStorage.getStore(); // Returns the store object or value\n         *   asyncLocalStorage.exit(() => {\n         *     asyncLocalStorage.getStore(); // Returns undefined\n         *     throw new Error();\n         *   });\n         * } catch (e) {\n         *   asyncLocalStorage.getStore(); // Returns the same object or value\n         *   // The error will be caught here\n         * }\n         * ```\n         * @since v13.10.0, v12.17.0\n         * @experimental\n         */\n        exit<R, TArgs extends any[]>(callback: (...args: TArgs) => R, ...args: TArgs): R;\n        /**\n         * Transitions into the context for the remainder of the current\n         * synchronous execution and then persists the store through any following\n         * asynchronous calls.\n         *\n         * Example:\n         *\n         * ```js\n         * const store = { id: 1 };\n         * // Replaces previous store with the given store object\n         * asyncLocalStorage.enterWith(store);\n         * asyncLocalStorage.getStore(); // Returns the store object\n         * someAsyncOperation(() => {\n         *   asyncLocalStorage.getStore(); // Returns the same object\n         * });\n         * ```\n         *\n         * This transition will continue for the _entire_ synchronous execution.\n         * This means that if, for example, the context is entered within an event\n         * handler subsequent event handlers will also run within that context unless\n         * specifically bound to another context with an `AsyncResource`. That is why `run()` should be preferred over `enterWith()` unless there are strong reasons\n         * to use the latter method.\n         *\n         * ```js\n         * const store = { id: 1 };\n         *\n         * emitter.on('my-event', () => {\n         *   asyncLocalStorage.enterWith(store);\n         * });\n         * emitter.on('my-event', () => {\n         *   asyncLocalStorage.getStore(); // Returns the same object\n         * });\n         *\n         * asyncLocalStorage.getStore(); // Returns undefined\n         * emitter.emit('my-event');\n         * asyncLocalStorage.getStore(); // Returns the same object\n         * ```\n         * @since v13.11.0, v12.17.0\n         * @experimental\n         */\n        enterWith(store: T): void;\n    }\n    /**\n     * @since v17.2.0, v16.14.0\n     * @return A map of provider types to the corresponding numeric id.\n     * This map contains all the event types that might be emitted by the `async_hooks.init()` event.\n     */\n    namespace asyncWrapProviders {\n        const NONE: number;\n        const DIRHANDLE: number;\n        const DNSCHANNEL: number;\n        const ELDHISTOGRAM: number;\n        const FILEHANDLE: number;\n        const FILEHANDLECLOSEREQ: number;\n        const FIXEDSIZEBLOBCOPY: number;\n        const FSEVENTWRAP: number;\n        const FSREQCALLBACK: number;\n        const FSREQPROMISE: number;\n        const GETADDRINFOREQWRAP: number;\n        const GETNAMEINFOREQWRAP: number;\n        const HEAPSNAPSHOT: number;\n        const HTTP2SESSION: number;\n        const HTTP2STREAM: number;\n        const HTTP2PING: number;\n        const HTTP2SETTINGS: number;\n        const HTTPINCOMINGMESSAGE: number;\n        const HTTPCLIENTREQUEST: number;\n        const JSSTREAM: number;\n        const JSUDPWRAP: number;\n        const MESSAGEPORT: number;\n        const PIPECONNECTWRAP: number;\n        const PIPESERVERWRAP: number;\n        const PIPEWRAP: number;\n        const PROCESSWRAP: number;\n        const PROMISE: number;\n        const QUERYWRAP: number;\n        const SHUTDOWNWRAP: number;\n        const SIGNALWRAP: number;\n        const STATWATCHER: number;\n        const STREAMPIPE: number;\n        const TCPCONNECTWRAP: number;\n        const TCPSERVERWRAP: number;\n        const TCPWRAP: number;\n        const TTYWRAP: number;\n        const UDPSENDWRAP: number;\n        const UDPWRAP: number;\n        const SIGINTWATCHDOG: number;\n        const WORKER: number;\n        const WORKERHEAPSNAPSHOT: number;\n        const WRITEWRAP: number;\n        const ZLIB: number;\n        const CHECKPRIMEREQUEST: number;\n        const PBKDF2REQUEST: number;\n        const KEYPAIRGENREQUEST: number;\n        const KEYGENREQUEST: number;\n        const KEYEXPORTREQUEST: number;\n        const CIPHERREQUEST: number;\n        const DERIVEBITSREQUEST: number;\n        const HASHREQUEST: number;\n        const RANDOMBYTESREQUEST: number;\n        const RANDOMPRIMEREQUEST: number;\n        const SCRYPTREQUEST: number;\n        const SIGNREQUEST: number;\n        const TLSWRAP: number;\n        const VERIFYREQUEST: number;\n    }\n}\ndeclare module \"node:async_hooks\" {\n    export * from \"async_hooks\";\n}\n",
    "node_modules/@types/node/buffer.buffer.d.ts": "declare module \"buffer\" {\n    type ImplicitArrayBuffer<T extends WithImplicitCoercion<ArrayBufferLike>> = T extends\n        { valueOf(): infer V extends ArrayBufferLike } ? V : T;\n    global {\n        interface BufferConstructor {\n            // see buffer.d.ts for implementation shared with all TypeScript versions\n\n            /**\n             * Allocates a new buffer containing the given {str}.\n             *\n             * @param str String to store in buffer.\n             * @param encoding encoding to use, optional.  Default is 'utf8'\n             * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead.\n             */\n            new(str: string, encoding?: BufferEncoding): Buffer<ArrayBuffer>;\n            /**\n             * Allocates a new buffer of {size} octets.\n             *\n             * @param size count of octets to allocate.\n             * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`).\n             */\n            new(size: number): Buffer<ArrayBuffer>;\n            /**\n             * Allocates a new buffer containing the given {array} of octets.\n             *\n             * @param array The octets to store.\n             * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead.\n             */\n            new(array: ArrayLike<number>): Buffer<ArrayBuffer>;\n            /**\n             * Produces a Buffer backed by the same allocated memory as\n             * the given {ArrayBuffer}/{SharedArrayBuffer}.\n             *\n             * @param arrayBuffer The ArrayBuffer with which to share memory.\n             * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead.\n             */\n            new<TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(arrayBuffer: TArrayBuffer): Buffer<TArrayBuffer>;\n            /**\n             * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`.\n             * Array entries outside that range will be truncated to fit into it.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.\n             * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);\n             * ```\n             *\n             * If `array` is an `Array`-like object (that is, one with a `length` property of\n             * type `number`), it is treated as if it is an array, unless it is a `Buffer` or\n             * a `Uint8Array`. This means all other `TypedArray` variants get treated as an\n             * `Array`. To create a `Buffer` from the bytes backing a `TypedArray`, use\n             * `Buffer.copyBytesFrom()`.\n             *\n             * A `TypeError` will be thrown if `array` is not an `Array` or another type\n             * appropriate for `Buffer.from()` variants.\n             *\n             * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal\n             * `Buffer` pool like `Buffer.allocUnsafe()` does.\n             * @since v5.10.0\n             */\n            from(array: WithImplicitCoercion<ArrayLike<number>>): Buffer<ArrayBuffer>;\n            /**\n             * This creates a view of the `ArrayBuffer` without copying the underlying\n             * memory. For example, when passed a reference to the `.buffer` property of a\n             * `TypedArray` instance, the newly created `Buffer` will share the same\n             * allocated memory as the `TypedArray`'s underlying `ArrayBuffer`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const arr = new Uint16Array(2);\n             *\n             * arr[0] = 5000;\n             * arr[1] = 4000;\n             *\n             * // Shares memory with `arr`.\n             * const buf = Buffer.from(arr.buffer);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 88 13 a0 0f>\n             *\n             * // Changing the original Uint16Array changes the Buffer also.\n             * arr[1] = 6000;\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 88 13 70 17>\n             * ```\n             *\n             * The optional `byteOffset` and `length` arguments specify a memory range within\n             * the `arrayBuffer` that will be shared by the `Buffer`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const ab = new ArrayBuffer(10);\n             * const buf = Buffer.from(ab, 0, 2);\n             *\n             * console.log(buf.length);\n             * // Prints: 2\n             * ```\n             *\n             * A `TypeError` will be thrown if `arrayBuffer` is not an `ArrayBuffer` or a\n             * `SharedArrayBuffer` or another type appropriate for `Buffer.from()`\n             * variants.\n             *\n             * It is important to remember that a backing `ArrayBuffer` can cover a range\n             * of memory that extends beyond the bounds of a `TypedArray` view. A new\n             * `Buffer` created using the `buffer` property of a `TypedArray` may extend\n             * beyond the range of the `TypedArray`:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const arrA = Uint8Array.from([0x63, 0x64, 0x65, 0x66]); // 4 elements\n             * const arrB = new Uint8Array(arrA.buffer, 1, 2); // 2 elements\n             * console.log(arrA.buffer === arrB.buffer); // true\n             *\n             * const buf = Buffer.from(arrB.buffer);\n             * console.log(buf);\n             * // Prints: <Buffer 63 64 65 66>\n             * ```\n             * @since v5.10.0\n             * @param arrayBuffer An `ArrayBuffer`, `SharedArrayBuffer`, for example the\n             * `.buffer` property of a `TypedArray`.\n             * @param byteOffset Index of first byte to expose. **Default:** `0`.\n             * @param length Number of bytes to expose. **Default:**\n             * `arrayBuffer.byteLength - byteOffset`.\n             */\n            from<TArrayBuffer extends WithImplicitCoercion<ArrayBufferLike>>(\n                arrayBuffer: TArrayBuffer,\n                byteOffset?: number,\n                length?: number,\n            ): Buffer<ImplicitArrayBuffer<TArrayBuffer>>;\n            /**\n             * Creates a new `Buffer` containing `string`. The `encoding` parameter identifies\n             * the character encoding to be used when converting `string` into bytes.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from('this is a tést');\n             * const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');\n             *\n             * console.log(buf1.toString());\n             * // Prints: this is a tést\n             * console.log(buf2.toString());\n             * // Prints: this is a tést\n             * console.log(buf1.toString('latin1'));\n             * // Prints: this is a tÃ©st\n             * ```\n             *\n             * A `TypeError` will be thrown if `string` is not a string or another type\n             * appropriate for `Buffer.from()` variants.\n             *\n             * `Buffer.from(string)` may also use the internal `Buffer` pool like\n             * `Buffer.allocUnsafe()` does.\n             * @since v5.10.0\n             * @param string A string to encode.\n             * @param encoding The encoding of `string`. **Default:** `'utf8'`.\n             */\n            from(string: WithImplicitCoercion<string>, encoding?: BufferEncoding): Buffer<ArrayBuffer>;\n            from(arrayOrString: WithImplicitCoercion<ArrayLike<number> | string>): Buffer<ArrayBuffer>;\n            /**\n             * Creates a new Buffer using the passed {data}\n             * @param values to create a new Buffer\n             */\n            of(...items: number[]): Buffer<ArrayBuffer>;\n            /**\n             * Returns a new `Buffer` which is the result of concatenating all the `Buffer` instances in the `list` together.\n             *\n             * If the list has no items, or if the `totalLength` is 0, then a new zero-length `Buffer` is returned.\n             *\n             * If `totalLength` is not provided, it is calculated from the `Buffer` instances\n             * in `list` by adding their lengths.\n             *\n             * If `totalLength` is provided, it is coerced to an unsigned integer. If the\n             * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is\n             * truncated to `totalLength`. If the combined length of the `Buffer`s in `list` is\n             * less than `totalLength`, the remaining space is filled with zeros.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create a single `Buffer` from a list of three `Buffer` instances.\n             *\n             * const buf1 = Buffer.alloc(10);\n             * const buf2 = Buffer.alloc(14);\n             * const buf3 = Buffer.alloc(18);\n             * const totalLength = buf1.length + buf2.length + buf3.length;\n             *\n             * console.log(totalLength);\n             * // Prints: 42\n             *\n             * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength);\n             *\n             * console.log(bufA);\n             * // Prints: <Buffer 00 00 00 00 ...>\n             * console.log(bufA.length);\n             * // Prints: 42\n             * ```\n             *\n             * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does.\n             * @since v0.7.11\n             * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate.\n             * @param totalLength Total length of the `Buffer` instances in `list` when concatenated.\n             */\n            concat(list: readonly Uint8Array[], totalLength?: number): Buffer<ArrayBuffer>;\n            /**\n             * Copies the underlying memory of `view` into a new `Buffer`.\n             *\n             * ```js\n             * const u16 = new Uint16Array([0, 0xffff]);\n             * const buf = Buffer.copyBytesFrom(u16, 1, 1);\n             * u16[1] = 0;\n             * console.log(buf.length); // 2\n             * console.log(buf[0]); // 255\n             * console.log(buf[1]); // 255\n             * ```\n             * @since v19.8.0\n             * @param view The {TypedArray} to copy.\n             * @param [offset=0] The starting offset within `view`.\n             * @param [length=view.length - offset] The number of elements from `view` to copy.\n             */\n            copyBytesFrom(view: NodeJS.TypedArray, offset?: number, length?: number): Buffer<ArrayBuffer>;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(5);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 00 00 00 00 00>\n             * ```\n             *\n             * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.\n             *\n             * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(5, 'a');\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 61 61 61 61 61>\n             * ```\n             *\n             * If both `fill` and `encoding` are specified, the allocated `Buffer` will be\n             * initialized by calling `buf.fill(fill, encoding)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 68 65 6c 6c 6f 20 77 6f 72 6c 64>\n             * ```\n             *\n             * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance\n             * contents will never contain sensitive data from previous allocations, including\n             * data that might not have been allocated for `Buffer`s.\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             * @since v5.10.0\n             * @param size The desired length of the new `Buffer`.\n             * @param [fill=0] A value to pre-fill the new `Buffer` with.\n             * @param [encoding='utf8'] If `fill` is a string, this is its encoding.\n             */\n            alloc(size: number, fill?: string | Uint8Array | number, encoding?: BufferEncoding): Buffer<ArrayBuffer>;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.\n             *\n             * The underlying memory for `Buffer` instances created in this way is _not_\n             * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(10);\n             *\n             * console.log(buf);\n             * // Prints (contents may vary): <Buffer a0 8b 28 3f 01 00 00 00 50 32>\n             *\n             * buf.fill(0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 00 00 00 00 00 00 00 00 00 00>\n             * ```\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             *\n             * The `Buffer` module pre-allocates an internal `Buffer` instance of\n             * size `Buffer.poolSize` that is used as a pool for the fast allocation of new `Buffer` instances created using `Buffer.allocUnsafe()`, `Buffer.from(array)`,\n             * and `Buffer.concat()` only when `size` is less than `Buffer.poolSize >>> 1` (floor of `Buffer.poolSize` divided by two).\n             *\n             * Use of this pre-allocated internal memory pool is a key difference between\n             * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`.\n             * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less\n             * than or equal to half `Buffer.poolSize`. The\n             * difference is subtle but can be important when an application requires the\n             * additional performance that `Buffer.allocUnsafe()` provides.\n             * @since v5.10.0\n             * @param size The desired length of the new `Buffer`.\n             */\n            allocUnsafe(size: number): Buffer<ArrayBuffer>;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown. A zero-length `Buffer` is created if\n             * `size` is 0.\n             *\n             * The underlying memory for `Buffer` instances created in this way is _not_\n             * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize\n             * such `Buffer` instances with zeroes.\n             *\n             * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances,\n             * allocations under 4 KiB are sliced from a single pre-allocated `Buffer`. This\n             * allows applications to avoid the garbage collection overhead of creating many\n             * individually allocated `Buffer` instances. This approach improves both\n             * performance and memory usage by eliminating the need to track and clean up as\n             * many individual `ArrayBuffer` objects.\n             *\n             * However, in the case where a developer may need to retain a small chunk of\n             * memory from a pool for an indeterminate amount of time, it may be appropriate\n             * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and\n             * then copying out the relevant bits.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Need to keep around a few small chunks of memory.\n             * const store = [];\n             *\n             * socket.on('readable', () => {\n             *   let data;\n             *   while (null !== (data = readable.read())) {\n             *     // Allocate for retained data.\n             *     const sb = Buffer.allocUnsafeSlow(10);\n             *\n             *     // Copy the data into the new allocation.\n             *     data.copy(sb, 0, 0, 10);\n             *\n             *     store.push(sb);\n             *   }\n             * });\n             * ```\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             * @since v5.12.0\n             * @param size The desired length of the new `Buffer`.\n             */\n            allocUnsafeSlow(size: number): Buffer<ArrayBuffer>;\n        }\n        interface Buffer<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> extends Uint8Array<TArrayBuffer> {\n            // see buffer.d.ts for implementation shared with all TypeScript versions\n\n            /**\n             * Returns a new `Buffer` that references the same memory as the original, but\n             * offset and cropped by the `start` and `end` indices.\n             *\n             * This method is not compatible with the `Uint8Array.prototype.slice()`,\n             * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('buffer');\n             *\n             * const copiedBuf = Uint8Array.prototype.slice.call(buf);\n             * copiedBuf[0]++;\n             * console.log(copiedBuf.toString());\n             * // Prints: cuffer\n             *\n             * console.log(buf.toString());\n             * // Prints: buffer\n             *\n             * // With buf.slice(), the original buffer is modified.\n             * const notReallyCopiedBuf = buf.slice();\n             * notReallyCopiedBuf[0]++;\n             * console.log(notReallyCopiedBuf.toString());\n             * // Prints: cuffer\n             * console.log(buf.toString());\n             * // Also prints: cuffer (!)\n             * ```\n             * @since v0.3.0\n             * @deprecated Use `subarray` instead.\n             * @param [start=0] Where the new `Buffer` will start.\n             * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).\n             */\n            slice(start?: number, end?: number): Buffer<ArrayBuffer>;\n            /**\n             * Returns a new `Buffer` that references the same memory as the original, but\n             * offset and cropped by the `start` and `end` indices.\n             *\n             * Specifying `end` greater than `buf.length` will return the same result as\n             * that of `end` equal to `buf.length`.\n             *\n             * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray).\n             *\n             * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte\n             * // from the original `Buffer`.\n             *\n             * const buf1 = Buffer.allocUnsafe(26);\n             *\n             * for (let i = 0; i < 26; i++) {\n             *   // 97 is the decimal ASCII value for 'a'.\n             *   buf1[i] = i + 97;\n             * }\n             *\n             * const buf2 = buf1.subarray(0, 3);\n             *\n             * console.log(buf2.toString('ascii', 0, buf2.length));\n             * // Prints: abc\n             *\n             * buf1[0] = 33;\n             *\n             * console.log(buf2.toString('ascii', 0, buf2.length));\n             * // Prints: !bc\n             * ```\n             *\n             * Specifying negative indexes causes the slice to be generated relative to the\n             * end of `buf` rather than the beginning.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('buffer');\n             *\n             * console.log(buf.subarray(-6, -1).toString());\n             * // Prints: buffe\n             * // (Equivalent to buf.subarray(0, 5).)\n             *\n             * console.log(buf.subarray(-6, -2).toString());\n             * // Prints: buff\n             * // (Equivalent to buf.subarray(0, 4).)\n             *\n             * console.log(buf.subarray(-5, -2).toString());\n             * // Prints: uff\n             * // (Equivalent to buf.subarray(1, 4).)\n             * ```\n             * @since v3.0.0\n             * @param [start=0] Where the new `Buffer` will start.\n             * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).\n             */\n            subarray(start?: number, end?: number): Buffer<TArrayBuffer>;\n        }\n        type NonSharedBuffer = Buffer<ArrayBuffer>;\n        type AllowSharedBuffer = Buffer<ArrayBufferLike>;\n    }\n    /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */\n    var SlowBuffer: {\n        /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */\n        new(size: number): Buffer<ArrayBuffer>;\n        prototype: Buffer;\n    };\n}\n",
    "node_modules/@types/node/buffer.d.ts": "// If lib.dom.d.ts or lib.webworker.d.ts is loaded, then use the global types.\n// Otherwise, use the types from node.\ntype _Blob = typeof globalThis extends { onmessage: any; Blob: any } ? {} : import(\"buffer\").Blob;\ntype _File = typeof globalThis extends { onmessage: any; File: any } ? {} : import(\"buffer\").File;\n\n/**\n * `Buffer` objects are used to represent a fixed-length sequence of bytes. Many\n * Node.js APIs support `Buffer`s.\n *\n * The `Buffer` class is a subclass of JavaScript's [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) class and\n * extends it with methods that cover additional use cases. Node.js APIs accept\n * plain [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) s wherever `Buffer`s are supported as well.\n *\n * While the `Buffer` class is available within the global scope, it is still\n * recommended to explicitly reference it via an import or require statement.\n *\n * ```js\n * import { Buffer } from 'node:buffer';\n *\n * // Creates a zero-filled Buffer of length 10.\n * const buf1 = Buffer.alloc(10);\n *\n * // Creates a Buffer of length 10,\n * // filled with bytes which all have the value `1`.\n * const buf2 = Buffer.alloc(10, 1);\n *\n * // Creates an uninitialized buffer of length 10.\n * // This is faster than calling Buffer.alloc() but the returned\n * // Buffer instance might contain old data that needs to be\n * // overwritten using fill(), write(), or other functions that fill the Buffer's\n * // contents.\n * const buf3 = Buffer.allocUnsafe(10);\n *\n * // Creates a Buffer containing the bytes [1, 2, 3].\n * const buf4 = Buffer.from([1, 2, 3]);\n *\n * // Creates a Buffer containing the bytes [1, 1, 1, 1] – the entries\n * // are all truncated using `(value &#x26; 255)` to fit into the range 0–255.\n * const buf5 = Buffer.from([257, 257.5, -255, '1']);\n *\n * // Creates a Buffer containing the UTF-8-encoded bytes for the string 'tést':\n * // [0x74, 0xc3, 0xa9, 0x73, 0x74] (in hexadecimal notation)\n * // [116, 195, 169, 115, 116] (in decimal notation)\n * const buf6 = Buffer.from('tést');\n *\n * // Creates a Buffer containing the Latin-1 bytes [0x74, 0xe9, 0x73, 0x74].\n * const buf7 = Buffer.from('tést', 'latin1');\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/buffer.js)\n */\ndeclare module \"buffer\" {\n    import { BinaryLike } from \"node:crypto\";\n    import { ReadableStream as WebReadableStream } from \"node:stream/web\";\n    /**\n     * This function returns `true` if `input` contains only valid UTF-8-encoded data,\n     * including the case in which `input` is empty.\n     *\n     * Throws if the `input` is a detached array buffer.\n     * @since v19.4.0, v18.14.0\n     * @param input The input to validate.\n     */\n    export function isUtf8(input: Buffer | ArrayBuffer | NodeJS.TypedArray): boolean;\n    /**\n     * This function returns `true` if `input` contains only valid ASCII-encoded data,\n     * including the case in which `input` is empty.\n     *\n     * Throws if the `input` is a detached array buffer.\n     * @since v19.6.0, v18.15.0\n     * @param input The input to validate.\n     */\n    export function isAscii(input: Buffer | ArrayBuffer | NodeJS.TypedArray): boolean;\n    export let INSPECT_MAX_BYTES: number;\n    export const kMaxLength: number;\n    export const kStringMaxLength: number;\n    export const constants: {\n        MAX_LENGTH: number;\n        MAX_STRING_LENGTH: number;\n    };\n    export type TranscodeEncoding =\n        | \"ascii\"\n        | \"utf8\"\n        | \"utf-8\"\n        | \"utf16le\"\n        | \"utf-16le\"\n        | \"ucs2\"\n        | \"ucs-2\"\n        | \"latin1\"\n        | \"binary\";\n    /**\n     * Re-encodes the given `Buffer` or `Uint8Array` instance from one character\n     * encoding to another. Returns a new `Buffer` instance.\n     *\n     * Throws if the `fromEnc` or `toEnc` specify invalid character encodings or if\n     * conversion from `fromEnc` to `toEnc` is not permitted.\n     *\n     * Encodings supported by `buffer.transcode()` are: `'ascii'`, `'utf8'`, `'utf16le'`, `'ucs2'`, `'latin1'`, and `'binary'`.\n     *\n     * The transcoding process will use substitution characters if a given byte\n     * sequence cannot be adequately represented in the target encoding. For instance:\n     *\n     * ```js\n     * import { Buffer, transcode } from 'node:buffer';\n     *\n     * const newBuf = transcode(Buffer.from('€'), 'utf8', 'ascii');\n     * console.log(newBuf.toString('ascii'));\n     * // Prints: '?'\n     * ```\n     *\n     * Because the Euro (`€`) sign is not representable in US-ASCII, it is replaced\n     * with `?` in the transcoded `Buffer`.\n     * @since v7.1.0\n     * @param source A `Buffer` or `Uint8Array` instance.\n     * @param fromEnc The current encoding.\n     * @param toEnc To target encoding.\n     */\n    export function transcode(source: Uint8Array, fromEnc: TranscodeEncoding, toEnc: TranscodeEncoding): Buffer;\n    /**\n     * Resolves a `'blob:nodedata:...'` an associated `Blob` object registered using\n     * a prior call to `URL.createObjectURL()`.\n     * @since v16.7.0\n     * @experimental\n     * @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`.\n     */\n    export function resolveObjectURL(id: string): Blob | undefined;\n    export { type AllowSharedBuffer, Buffer, type NonSharedBuffer };\n    /**\n     * @experimental\n     */\n    export interface BlobOptions {\n        /**\n         * One of either `'transparent'` or `'native'`. When set to `'native'`, line endings in string source parts\n         * will be converted to the platform native line-ending as specified by `import { EOL } from 'node:os'`.\n         */\n        endings?: \"transparent\" | \"native\";\n        /**\n         * The Blob content-type. The intent is for `type` to convey\n         * the MIME media type of the data, however no validation of the type format\n         * is performed.\n         */\n        type?: string | undefined;\n    }\n    /**\n     * A [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) encapsulates immutable, raw data that can be safely shared across\n     * multiple worker threads.\n     * @since v15.7.0, v14.18.0\n     */\n    export class Blob {\n        /**\n         * The total size of the `Blob` in bytes.\n         * @since v15.7.0, v14.18.0\n         */\n        readonly size: number;\n        /**\n         * The content-type of the `Blob`.\n         * @since v15.7.0, v14.18.0\n         */\n        readonly type: string;\n        /**\n         * Creates a new `Blob` object containing a concatenation of the given sources.\n         *\n         * {ArrayBuffer}, {TypedArray}, {DataView}, and {Buffer} sources are copied into\n         * the 'Blob' and can therefore be safely modified after the 'Blob' is created.\n         *\n         * String sources are also copied into the `Blob`.\n         */\n        constructor(sources: Array<ArrayBuffer | BinaryLike | Blob>, options?: BlobOptions);\n        /**\n         * Returns a promise that fulfills with an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) containing a copy of\n         * the `Blob` data.\n         * @since v15.7.0, v14.18.0\n         */\n        arrayBuffer(): Promise<ArrayBuffer>;\n        /**\n         * The `blob.bytes()` method returns the byte of the `Blob` object as a `Promise<Uint8Array>`.\n         *\n         * ```js\n         * const blob = new Blob(['hello']);\n         * blob.bytes().then((bytes) => {\n         *   console.log(bytes); // Outputs: Uint8Array(5) [ 104, 101, 108, 108, 111 ]\n         * });\n         * ```\n         */\n        bytes(): Promise<Uint8Array>;\n        /**\n         * Creates and returns a new `Blob` containing a subset of this `Blob` objects\n         * data. The original `Blob` is not altered.\n         * @since v15.7.0, v14.18.0\n         * @param start The starting index.\n         * @param end The ending index.\n         * @param type The content-type for the new `Blob`\n         */\n        slice(start?: number, end?: number, type?: string): Blob;\n        /**\n         * Returns a promise that fulfills with the contents of the `Blob` decoded as a\n         * UTF-8 string.\n         * @since v15.7.0, v14.18.0\n         */\n        text(): Promise<string>;\n        /**\n         * Returns a new `ReadableStream` that allows the content of the `Blob` to be read.\n         * @since v16.7.0\n         */\n        stream(): WebReadableStream;\n    }\n    export interface FileOptions {\n        /**\n         * One of either `'transparent'` or `'native'`. When set to `'native'`, line endings in string source parts will be\n         * converted to the platform native line-ending as specified by `import { EOL } from 'node:os'`.\n         */\n        endings?: \"native\" | \"transparent\";\n        /** The File content-type. */\n        type?: string;\n        /** The last modified date of the file. `Default`: Date.now(). */\n        lastModified?: number;\n    }\n    /**\n     * A [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File) provides information about files.\n     * @since v19.2.0, v18.13.0\n     */\n    export class File extends Blob {\n        constructor(sources: Array<BinaryLike | Blob>, fileName: string, options?: FileOptions);\n        /**\n         * The name of the `File`.\n         * @since v19.2.0, v18.13.0\n         */\n        readonly name: string;\n        /**\n         * The last modified date of the `File`.\n         * @since v19.2.0, v18.13.0\n         */\n        readonly lastModified: number;\n    }\n    export import atob = globalThis.atob;\n    export import btoa = globalThis.btoa;\n    export type WithImplicitCoercion<T> =\n        | T\n        | { valueOf(): T }\n        | (T extends string ? { [Symbol.toPrimitive](hint: \"string\"): T } : never);\n    global {\n        namespace NodeJS {\n            export { BufferEncoding };\n        }\n        // Buffer class\n        type BufferEncoding =\n            | \"ascii\"\n            | \"utf8\"\n            | \"utf-8\"\n            | \"utf16le\"\n            | \"utf-16le\"\n            | \"ucs2\"\n            | \"ucs-2\"\n            | \"base64\"\n            | \"base64url\"\n            | \"latin1\"\n            | \"binary\"\n            | \"hex\";\n        /**\n         * Raw data is stored in instances of the Buffer class.\n         * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap.  A Buffer cannot be resized.\n         * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'base64url'|'binary'(deprecated)|'hex'\n         */\n        interface BufferConstructor {\n            // see buffer.buffer.d.ts for implementation specific to TypeScript 5.7 and later\n            // see ts5.6/buffer.buffer.d.ts for implementation specific to TypeScript 5.6 and earlier\n\n            /**\n             * Returns `true` if `obj` is a `Buffer`, `false` otherwise.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * Buffer.isBuffer(Buffer.alloc(10)); // true\n             * Buffer.isBuffer(Buffer.from('foo')); // true\n             * Buffer.isBuffer('a string'); // false\n             * Buffer.isBuffer([]); // false\n             * Buffer.isBuffer(new Uint8Array(1024)); // false\n             * ```\n             * @since v0.1.101\n             */\n            isBuffer(obj: any): obj is Buffer;\n            /**\n             * Returns `true` if `encoding` is the name of a supported character encoding,\n             * or `false` otherwise.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * console.log(Buffer.isEncoding('utf8'));\n             * // Prints: true\n             *\n             * console.log(Buffer.isEncoding('hex'));\n             * // Prints: true\n             *\n             * console.log(Buffer.isEncoding('utf/8'));\n             * // Prints: false\n             *\n             * console.log(Buffer.isEncoding(''));\n             * // Prints: false\n             * ```\n             * @since v0.9.1\n             * @param encoding A character encoding name to check.\n             */\n            isEncoding(encoding: string): encoding is BufferEncoding;\n            /**\n             * Returns the byte length of a string when encoded using `encoding`.\n             * This is not the same as [`String.prototype.length`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length), which does not account\n             * for the encoding that is used to convert the string into bytes.\n             *\n             * For `'base64'`, `'base64url'`, and `'hex'`, this function assumes valid input.\n             * For strings that contain non-base64/hex-encoded data (e.g. whitespace), the\n             * return value might be greater than the length of a `Buffer` created from the\n             * string.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const str = '\\u00bd + \\u00bc = \\u00be';\n             *\n             * console.log(`${str}: ${str.length} characters, ` +\n             *             `${Buffer.byteLength(str, 'utf8')} bytes`);\n             * // Prints: ½ + ¼ = ¾: 9 characters, 12 bytes\n             * ```\n             *\n             * When `string` is a\n             * `Buffer`/[`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView)/[`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/-\n             * Reference/Global_Objects/TypedArray)/[`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer)/[`SharedArrayBuffer`](https://develop-\n             * er.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer), the byte length as reported by `.byteLength`is returned.\n             * @since v0.1.90\n             * @param string A value to calculate the length of.\n             * @param [encoding='utf8'] If `string` is a string, this is its encoding.\n             * @return The number of bytes contained within `string`.\n             */\n            byteLength(\n                string: string | Buffer | NodeJS.ArrayBufferView | ArrayBuffer | SharedArrayBuffer,\n                encoding?: BufferEncoding,\n            ): number;\n            /**\n             * Compares `buf1` to `buf2`, typically for the purpose of sorting arrays of `Buffer` instances. This is equivalent to calling `buf1.compare(buf2)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from('1234');\n             * const buf2 = Buffer.from('0123');\n             * const arr = [buf1, buf2];\n             *\n             * console.log(arr.sort(Buffer.compare));\n             * // Prints: [ <Buffer 30 31 32 33>, <Buffer 31 32 33 34> ]\n             * // (This result is equal to: [buf2, buf1].)\n             * ```\n             * @since v0.11.13\n             * @return Either `-1`, `0`, or `1`, depending on the result of the comparison. See `compare` for details.\n             */\n            compare(buf1: Uint8Array, buf2: Uint8Array): -1 | 0 | 1;\n            /**\n             * This is the size (in bytes) of pre-allocated internal `Buffer` instances used\n             * for pooling. This value may be modified.\n             * @since v0.11.3\n             */\n            poolSize: number;\n        }\n        interface Buffer {\n            // see buffer.buffer.d.ts for implementation specific to TypeScript 5.7 and later\n            // see ts5.6/buffer.buffer.d.ts for implementation specific to TypeScript 5.6 and earlier\n\n            /**\n             * Writes `string` to `buf` at `offset` according to the character encoding in`encoding`. The `length` parameter is the number of bytes to write. If `buf` did\n             * not contain enough space to fit the entire string, only part of `string` will be\n             * written. However, partially encoded characters will not be written.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(256);\n             *\n             * const len = buf.write('\\u00bd + \\u00bc = \\u00be', 0);\n             *\n             * console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`);\n             * // Prints: 12 bytes: ½ + ¼ = ¾\n             *\n             * const buffer = Buffer.alloc(10);\n             *\n             * const length = buffer.write('abcd', 8);\n             *\n             * console.log(`${length} bytes: ${buffer.toString('utf8', 8, 10)}`);\n             * // Prints: 2 bytes : ab\n             * ```\n             * @since v0.1.90\n             * @param string String to write to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write `string`.\n             * @param [length=buf.length - offset] Maximum number of bytes to write (written bytes will not exceed `buf.length - offset`).\n             * @param [encoding='utf8'] The character encoding of `string`.\n             * @return Number of bytes written.\n             */\n            write(string: string, encoding?: BufferEncoding): number;\n            write(string: string, offset: number, encoding?: BufferEncoding): number;\n            write(string: string, offset: number, length: number, encoding?: BufferEncoding): number;\n            /**\n             * Decodes `buf` to a string according to the specified character encoding in`encoding`. `start` and `end` may be passed to decode only a subset of `buf`.\n             *\n             * If `encoding` is `'utf8'` and a byte sequence in the input is not valid UTF-8,\n             * then each invalid byte is replaced with the replacement character `U+FFFD`.\n             *\n             * The maximum length of a string instance (in UTF-16 code units) is available\n             * as {@link constants.MAX_STRING_LENGTH}.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.allocUnsafe(26);\n             *\n             * for (let i = 0; i < 26; i++) {\n             *   // 97 is the decimal ASCII value for 'a'.\n             *   buf1[i] = i + 97;\n             * }\n             *\n             * console.log(buf1.toString('utf8'));\n             * // Prints: abcdefghijklmnopqrstuvwxyz\n             * console.log(buf1.toString('utf8', 0, 5));\n             * // Prints: abcde\n             *\n             * const buf2 = Buffer.from('tést');\n             *\n             * console.log(buf2.toString('hex'));\n             * // Prints: 74c3a97374\n             * console.log(buf2.toString('utf8', 0, 3));\n             * // Prints: té\n             * console.log(buf2.toString(undefined, 0, 3));\n             * // Prints: té\n             * ```\n             * @since v0.1.90\n             * @param [encoding='utf8'] The character encoding to use.\n             * @param [start=0] The byte offset to start decoding at.\n             * @param [end=buf.length] The byte offset to stop decoding at (not inclusive).\n             */\n            toString(encoding?: BufferEncoding, start?: number, end?: number): string;\n            /**\n             * Returns a JSON representation of `buf`. [`JSON.stringify()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) implicitly calls\n             * this function when stringifying a `Buffer` instance.\n             *\n             * `Buffer.from()` accepts objects in the format returned from this method.\n             * In particular, `Buffer.from(buf.toJSON())` works like `Buffer.from(buf)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);\n             * const json = JSON.stringify(buf);\n             *\n             * console.log(json);\n             * // Prints: {\"type\":\"Buffer\",\"data\":[1,2,3,4,5]}\n             *\n             * const copy = JSON.parse(json, (key, value) => {\n             *   return value &#x26;&#x26; value.type === 'Buffer' ?\n             *     Buffer.from(value) :\n             *     value;\n             * });\n             *\n             * console.log(copy);\n             * // Prints: <Buffer 01 02 03 04 05>\n             * ```\n             * @since v0.9.2\n             */\n            toJSON(): {\n                type: \"Buffer\";\n                data: number[];\n            };\n            /**\n             * Returns `true` if both `buf` and `otherBuffer` have exactly the same bytes,`false` otherwise. Equivalent to `buf.compare(otherBuffer) === 0`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from('ABC');\n             * const buf2 = Buffer.from('414243', 'hex');\n             * const buf3 = Buffer.from('ABCD');\n             *\n             * console.log(buf1.equals(buf2));\n             * // Prints: true\n             * console.log(buf1.equals(buf3));\n             * // Prints: false\n             * ```\n             * @since v0.11.13\n             * @param otherBuffer A `Buffer` or {@link Uint8Array} with which to compare `buf`.\n             */\n            equals(otherBuffer: Uint8Array): boolean;\n            /**\n             * Compares `buf` with `target` and returns a number indicating whether `buf`comes before, after, or is the same as `target` in sort order.\n             * Comparison is based on the actual sequence of bytes in each `Buffer`.\n             *\n             * * `0` is returned if `target` is the same as `buf`\n             * * `1` is returned if `target` should come _before_`buf` when sorted.\n             * * `-1` is returned if `target` should come _after_`buf` when sorted.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from('ABC');\n             * const buf2 = Buffer.from('BCD');\n             * const buf3 = Buffer.from('ABCD');\n             *\n             * console.log(buf1.compare(buf1));\n             * // Prints: 0\n             * console.log(buf1.compare(buf2));\n             * // Prints: -1\n             * console.log(buf1.compare(buf3));\n             * // Prints: -1\n             * console.log(buf2.compare(buf1));\n             * // Prints: 1\n             * console.log(buf2.compare(buf3));\n             * // Prints: 1\n             * console.log([buf1, buf2, buf3].sort(Buffer.compare));\n             * // Prints: [ <Buffer 41 42 43>, <Buffer 41 42 43 44>, <Buffer 42 43 44> ]\n             * // (This result is equal to: [buf1, buf3, buf2].)\n             * ```\n             *\n             * The optional `targetStart`, `targetEnd`, `sourceStart`, and `sourceEnd` arguments can be used to limit the comparison to specific ranges within `target` and `buf` respectively.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8, 9]);\n             * const buf2 = Buffer.from([5, 6, 7, 8, 9, 1, 2, 3, 4]);\n             *\n             * console.log(buf1.compare(buf2, 5, 9, 0, 4));\n             * // Prints: 0\n             * console.log(buf1.compare(buf2, 0, 6, 4));\n             * // Prints: -1\n             * console.log(buf1.compare(buf2, 5, 6, 5));\n             * // Prints: 1\n             * ```\n             *\n             * `ERR_OUT_OF_RANGE` is thrown if `targetStart < 0`, `sourceStart < 0`, `targetEnd > target.byteLength`, or `sourceEnd > source.byteLength`.\n             * @since v0.11.13\n             * @param target A `Buffer` or {@link Uint8Array} with which to compare `buf`.\n             * @param [targetStart=0] The offset within `target` at which to begin comparison.\n             * @param [targetEnd=target.length] The offset within `target` at which to end comparison (not inclusive).\n             * @param [sourceStart=0] The offset within `buf` at which to begin comparison.\n             * @param [sourceEnd=buf.length] The offset within `buf` at which to end comparison (not inclusive).\n             */\n            compare(\n                target: Uint8Array,\n                targetStart?: number,\n                targetEnd?: number,\n                sourceStart?: number,\n                sourceEnd?: number,\n            ): -1 | 0 | 1;\n            /**\n             * Copies data from a region of `buf` to a region in `target`, even if the `target`memory region overlaps with `buf`.\n             *\n             * [`TypedArray.prototype.set()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set) performs the same operation, and is available\n             * for all TypedArrays, including Node.js `Buffer`s, although it takes\n             * different function arguments.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create two `Buffer` instances.\n             * const buf1 = Buffer.allocUnsafe(26);\n             * const buf2 = Buffer.allocUnsafe(26).fill('!');\n             *\n             * for (let i = 0; i < 26; i++) {\n             *   // 97 is the decimal ASCII value for 'a'.\n             *   buf1[i] = i + 97;\n             * }\n             *\n             * // Copy `buf1` bytes 16 through 19 into `buf2` starting at byte 8 of `buf2`.\n             * buf1.copy(buf2, 8, 16, 20);\n             * // This is equivalent to:\n             * // buf2.set(buf1.subarray(16, 20), 8);\n             *\n             * console.log(buf2.toString('ascii', 0, 25));\n             * // Prints: !!!!!!!!qrst!!!!!!!!!!!!!\n             * ```\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create a `Buffer` and copy data from one region to an overlapping region\n             * // within the same `Buffer`.\n             *\n             * const buf = Buffer.allocUnsafe(26);\n             *\n             * for (let i = 0; i < 26; i++) {\n             *   // 97 is the decimal ASCII value for 'a'.\n             *   buf[i] = i + 97;\n             * }\n             *\n             * buf.copy(buf, 0, 4, 10);\n             *\n             * console.log(buf.toString());\n             * // Prints: efghijghijklmnopqrstuvwxyz\n             * ```\n             * @since v0.1.90\n             * @param target A `Buffer` or {@link Uint8Array} to copy into.\n             * @param [targetStart=0] The offset within `target` at which to begin writing.\n             * @param [sourceStart=0] The offset within `buf` from which to begin copying.\n             * @param [sourceEnd=buf.length] The offset within `buf` at which to stop copying (not inclusive).\n             * @return The number of bytes copied.\n             */\n            copy(target: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian.\n             *\n             * `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeBigInt64BE(0x0102030405060708n, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 01 02 03 04 05 06 07 08>\n             * ```\n             * @since v12.0.0, v10.20.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeBigInt64BE(value: bigint, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian.\n             *\n             * `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeBigInt64LE(0x0102030405060708n, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 08 07 06 05 04 03 02 01>\n             * ```\n             * @since v12.0.0, v10.20.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeBigInt64LE(value: bigint, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian.\n             *\n             * This function is also available under the `writeBigUint64BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeBigUInt64BE(0xdecafafecacefaden, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer de ca fa fe ca ce fa de>\n             * ```\n             * @since v12.0.0, v10.20.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeBigUInt64BE(value: bigint, offset?: number): number;\n            /**\n             * @alias Buffer.writeBigUInt64BE\n             * @since v14.10.0, v12.19.0\n             */\n            writeBigUint64BE(value: bigint, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeBigUInt64LE(0xdecafafecacefaden, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer de fa ce ca fe fa ca de>\n             * ```\n             *\n             * This function is also available under the `writeBigUint64LE` alias.\n             * @since v12.0.0, v10.20.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeBigUInt64LE(value: bigint, offset?: number): number;\n            /**\n             * @alias Buffer.writeBigUInt64LE\n             * @since v14.10.0, v12.19.0\n             */\n            writeBigUint64LE(value: bigint, offset?: number): number;\n            /**\n             * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined\n             * when `value` is anything other than an unsigned integer.\n             *\n             * This function is also available under the `writeUintLE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(6);\n             *\n             * buf.writeUIntLE(0x1234567890ab, 0, 6);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer ab 90 78 56 34 12>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUIntLE(value: number, offset: number, byteLength: number): number;\n            /**\n             * @alias Buffer.writeUIntLE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUintLE(value: number, offset: number, byteLength: number): number;\n            /**\n             * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined\n             * when `value` is anything other than an unsigned integer.\n             *\n             * This function is also available under the `writeUintBE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(6);\n             *\n             * buf.writeUIntBE(0x1234567890ab, 0, 6);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 12 34 56 78 90 ab>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUIntBE(value: number, offset: number, byteLength: number): number;\n            /**\n             * @alias Buffer.writeUIntBE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUintBE(value: number, offset: number, byteLength: number): number;\n            /**\n             * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined\n             * when `value` is anything other than a signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(6);\n             *\n             * buf.writeIntLE(0x1234567890ab, 0, 6);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer ab 90 78 56 34 12>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeIntLE(value: number, offset: number, byteLength: number): number;\n            /**\n             * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined when`value` is anything other than a\n             * signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(6);\n             *\n             * buf.writeIntBE(0x1234567890ab, 0, 6);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 12 34 56 78 90 ab>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeIntBE(value: number, offset: number, byteLength: number): number;\n            /**\n             * Reads an unsigned, big-endian 64-bit integer from `buf` at the specified`offset`.\n             *\n             * This function is also available under the `readBigUint64BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);\n             *\n             * console.log(buf.readBigUInt64BE(0));\n             * // Prints: 4294967295n\n             * ```\n             * @since v12.0.0, v10.20.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`.\n             */\n            readBigUInt64BE(offset?: number): bigint;\n            /**\n             * @alias Buffer.readBigUInt64BE\n             * @since v14.10.0, v12.19.0\n             */\n            readBigUint64BE(offset?: number): bigint;\n            /**\n             * Reads an unsigned, little-endian 64-bit integer from `buf` at the specified`offset`.\n             *\n             * This function is also available under the `readBigUint64LE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);\n             *\n             * console.log(buf.readBigUInt64LE(0));\n             * // Prints: 18446744069414584320n\n             * ```\n             * @since v12.0.0, v10.20.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`.\n             */\n            readBigUInt64LE(offset?: number): bigint;\n            /**\n             * @alias Buffer.readBigUInt64LE\n             * @since v14.10.0, v12.19.0\n             */\n            readBigUint64LE(offset?: number): bigint;\n            /**\n             * Reads a signed, big-endian 64-bit integer from `buf` at the specified `offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed\n             * values.\n             * @since v12.0.0, v10.20.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`.\n             */\n            readBigInt64BE(offset?: number): bigint;\n            /**\n             * Reads a signed, little-endian 64-bit integer from `buf` at the specified`offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed\n             * values.\n             * @since v12.0.0, v10.20.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`.\n             */\n            readBigInt64LE(offset?: number): bigint;\n            /**\n             * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned, little-endian integer supporting\n             * up to 48 bits of accuracy.\n             *\n             * This function is also available under the `readUintLE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);\n             *\n             * console.log(buf.readUIntLE(0, 6).toString(16));\n             * // Prints: ab9078563412\n             * ```\n             * @since v0.11.15\n             * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`.\n             */\n            readUIntLE(offset: number, byteLength: number): number;\n            /**\n             * @alias Buffer.readUIntLE\n             * @since v14.9.0, v12.19.0\n             */\n            readUintLE(offset: number, byteLength: number): number;\n            /**\n             * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned big-endian integer supporting\n             * up to 48 bits of accuracy.\n             *\n             * This function is also available under the `readUintBE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);\n             *\n             * console.log(buf.readUIntBE(0, 6).toString(16));\n             * // Prints: 1234567890ab\n             * console.log(buf.readUIntBE(1, 6).toString(16));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.11.15\n             * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`.\n             */\n            readUIntBE(offset: number, byteLength: number): number;\n            /**\n             * @alias Buffer.readUIntBE\n             * @since v14.9.0, v12.19.0\n             */\n            readUintBE(offset: number, byteLength: number): number;\n            /**\n             * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as a little-endian, two's complement signed value\n             * supporting up to 48 bits of accuracy.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);\n             *\n             * console.log(buf.readIntLE(0, 6).toString(16));\n             * // Prints: -546f87a9cbee\n             * ```\n             * @since v0.11.15\n             * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`.\n             */\n            readIntLE(offset: number, byteLength: number): number;\n            /**\n             * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as a big-endian, two's complement signed value\n             * supporting up to 48 bits of accuracy.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);\n             *\n             * console.log(buf.readIntBE(0, 6).toString(16));\n             * // Prints: 1234567890ab\n             * console.log(buf.readIntBE(1, 6).toString(16));\n             * // Throws ERR_OUT_OF_RANGE.\n             * console.log(buf.readIntBE(1, 0).toString(16));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.11.15\n             * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`.\n             * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`.\n             */\n            readIntBE(offset: number, byteLength: number): number;\n            /**\n             * Reads an unsigned 8-bit integer from `buf` at the specified `offset`.\n             *\n             * This function is also available under the `readUint8` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([1, -2]);\n             *\n             * console.log(buf.readUInt8(0));\n             * // Prints: 1\n             * console.log(buf.readUInt8(1));\n             * // Prints: 254\n             * console.log(buf.readUInt8(2));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`.\n             */\n            readUInt8(offset?: number): number;\n            /**\n             * @alias Buffer.readUInt8\n             * @since v14.9.0, v12.19.0\n             */\n            readUint8(offset?: number): number;\n            /**\n             * Reads an unsigned, little-endian 16-bit integer from `buf` at the specified `offset`.\n             *\n             * This function is also available under the `readUint16LE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56]);\n             *\n             * console.log(buf.readUInt16LE(0).toString(16));\n             * // Prints: 3412\n             * console.log(buf.readUInt16LE(1).toString(16));\n             * // Prints: 5634\n             * console.log(buf.readUInt16LE(2).toString(16));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`.\n             */\n            readUInt16LE(offset?: number): number;\n            /**\n             * @alias Buffer.readUInt16LE\n             * @since v14.9.0, v12.19.0\n             */\n            readUint16LE(offset?: number): number;\n            /**\n             * Reads an unsigned, big-endian 16-bit integer from `buf` at the specified`offset`.\n             *\n             * This function is also available under the `readUint16BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56]);\n             *\n             * console.log(buf.readUInt16BE(0).toString(16));\n             * // Prints: 1234\n             * console.log(buf.readUInt16BE(1).toString(16));\n             * // Prints: 3456\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`.\n             */\n            readUInt16BE(offset?: number): number;\n            /**\n             * @alias Buffer.readUInt16BE\n             * @since v14.9.0, v12.19.0\n             */\n            readUint16BE(offset?: number): number;\n            /**\n             * Reads an unsigned, little-endian 32-bit integer from `buf` at the specified`offset`.\n             *\n             * This function is also available under the `readUint32LE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]);\n             *\n             * console.log(buf.readUInt32LE(0).toString(16));\n             * // Prints: 78563412\n             * console.log(buf.readUInt32LE(1).toString(16));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readUInt32LE(offset?: number): number;\n            /**\n             * @alias Buffer.readUInt32LE\n             * @since v14.9.0, v12.19.0\n             */\n            readUint32LE(offset?: number): number;\n            /**\n             * Reads an unsigned, big-endian 32-bit integer from `buf` at the specified`offset`.\n             *\n             * This function is also available under the `readUint32BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]);\n             *\n             * console.log(buf.readUInt32BE(0).toString(16));\n             * // Prints: 12345678\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readUInt32BE(offset?: number): number;\n            /**\n             * @alias Buffer.readUInt32BE\n             * @since v14.9.0, v12.19.0\n             */\n            readUint32BE(offset?: number): number;\n            /**\n             * Reads a signed 8-bit integer from `buf` at the specified `offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed values.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([-1, 5]);\n             *\n             * console.log(buf.readInt8(0));\n             * // Prints: -1\n             * console.log(buf.readInt8(1));\n             * // Prints: 5\n             * console.log(buf.readInt8(2));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.0\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`.\n             */\n            readInt8(offset?: number): number;\n            /**\n             * Reads a signed, little-endian 16-bit integer from `buf` at the specified`offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed values.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0, 5]);\n             *\n             * console.log(buf.readInt16LE(0));\n             * // Prints: 1280\n             * console.log(buf.readInt16LE(1));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`.\n             */\n            readInt16LE(offset?: number): number;\n            /**\n             * Reads a signed, big-endian 16-bit integer from `buf` at the specified `offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed values.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0, 5]);\n             *\n             * console.log(buf.readInt16BE(0));\n             * // Prints: 5\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`.\n             */\n            readInt16BE(offset?: number): number;\n            /**\n             * Reads a signed, little-endian 32-bit integer from `buf` at the specified`offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed values.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0, 0, 0, 5]);\n             *\n             * console.log(buf.readInt32LE(0));\n             * // Prints: 83886080\n             * console.log(buf.readInt32LE(1));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readInt32LE(offset?: number): number;\n            /**\n             * Reads a signed, big-endian 32-bit integer from `buf` at the specified `offset`.\n             *\n             * Integers read from a `Buffer` are interpreted as two's complement signed values.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([0, 0, 0, 5]);\n             *\n             * console.log(buf.readInt32BE(0));\n             * // Prints: 5\n             * ```\n             * @since v0.5.5\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readInt32BE(offset?: number): number;\n            /**\n             * Reads a 32-bit, little-endian float from `buf` at the specified `offset`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([1, 2, 3, 4]);\n             *\n             * console.log(buf.readFloatLE(0));\n             * // Prints: 1.539989614439558e-36\n             * console.log(buf.readFloatLE(1));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.11.15\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readFloatLE(offset?: number): number;\n            /**\n             * Reads a 32-bit, big-endian float from `buf` at the specified `offset`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([1, 2, 3, 4]);\n             *\n             * console.log(buf.readFloatBE(0));\n             * // Prints: 2.387939260590663e-38\n             * ```\n             * @since v0.11.15\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`.\n             */\n            readFloatBE(offset?: number): number;\n            /**\n             * Reads a 64-bit, little-endian double from `buf` at the specified `offset`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);\n             *\n             * console.log(buf.readDoubleLE(0));\n             * // Prints: 5.447603722011605e-270\n             * console.log(buf.readDoubleLE(1));\n             * // Throws ERR_OUT_OF_RANGE.\n             * ```\n             * @since v0.11.15\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`.\n             */\n            readDoubleLE(offset?: number): number;\n            /**\n             * Reads a 64-bit, big-endian double from `buf` at the specified `offset`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);\n             *\n             * console.log(buf.readDoubleBE(0));\n             * // Prints: 8.20788039913184e-304\n             * ```\n             * @since v0.11.15\n             * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`.\n             */\n            readDoubleBE(offset?: number): number;\n            reverse(): this;\n            /**\n             * Interprets `buf` as an array of unsigned 16-bit integers and swaps the\n             * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 2.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 01 02 03 04 05 06 07 08>\n             *\n             * buf1.swap16();\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 02 01 04 03 06 05 08 07>\n             *\n             * const buf2 = Buffer.from([0x1, 0x2, 0x3]);\n             *\n             * buf2.swap16();\n             * // Throws ERR_INVALID_BUFFER_SIZE.\n             * ```\n             *\n             * One convenient use of `buf.swap16()` is to perform a fast in-place conversion\n             * between UTF-16 little-endian and UTF-16 big-endian:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('This is little-endian UTF-16', 'utf16le');\n             * buf.swap16(); // Convert to big-endian UTF-16 text.\n             * ```\n             * @since v5.10.0\n             * @return A reference to `buf`.\n             */\n            swap16(): this;\n            /**\n             * Interprets `buf` as an array of unsigned 32-bit integers and swaps the\n             * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 4.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 01 02 03 04 05 06 07 08>\n             *\n             * buf1.swap32();\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 04 03 02 01 08 07 06 05>\n             *\n             * const buf2 = Buffer.from([0x1, 0x2, 0x3]);\n             *\n             * buf2.swap32();\n             * // Throws ERR_INVALID_BUFFER_SIZE.\n             * ```\n             * @since v5.10.0\n             * @return A reference to `buf`.\n             */\n            swap32(): this;\n            /**\n             * Interprets `buf` as an array of 64-bit numbers and swaps byte order _in-place_.\n             * Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 8.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]);\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 01 02 03 04 05 06 07 08>\n             *\n             * buf1.swap64();\n             *\n             * console.log(buf1);\n             * // Prints: <Buffer 08 07 06 05 04 03 02 01>\n             *\n             * const buf2 = Buffer.from([0x1, 0x2, 0x3]);\n             *\n             * buf2.swap64();\n             * // Throws ERR_INVALID_BUFFER_SIZE.\n             * ```\n             * @since v6.3.0\n             * @return A reference to `buf`.\n             */\n            swap64(): this;\n            /**\n             * Writes `value` to `buf` at the specified `offset`. `value` must be a\n             * valid unsigned 8-bit integer. Behavior is undefined when `value` is anything\n             * other than an unsigned 8-bit integer.\n             *\n             * This function is also available under the `writeUint8` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeUInt8(0x3, 0);\n             * buf.writeUInt8(0x4, 1);\n             * buf.writeUInt8(0x23, 2);\n             * buf.writeUInt8(0x42, 3);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 03 04 23 42>\n             * ```\n             * @since v0.5.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUInt8(value: number, offset?: number): number;\n            /**\n             * @alias Buffer.writeUInt8\n             * @since v14.9.0, v12.19.0\n             */\n            writeUint8(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid unsigned 16-bit integer. Behavior is undefined when `value` is\n             * anything other than an unsigned 16-bit integer.\n             *\n             * This function is also available under the `writeUint16LE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeUInt16LE(0xdead, 0);\n             * buf.writeUInt16LE(0xbeef, 2);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer ad de ef be>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUInt16LE(value: number, offset?: number): number;\n            /**\n             * @alias Buffer.writeUInt16LE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUint16LE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid unsigned 16-bit integer. Behavior is undefined when `value`is anything other than an\n             * unsigned 16-bit integer.\n             *\n             * This function is also available under the `writeUint16BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeUInt16BE(0xdead, 0);\n             * buf.writeUInt16BE(0xbeef, 2);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer de ad be ef>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUInt16BE(value: number, offset?: number): number;\n            /**\n             * @alias Buffer.writeUInt16BE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUint16BE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid unsigned 32-bit integer. Behavior is undefined when `value` is\n             * anything other than an unsigned 32-bit integer.\n             *\n             * This function is also available under the `writeUint32LE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeUInt32LE(0xfeedface, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer ce fa ed fe>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUInt32LE(value: number, offset?: number): number;\n            /**\n             * @alias Buffer.writeUInt32LE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUint32LE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid unsigned 32-bit integer. Behavior is undefined when `value`is anything other than an\n             * unsigned 32-bit integer.\n             *\n             * This function is also available under the `writeUint32BE` alias.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeUInt32BE(0xfeedface, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer fe ed fa ce>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeUInt32BE(value: number, offset?: number): number;\n            /**\n             * @alias Buffer.writeUInt32BE\n             * @since v14.9.0, v12.19.0\n             */\n            writeUint32BE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset`. `value` must be a valid\n             * signed 8-bit integer. Behavior is undefined when `value` is anything other than\n             * a signed 8-bit integer.\n             *\n             * `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(2);\n             *\n             * buf.writeInt8(2, 0);\n             * buf.writeInt8(-2, 1);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 02 fe>\n             * ```\n             * @since v0.5.0\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeInt8(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian.  The `value` must be a valid signed 16-bit integer. Behavior is undefined when `value` is\n             * anything other than a signed 16-bit integer.\n             *\n             * The `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(2);\n             *\n             * buf.writeInt16LE(0x0304, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 04 03>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeInt16LE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian.  The `value` must be a valid signed 16-bit integer. Behavior is undefined when `value` is\n             * anything other than a signed 16-bit integer.\n             *\n             * The `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(2);\n             *\n             * buf.writeInt16BE(0x0102, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 01 02>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeInt16BE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid signed 32-bit integer. Behavior is undefined when `value` is\n             * anything other than a signed 32-bit integer.\n             *\n             * The `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeInt32LE(0x05060708, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 08 07 06 05>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeInt32LE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid signed 32-bit integer. Behavior is undefined when `value` is\n             * anything other than a signed 32-bit integer.\n             *\n             * The `value` is interpreted and written as a two's complement signed integer.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeInt32BE(0x01020304, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 01 02 03 04>\n             * ```\n             * @since v0.5.5\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeInt32BE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian. Behavior is\n             * undefined when `value` is anything other than a JavaScript number.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeFloatLE(0xcafebabe, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer bb fe 4a 4f>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeFloatLE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian. Behavior is\n             * undefined when `value` is anything other than a JavaScript number.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(4);\n             *\n             * buf.writeFloatBE(0xcafebabe, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 4f 4a fe bb>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeFloatBE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything\n             * other than a JavaScript number.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeDoubleLE(123.456, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 77 be 9f 1a 2f dd 5e 40>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeDoubleLE(value: number, offset?: number): number;\n            /**\n             * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything\n             * other than a JavaScript number.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(8);\n             *\n             * buf.writeDoubleBE(123.456, 0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 40 5e dd 2f 1a 9f be 77>\n             * ```\n             * @since v0.11.15\n             * @param value Number to be written to `buf`.\n             * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`.\n             * @return `offset` plus the number of bytes written.\n             */\n            writeDoubleBE(value: number, offset?: number): number;\n            /**\n             * Fills `buf` with the specified `value`. If the `offset` and `end` are not given,\n             * the entire `buf` will be filled:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Fill a `Buffer` with the ASCII character 'h'.\n             *\n             * const b = Buffer.allocUnsafe(50).fill('h');\n             *\n             * console.log(b.toString());\n             * // Prints: hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh\n             *\n             * // Fill a buffer with empty string\n             * const c = Buffer.allocUnsafe(5).fill('');\n             *\n             * console.log(c.fill(''));\n             * // Prints: <Buffer 00 00 00 00 00>\n             * ```\n             *\n             * `value` is coerced to a `uint32` value if it is not a string, `Buffer`, or\n             * integer. If the resulting integer is greater than `255` (decimal), `buf` will be\n             * filled with `value &#x26; 255`.\n             *\n             * If the final write of a `fill()` operation falls on a multi-byte character,\n             * then only the bytes of that character that fit into `buf` are written:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Fill a `Buffer` with character that takes up two bytes in UTF-8.\n             *\n             * console.log(Buffer.allocUnsafe(5).fill('\\u0222'));\n             * // Prints: <Buffer c8 a2 c8 a2 c8>\n             * ```\n             *\n             * If `value` contains invalid characters, it is truncated; if no valid\n             * fill data remains, an exception is thrown:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(5);\n             *\n             * console.log(buf.fill('a'));\n             * // Prints: <Buffer 61 61 61 61 61>\n             * console.log(buf.fill('aazz', 'hex'));\n             * // Prints: <Buffer aa aa aa aa aa>\n             * console.log(buf.fill('zz', 'hex'));\n             * // Throws an exception.\n             * ```\n             * @since v0.5.0\n             * @param value The value with which to fill `buf`. Empty value (string, Uint8Array, Buffer) is coerced to `0`.\n             * @param [offset=0] Number of bytes to skip before starting to fill `buf`.\n             * @param [end=buf.length] Where to stop filling `buf` (not inclusive).\n             * @param [encoding='utf8'] The encoding for `value` if `value` is a string.\n             * @return A reference to `buf`.\n             */\n            fill(value: string | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): this;\n            /**\n             * If `value` is:\n             *\n             * * a string, `value` is interpreted according to the character encoding in `encoding`.\n             * * a `Buffer` or [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array), `value` will be used in its entirety.\n             * To compare a partial `Buffer`, use `buf.subarray`.\n             * * a number, `value` will be interpreted as an unsigned 8-bit integer\n             * value between `0` and `255`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('this is a buffer');\n             *\n             * console.log(buf.indexOf('this'));\n             * // Prints: 0\n             * console.log(buf.indexOf('is'));\n             * // Prints: 2\n             * console.log(buf.indexOf(Buffer.from('a buffer')));\n             * // Prints: 8\n             * console.log(buf.indexOf(97));\n             * // Prints: 8 (97 is the decimal ASCII value for 'a')\n             * console.log(buf.indexOf(Buffer.from('a buffer example')));\n             * // Prints: -1\n             * console.log(buf.indexOf(Buffer.from('a buffer example').slice(0, 8)));\n             * // Prints: 8\n             *\n             * const utf16Buffer = Buffer.from('\\u039a\\u0391\\u03a3\\u03a3\\u0395', 'utf16le');\n             *\n             * console.log(utf16Buffer.indexOf('\\u03a3', 0, 'utf16le'));\n             * // Prints: 4\n             * console.log(utf16Buffer.indexOf('\\u03a3', -4, 'utf16le'));\n             * // Prints: 6\n             * ```\n             *\n             * If `value` is not a string, number, or `Buffer`, this method will throw a `TypeError`. If `value` is a number, it will be coerced to a valid byte value,\n             * an integer between 0 and 255.\n             *\n             * If `byteOffset` is not a number, it will be coerced to a number. If the result\n             * of coercion is `NaN` or `0`, then the entire buffer will be searched. This\n             * behavior matches [`String.prototype.indexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf).\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const b = Buffer.from('abcdef');\n             *\n             * // Passing a value that's a number, but not a valid byte.\n             * // Prints: 2, equivalent to searching for 99 or 'c'.\n             * console.log(b.indexOf(99.9));\n             * console.log(b.indexOf(256 + 99));\n             *\n             * // Passing a byteOffset that coerces to NaN or 0.\n             * // Prints: 1, searching the whole buffer.\n             * console.log(b.indexOf('b', undefined));\n             * console.log(b.indexOf('b', {}));\n             * console.log(b.indexOf('b', null));\n             * console.log(b.indexOf('b', []));\n             * ```\n             *\n             * If `value` is an empty string or empty `Buffer` and `byteOffset` is less\n             * than `buf.length`, `byteOffset` will be returned. If `value` is empty and`byteOffset` is at least `buf.length`, `buf.length` will be returned.\n             * @since v1.5.0\n             * @param value What to search for.\n             * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`.\n             * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`.\n             * @return The index of the first occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`.\n             */\n            indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;\n            /**\n             * Identical to `buf.indexOf()`, except the last occurrence of `value` is found\n             * rather than the first occurrence.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('this buffer is a buffer');\n             *\n             * console.log(buf.lastIndexOf('this'));\n             * // Prints: 0\n             * console.log(buf.lastIndexOf('buffer'));\n             * // Prints: 17\n             * console.log(buf.lastIndexOf(Buffer.from('buffer')));\n             * // Prints: 17\n             * console.log(buf.lastIndexOf(97));\n             * // Prints: 15 (97 is the decimal ASCII value for 'a')\n             * console.log(buf.lastIndexOf(Buffer.from('yolo')));\n             * // Prints: -1\n             * console.log(buf.lastIndexOf('buffer', 5));\n             * // Prints: 5\n             * console.log(buf.lastIndexOf('buffer', 4));\n             * // Prints: -1\n             *\n             * const utf16Buffer = Buffer.from('\\u039a\\u0391\\u03a3\\u03a3\\u0395', 'utf16le');\n             *\n             * console.log(utf16Buffer.lastIndexOf('\\u03a3', undefined, 'utf16le'));\n             * // Prints: 6\n             * console.log(utf16Buffer.lastIndexOf('\\u03a3', -5, 'utf16le'));\n             * // Prints: 4\n             * ```\n             *\n             * If `value` is not a string, number, or `Buffer`, this method will throw a `TypeError`. If `value` is a number, it will be coerced to a valid byte value,\n             * an integer between 0 and 255.\n             *\n             * If `byteOffset` is not a number, it will be coerced to a number. Any arguments\n             * that coerce to `NaN`, like `{}` or `undefined`, will search the whole buffer.\n             * This behavior matches [`String.prototype.lastIndexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf).\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const b = Buffer.from('abcdef');\n             *\n             * // Passing a value that's a number, but not a valid byte.\n             * // Prints: 2, equivalent to searching for 99 or 'c'.\n             * console.log(b.lastIndexOf(99.9));\n             * console.log(b.lastIndexOf(256 + 99));\n             *\n             * // Passing a byteOffset that coerces to NaN.\n             * // Prints: 1, searching the whole buffer.\n             * console.log(b.lastIndexOf('b', undefined));\n             * console.log(b.lastIndexOf('b', {}));\n             *\n             * // Passing a byteOffset that coerces to 0.\n             * // Prints: -1, equivalent to passing 0.\n             * console.log(b.lastIndexOf('b', null));\n             * console.log(b.lastIndexOf('b', []));\n             * ```\n             *\n             * If `value` is an empty string or empty `Buffer`, `byteOffset` will be returned.\n             * @since v6.0.0\n             * @param value What to search for.\n             * @param [byteOffset=buf.length - 1] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`.\n             * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`.\n             * @return The index of the last occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`.\n             */\n            lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number;\n            /**\n             * Equivalent to `buf.indexOf() !== -1`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('this is a buffer');\n             *\n             * console.log(buf.includes('this'));\n             * // Prints: true\n             * console.log(buf.includes('is'));\n             * // Prints: true\n             * console.log(buf.includes(Buffer.from('a buffer')));\n             * // Prints: true\n             * console.log(buf.includes(97));\n             * // Prints: true (97 is the decimal ASCII value for 'a')\n             * console.log(buf.includes(Buffer.from('a buffer example')));\n             * // Prints: false\n             * console.log(buf.includes(Buffer.from('a buffer example').slice(0, 8)));\n             * // Prints: true\n             * console.log(buf.includes('this', 4));\n             * // Prints: false\n             * ```\n             * @since v5.3.0\n             * @param value What to search for.\n             * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`.\n             * @param [encoding='utf8'] If `value` is a string, this is its encoding.\n             * @return `true` if `value` was found in `buf`, `false` otherwise.\n             */\n            includes(value: string | number | Buffer, byteOffset?: number, encoding?: BufferEncoding): boolean;\n        }\n        var Buffer: BufferConstructor;\n        /**\n         * Decodes a string of Base64-encoded data into bytes, and encodes those bytes\n         * into a string using Latin-1 (ISO-8859-1).\n         *\n         * The `data` may be any JavaScript-value that can be coerced into a string.\n         *\n         * **This function is only provided for compatibility with legacy web platform APIs**\n         * **and should never be used in new code, because they use strings to represent**\n         * **binary data and predate the introduction of typed arrays in JavaScript.**\n         * **For code running using Node.js APIs, converting between base64-encoded strings**\n         * **and binary data should be performed using `Buffer.from(str, 'base64')` and `buf.toString('base64')`.**\n         * @since v15.13.0, v14.17.0\n         * @legacy Use `Buffer.from(data, 'base64')` instead.\n         * @param data The Base64-encoded input string.\n         */\n        function atob(data: string): string;\n        /**\n         * Decodes a string into bytes using Latin-1 (ISO-8859), and encodes those bytes\n         * into a string using Base64.\n         *\n         * The `data` may be any JavaScript-value that can be coerced into a string.\n         *\n         * **This function is only provided for compatibility with legacy web platform APIs**\n         * **and should never be used in new code, because they use strings to represent**\n         * **binary data and predate the introduction of typed arrays in JavaScript.**\n         * **For code running using Node.js APIs, converting between base64-encoded strings**\n         * **and binary data should be performed using `Buffer.from(str, 'base64')` and `buf.toString('base64')`.**\n         * @since v15.13.0, v14.17.0\n         * @legacy Use `buf.toString('base64')` instead.\n         * @param data An ASCII (Latin1) string.\n         */\n        function btoa(data: string): string;\n        interface Blob extends _Blob {}\n        /**\n         * `Blob` class is a global reference for `import { Blob } from 'node:buffer'`\n         * https://nodejs.org/api/buffer.html#class-blob\n         * @since v18.0.0\n         */\n        var Blob: typeof globalThis extends { onmessage: any; Blob: infer T } ? T\n            : typeof import(\"buffer\").Blob;\n        interface File extends _File {}\n        /**\n         * `File` class is a global reference for `import { File } from 'node:buffer'`\n         * https://nodejs.org/api/buffer.html#class-file\n         * @since v20.0.0\n         */\n        var File: typeof globalThis extends { onmessage: any; File: infer T } ? T\n            : typeof import(\"buffer\").File;\n    }\n}\ndeclare module \"node:buffer\" {\n    export * from \"buffer\";\n}\n",
    "node_modules/@types/node/child_process.d.ts": "/**\n * The `node:child_process` module provides the ability to spawn subprocesses in\n * a manner that is similar, but not identical, to [`popen(3)`](http://man7.org/linux/man-pages/man3/popen.3.html). This capability\n * is primarily provided by the {@link spawn} function:\n *\n * ```js\n * import { spawn } from 'node:child_process';\n * const ls = spawn('ls', ['-lh', '/usr']);\n *\n * ls.stdout.on('data', (data) => {\n *   console.log(`stdout: ${data}`);\n * });\n *\n * ls.stderr.on('data', (data) => {\n *   console.error(`stderr: ${data}`);\n * });\n *\n * ls.on('close', (code) => {\n *   console.log(`child process exited with code ${code}`);\n * });\n * ```\n *\n * By default, pipes for `stdin`, `stdout`, and `stderr` are established between\n * the parent Node.js process and the spawned subprocess. These pipes have\n * limited (and platform-specific) capacity. If the subprocess writes to\n * stdout in excess of that limit without the output being captured, the\n * subprocess blocks waiting for the pipe buffer to accept more data. This is\n * identical to the behavior of pipes in the shell. Use the `{ stdio: 'ignore' }` option if the output will not be consumed.\n *\n * The command lookup is performed using the `options.env.PATH` environment\n * variable if `env` is in the `options` object. Otherwise, `process.env.PATH` is\n * used. If `options.env` is set without `PATH`, lookup on Unix is performed\n * on a default search path search of `/usr/bin:/bin` (see your operating system's\n * manual for execvpe/execvp), on Windows the current processes environment\n * variable `PATH` is used.\n *\n * On Windows, environment variables are case-insensitive. Node.js\n * lexicographically sorts the `env` keys and uses the first one that\n * case-insensitively matches. Only first (in lexicographic order) entry will be\n * passed to the subprocess. This might lead to issues on Windows when passing\n * objects to the `env` option that have multiple variants of the same key, such as `PATH` and `Path`.\n *\n * The {@link spawn} method spawns the child process asynchronously,\n * without blocking the Node.js event loop. The {@link spawnSync} function provides equivalent functionality in a synchronous manner that blocks\n * the event loop until the spawned process either exits or is terminated.\n *\n * For convenience, the `node:child_process` module provides a handful of\n * synchronous and asynchronous alternatives to {@link spawn} and {@link spawnSync}. Each of these alternatives are implemented on\n * top of {@link spawn} or {@link spawnSync}.\n *\n * * {@link exec}: spawns a shell and runs a command within that\n * shell, passing the `stdout` and `stderr` to a callback function when\n * complete.\n * * {@link execFile}: similar to {@link exec} except\n * that it spawns the command directly without first spawning a shell by\n * default.\n * * {@link fork}: spawns a new Node.js process and invokes a\n * specified module with an IPC communication channel established that allows\n * sending messages between parent and child.\n * * {@link execSync}: a synchronous version of {@link exec} that will block the Node.js event loop.\n * * {@link execFileSync}: a synchronous version of {@link execFile} that will block the Node.js event loop.\n *\n * For certain use cases, such as automating shell scripts, the `synchronous counterparts` may be more convenient. In many cases, however,\n * the synchronous methods can have significant impact on performance due to\n * stalling the event loop while spawned processes complete.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/child_process.js)\n */\ndeclare module \"child_process\" {\n    import { ObjectEncodingOptions } from \"node:fs\";\n    import { Abortable, EventEmitter } from \"node:events\";\n    import * as dgram from \"node:dgram\";\n    import * as net from \"node:net\";\n    import { Pipe, Readable, Stream, Writable } from \"node:stream\";\n    import { URL } from \"node:url\";\n    type Serializable = string | object | number | boolean | bigint;\n    type SendHandle = net.Socket | net.Server | dgram.Socket | undefined;\n    /**\n     * Instances of the `ChildProcess` represent spawned child processes.\n     *\n     * Instances of `ChildProcess` are not intended to be created directly. Rather,\n     * use the {@link spawn}, {@link exec},{@link execFile}, or {@link fork} methods to create\n     * instances of `ChildProcess`.\n     * @since v2.2.0\n     */\n    class ChildProcess extends EventEmitter {\n        /**\n         * A `Writable Stream` that represents the child process's `stdin`.\n         *\n         * If a child process waits to read all of its input, the child will not continue\n         * until this stream has been closed via `end()`.\n         *\n         * If the child was spawned with `stdio[0]` set to anything other than `'pipe'`,\n         * then this will be `null`.\n         *\n         * `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will\n         * refer to the same value.\n         *\n         * The `subprocess.stdin` property can be `null` or `undefined` if the child process could not be successfully spawned.\n         * @since v0.1.90\n         */\n        stdin: Writable | null;\n        /**\n         * A `Readable Stream` that represents the child process's `stdout`.\n         *\n         * If the child was spawned with `stdio[1]` set to anything other than `'pipe'`,\n         * then this will be `null`.\n         *\n         * `subprocess.stdout` is an alias for `subprocess.stdio[1]`. Both properties will\n         * refer to the same value.\n         *\n         * ```js\n         * import { spawn } from 'node:child_process';\n         *\n         * const subprocess = spawn('ls');\n         *\n         * subprocess.stdout.on('data', (data) => {\n         *   console.log(`Received chunk ${data}`);\n         * });\n         * ```\n         *\n         * The `subprocess.stdout` property can be `null` or `undefined` if the child process could not be successfully spawned.\n         * @since v0.1.90\n         */\n        stdout: Readable | null;\n        /**\n         * A `Readable Stream` that represents the child process's `stderr`.\n         *\n         * If the child was spawned with `stdio[2]` set to anything other than `'pipe'`,\n         * then this will be `null`.\n         *\n         * `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will\n         * refer to the same value.\n         *\n         * The `subprocess.stderr` property can be `null` or `undefined` if the child process could not be successfully spawned.\n         * @since v0.1.90\n         */\n        stderr: Readable | null;\n        /**\n         * The `subprocess.channel` property is a reference to the child's IPC channel. If\n         * no IPC channel exists, this property is `undefined`.\n         * @since v7.1.0\n         */\n        readonly channel?: Pipe | null | undefined;\n        /**\n         * A sparse array of pipes to the child process, corresponding with positions in\n         * the `stdio` option passed to {@link spawn} that have been set\n         * to the value `'pipe'`. `subprocess.stdio[0]`, `subprocess.stdio[1]`, and `subprocess.stdio[2]` are also available as `subprocess.stdin`, `subprocess.stdout`, and `subprocess.stderr`,\n         * respectively.\n         *\n         * In the following example, only the child's fd `1` (stdout) is configured as a\n         * pipe, so only the parent's `subprocess.stdio[1]` is a stream, all other values\n         * in the array are `null`.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         * import fs from 'node:fs';\n         * import child_process from 'node:child_process';\n         *\n         * const subprocess = child_process.spawn('ls', {\n         *   stdio: [\n         *     0, // Use parent's stdin for child.\n         *     'pipe', // Pipe child's stdout to parent.\n         *     fs.openSync('err.out', 'w'), // Direct child's stderr to a file.\n         *   ],\n         * });\n         *\n         * assert.strictEqual(subprocess.stdio[0], null);\n         * assert.strictEqual(subprocess.stdio[0], subprocess.stdin);\n         *\n         * assert(subprocess.stdout);\n         * assert.strictEqual(subprocess.stdio[1], subprocess.stdout);\n         *\n         * assert.strictEqual(subprocess.stdio[2], null);\n         * assert.strictEqual(subprocess.stdio[2], subprocess.stderr);\n         * ```\n         *\n         * The `subprocess.stdio` property can be `undefined` if the child process could\n         * not be successfully spawned.\n         * @since v0.7.10\n         */\n        readonly stdio: [\n            Writable | null,\n            // stdin\n            Readable | null,\n            // stdout\n            Readable | null,\n            // stderr\n            Readable | Writable | null | undefined,\n            // extra\n            Readable | Writable | null | undefined, // extra\n        ];\n        /**\n         * The `subprocess.killed` property indicates whether the child process\n         * successfully received a signal from `subprocess.kill()`. The `killed` property\n         * does not indicate that the child process has been terminated.\n         * @since v0.5.10\n         */\n        readonly killed: boolean;\n        /**\n         * Returns the process identifier (PID) of the child process. If the child process\n         * fails to spawn due to errors, then the value is `undefined` and `error` is\n         * emitted.\n         *\n         * ```js\n         * import { spawn } from 'node:child_process';\n         * const grep = spawn('grep', ['ssh']);\n         *\n         * console.log(`Spawned child pid: ${grep.pid}`);\n         * grep.stdin.end();\n         * ```\n         * @since v0.1.90\n         */\n        readonly pid?: number | undefined;\n        /**\n         * The `subprocess.connected` property indicates whether it is still possible to\n         * send and receive messages from a child process. When `subprocess.connected` is `false`, it is no longer possible to send or receive messages.\n         * @since v0.7.2\n         */\n        readonly connected: boolean;\n        /**\n         * The `subprocess.exitCode` property indicates the exit code of the child process.\n         * If the child process is still running, the field will be `null`.\n         */\n        readonly exitCode: number | null;\n        /**\n         * The `subprocess.signalCode` property indicates the signal received by\n         * the child process if any, else `null`.\n         */\n        readonly signalCode: NodeJS.Signals | null;\n        /**\n         * The `subprocess.spawnargs` property represents the full list of command-line\n         * arguments the child process was launched with.\n         */\n        readonly spawnargs: string[];\n        /**\n         * The `subprocess.spawnfile` property indicates the executable file name of\n         * the child process that is launched.\n         *\n         * For {@link fork}, its value will be equal to `process.execPath`.\n         * For {@link spawn}, its value will be the name of\n         * the executable file.\n         * For {@link exec},  its value will be the name of the shell\n         * in which the child process is launched.\n         */\n        readonly spawnfile: string;\n        /**\n         * The `subprocess.kill()` method sends a signal to the child process. If no\n         * argument is given, the process will be sent the `'SIGTERM'` signal. See [`signal(7)`](http://man7.org/linux/man-pages/man7/signal.7.html) for a list of available signals. This function\n         * returns `true` if [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) succeeds, and `false` otherwise.\n         *\n         * ```js\n         * import { spawn } from 'node:child_process';\n         * const grep = spawn('grep', ['ssh']);\n         *\n         * grep.on('close', (code, signal) => {\n         *   console.log(\n         *     `child process terminated due to receipt of signal ${signal}`);\n         * });\n         *\n         * // Send SIGHUP to process.\n         * grep.kill('SIGHUP');\n         * ```\n         *\n         * The `ChildProcess` object may emit an `'error'` event if the signal\n         * cannot be delivered. Sending a signal to a child process that has already exited\n         * is not an error but may have unforeseen consequences. Specifically, if the\n         * process identifier (PID) has been reassigned to another process, the signal will\n         * be delivered to that process instead which can have unexpected results.\n         *\n         * While the function is called `kill`, the signal delivered to the child process\n         * may not actually terminate the process.\n         *\n         * See [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for reference.\n         *\n         * On Windows, where POSIX signals do not exist, the `signal` argument will be\n         * ignored, and the process will be killed forcefully and abruptly (similar to `'SIGKILL'`).\n         * See `Signal Events` for more details.\n         *\n         * On Linux, child processes of child processes will not be terminated\n         * when attempting to kill their parent. This is likely to happen when running a\n         * new process in a shell or with the use of the `shell` option of `ChildProcess`:\n         *\n         * ```js\n         * 'use strict';\n         * import { spawn } from 'node:child_process';\n         *\n         * const subprocess = spawn(\n         *   'sh',\n         *   [\n         *     '-c',\n         *     `node -e \"setInterval(() => {\n         *       console.log(process.pid, 'is alive')\n         *     }, 500);\"`,\n         *   ], {\n         *     stdio: ['inherit', 'inherit', 'inherit'],\n         *   },\n         * );\n         *\n         * setTimeout(() => {\n         *   subprocess.kill(); // Does not terminate the Node.js process in the shell.\n         * }, 2000);\n         * ```\n         * @since v0.1.90\n         */\n        kill(signal?: NodeJS.Signals | number): boolean;\n        /**\n         * Calls {@link ChildProcess.kill} with `'SIGTERM'`.\n         * @since v20.5.0\n         */\n        [Symbol.dispose](): void;\n        /**\n         * When an IPC channel has been established between the parent and child (\n         * i.e. when using {@link fork}), the `subprocess.send()` method can\n         * be used to send messages to the child process. When the child process is a\n         * Node.js instance, these messages can be received via the `'message'` event.\n         *\n         * The message goes through serialization and parsing. The resulting\n         * message might not be the same as what is originally sent.\n         *\n         * For example, in the parent script:\n         *\n         * ```js\n         * import cp from 'node:child_process';\n         * const n = cp.fork(`${__dirname}/sub.js`);\n         *\n         * n.on('message', (m) => {\n         *   console.log('PARENT got message:', m);\n         * });\n         *\n         * // Causes the child to print: CHILD got message: { hello: 'world' }\n         * n.send({ hello: 'world' });\n         * ```\n         *\n         * And then the child script, `'sub.js'` might look like this:\n         *\n         * ```js\n         * process.on('message', (m) => {\n         *   console.log('CHILD got message:', m);\n         * });\n         *\n         * // Causes the parent to print: PARENT got message: { foo: 'bar', baz: null }\n         * process.send({ foo: 'bar', baz: NaN });\n         * ```\n         *\n         * Child Node.js processes will have a `process.send()` method of their own\n         * that allows the child to send messages back to the parent.\n         *\n         * There is a special case when sending a `{cmd: 'NODE_foo'}` message. Messages\n         * containing a `NODE_` prefix in the `cmd` property are reserved for use within\n         * Node.js core and will not be emitted in the child's `'message'` event. Rather, such messages are emitted using the `'internalMessage'` event and are consumed internally by Node.js.\n         * Applications should avoid using such messages or listening for `'internalMessage'` events as it is subject to change without notice.\n         *\n         * The optional `sendHandle` argument that may be passed to `subprocess.send()` is\n         * for passing a TCP server or socket object to the child process. The child will\n         * receive the object as the second argument passed to the callback function\n         * registered on the `'message'` event. Any data that is received and buffered in\n         * the socket will not be sent to the child. Sending IPC sockets is not supported on Windows.\n         *\n         * The optional `callback` is a function that is invoked after the message is\n         * sent but before the child may have received it. The function is called with a\n         * single argument: `null` on success, or an `Error` object on failure.\n         *\n         * If no `callback` function is provided and the message cannot be sent, an `'error'` event will be emitted by the `ChildProcess` object. This can\n         * happen, for instance, when the child process has already exited.\n         *\n         * `subprocess.send()` will return `false` if the channel has closed or when the\n         * backlog of unsent messages exceeds a threshold that makes it unwise to send\n         * more. Otherwise, the method returns `true`. The `callback` function can be\n         * used to implement flow control.\n         *\n         * #### Example: sending a server object\n         *\n         * The `sendHandle` argument can be used, for instance, to pass the handle of\n         * a TCP server object to the child process as illustrated in the example below:\n         *\n         * ```js\n         * import { createServer } from 'node:net';\n         * import { fork } from 'node:child_process';\n         * const subprocess = fork('subprocess.js');\n         *\n         * // Open up the server object and send the handle.\n         * const server = createServer();\n         * server.on('connection', (socket) => {\n         *   socket.end('handled by parent');\n         * });\n         * server.listen(1337, () => {\n         *   subprocess.send('server', server);\n         * });\n         * ```\n         *\n         * The child would then receive the server object as:\n         *\n         * ```js\n         * process.on('message', (m, server) => {\n         *   if (m === 'server') {\n         *     server.on('connection', (socket) => {\n         *       socket.end('handled by child');\n         *     });\n         *   }\n         * });\n         * ```\n         *\n         * Once the server is now shared between the parent and child, some connections\n         * can be handled by the parent and some by the child.\n         *\n         * While the example above uses a server created using the `node:net` module, `node:dgram` module servers use exactly the same workflow with the exceptions of\n         * listening on a `'message'` event instead of `'connection'` and using `server.bind()` instead of `server.listen()`. This is, however, only\n         * supported on Unix platforms.\n         *\n         * #### Example: sending a socket object\n         *\n         * Similarly, the `sendHandler` argument can be used to pass the handle of a\n         * socket to the child process. The example below spawns two children that each\n         * handle connections with \"normal\" or \"special\" priority:\n         *\n         * ```js\n         * import { createServer } from 'node:net';\n         * import { fork } from 'node:child_process';\n         * const normal = fork('subprocess.js', ['normal']);\n         * const special = fork('subprocess.js', ['special']);\n         *\n         * // Open up the server and send sockets to child. Use pauseOnConnect to prevent\n         * // the sockets from being read before they are sent to the child process.\n         * const server = createServer({ pauseOnConnect: true });\n         * server.on('connection', (socket) => {\n         *\n         *   // If this is special priority...\n         *   if (socket.remoteAddress === '74.125.127.100') {\n         *     special.send('socket', socket);\n         *     return;\n         *   }\n         *   // This is normal priority.\n         *   normal.send('socket', socket);\n         * });\n         * server.listen(1337);\n         * ```\n         *\n         * The `subprocess.js` would receive the socket handle as the second argument\n         * passed to the event callback function:\n         *\n         * ```js\n         * process.on('message', (m, socket) => {\n         *   if (m === 'socket') {\n         *     if (socket) {\n         *       // Check that the client socket exists.\n         *       // It is possible for the socket to be closed between the time it is\n         *       // sent and the time it is received in the child process.\n         *       socket.end(`Request handled with ${process.argv[2]} priority`);\n         *     }\n         *   }\n         * });\n         * ```\n         *\n         * Do not use `.maxConnections` on a socket that has been passed to a subprocess.\n         * The parent cannot track when the socket is destroyed.\n         *\n         * Any `'message'` handlers in the subprocess should verify that `socket` exists,\n         * as the connection may have been closed during the time it takes to send the\n         * connection to the child.\n         * @since v0.5.9\n         * @param sendHandle `undefined`, or a [`net.Socket`](https://nodejs.org/docs/latest-v22.x/api/net.html#class-netsocket), [`net.Server`](https://nodejs.org/docs/latest-v22.x/api/net.html#class-netserver), or [`dgram.Socket`](https://nodejs.org/docs/latest-v22.x/api/dgram.html#class-dgramsocket) object.\n         * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles. `options` supports the following properties:\n         */\n        send(message: Serializable, callback?: (error: Error | null) => void): boolean;\n        send(message: Serializable, sendHandle?: SendHandle, callback?: (error: Error | null) => void): boolean;\n        send(\n            message: Serializable,\n            sendHandle?: SendHandle,\n            options?: MessageOptions,\n            callback?: (error: Error | null) => void,\n        ): boolean;\n        /**\n         * Closes the IPC channel between parent and child, allowing the child to exit\n         * gracefully once there are no other connections keeping it alive. After calling\n         * this method the `subprocess.connected` and `process.connected` properties in\n         * both the parent and child (respectively) will be set to `false`, and it will be\n         * no longer possible to pass messages between the processes.\n         *\n         * The `'disconnect'` event will be emitted when there are no messages in the\n         * process of being received. This will most often be triggered immediately after\n         * calling `subprocess.disconnect()`.\n         *\n         * When the child process is a Node.js instance (e.g. spawned using {@link fork}), the `process.disconnect()` method can be invoked\n         * within the child process to close the IPC channel as well.\n         * @since v0.7.2\n         */\n        disconnect(): void;\n        /**\n         * By default, the parent will wait for the detached child to exit. To prevent the\n         * parent from waiting for a given `subprocess` to exit, use the `subprocess.unref()` method. Doing so will cause the parent's event loop to not\n         * include the child in its reference count, allowing the parent to exit\n         * independently of the child, unless there is an established IPC channel between\n         * the child and the parent.\n         *\n         * ```js\n         * import { spawn } from 'node:child_process';\n         *\n         * const subprocess = spawn(process.argv[0], ['child_program.js'], {\n         *   detached: true,\n         *   stdio: 'ignore',\n         * });\n         *\n         * subprocess.unref();\n         * ```\n         * @since v0.7.10\n         */\n        unref(): void;\n        /**\n         * Calling `subprocess.ref()` after making a call to `subprocess.unref()` will\n         * restore the removed reference count for the child process, forcing the parent\n         * to wait for the child to exit before exiting itself.\n         *\n         * ```js\n         * import { spawn } from 'node:child_process';\n         *\n         * const subprocess = spawn(process.argv[0], ['child_program.js'], {\n         *   detached: true,\n         *   stdio: 'ignore',\n         * });\n         *\n         * subprocess.unref();\n         * subprocess.ref();\n         * ```\n         * @since v0.7.10\n         */\n        ref(): void;\n        /**\n         * events.EventEmitter\n         * 1. close\n         * 2. disconnect\n         * 3. error\n         * 4. exit\n         * 5. message\n         * 6. spawn\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        addListener(event: \"disconnect\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"exit\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        addListener(event: \"message\", listener: (message: Serializable, sendHandle: SendHandle) => void): this;\n        addListener(event: \"spawn\", listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\", code: number | null, signal: NodeJS.Signals | null): boolean;\n        emit(event: \"disconnect\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"exit\", code: number | null, signal: NodeJS.Signals | null): boolean;\n        emit(event: \"message\", message: Serializable, sendHandle: SendHandle): boolean;\n        emit(event: \"spawn\", listener: () => void): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        on(event: \"disconnect\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"exit\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        on(event: \"message\", listener: (message: Serializable, sendHandle: SendHandle) => void): this;\n        on(event: \"spawn\", listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        once(event: \"disconnect\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"exit\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        once(event: \"message\", listener: (message: Serializable, sendHandle: SendHandle) => void): this;\n        once(event: \"spawn\", listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        prependListener(event: \"disconnect\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"exit\", listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;\n        prependListener(event: \"message\", listener: (message: Serializable, sendHandle: SendHandle) => void): this;\n        prependListener(event: \"spawn\", listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(\n            event: \"close\",\n            listener: (code: number | null, signal: NodeJS.Signals | null) => void,\n        ): this;\n        prependOnceListener(event: \"disconnect\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(\n            event: \"exit\",\n            listener: (code: number | null, signal: NodeJS.Signals | null) => void,\n        ): this;\n        prependOnceListener(event: \"message\", listener: (message: Serializable, sendHandle: SendHandle) => void): this;\n        prependOnceListener(event: \"spawn\", listener: () => void): this;\n    }\n    // return this object when stdio option is undefined or not specified\n    interface ChildProcessWithoutNullStreams extends ChildProcess {\n        stdin: Writable;\n        stdout: Readable;\n        stderr: Readable;\n        readonly stdio: [\n            Writable,\n            Readable,\n            Readable,\n            // stderr\n            Readable | Writable | null | undefined,\n            // extra, no modification\n            Readable | Writable | null | undefined, // extra, no modification\n        ];\n    }\n    // return this object when stdio option is a tuple of 3\n    interface ChildProcessByStdio<I extends null | Writable, O extends null | Readable, E extends null | Readable>\n        extends ChildProcess\n    {\n        stdin: I;\n        stdout: O;\n        stderr: E;\n        readonly stdio: [\n            I,\n            O,\n            E,\n            Readable | Writable | null | undefined,\n            // extra, no modification\n            Readable | Writable | null | undefined, // extra, no modification\n        ];\n    }\n    interface MessageOptions {\n        keepOpen?: boolean | undefined;\n    }\n    type IOType = \"overlapped\" | \"pipe\" | \"ignore\" | \"inherit\";\n    type StdioOptions = IOType | Array<IOType | \"ipc\" | Stream | number | null | undefined>;\n    type SerializationType = \"json\" | \"advanced\";\n    interface MessagingOptions extends Abortable {\n        /**\n         * Specify the kind of serialization used for sending messages between processes.\n         * @default 'json'\n         */\n        serialization?: SerializationType | undefined;\n        /**\n         * The signal value to be used when the spawned process will be killed by the abort signal.\n         * @default 'SIGTERM'\n         */\n        killSignal?: NodeJS.Signals | number | undefined;\n        /**\n         * In milliseconds the maximum amount of time the process is allowed to run.\n         */\n        timeout?: number | undefined;\n    }\n    interface ProcessEnvOptions {\n        uid?: number | undefined;\n        gid?: number | undefined;\n        cwd?: string | URL | undefined;\n        env?: NodeJS.ProcessEnv | undefined;\n    }\n    interface CommonOptions extends ProcessEnvOptions {\n        /**\n         * @default false\n         */\n        windowsHide?: boolean | undefined;\n        /**\n         * @default 0\n         */\n        timeout?: number | undefined;\n    }\n    interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable {\n        argv0?: string | undefined;\n        /**\n         * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.\n         * If passed as an array, the first element is used for `stdin`, the second for\n         * `stdout`, and the third for `stderr`. A fourth element can be used to\n         * specify the `stdio` behavior beyond the standard streams. See\n         * {@link ChildProcess.stdio} for more information.\n         *\n         * @default 'pipe'\n         */\n        stdio?: StdioOptions | undefined;\n        shell?: boolean | string | undefined;\n        windowsVerbatimArguments?: boolean | undefined;\n    }\n    interface SpawnOptions extends CommonSpawnOptions {\n        detached?: boolean | undefined;\n    }\n    interface SpawnOptionsWithoutStdio extends SpawnOptions {\n        stdio?: StdioPipeNamed | StdioPipe[] | undefined;\n    }\n    type StdioNull = \"inherit\" | \"ignore\" | Stream;\n    type StdioPipeNamed = \"pipe\" | \"overlapped\";\n    type StdioPipe = undefined | null | StdioPipeNamed;\n    interface SpawnOptionsWithStdioTuple<\n        Stdin extends StdioNull | StdioPipe,\n        Stdout extends StdioNull | StdioPipe,\n        Stderr extends StdioNull | StdioPipe,\n    > extends SpawnOptions {\n        stdio: [Stdin, Stdout, Stderr];\n    }\n    /**\n     * The `child_process.spawn()` method spawns a new process using the given `command`, with command-line arguments in `args`. If omitted, `args` defaults\n     * to an empty array.\n     *\n     * **If the `shell` option is enabled, do not pass unsanitized user input to this**\n     * **function. Any input containing shell metacharacters may be used to trigger**\n     * **arbitrary command execution.**\n     *\n     * A third argument may be used to specify additional options, with these defaults:\n     *\n     * ```js\n     * const defaults = {\n     *   cwd: undefined,\n     *   env: process.env,\n     * };\n     * ```\n     *\n     * Use `cwd` to specify the working directory from which the process is spawned.\n     * If not given, the default is to inherit the current working directory. If given,\n     * but the path does not exist, the child process emits an `ENOENT` error\n     * and exits immediately. `ENOENT` is also emitted when the command\n     * does not exist.\n     *\n     * Use `env` to specify environment variables that will be visible to the new\n     * process, the default is `process.env`.\n     *\n     * `undefined` values in `env` will be ignored.\n     *\n     * Example of running `ls -lh /usr`, capturing `stdout`, `stderr`, and the\n     * exit code:\n     *\n     * ```js\n     * import { spawn } from 'node:child_process';\n     * const ls = spawn('ls', ['-lh', '/usr']);\n     *\n     * ls.stdout.on('data', (data) => {\n     *   console.log(`stdout: ${data}`);\n     * });\n     *\n     * ls.stderr.on('data', (data) => {\n     *   console.error(`stderr: ${data}`);\n     * });\n     *\n     * ls.on('close', (code) => {\n     *   console.log(`child process exited with code ${code}`);\n     * });\n     * ```\n     *\n     * Example: A very elaborate way to run `ps ax | grep ssh`\n     *\n     * ```js\n     * import { spawn } from 'node:child_process';\n     * const ps = spawn('ps', ['ax']);\n     * const grep = spawn('grep', ['ssh']);\n     *\n     * ps.stdout.on('data', (data) => {\n     *   grep.stdin.write(data);\n     * });\n     *\n     * ps.stderr.on('data', (data) => {\n     *   console.error(`ps stderr: ${data}`);\n     * });\n     *\n     * ps.on('close', (code) => {\n     *   if (code !== 0) {\n     *     console.log(`ps process exited with code ${code}`);\n     *   }\n     *   grep.stdin.end();\n     * });\n     *\n     * grep.stdout.on('data', (data) => {\n     *   console.log(data.toString());\n     * });\n     *\n     * grep.stderr.on('data', (data) => {\n     *   console.error(`grep stderr: ${data}`);\n     * });\n     *\n     * grep.on('close', (code) => {\n     *   if (code !== 0) {\n     *     console.log(`grep process exited with code ${code}`);\n     *   }\n     * });\n     * ```\n     *\n     * Example of checking for failed `spawn`:\n     *\n     * ```js\n     * import { spawn } from 'node:child_process';\n     * const subprocess = spawn('bad_command');\n     *\n     * subprocess.on('error', (err) => {\n     *   console.error('Failed to start subprocess.');\n     * });\n     * ```\n     *\n     * Certain platforms (macOS, Linux) will use the value of `argv[0]` for the process\n     * title while others (Windows, SunOS) will use `command`.\n     *\n     * Node.js overwrites `argv[0]` with `process.execPath` on startup, so `process.argv[0]` in a Node.js child process will not match the `argv0` parameter passed to `spawn` from the parent. Retrieve\n     * it with the `process.argv0` property instead.\n     *\n     * If the `signal` option is enabled, calling `.abort()` on the corresponding `AbortController` is similar to calling `.kill()` on the child process except\n     * the error passed to the callback will be an `AbortError`:\n     *\n     * ```js\n     * import { spawn } from 'node:child_process';\n     * const controller = new AbortController();\n     * const { signal } = controller;\n     * const grep = spawn('grep', ['ssh'], { signal });\n     * grep.on('error', (err) => {\n     *   // This will be called with err being an AbortError if the controller aborts\n     * });\n     * controller.abort(); // Stops the child process\n     * ```\n     * @since v0.1.90\n     * @param command The command to run.\n     * @param args List of string arguments.\n     */\n    function spawn(command: string, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioPipe, StdioPipe>,\n    ): ChildProcessByStdio<Writable, Readable, Readable>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioPipe, StdioNull>,\n    ): ChildProcessByStdio<Writable, Readable, null>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioNull, StdioPipe>,\n    ): ChildProcessByStdio<Writable, null, Readable>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioPipe, StdioPipe>,\n    ): ChildProcessByStdio<null, Readable, Readable>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioNull, StdioNull>,\n    ): ChildProcessByStdio<Writable, null, null>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioPipe, StdioNull>,\n    ): ChildProcessByStdio<null, Readable, null>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioNull, StdioPipe>,\n    ): ChildProcessByStdio<null, null, Readable>;\n    function spawn(\n        command: string,\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioNull, StdioNull>,\n    ): ChildProcessByStdio<null, null, null>;\n    function spawn(command: string, options: SpawnOptions): ChildProcess;\n    // overloads of spawn with 'args'\n    function spawn(\n        command: string,\n        args?: readonly string[],\n        options?: SpawnOptionsWithoutStdio,\n    ): ChildProcessWithoutNullStreams;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioPipe, StdioPipe>,\n    ): ChildProcessByStdio<Writable, Readable, Readable>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioPipe, StdioNull>,\n    ): ChildProcessByStdio<Writable, Readable, null>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioNull, StdioPipe>,\n    ): ChildProcessByStdio<Writable, null, Readable>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioPipe, StdioPipe>,\n    ): ChildProcessByStdio<null, Readable, Readable>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioPipe, StdioNull, StdioNull>,\n    ): ChildProcessByStdio<Writable, null, null>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioPipe, StdioNull>,\n    ): ChildProcessByStdio<null, Readable, null>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioNull, StdioPipe>,\n    ): ChildProcessByStdio<null, null, Readable>;\n    function spawn(\n        command: string,\n        args: readonly string[],\n        options: SpawnOptionsWithStdioTuple<StdioNull, StdioNull, StdioNull>,\n    ): ChildProcessByStdio<null, null, null>;\n    function spawn(command: string, args: readonly string[], options: SpawnOptions): ChildProcess;\n    interface ExecOptions extends CommonOptions {\n        shell?: string | undefined;\n        signal?: AbortSignal | undefined;\n        maxBuffer?: number | undefined;\n        killSignal?: NodeJS.Signals | number | undefined;\n    }\n    interface ExecOptionsWithStringEncoding extends ExecOptions {\n        encoding: BufferEncoding;\n    }\n    interface ExecOptionsWithBufferEncoding extends ExecOptions {\n        encoding: BufferEncoding | null; // specify `null`.\n    }\n    interface ExecException extends Error {\n        cmd?: string | undefined;\n        killed?: boolean | undefined;\n        code?: number | undefined;\n        signal?: NodeJS.Signals | undefined;\n        stdout?: string;\n        stderr?: string;\n    }\n    /**\n     * Spawns a shell then executes the `command` within that shell, buffering any\n     * generated output. The `command` string passed to the exec function is processed\n     * directly by the shell and special characters (vary based on [shell](https://en.wikipedia.org/wiki/List_of_command-line_interpreters))\n     * need to be dealt with accordingly:\n     *\n     * ```js\n     * import { exec } from 'node:child_process';\n     *\n     * exec('\"/path/to/test file/test.sh\" arg1 arg2');\n     * // Double quotes are used so that the space in the path is not interpreted as\n     * // a delimiter of multiple arguments.\n     *\n     * exec('echo \"The \\\\$HOME variable is $HOME\"');\n     * // The $HOME variable is escaped in the first instance, but not in the second.\n     * ```\n     *\n     * **Never pass unsanitized user input to this function. Any input containing shell**\n     * **metacharacters may be used to trigger arbitrary command execution.**\n     *\n     * If a `callback` function is provided, it is called with the arguments `(error, stdout, stderr)`. On success, `error` will be `null`. On error, `error` will be an instance of `Error`. The\n     * `error.code` property will be\n     * the exit code of the process. By convention, any exit code other than `0` indicates an error. `error.signal` will be the signal that terminated the\n     * process.\n     *\n     * The `stdout` and `stderr` arguments passed to the callback will contain the\n     * stdout and stderr output of the child process. By default, Node.js will decode\n     * the output as UTF-8 and pass strings to the callback. The `encoding` option\n     * can be used to specify the character encoding used to decode the stdout and\n     * stderr output. If `encoding` is `'buffer'`, or an unrecognized character\n     * encoding, `Buffer` objects will be passed to the callback instead.\n     *\n     * ```js\n     * import { exec } from 'node:child_process';\n     * exec('cat *.js missing_file | wc -l', (error, stdout, stderr) => {\n     *   if (error) {\n     *     console.error(`exec error: ${error}`);\n     *     return;\n     *   }\n     *   console.log(`stdout: ${stdout}`);\n     *   console.error(`stderr: ${stderr}`);\n     * });\n     * ```\n     *\n     * If `timeout` is greater than `0`, the parent will send the signal\n     * identified by the `killSignal` property (the default is `'SIGTERM'`) if the\n     * child runs longer than `timeout` milliseconds.\n     *\n     * Unlike the [`exec(3)`](http://man7.org/linux/man-pages/man3/exec.3.html) POSIX system call, `child_process.exec()` does not replace\n     * the existing process and uses a shell to execute the command.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned `ChildProcess` instance is attached to the `Promise` as a `child` property. In\n     * case of an error (including any error resulting in an exit code other than 0), a\n     * rejected promise is returned, with the same `error` object given in the\n     * callback, but with two additional properties `stdout` and `stderr`.\n     *\n     * ```js\n     * import util from 'node:util';\n     * import child_process from 'node:child_process';\n     * const exec = util.promisify(child_process.exec);\n     *\n     * async function lsExample() {\n     *   const { stdout, stderr } = await exec('ls');\n     *   console.log('stdout:', stdout);\n     *   console.error('stderr:', stderr);\n     * }\n     * lsExample();\n     * ```\n     *\n     * If the `signal` option is enabled, calling `.abort()` on the corresponding `AbortController` is similar to calling `.kill()` on the child process except\n     * the error passed to the callback will be an `AbortError`:\n     *\n     * ```js\n     * import { exec } from 'node:child_process';\n     * const controller = new AbortController();\n     * const { signal } = controller;\n     * const child = exec('grep ssh', { signal }, (error) => {\n     *   console.error(error); // an AbortError\n     * });\n     * controller.abort();\n     * ```\n     * @since v0.1.90\n     * @param command The command to run, with space-separated arguments.\n     * @param callback called with the output when process terminates.\n     */\n    function exec(\n        command: string,\n        callback?: (error: ExecException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // `options` with `\"buffer\"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`.\n    function exec(\n        command: string,\n        options: {\n            encoding: \"buffer\" | null;\n        } & ExecOptions,\n        callback?: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void,\n    ): ChildProcess;\n    // `options` with well known `encoding` means stdout/stderr are definitely `string`.\n    function exec(\n        command: string,\n        options: {\n            encoding: BufferEncoding;\n        } & ExecOptions,\n        callback?: (error: ExecException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`.\n    // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`.\n    function exec(\n        command: string,\n        options: {\n            encoding: BufferEncoding;\n        } & ExecOptions,\n        callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void,\n    ): ChildProcess;\n    // `options` without an `encoding` means stdout/stderr are definitely `string`.\n    function exec(\n        command: string,\n        options: ExecOptions,\n        callback?: (error: ExecException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // fallback if nothing else matches. Worst case is always `string | Buffer`.\n    function exec(\n        command: string,\n        options: (ObjectEncodingOptions & ExecOptions) | undefined | null,\n        callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void,\n    ): ChildProcess;\n    interface PromiseWithChild<T> extends Promise<T> {\n        child: ChildProcess;\n    }\n    namespace exec {\n        function __promisify__(command: string): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            command: string,\n            options: {\n                encoding: \"buffer\" | null;\n            } & ExecOptions,\n        ): PromiseWithChild<{\n            stdout: Buffer;\n            stderr: Buffer;\n        }>;\n        function __promisify__(\n            command: string,\n            options: {\n                encoding: BufferEncoding;\n            } & ExecOptions,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            command: string,\n            options: ExecOptions,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            command: string,\n            options?: (ObjectEncodingOptions & ExecOptions) | null,\n        ): PromiseWithChild<{\n            stdout: string | Buffer;\n            stderr: string | Buffer;\n        }>;\n    }\n    interface ExecFileOptions extends CommonOptions, Abortable {\n        maxBuffer?: number | undefined;\n        killSignal?: NodeJS.Signals | number | undefined;\n        windowsVerbatimArguments?: boolean | undefined;\n        shell?: boolean | string | undefined;\n        signal?: AbortSignal | undefined;\n    }\n    interface ExecFileOptionsWithStringEncoding extends ExecFileOptions {\n        encoding: BufferEncoding;\n    }\n    interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions {\n        encoding: \"buffer\" | null;\n    }\n    interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions {\n        encoding: BufferEncoding;\n    }\n    type ExecFileException =\n        & Omit<ExecException, \"code\">\n        & Omit<NodeJS.ErrnoException, \"code\">\n        & { code?: string | number | undefined | null };\n    /**\n     * The `child_process.execFile()` function is similar to {@link exec} except that it does not spawn a shell by default. Rather, the specified\n     * executable `file` is spawned directly as a new process making it slightly more\n     * efficient than {@link exec}.\n     *\n     * The same options as {@link exec} are supported. Since a shell is\n     * not spawned, behaviors such as I/O redirection and file globbing are not\n     * supported.\n     *\n     * ```js\n     * import { execFile } from 'node:child_process';\n     * const child = execFile('node', ['--version'], (error, stdout, stderr) => {\n     *   if (error) {\n     *     throw error;\n     *   }\n     *   console.log(stdout);\n     * });\n     * ```\n     *\n     * The `stdout` and `stderr` arguments passed to the callback will contain the\n     * stdout and stderr output of the child process. By default, Node.js will decode\n     * the output as UTF-8 and pass strings to the callback. The `encoding` option\n     * can be used to specify the character encoding used to decode the stdout and\n     * stderr output. If `encoding` is `'buffer'`, or an unrecognized character\n     * encoding, `Buffer` objects will be passed to the callback instead.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned `ChildProcess` instance is attached to the `Promise` as a `child` property. In\n     * case of an error (including any error resulting in an exit code other than 0), a\n     * rejected promise is returned, with the same `error` object given in the\n     * callback, but with two additional properties `stdout` and `stderr`.\n     *\n     * ```js\n     * import util from 'node:util';\n     * import child_process from 'node:child_process';\n     * const execFile = util.promisify(child_process.execFile);\n     * async function getVersion() {\n     *   const { stdout } = await execFile('node', ['--version']);\n     *   console.log(stdout);\n     * }\n     * getVersion();\n     * ```\n     *\n     * **If the `shell` option is enabled, do not pass unsanitized user input to this**\n     * **function. Any input containing shell metacharacters may be used to trigger**\n     * **arbitrary command execution.**\n     *\n     * If the `signal` option is enabled, calling `.abort()` on the corresponding `AbortController` is similar to calling `.kill()` on the child process except\n     * the error passed to the callback will be an `AbortError`:\n     *\n     * ```js\n     * import { execFile } from 'node:child_process';\n     * const controller = new AbortController();\n     * const { signal } = controller;\n     * const child = execFile('node', ['--version'], { signal }, (error) => {\n     *   console.error(error); // an AbortError\n     * });\n     * controller.abort();\n     * ```\n     * @since v0.1.91\n     * @param file The name or path of the executable file to run.\n     * @param args List of string arguments.\n     * @param callback Called with the output when process terminates.\n     */\n    function execFile(file: string): ChildProcess;\n    function execFile(\n        file: string,\n        options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n    ): ChildProcess;\n    function execFile(file: string, args?: readonly string[] | null): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n    ): ChildProcess;\n    // no `options` definitely means stdout/stderr are `string`.\n    function execFile(\n        file: string,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // `options` with `\"buffer\"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`.\n    function execFile(\n        file: string,\n        options: ExecFileOptionsWithBufferEncoding,\n        callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: ExecFileOptionsWithBufferEncoding,\n        callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void,\n    ): ChildProcess;\n    // `options` with well known `encoding` means stdout/stderr are definitely `string`.\n    function execFile(\n        file: string,\n        options: ExecFileOptionsWithStringEncoding,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: ExecFileOptionsWithStringEncoding,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`.\n    // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`.\n    function execFile(\n        file: string,\n        options: ExecFileOptionsWithOtherEncoding,\n        callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: ExecFileOptionsWithOtherEncoding,\n        callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void,\n    ): ChildProcess;\n    // `options` without an `encoding` means stdout/stderr are definitely `string`.\n    function execFile(\n        file: string,\n        options: ExecFileOptions,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: ExecFileOptions,\n        callback: (error: ExecFileException | null, stdout: string, stderr: string) => void,\n    ): ChildProcess;\n    // fallback if nothing else matches. Worst case is always `string | Buffer`.\n    function execFile(\n        file: string,\n        options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n        callback:\n            | ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void)\n            | undefined\n            | null,\n    ): ChildProcess;\n    function execFile(\n        file: string,\n        args: readonly string[] | undefined | null,\n        options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n        callback:\n            | ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void)\n            | undefined\n            | null,\n    ): ChildProcess;\n    namespace execFile {\n        function __promisify__(file: string): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            options: ExecFileOptionsWithBufferEncoding,\n        ): PromiseWithChild<{\n            stdout: Buffer;\n            stderr: Buffer;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n            options: ExecFileOptionsWithBufferEncoding,\n        ): PromiseWithChild<{\n            stdout: Buffer;\n            stderr: Buffer;\n        }>;\n        function __promisify__(\n            file: string,\n            options: ExecFileOptionsWithStringEncoding,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n            options: ExecFileOptionsWithStringEncoding,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            options: ExecFileOptionsWithOtherEncoding,\n        ): PromiseWithChild<{\n            stdout: string | Buffer;\n            stderr: string | Buffer;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n            options: ExecFileOptionsWithOtherEncoding,\n        ): PromiseWithChild<{\n            stdout: string | Buffer;\n            stderr: string | Buffer;\n        }>;\n        function __promisify__(\n            file: string,\n            options: ExecFileOptions,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n            options: ExecFileOptions,\n        ): PromiseWithChild<{\n            stdout: string;\n            stderr: string;\n        }>;\n        function __promisify__(\n            file: string,\n            options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n        ): PromiseWithChild<{\n            stdout: string | Buffer;\n            stderr: string | Buffer;\n        }>;\n        function __promisify__(\n            file: string,\n            args: readonly string[] | undefined | null,\n            options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null,\n        ): PromiseWithChild<{\n            stdout: string | Buffer;\n            stderr: string | Buffer;\n        }>;\n    }\n    interface ForkOptions extends ProcessEnvOptions, MessagingOptions, Abortable {\n        execPath?: string | undefined;\n        execArgv?: string[] | undefined;\n        silent?: boolean | undefined;\n        /**\n         * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.\n         * If passed as an array, the first element is used for `stdin`, the second for\n         * `stdout`, and the third for `stderr`. A fourth element can be used to\n         * specify the `stdio` behavior beyond the standard streams. See\n         * {@link ChildProcess.stdio} for more information.\n         *\n         * @default 'pipe'\n         */\n        stdio?: StdioOptions | undefined;\n        detached?: boolean | undefined;\n        windowsVerbatimArguments?: boolean | undefined;\n    }\n    /**\n     * The `child_process.fork()` method is a special case of {@link spawn} used specifically to spawn new Node.js processes.\n     * Like {@link spawn}, a `ChildProcess` object is returned. The\n     * returned `ChildProcess` will have an additional communication channel\n     * built-in that allows messages to be passed back and forth between the parent and\n     * child. See `subprocess.send()` for details.\n     *\n     * Keep in mind that spawned Node.js child processes are\n     * independent of the parent with exception of the IPC communication channel\n     * that is established between the two. Each process has its own memory, with\n     * their own V8 instances. Because of the additional resource allocations\n     * required, spawning a large number of child Node.js processes is not\n     * recommended.\n     *\n     * By default, `child_process.fork()` will spawn new Node.js instances using the `process.execPath` of the parent process. The `execPath` property in the `options` object allows for an alternative\n     * execution path to be used.\n     *\n     * Node.js processes launched with a custom `execPath` will communicate with the\n     * parent process using the file descriptor (fd) identified using the\n     * environment variable `NODE_CHANNEL_FD` on the child process.\n     *\n     * Unlike the [`fork(2)`](http://man7.org/linux/man-pages/man2/fork.2.html) POSIX system call, `child_process.fork()` does not clone the\n     * current process.\n     *\n     * The `shell` option available in {@link spawn} is not supported by `child_process.fork()` and will be ignored if set.\n     *\n     * If the `signal` option is enabled, calling `.abort()` on the corresponding `AbortController` is similar to calling `.kill()` on the child process except\n     * the error passed to the callback will be an `AbortError`:\n     *\n     * ```js\n     * if (process.argv[2] === 'child') {\n     *   setTimeout(() => {\n     *     console.log(`Hello from ${process.argv[2]}!`);\n     *   }, 1_000);\n     * } else {\n     *   import { fork } from 'node:child_process';\n     *   const controller = new AbortController();\n     *   const { signal } = controller;\n     *   const child = fork(__filename, ['child'], { signal });\n     *   child.on('error', (err) => {\n     *     // This will be called with err being an AbortError if the controller aborts\n     *   });\n     *   controller.abort(); // Stops the child process\n     * }\n     * ```\n     * @since v0.5.0\n     * @param modulePath The module to run in the child.\n     * @param args List of string arguments.\n     */\n    function fork(modulePath: string | URL, options?: ForkOptions): ChildProcess;\n    function fork(modulePath: string | URL, args?: readonly string[], options?: ForkOptions): ChildProcess;\n    interface SpawnSyncOptions extends CommonSpawnOptions {\n        input?: string | NodeJS.ArrayBufferView | undefined;\n        maxBuffer?: number | undefined;\n        encoding?: BufferEncoding | \"buffer\" | null | undefined;\n    }\n    interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions {\n        encoding: BufferEncoding;\n    }\n    interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions {\n        encoding?: \"buffer\" | null | undefined;\n    }\n    interface SpawnSyncReturns<T> {\n        pid: number;\n        output: Array<T | null>;\n        stdout: T;\n        stderr: T;\n        status: number | null;\n        signal: NodeJS.Signals | null;\n        error?: Error | undefined;\n    }\n    /**\n     * The `child_process.spawnSync()` method is generally identical to {@link spawn} with the exception that the function will not return\n     * until the child process has fully closed. When a timeout has been encountered\n     * and `killSignal` is sent, the method won't return until the process has\n     * completely exited. If the process intercepts and handles the `SIGTERM` signal\n     * and doesn't exit, the parent process will wait until the child process has\n     * exited.\n     *\n     * **If the `shell` option is enabled, do not pass unsanitized user input to this**\n     * **function. Any input containing shell metacharacters may be used to trigger**\n     * **arbitrary command execution.**\n     * @since v0.11.12\n     * @param command The command to run.\n     * @param args List of string arguments.\n     */\n    function spawnSync(command: string): SpawnSyncReturns<Buffer>;\n    function spawnSync(command: string, options: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns<string>;\n    function spawnSync(command: string, options: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns<Buffer>;\n    function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns<string | Buffer>;\n    function spawnSync(command: string, args: readonly string[]): SpawnSyncReturns<Buffer>;\n    function spawnSync(\n        command: string,\n        args: readonly string[],\n        options: SpawnSyncOptionsWithStringEncoding,\n    ): SpawnSyncReturns<string>;\n    function spawnSync(\n        command: string,\n        args: readonly string[],\n        options: SpawnSyncOptionsWithBufferEncoding,\n    ): SpawnSyncReturns<Buffer>;\n    function spawnSync(\n        command: string,\n        args?: readonly string[],\n        options?: SpawnSyncOptions,\n    ): SpawnSyncReturns<string | Buffer>;\n    interface CommonExecOptions extends CommonOptions {\n        input?: string | NodeJS.ArrayBufferView | undefined;\n        /**\n         * Can be set to 'pipe', 'inherit, or 'ignore', or an array of these strings.\n         * If passed as an array, the first element is used for `stdin`, the second for\n         * `stdout`, and the third for `stderr`. A fourth element can be used to\n         * specify the `stdio` behavior beyond the standard streams. See\n         * {@link ChildProcess.stdio} for more information.\n         *\n         * @default 'pipe'\n         */\n        stdio?: StdioOptions | undefined;\n        killSignal?: NodeJS.Signals | number | undefined;\n        maxBuffer?: number | undefined;\n        encoding?: BufferEncoding | \"buffer\" | null | undefined;\n    }\n    interface ExecSyncOptions extends CommonExecOptions {\n        shell?: string | undefined;\n    }\n    interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions {\n        encoding: BufferEncoding;\n    }\n    interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions {\n        encoding?: \"buffer\" | null | undefined;\n    }\n    /**\n     * The `child_process.execSync()` method is generally identical to {@link exec} with the exception that the method will not return\n     * until the child process has fully closed. When a timeout has been encountered\n     * and `killSignal` is sent, the method won't return until the process has\n     * completely exited. If the child process intercepts and handles the `SIGTERM` signal and doesn't exit, the parent process will wait until the child process\n     * has exited.\n     *\n     * If the process times out or has a non-zero exit code, this method will throw.\n     * The `Error` object will contain the entire result from {@link spawnSync}.\n     *\n     * **Never pass unsanitized user input to this function. Any input containing shell**\n     * **metacharacters may be used to trigger arbitrary command execution.**\n     * @since v0.11.12\n     * @param command The command to run.\n     * @return The stdout from the command.\n     */\n    function execSync(command: string): Buffer;\n    function execSync(command: string, options: ExecSyncOptionsWithStringEncoding): string;\n    function execSync(command: string, options: ExecSyncOptionsWithBufferEncoding): Buffer;\n    function execSync(command: string, options?: ExecSyncOptions): string | Buffer;\n    interface ExecFileSyncOptions extends CommonExecOptions {\n        shell?: boolean | string | undefined;\n    }\n    interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions {\n        encoding: BufferEncoding;\n    }\n    interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions {\n        encoding?: \"buffer\" | null; // specify `null`.\n    }\n    /**\n     * The `child_process.execFileSync()` method is generally identical to {@link execFile} with the exception that the method will not\n     * return until the child process has fully closed. When a timeout has been\n     * encountered and `killSignal` is sent, the method won't return until the process\n     * has completely exited.\n     *\n     * If the child process intercepts and handles the `SIGTERM` signal and\n     * does not exit, the parent process will still wait until the child process has\n     * exited.\n     *\n     * If the process times out or has a non-zero exit code, this method will throw an `Error` that will include the full result of the underlying {@link spawnSync}.\n     *\n     * **If the `shell` option is enabled, do not pass unsanitized user input to this**\n     * **function. Any input containing shell metacharacters may be used to trigger**\n     * **arbitrary command execution.**\n     * @since v0.11.12\n     * @param file The name or path of the executable file to run.\n     * @param args List of string arguments.\n     * @return The stdout from the command.\n     */\n    function execFileSync(file: string): Buffer;\n    function execFileSync(file: string, options: ExecFileSyncOptionsWithStringEncoding): string;\n    function execFileSync(file: string, options: ExecFileSyncOptionsWithBufferEncoding): Buffer;\n    function execFileSync(file: string, options?: ExecFileSyncOptions): string | Buffer;\n    function execFileSync(file: string, args: readonly string[]): Buffer;\n    function execFileSync(\n        file: string,\n        args: readonly string[],\n        options: ExecFileSyncOptionsWithStringEncoding,\n    ): string;\n    function execFileSync(\n        file: string,\n        args: readonly string[],\n        options: ExecFileSyncOptionsWithBufferEncoding,\n    ): Buffer;\n    function execFileSync(file: string, args?: readonly string[], options?: ExecFileSyncOptions): string | Buffer;\n}\ndeclare module \"node:child_process\" {\n    export * from \"child_process\";\n}\n",
    "node_modules/@types/node/cluster.d.ts": "/**\n * Clusters of Node.js processes can be used to run multiple instances of Node.js\n * that can distribute workloads among their application threads. When process isolation\n * is not needed, use the [`worker_threads`](https://nodejs.org/docs/latest-v22.x/api/worker_threads.html)\n * module instead, which allows running multiple application threads within a single Node.js instance.\n *\n * The cluster module allows easy creation of child processes that all share\n * server ports.\n *\n * ```js\n * import cluster from 'node:cluster';\n * import http from 'node:http';\n * import { availableParallelism } from 'node:os';\n * import process from 'node:process';\n *\n * const numCPUs = availableParallelism();\n *\n * if (cluster.isPrimary) {\n *   console.log(`Primary ${process.pid} is running`);\n *\n *   // Fork workers.\n *   for (let i = 0; i < numCPUs; i++) {\n *     cluster.fork();\n *   }\n *\n *   cluster.on('exit', (worker, code, signal) => {\n *     console.log(`worker ${worker.process.pid} died`);\n *   });\n * } else {\n *   // Workers can share any TCP connection\n *   // In this case it is an HTTP server\n *   http.createServer((req, res) => {\n *     res.writeHead(200);\n *     res.end('hello world\\n');\n *   }).listen(8000);\n *\n *   console.log(`Worker ${process.pid} started`);\n * }\n * ```\n *\n * Running Node.js will now share port 8000 between the workers:\n *\n * ```console\n * $ node server.js\n * Primary 3596 is running\n * Worker 4324 started\n * Worker 4520 started\n * Worker 6056 started\n * Worker 5644 started\n * ```\n *\n * On Windows, it is not yet possible to set up a named pipe server in a worker.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/cluster.js)\n */\ndeclare module \"cluster\" {\n    import * as child from \"node:child_process\";\n    import EventEmitter = require(\"node:events\");\n    import * as net from \"node:net\";\n    type SerializationType = \"json\" | \"advanced\";\n    export interface ClusterSettings {\n        /**\n         * List of string arguments passed to the Node.js executable.\n         * @default process.execArgv\n         */\n        execArgv?: string[] | undefined;\n        /**\n         * File path to worker file.\n         * @default process.argv[1]\n         */\n        exec?: string | undefined;\n        /**\n         * String arguments passed to worker.\n         * @default process.argv.slice(2)\n         */\n        args?: string[] | undefined;\n        /**\n         * Whether or not to send output to parent's stdio.\n         * @default false\n         */\n        silent?: boolean | undefined;\n        /**\n         * Configures the stdio of forked processes. Because the cluster module relies on IPC to function, this configuration must\n         * contain an `'ipc'` entry. When this option is provided, it overrides `silent`. See [`child_prcess.spawn()`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#child_processspawncommand-args-options)'s\n         * [`stdio`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#optionsstdio).\n         */\n        stdio?: any[] | undefined;\n        /**\n         * Sets the user identity of the process. (See [`setuid(2)`](https://man7.org/linux/man-pages/man2/setuid.2.html).)\n         */\n        uid?: number | undefined;\n        /**\n         * Sets the group identity of the process. (See [`setgid(2)`](https://man7.org/linux/man-pages/man2/setgid.2.html).)\n         */\n        gid?: number | undefined;\n        /**\n         * Sets inspector port of worker. This can be a number, or a function that takes no arguments and returns a number.\n         * By default each worker gets its own port, incremented from the primary's `process.debugPort`.\n         */\n        inspectPort?: number | (() => number) | undefined;\n        /**\n         * Specify the kind of serialization used for sending messages between processes. Possible values are `'json'` and `'advanced'`.\n         * See [Advanced serialization for `child_process`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#advanced-serialization) for more details.\n         * @default false\n         */\n        serialization?: SerializationType | undefined;\n        /**\n         * Current working directory of the worker process.\n         * @default undefined (inherits from parent process)\n         */\n        cwd?: string | undefined;\n        /**\n         * Hide the forked processes console window that would normally be created on Windows systems.\n         * @default false\n         */\n        windowsHide?: boolean | undefined;\n    }\n    export interface Address {\n        address: string;\n        port: number;\n        /**\n         * The `addressType` is one of:\n         *\n         * * `4` (TCPv4)\n         * * `6` (TCPv6)\n         * * `-1` (Unix domain socket)\n         * * `'udp4'` or `'udp6'` (UDPv4 or UDPv6)\n         */\n        addressType: 4 | 6 | -1 | \"udp4\" | \"udp6\";\n    }\n    /**\n     * A `Worker` object contains all public information and method about a worker.\n     * In the primary it can be obtained using `cluster.workers`. In a worker\n     * it can be obtained using `cluster.worker`.\n     * @since v0.7.0\n     */\n    export class Worker extends EventEmitter {\n        /**\n         * Each new worker is given its own unique id, this id is stored in the `id`.\n         *\n         * While a worker is alive, this is the key that indexes it in `cluster.workers`.\n         * @since v0.8.0\n         */\n        id: number;\n        /**\n         * All workers are created using [`child_process.fork()`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#child_processforkmodulepath-args-options), the returned object\n         * from this function is stored as `.process`. In a worker, the global `process` is stored.\n         *\n         * See: [Child Process module](https://nodejs.org/docs/latest-v22.x/api/child_process.html#child_processforkmodulepath-args-options).\n         *\n         * Workers will call `process.exit(0)` if the `'disconnect'` event occurs\n         * on `process` and `.exitedAfterDisconnect` is not `true`. This protects against\n         * accidental disconnection.\n         * @since v0.7.0\n         */\n        process: child.ChildProcess;\n        /**\n         * Send a message to a worker or primary, optionally with a handle.\n         *\n         * In the primary, this sends a message to a specific worker. It is identical to [`ChildProcess.send()`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#subprocesssendmessage-sendhandle-options-callback).\n         *\n         * In a worker, this sends a message to the primary. It is identical to `process.send()`.\n         *\n         * This example will echo back all messages from the primary:\n         *\n         * ```js\n         * if (cluster.isPrimary) {\n         *   const worker = cluster.fork();\n         *   worker.send('hi there');\n         *\n         * } else if (cluster.isWorker) {\n         *   process.on('message', (msg) => {\n         *     process.send(msg);\n         *   });\n         * }\n         * ```\n         * @since v0.7.0\n         * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles.\n         */\n        send(message: child.Serializable, callback?: (error: Error | null) => void): boolean;\n        send(\n            message: child.Serializable,\n            sendHandle: child.SendHandle,\n            callback?: (error: Error | null) => void,\n        ): boolean;\n        send(\n            message: child.Serializable,\n            sendHandle: child.SendHandle,\n            options?: child.MessageOptions,\n            callback?: (error: Error | null) => void,\n        ): boolean;\n        /**\n         * This function will kill the worker. In the primary worker, it does this by\n         * disconnecting the `worker.process`, and once disconnected, killing with `signal`. In the worker, it does it by killing the process with `signal`.\n         *\n         * The `kill()` function kills the worker process without waiting for a graceful\n         * disconnect, it has the same behavior as `worker.process.kill()`.\n         *\n         * This method is aliased as `worker.destroy()` for backwards compatibility.\n         *\n         * In a worker, `process.kill()` exists, but it is not this function;\n         * it is [`kill()`](https://nodejs.org/docs/latest-v22.x/api/process.html#processkillpid-signal).\n         * @since v0.9.12\n         * @param [signal='SIGTERM'] Name of the kill signal to send to the worker process.\n         */\n        kill(signal?: string): void;\n        destroy(signal?: string): void;\n        /**\n         * In a worker, this function will close all servers, wait for the `'close'` event\n         * on those servers, and then disconnect the IPC channel.\n         *\n         * In the primary, an internal message is sent to the worker causing it to call `.disconnect()` on itself.\n         *\n         * Causes `.exitedAfterDisconnect` to be set.\n         *\n         * After a server is closed, it will no longer accept new connections,\n         * but connections may be accepted by any other listening worker. Existing\n         * connections will be allowed to close as usual. When no more connections exist,\n         * see `server.close()`, the IPC channel to the worker will close allowing it\n         * to die gracefully.\n         *\n         * The above applies _only_ to server connections, client connections are not\n         * automatically closed by workers, and disconnect does not wait for them to close\n         * before exiting.\n         *\n         * In a worker, `process.disconnect` exists, but it is not this function;\n         * it is `disconnect()`.\n         *\n         * Because long living server connections may block workers from disconnecting, it\n         * may be useful to send a message, so application specific actions may be taken to\n         * close them. It also may be useful to implement a timeout, killing a worker if\n         * the `'disconnect'` event has not been emitted after some time.\n         *\n         * ```js\n         * import net from 'node:net';\n         *\n         * if (cluster.isPrimary) {\n         *   const worker = cluster.fork();\n         *   let timeout;\n         *\n         *   worker.on('listening', (address) => {\n         *     worker.send('shutdown');\n         *     worker.disconnect();\n         *     timeout = setTimeout(() => {\n         *       worker.kill();\n         *     }, 2000);\n         *   });\n         *\n         *   worker.on('disconnect', () => {\n         *     clearTimeout(timeout);\n         *   });\n         *\n         * } else if (cluster.isWorker) {\n         *   const server = net.createServer((socket) => {\n         *     // Connections never end\n         *   });\n         *\n         *   server.listen(8000);\n         *\n         *   process.on('message', (msg) => {\n         *     if (msg === 'shutdown') {\n         *       // Initiate graceful close of any connections to server\n         *     }\n         *   });\n         * }\n         * ```\n         * @since v0.7.7\n         * @return A reference to `worker`.\n         */\n        disconnect(): this;\n        /**\n         * This function returns `true` if the worker is connected to its primary via its\n         * IPC channel, `false` otherwise. A worker is connected to its primary after it\n         * has been created. It is disconnected after the `'disconnect'` event is emitted.\n         * @since v0.11.14\n         */\n        isConnected(): boolean;\n        /**\n         * This function returns `true` if the worker's process has terminated (either\n         * because of exiting or being signaled). Otherwise, it returns `false`.\n         *\n         * ```js\n         * import cluster from 'node:cluster';\n         * import http from 'node:http';\n         * import { availableParallelism } from 'node:os';\n         * import process from 'node:process';\n         *\n         * const numCPUs = availableParallelism();\n         *\n         * if (cluster.isPrimary) {\n         *   console.log(`Primary ${process.pid} is running`);\n         *\n         *   // Fork workers.\n         *   for (let i = 0; i < numCPUs; i++) {\n         *     cluster.fork();\n         *   }\n         *\n         *   cluster.on('fork', (worker) => {\n         *     console.log('worker is dead:', worker.isDead());\n         *   });\n         *\n         *   cluster.on('exit', (worker, code, signal) => {\n         *     console.log('worker is dead:', worker.isDead());\n         *   });\n         * } else {\n         *   // Workers can share any TCP connection. In this case, it is an HTTP server.\n         *   http.createServer((req, res) => {\n         *     res.writeHead(200);\n         *     res.end(`Current process\\n ${process.pid}`);\n         *     process.kill(process.pid);\n         *   }).listen(8000);\n         * }\n         * ```\n         * @since v0.11.14\n         */\n        isDead(): boolean;\n        /**\n         * This property is `true` if the worker exited due to `.disconnect()`.\n         * If the worker exited any other way, it is `false`. If the\n         * worker has not exited, it is `undefined`.\n         *\n         * The boolean `worker.exitedAfterDisconnect` allows distinguishing between\n         * voluntary and accidental exit, the primary may choose not to respawn a worker\n         * based on this value.\n         *\n         * ```js\n         * cluster.on('exit', (worker, code, signal) => {\n         *   if (worker.exitedAfterDisconnect === true) {\n         *     console.log('Oh, it was just voluntary – no need to worry');\n         *   }\n         * });\n         *\n         * // kill worker\n         * worker.kill();\n         * ```\n         * @since v6.0.0\n         */\n        exitedAfterDisconnect: boolean;\n        /**\n         * events.EventEmitter\n         *   1. disconnect\n         *   2. error\n         *   3. exit\n         *   4. listening\n         *   5. message\n         *   6. online\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"disconnect\", listener: () => void): this;\n        addListener(event: \"error\", listener: (error: Error) => void): this;\n        addListener(event: \"exit\", listener: (code: number, signal: string) => void): this;\n        addListener(event: \"listening\", listener: (address: Address) => void): this;\n        addListener(event: \"message\", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        addListener(event: \"online\", listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"disconnect\"): boolean;\n        emit(event: \"error\", error: Error): boolean;\n        emit(event: \"exit\", code: number, signal: string): boolean;\n        emit(event: \"listening\", address: Address): boolean;\n        emit(event: \"message\", message: any, handle: net.Socket | net.Server): boolean;\n        emit(event: \"online\"): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"disconnect\", listener: () => void): this;\n        on(event: \"error\", listener: (error: Error) => void): this;\n        on(event: \"exit\", listener: (code: number, signal: string) => void): this;\n        on(event: \"listening\", listener: (address: Address) => void): this;\n        on(event: \"message\", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        on(event: \"online\", listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"disconnect\", listener: () => void): this;\n        once(event: \"error\", listener: (error: Error) => void): this;\n        once(event: \"exit\", listener: (code: number, signal: string) => void): this;\n        once(event: \"listening\", listener: (address: Address) => void): this;\n        once(event: \"message\", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        once(event: \"online\", listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"disconnect\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (error: Error) => void): this;\n        prependListener(event: \"exit\", listener: (code: number, signal: string) => void): this;\n        prependListener(event: \"listening\", listener: (address: Address) => void): this;\n        prependListener(event: \"message\", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        prependListener(event: \"online\", listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"disconnect\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (error: Error) => void): this;\n        prependOnceListener(event: \"exit\", listener: (code: number, signal: string) => void): this;\n        prependOnceListener(event: \"listening\", listener: (address: Address) => void): this;\n        prependOnceListener(event: \"message\", listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        prependOnceListener(event: \"online\", listener: () => void): this;\n    }\n    export interface Cluster extends EventEmitter {\n        disconnect(callback?: () => void): void;\n        /**\n         * Spawn a new worker process.\n         *\n         * This can only be called from the primary process.\n         * @param env Key/value pairs to add to worker process environment.\n         * @since v0.6.0\n         */\n        fork(env?: any): Worker;\n        /** @deprecated since v16.0.0 - use isPrimary. */\n        readonly isMaster: boolean;\n        /**\n         * True if the process is a primary. This is determined by the `process.env.NODE_UNIQUE_ID`. If `process.env.NODE_UNIQUE_ID`\n         * is undefined, then `isPrimary` is `true`.\n         * @since v16.0.0\n         */\n        readonly isPrimary: boolean;\n        /**\n         * True if the process is not a primary (it is the negation of `cluster.isPrimary`).\n         * @since v0.6.0\n         */\n        readonly isWorker: boolean;\n        /**\n         * The scheduling policy, either `cluster.SCHED_RR` for round-robin or `cluster.SCHED_NONE` to leave it to the operating system. This is a\n         * global setting and effectively frozen once either the first worker is spawned, or [`.setupPrimary()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clustersetupprimarysettings)\n         * is called, whichever comes first.\n         *\n         * `SCHED_RR` is the default on all operating systems except Windows. Windows will change to `SCHED_RR` once libuv is able to effectively distribute\n         * IOCP handles without incurring a large performance hit.\n         *\n         * `cluster.schedulingPolicy` can also be set through the `NODE_CLUSTER_SCHED_POLICY` environment variable. Valid values are `'rr'` and `'none'`.\n         * @since v0.11.2\n         */\n        schedulingPolicy: number;\n        /**\n         * After calling [`.setupPrimary()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clustersetupprimarysettings)\n         * (or [`.fork()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clusterforkenv)) this settings object will contain\n         * the settings, including the default values.\n         *\n         * This object is not intended to be changed or set manually.\n         * @since v0.7.1\n         */\n        readonly settings: ClusterSettings;\n        /** @deprecated since v16.0.0 - use [`.setupPrimary()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clustersetupprimarysettings) instead. */\n        setupMaster(settings?: ClusterSettings): void;\n        /**\n         * `setupPrimary` is used to change the default 'fork' behavior. Once called, the settings will be present in `cluster.settings`.\n         *\n         * Any settings changes only affect future calls to [`.fork()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clusterforkenv)\n         * and have no effect on workers that are already running.\n         *\n         * The only attribute of a worker that cannot be set via `.setupPrimary()` is the `env` passed to\n         * [`.fork()`](https://nodejs.org/docs/latest-v22.x/api/cluster.html#clusterforkenv).\n         *\n         * The defaults above apply to the first call only; the defaults for later calls are the current values at the time of\n         * `cluster.setupPrimary()` is called.\n         *\n         * ```js\n         * import cluster from 'node:cluster';\n         *\n         * cluster.setupPrimary({\n         *   exec: 'worker.js',\n         *   args: ['--use', 'https'],\n         *   silent: true,\n         * });\n         * cluster.fork(); // https worker\n         * cluster.setupPrimary({\n         *   exec: 'worker.js',\n         *   args: ['--use', 'http'],\n         * });\n         * cluster.fork(); // http worker\n         * ```\n         *\n         * This can only be called from the primary process.\n         * @since v16.0.0\n         */\n        setupPrimary(settings?: ClusterSettings): void;\n        /**\n         * A reference to the current worker object. Not available in the primary process.\n         *\n         * ```js\n         * import cluster from 'node:cluster';\n         *\n         * if (cluster.isPrimary) {\n         *   console.log('I am primary');\n         *   cluster.fork();\n         *   cluster.fork();\n         * } else if (cluster.isWorker) {\n         *   console.log(`I am worker #${cluster.worker.id}`);\n         * }\n         * ```\n         * @since v0.7.0\n         */\n        readonly worker?: Worker | undefined;\n        /**\n         * A hash that stores the active worker objects, keyed by `id` field. This makes it easy to loop through all the workers. It is only available in the primary process.\n         *\n         * A worker is removed from `cluster.workers` after the worker has disconnected _and_ exited. The order between these two events cannot be determined in advance. However, it\n         * is guaranteed that the removal from the `cluster.workers` list happens before the last `'disconnect'` or `'exit'` event is emitted.\n         *\n         * ```js\n         * import cluster from 'node:cluster';\n         *\n         * for (const worker of Object.values(cluster.workers)) {\n         *   worker.send('big announcement to all workers');\n         * }\n         * ```\n         * @since v0.7.0\n         */\n        readonly workers?: NodeJS.Dict<Worker> | undefined;\n        readonly SCHED_NONE: number;\n        readonly SCHED_RR: number;\n        /**\n         * events.EventEmitter\n         *   1. disconnect\n         *   2. exit\n         *   3. fork\n         *   4. listening\n         *   5. message\n         *   6. online\n         *   7. setup\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"disconnect\", listener: (worker: Worker) => void): this;\n        addListener(event: \"exit\", listener: (worker: Worker, code: number, signal: string) => void): this;\n        addListener(event: \"fork\", listener: (worker: Worker) => void): this;\n        addListener(event: \"listening\", listener: (worker: Worker, address: Address) => void): this;\n        addListener(\n            event: \"message\",\n            listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void,\n        ): this; // the handle is a net.Socket or net.Server object, or undefined.\n        addListener(event: \"online\", listener: (worker: Worker) => void): this;\n        addListener(event: \"setup\", listener: (settings: ClusterSettings) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"disconnect\", worker: Worker): boolean;\n        emit(event: \"exit\", worker: Worker, code: number, signal: string): boolean;\n        emit(event: \"fork\", worker: Worker): boolean;\n        emit(event: \"listening\", worker: Worker, address: Address): boolean;\n        emit(event: \"message\", worker: Worker, message: any, handle: net.Socket | net.Server): boolean;\n        emit(event: \"online\", worker: Worker): boolean;\n        emit(event: \"setup\", settings: ClusterSettings): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"disconnect\", listener: (worker: Worker) => void): this;\n        on(event: \"exit\", listener: (worker: Worker, code: number, signal: string) => void): this;\n        on(event: \"fork\", listener: (worker: Worker) => void): this;\n        on(event: \"listening\", listener: (worker: Worker, address: Address) => void): this;\n        on(event: \"message\", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        on(event: \"online\", listener: (worker: Worker) => void): this;\n        on(event: \"setup\", listener: (settings: ClusterSettings) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"disconnect\", listener: (worker: Worker) => void): this;\n        once(event: \"exit\", listener: (worker: Worker, code: number, signal: string) => void): this;\n        once(event: \"fork\", listener: (worker: Worker) => void): this;\n        once(event: \"listening\", listener: (worker: Worker, address: Address) => void): this;\n        once(event: \"message\", listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined.\n        once(event: \"online\", listener: (worker: Worker) => void): this;\n        once(event: \"setup\", listener: (settings: ClusterSettings) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"disconnect\", listener: (worker: Worker) => void): this;\n        prependListener(event: \"exit\", listener: (worker: Worker, code: number, signal: string) => void): this;\n        prependListener(event: \"fork\", listener: (worker: Worker) => void): this;\n        prependListener(event: \"listening\", listener: (worker: Worker, address: Address) => void): this;\n        // the handle is a net.Socket or net.Server object, or undefined.\n        prependListener(\n            event: \"message\",\n            listener: (worker: Worker, message: any, handle?: net.Socket | net.Server) => void,\n        ): this;\n        prependListener(event: \"online\", listener: (worker: Worker) => void): this;\n        prependListener(event: \"setup\", listener: (settings: ClusterSettings) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"disconnect\", listener: (worker: Worker) => void): this;\n        prependOnceListener(event: \"exit\", listener: (worker: Worker, code: number, signal: string) => void): this;\n        prependOnceListener(event: \"fork\", listener: (worker: Worker) => void): this;\n        prependOnceListener(event: \"listening\", listener: (worker: Worker, address: Address) => void): this;\n        // the handle is a net.Socket or net.Server object, or undefined.\n        prependOnceListener(\n            event: \"message\",\n            listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void,\n        ): this;\n        prependOnceListener(event: \"online\", listener: (worker: Worker) => void): this;\n        prependOnceListener(event: \"setup\", listener: (settings: ClusterSettings) => void): this;\n    }\n    const cluster: Cluster;\n    export default cluster;\n}\ndeclare module \"node:cluster\" {\n    export * from \"cluster\";\n    export { default as default } from \"cluster\";\n}\n",
    "node_modules/@types/node/compatibility/disposable.d.ts": "// Polyfills for the explicit resource management types added in TypeScript 5.2.\n\ninterface SymbolConstructor {\n    readonly dispose: unique symbol;\n    readonly asyncDispose: unique symbol;\n}\n\ninterface Disposable {\n    [Symbol.dispose](): void;\n}\n\ninterface AsyncDisposable {\n    [Symbol.asyncDispose](): PromiseLike<void>;\n}\n",
    "node_modules/@types/node/compatibility/index.d.ts": "// Declaration files in this directory contain types relating to TypeScript library features\n// that are not included in all TypeScript versions supported by DefinitelyTyped, but\n// which can be made backwards-compatible without needing `typesVersions`.\n// If adding declarations to this directory, please specify which versions of TypeScript require them,\n// so that they can be removed when no longer needed.\n\n/// <reference path=\"disposable.d.ts\" />\n/// <reference path=\"indexable.d.ts\" />\n/// <reference path=\"iterators.d.ts\" />\n",
    "node_modules/@types/node/compatibility/indexable.d.ts": "// Polyfill for ES2022's .at() method on string/array prototypes, added to TypeScript in 4.6.\n\ninterface RelativeIndexable<T> {\n    at(index: number): T | undefined;\n}\n\ninterface String extends RelativeIndexable<string> {}\ninterface Array<T> extends RelativeIndexable<T> {}\ninterface ReadonlyArray<T> extends RelativeIndexable<T> {}\ninterface Int8Array extends RelativeIndexable<number> {}\ninterface Uint8Array extends RelativeIndexable<number> {}\ninterface Uint8ClampedArray extends RelativeIndexable<number> {}\ninterface Int16Array extends RelativeIndexable<number> {}\ninterface Uint16Array extends RelativeIndexable<number> {}\ninterface Int32Array extends RelativeIndexable<number> {}\ninterface Uint32Array extends RelativeIndexable<number> {}\ninterface Float32Array extends RelativeIndexable<number> {}\ninterface Float64Array extends RelativeIndexable<number> {}\ninterface BigInt64Array extends RelativeIndexable<bigint> {}\ninterface BigUint64Array extends RelativeIndexable<bigint> {}\n",
    "node_modules/@types/node/compatibility/iterators.d.ts": "// Backwards-compatible iterator interfaces, augmented with iterator helper methods by lib.esnext.iterator in TypeScript 5.6.\n// The IterableIterator interface does not contain these methods, which creates assignability issues in places where IteratorObjects\n// are expected (eg. DOM-compatible APIs) if lib.esnext.iterator is loaded.\n// Also ensures that iterators returned by the Node API, which inherit from Iterator.prototype, correctly expose the iterator helper methods\n// if lib.esnext.iterator is loaded.\n\n// Placeholders for TS <5.6\ninterface IteratorObject<T, TReturn, TNext> {}\ninterface AsyncIteratorObject<T, TReturn, TNext> {}\n\ndeclare namespace NodeJS {\n    // Populate iterator methods for TS <5.6\n    interface Iterator<T, TReturn, TNext> extends globalThis.Iterator<T, TReturn, TNext> {}\n    interface AsyncIterator<T, TReturn, TNext> extends globalThis.AsyncIterator<T, TReturn, TNext> {}\n\n    // Polyfill for TS 5.6's instrinsic BuiltinIteratorReturn type, required for DOM-compatible iterators\n    type BuiltinIteratorReturn = ReturnType<any[][typeof Symbol.iterator]> extends\n        globalThis.Iterator<any, infer TReturn> ? TReturn\n        : any;\n}\n",
    "node_modules/@types/node/console.d.ts": "/**\n * The `node:console` module provides a simple debugging console that is similar to\n * the JavaScript console mechanism provided by web browsers.\n *\n * The module exports two specific components:\n *\n * * A `Console` class with methods such as `console.log()`, `console.error()`, and `console.warn()` that can be used to write to any Node.js stream.\n * * A global `console` instance configured to write to [`process.stdout`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdout) and\n * [`process.stderr`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstderr). The global `console` can be used without importing the `node:console` module.\n *\n * _**Warning**_: The global console object's methods are neither consistently\n * synchronous like the browser APIs they resemble, nor are they consistently\n * asynchronous like all other Node.js streams. See the [`note on process I/O`](https://nodejs.org/docs/latest-v22.x/api/process.html#a-note-on-process-io) for\n * more information.\n *\n * Example using the global `console`:\n *\n * ```js\n * console.log('hello world');\n * // Prints: hello world, to stdout\n * console.log('hello %s', 'world');\n * // Prints: hello world, to stdout\n * console.error(new Error('Whoops, something bad happened'));\n * // Prints error message and stack trace to stderr:\n * //   Error: Whoops, something bad happened\n * //     at [eval]:5:15\n * //     at Script.runInThisContext (node:vm:132:18)\n * //     at Object.runInThisContext (node:vm:309:38)\n * //     at node:internal/process/execution:77:19\n * //     at [eval]-wrapper:6:22\n * //     at evalScript (node:internal/process/execution:76:60)\n * //     at node:internal/main/eval_string:23:3\n *\n * const name = 'Will Robinson';\n * console.warn(`Danger ${name}! Danger!`);\n * // Prints: Danger Will Robinson! Danger!, to stderr\n * ```\n *\n * Example using the `Console` class:\n *\n * ```js\n * const out = getStreamSomehow();\n * const err = getStreamSomehow();\n * const myConsole = new console.Console(out, err);\n *\n * myConsole.log('hello world');\n * // Prints: hello world, to out\n * myConsole.log('hello %s', 'world');\n * // Prints: hello world, to out\n * myConsole.error(new Error('Whoops, something bad happened'));\n * // Prints: [Error: Whoops, something bad happened], to err\n *\n * const name = 'Will Robinson';\n * myConsole.warn(`Danger ${name}! Danger!`);\n * // Prints: Danger Will Robinson! Danger!, to err\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/console.js)\n */\ndeclare module \"console\" {\n    import console = require(\"node:console\");\n    export = console;\n}\ndeclare module \"node:console\" {\n    import { InspectOptions } from \"node:util\";\n    global {\n        // This needs to be global to avoid TS2403 in case lib.dom.d.ts is present in the same build\n        interface Console {\n            Console: console.ConsoleConstructor;\n            /**\n             * `console.assert()` writes a message if `value` is [falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) or omitted. It only\n             * writes a message and does not otherwise affect execution. The output always\n             * starts with `\"Assertion failed\"`. If provided, `message` is formatted using\n             * [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args).\n             *\n             * If `value` is [truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy), nothing happens.\n             *\n             * ```js\n             * console.assert(true, 'does nothing');\n             *\n             * console.assert(false, 'Whoops %s work', 'didn\\'t');\n             * // Assertion failed: Whoops didn't work\n             *\n             * console.assert();\n             * // Assertion failed\n             * ```\n             * @since v0.1.101\n             * @param value The value tested for being truthy.\n             * @param message All arguments besides `value` are used as error message.\n             */\n            assert(value: any, message?: string, ...optionalParams: any[]): void;\n            /**\n             * When `stdout` is a TTY, calling `console.clear()` will attempt to clear the\n             * TTY. When `stdout` is not a TTY, this method does nothing.\n             *\n             * The specific operation of `console.clear()` can vary across operating systems\n             * and terminal types. For most Linux operating systems, `console.clear()` operates similarly to the `clear` shell command. On Windows, `console.clear()` will clear only the output in the\n             * current terminal viewport for the Node.js\n             * binary.\n             * @since v8.3.0\n             */\n            clear(): void;\n            /**\n             * Maintains an internal counter specific to `label` and outputs to `stdout` the\n             * number of times `console.count()` has been called with the given `label`.\n             *\n             * ```js\n             * > console.count()\n             * default: 1\n             * undefined\n             * > console.count('default')\n             * default: 2\n             * undefined\n             * > console.count('abc')\n             * abc: 1\n             * undefined\n             * > console.count('xyz')\n             * xyz: 1\n             * undefined\n             * > console.count('abc')\n             * abc: 2\n             * undefined\n             * > console.count()\n             * default: 3\n             * undefined\n             * >\n             * ```\n             * @since v8.3.0\n             * @param [label='default'] The display label for the counter.\n             */\n            count(label?: string): void;\n            /**\n             * Resets the internal counter specific to `label`.\n             *\n             * ```js\n             * > console.count('abc');\n             * abc: 1\n             * undefined\n             * > console.countReset('abc');\n             * undefined\n             * > console.count('abc');\n             * abc: 1\n             * undefined\n             * >\n             * ```\n             * @since v8.3.0\n             * @param [label='default'] The display label for the counter.\n             */\n            countReset(label?: string): void;\n            /**\n             * The `console.debug()` function is an alias for {@link log}.\n             * @since v8.0.0\n             */\n            debug(message?: any, ...optionalParams: any[]): void;\n            /**\n             * Uses [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options) on `obj` and prints the resulting string to `stdout`.\n             * This function bypasses any custom `inspect()` function defined on `obj`.\n             * @since v0.1.101\n             */\n            dir(obj: any, options?: InspectOptions): void;\n            /**\n             * This method calls `console.log()` passing it the arguments received.\n             * This method does not produce any XML formatting.\n             * @since v8.0.0\n             */\n            dirxml(...data: any[]): void;\n            /**\n             * Prints to `stderr` with newline. Multiple arguments can be passed, with the\n             * first used as the primary message and all additional used as substitution\n             * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html)\n             * (the arguments are all passed to [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)).\n             *\n             * ```js\n             * const code = 5;\n             * console.error('error #%d', code);\n             * // Prints: error #5, to stderr\n             * console.error('error', code);\n             * // Prints: error 5, to stderr\n             * ```\n             *\n             * If formatting elements (e.g. `%d`) are not found in the first string then\n             * [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options) is called on each argument and the\n             * resulting string values are concatenated. See [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)\n             * for more information.\n             * @since v0.1.100\n             */\n            error(message?: any, ...optionalParams: any[]): void;\n            /**\n             * Increases indentation of subsequent lines by spaces for `groupIndentation` length.\n             *\n             * If one or more `label`s are provided, those are printed first without the\n             * additional indentation.\n             * @since v8.5.0\n             */\n            group(...label: any[]): void;\n            /**\n             * An alias for {@link group}.\n             * @since v8.5.0\n             */\n            groupCollapsed(...label: any[]): void;\n            /**\n             * Decreases indentation of subsequent lines by spaces for `groupIndentation` length.\n             * @since v8.5.0\n             */\n            groupEnd(): void;\n            /**\n             * The `console.info()` function is an alias for {@link log}.\n             * @since v0.1.100\n             */\n            info(message?: any, ...optionalParams: any[]): void;\n            /**\n             * Prints to `stdout` with newline. Multiple arguments can be passed, with the\n             * first used as the primary message and all additional used as substitution\n             * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html)\n             * (the arguments are all passed to [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)).\n             *\n             * ```js\n             * const count = 5;\n             * console.log('count: %d', count);\n             * // Prints: count: 5, to stdout\n             * console.log('count:', count);\n             * // Prints: count: 5, to stdout\n             * ```\n             *\n             * See [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args) for more information.\n             * @since v0.1.100\n             */\n            log(message?: any, ...optionalParams: any[]): void;\n            /**\n             * Try to construct a table with the columns of the properties of `tabularData` (or use `properties`) and rows of `tabularData` and log it. Falls back to just\n             * logging the argument if it can't be parsed as tabular.\n             *\n             * ```js\n             * // These can't be parsed as tabular data\n             * console.table(Symbol());\n             * // Symbol()\n             *\n             * console.table(undefined);\n             * // undefined\n             *\n             * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);\n             * // ┌─────────┬─────┬─────┐\n             * // │ (index) │  a  │  b  │\n             * // ├─────────┼─────┼─────┤\n             * // │    0    │  1  │ 'Y' │\n             * // │    1    │ 'Z' │  2  │\n             * // └─────────┴─────┴─────┘\n             *\n             * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']);\n             * // ┌─────────┬─────┐\n             * // │ (index) │  a  │\n             * // ├─────────┼─────┤\n             * // │    0    │  1  │\n             * // │    1    │ 'Z' │\n             * // └─────────┴─────┘\n             * ```\n             * @since v10.0.0\n             * @param properties Alternate properties for constructing the table.\n             */\n            table(tabularData: any, properties?: readonly string[]): void;\n            /**\n             * Starts a timer that can be used to compute the duration of an operation. Timers\n             * are identified by a unique `label`. Use the same `label` when calling {@link timeEnd} to stop the timer and output the elapsed time in\n             * suitable time units to `stdout`. For example, if the elapsed\n             * time is 3869ms, `console.timeEnd()` displays \"3.869s\".\n             * @since v0.1.104\n             * @param [label='default']\n             */\n            time(label?: string): void;\n            /**\n             * Stops a timer that was previously started by calling {@link time} and\n             * prints the result to `stdout`:\n             *\n             * ```js\n             * console.time('bunch-of-stuff');\n             * // Do a bunch of stuff.\n             * console.timeEnd('bunch-of-stuff');\n             * // Prints: bunch-of-stuff: 225.438ms\n             * ```\n             * @since v0.1.104\n             * @param [label='default']\n             */\n            timeEnd(label?: string): void;\n            /**\n             * For a timer that was previously started by calling {@link time}, prints\n             * the elapsed time and other `data` arguments to `stdout`:\n             *\n             * ```js\n             * console.time('process');\n             * const value = expensiveProcess1(); // Returns 42\n             * console.timeLog('process', value);\n             * // Prints \"process: 365.227ms 42\".\n             * doExpensiveProcess2(value);\n             * console.timeEnd('process');\n             * ```\n             * @since v10.7.0\n             * @param [label='default']\n             */\n            timeLog(label?: string, ...data: any[]): void;\n            /**\n             * Prints to `stderr` the string `'Trace: '`, followed by the [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)\n             * formatted message and stack trace to the current position in the code.\n             *\n             * ```js\n             * console.trace('Show me');\n             * // Prints: (stack trace will vary based on where trace is called)\n             * //  Trace: Show me\n             * //    at repl:2:9\n             * //    at REPLServer.defaultEval (repl.js:248:27)\n             * //    at bound (domain.js:287:14)\n             * //    at REPLServer.runBound [as eval] (domain.js:300:12)\n             * //    at REPLServer.<anonymous> (repl.js:412:12)\n             * //    at emitOne (events.js:82:20)\n             * //    at REPLServer.emit (events.js:169:7)\n             * //    at REPLServer.Interface._onLine (readline.js:210:10)\n             * //    at REPLServer.Interface._line (readline.js:549:8)\n             * //    at REPLServer.Interface._ttyWrite (readline.js:826:14)\n             * ```\n             * @since v0.1.104\n             */\n            trace(message?: any, ...optionalParams: any[]): void;\n            /**\n             * The `console.warn()` function is an alias for {@link error}.\n             * @since v0.1.100\n             */\n            warn(message?: any, ...optionalParams: any[]): void;\n            // --- Inspector mode only ---\n            /**\n             * This method does not display anything unless used in the inspector. The `console.profile()`\n             * method starts a JavaScript CPU profile with an optional label until {@link profileEnd}\n             * is called. The profile is then added to the Profile panel of the inspector.\n             *\n             * ```js\n             * console.profile('MyLabel');\n             * // Some code\n             * console.profileEnd('MyLabel');\n             * // Adds the profile 'MyLabel' to the Profiles panel of the inspector.\n             * ```\n             * @since v8.0.0\n             */\n            profile(label?: string): void;\n            /**\n             * This method does not display anything unless used in the inspector. Stops the current\n             * JavaScript CPU profiling session if one has been started and prints the report to the\n             * Profiles panel of the inspector. See {@link profile} for an example.\n             *\n             * If this method is called without a label, the most recently started profile is stopped.\n             * @since v8.0.0\n             */\n            profileEnd(label?: string): void;\n            /**\n             * This method does not display anything unless used in the inspector. The `console.timeStamp()`\n             * method adds an event with the label `'label'` to the Timeline panel of the inspector.\n             * @since v8.0.0\n             */\n            timeStamp(label?: string): void;\n        }\n        /**\n         * The `console` module provides a simple debugging console that is similar to the\n         * JavaScript console mechanism provided by web browsers.\n         *\n         * The module exports two specific components:\n         *\n         * * A `Console` class with methods such as `console.log()`, `console.error()` and `console.warn()` that can be used to write to any Node.js stream.\n         * * A global `console` instance configured to write to [`process.stdout`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdout) and\n         * [`process.stderr`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstderr). The global `console` can be used without importing the `node:console` module.\n         *\n         * _**Warning**_: The global console object's methods are neither consistently\n         * synchronous like the browser APIs they resemble, nor are they consistently\n         * asynchronous like all other Node.js streams. See the [`note on process I/O`](https://nodejs.org/docs/latest-v22.x/api/process.html#a-note-on-process-io) for\n         * more information.\n         *\n         * Example using the global `console`:\n         *\n         * ```js\n         * console.log('hello world');\n         * // Prints: hello world, to stdout\n         * console.log('hello %s', 'world');\n         * // Prints: hello world, to stdout\n         * console.error(new Error('Whoops, something bad happened'));\n         * // Prints error message and stack trace to stderr:\n         * //   Error: Whoops, something bad happened\n         * //     at [eval]:5:15\n         * //     at Script.runInThisContext (node:vm:132:18)\n         * //     at Object.runInThisContext (node:vm:309:38)\n         * //     at node:internal/process/execution:77:19\n         * //     at [eval]-wrapper:6:22\n         * //     at evalScript (node:internal/process/execution:76:60)\n         * //     at node:internal/main/eval_string:23:3\n         *\n         * const name = 'Will Robinson';\n         * console.warn(`Danger ${name}! Danger!`);\n         * // Prints: Danger Will Robinson! Danger!, to stderr\n         * ```\n         *\n         * Example using the `Console` class:\n         *\n         * ```js\n         * const out = getStreamSomehow();\n         * const err = getStreamSomehow();\n         * const myConsole = new console.Console(out, err);\n         *\n         * myConsole.log('hello world');\n         * // Prints: hello world, to out\n         * myConsole.log('hello %s', 'world');\n         * // Prints: hello world, to out\n         * myConsole.error(new Error('Whoops, something bad happened'));\n         * // Prints: [Error: Whoops, something bad happened], to err\n         *\n         * const name = 'Will Robinson';\n         * myConsole.warn(`Danger ${name}! Danger!`);\n         * // Prints: Danger Will Robinson! Danger!, to err\n         * ```\n         * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/console.js)\n         */\n        namespace console {\n            interface ConsoleConstructorOptions {\n                stdout: NodeJS.WritableStream;\n                stderr?: NodeJS.WritableStream | undefined;\n                /**\n                 * Ignore errors when writing to the underlying streams.\n                 * @default true\n                 */\n                ignoreErrors?: boolean | undefined;\n                /**\n                 * Set color support for this `Console` instance. Setting to true enables coloring while inspecting\n                 * values. Setting to `false` disables coloring while inspecting values. Setting to `'auto'` makes color\n                 * support depend on the value of the `isTTY` property and the value returned by `getColorDepth()` on the\n                 * respective stream. This option can not be used, if `inspectOptions.colors` is set as well.\n                 * @default auto\n                 */\n                colorMode?: boolean | \"auto\" | undefined;\n                /**\n                 * Specifies options that are passed along to\n                 * [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options).\n                 */\n                inspectOptions?: InspectOptions | undefined;\n                /**\n                 * Set group indentation.\n                 * @default 2\n                 */\n                groupIndentation?: number | undefined;\n            }\n            interface ConsoleConstructor {\n                prototype: Console;\n                new(stdout: NodeJS.WritableStream, stderr?: NodeJS.WritableStream, ignoreErrors?: boolean): Console;\n                new(options: ConsoleConstructorOptions): Console;\n            }\n        }\n        var console: Console;\n    }\n    export = globalThis.console;\n}\n",
    "node_modules/@types/node/constants.d.ts": "/**\n * @deprecated The `node:constants` module is deprecated. When requiring access to constants\n * relevant to specific Node.js builtin modules, developers should instead refer\n * to the `constants` property exposed by the relevant module. For instance,\n * `require('node:fs').constants` and `require('node:os').constants`.\n */\ndeclare module \"constants\" {\n    const constants:\n        & typeof import(\"node:os\").constants.dlopen\n        & typeof import(\"node:os\").constants.errno\n        & typeof import(\"node:os\").constants.priority\n        & typeof import(\"node:os\").constants.signals\n        & typeof import(\"node:fs\").constants\n        & typeof import(\"node:crypto\").constants;\n    export = constants;\n}\n\ndeclare module \"node:constants\" {\n    import constants = require(\"constants\");\n    export = constants;\n}\n",
    "node_modules/@types/node/crypto.d.ts": "/**\n * The `node:crypto` module provides cryptographic functionality that includes a\n * set of wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify\n * functions.\n *\n * ```js\n * const { createHmac } = await import('node:crypto');\n *\n * const secret = 'abcdefg';\n * const hash = createHmac('sha256', secret)\n *                .update('I love cupcakes')\n *                .digest('hex');\n * console.log(hash);\n * // Prints:\n * //   c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/crypto.js)\n */\ndeclare module \"crypto\" {\n    import * as stream from \"node:stream\";\n    import { PeerCertificate } from \"node:tls\";\n    /**\n     * SPKAC is a Certificate Signing Request mechanism originally implemented by\n     * Netscape and was specified formally as part of HTML5's `keygen` element.\n     *\n     * `<keygen>` is deprecated since [HTML 5.2](https://www.w3.org/TR/html52/changes.html#features-removed) and new projects\n     * should not use this element anymore.\n     *\n     * The `node:crypto` module provides the `Certificate` class for working with SPKAC\n     * data. The most common usage is handling output generated by the HTML5 `<keygen>` element. Node.js uses [OpenSSL's SPKAC\n     * implementation](https://www.openssl.org/docs/man3.0/man1/openssl-spkac.html) internally.\n     * @since v0.11.8\n     */\n    class Certificate {\n        /**\n         * ```js\n         * const { Certificate } = await import('node:crypto');\n         * const spkac = getSpkacSomehow();\n         * const challenge = Certificate.exportChallenge(spkac);\n         * console.log(challenge.toString('utf8'));\n         * // Prints: the challenge as a UTF8 string\n         * ```\n         * @since v9.0.0\n         * @param encoding The `encoding` of the `spkac` string.\n         * @return The challenge component of the `spkac` data structure, which includes a public key and a challenge.\n         */\n        static exportChallenge(spkac: BinaryLike): Buffer;\n        /**\n         * ```js\n         * const { Certificate } = await import('node:crypto');\n         * const spkac = getSpkacSomehow();\n         * const publicKey = Certificate.exportPublicKey(spkac);\n         * console.log(publicKey);\n         * // Prints: the public key as <Buffer ...>\n         * ```\n         * @since v9.0.0\n         * @param encoding The `encoding` of the `spkac` string.\n         * @return The public key component of the `spkac` data structure, which includes a public key and a challenge.\n         */\n        static exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer;\n        /**\n         * ```js\n         * import { Buffer } from 'node:buffer';\n         * const { Certificate } = await import('node:crypto');\n         *\n         * const spkac = getSpkacSomehow();\n         * console.log(Certificate.verifySpkac(Buffer.from(spkac)));\n         * // Prints: true or false\n         * ```\n         * @since v9.0.0\n         * @param encoding The `encoding` of the `spkac` string.\n         * @return `true` if the given `spkac` data structure is valid, `false` otherwise.\n         */\n        static verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;\n        /**\n         * @deprecated\n         * @param spkac\n         * @returns The challenge component of the `spkac` data structure,\n         * which includes a public key and a challenge.\n         */\n        exportChallenge(spkac: BinaryLike): Buffer;\n        /**\n         * @deprecated\n         * @param spkac\n         * @param encoding The encoding of the spkac string.\n         * @returns The public key component of the `spkac` data structure,\n         * which includes a public key and a challenge.\n         */\n        exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer;\n        /**\n         * @deprecated\n         * @param spkac\n         * @returns `true` if the given `spkac` data structure is valid,\n         * `false` otherwise.\n         */\n        verifySpkac(spkac: NodeJS.ArrayBufferView): boolean;\n    }\n    namespace constants {\n        // https://nodejs.org/dist/latest-v22.x/docs/api/crypto.html#crypto-constants\n        const OPENSSL_VERSION_NUMBER: number;\n        /** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */\n        const SSL_OP_ALL: number;\n        /** Instructs OpenSSL to allow a non-[EC]DHE-based key exchange mode for TLS v1.3 */\n        const SSL_OP_ALLOW_NO_DHE_KEX: number;\n        /** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */\n        const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number;\n        /** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */\n        const SSL_OP_CIPHER_SERVER_PREFERENCE: number;\n        /** Instructs OpenSSL to use Cisco's version identifier of DTLS_BAD_VER. */\n        const SSL_OP_CISCO_ANYCONNECT: number;\n        /** Instructs OpenSSL to turn on cookie exchange. */\n        const SSL_OP_COOKIE_EXCHANGE: number;\n        /** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */\n        const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number;\n        /** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */\n        const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number;\n        /** Allows initial connection to servers that do not support RI. */\n        const SSL_OP_LEGACY_SERVER_CONNECT: number;\n        /** Instructs OpenSSL to disable support for SSL/TLS compression. */\n        const SSL_OP_NO_COMPRESSION: number;\n        /** Instructs OpenSSL to disable encrypt-then-MAC. */\n        const SSL_OP_NO_ENCRYPT_THEN_MAC: number;\n        const SSL_OP_NO_QUERY_MTU: number;\n        /** Instructs OpenSSL to disable renegotiation. */\n        const SSL_OP_NO_RENEGOTIATION: number;\n        /** Instructs OpenSSL to always start a new session when performing renegotiation. */\n        const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number;\n        /** Instructs OpenSSL to turn off SSL v2 */\n        const SSL_OP_NO_SSLv2: number;\n        /** Instructs OpenSSL to turn off SSL v3 */\n        const SSL_OP_NO_SSLv3: number;\n        /** Instructs OpenSSL to disable use of RFC4507bis tickets. */\n        const SSL_OP_NO_TICKET: number;\n        /** Instructs OpenSSL to turn off TLS v1 */\n        const SSL_OP_NO_TLSv1: number;\n        /** Instructs OpenSSL to turn off TLS v1.1 */\n        const SSL_OP_NO_TLSv1_1: number;\n        /** Instructs OpenSSL to turn off TLS v1.2 */\n        const SSL_OP_NO_TLSv1_2: number;\n        /** Instructs OpenSSL to turn off TLS v1.3 */\n        const SSL_OP_NO_TLSv1_3: number;\n        /** Instructs OpenSSL server to prioritize ChaCha20-Poly1305 when the client does. This option has no effect if `SSL_OP_CIPHER_SERVER_PREFERENCE` is not enabled. */\n        const SSL_OP_PRIORITIZE_CHACHA: number;\n        /** Instructs OpenSSL to disable version rollback attack detection. */\n        const SSL_OP_TLS_ROLLBACK_BUG: number;\n        const ENGINE_METHOD_RSA: number;\n        const ENGINE_METHOD_DSA: number;\n        const ENGINE_METHOD_DH: number;\n        const ENGINE_METHOD_RAND: number;\n        const ENGINE_METHOD_EC: number;\n        const ENGINE_METHOD_CIPHERS: number;\n        const ENGINE_METHOD_DIGESTS: number;\n        const ENGINE_METHOD_PKEY_METHS: number;\n        const ENGINE_METHOD_PKEY_ASN1_METHS: number;\n        const ENGINE_METHOD_ALL: number;\n        const ENGINE_METHOD_NONE: number;\n        const DH_CHECK_P_NOT_SAFE_PRIME: number;\n        const DH_CHECK_P_NOT_PRIME: number;\n        const DH_UNABLE_TO_CHECK_GENERATOR: number;\n        const DH_NOT_SUITABLE_GENERATOR: number;\n        const RSA_PKCS1_PADDING: number;\n        const RSA_SSLV23_PADDING: number;\n        const RSA_NO_PADDING: number;\n        const RSA_PKCS1_OAEP_PADDING: number;\n        const RSA_X931_PADDING: number;\n        const RSA_PKCS1_PSS_PADDING: number;\n        /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */\n        const RSA_PSS_SALTLEN_DIGEST: number;\n        /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */\n        const RSA_PSS_SALTLEN_MAX_SIGN: number;\n        /** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */\n        const RSA_PSS_SALTLEN_AUTO: number;\n        const POINT_CONVERSION_COMPRESSED: number;\n        const POINT_CONVERSION_UNCOMPRESSED: number;\n        const POINT_CONVERSION_HYBRID: number;\n        /** Specifies the built-in default cipher list used by Node.js (colon-separated values). */\n        const defaultCoreCipherList: string;\n        /** Specifies the active default cipher list used by the current Node.js process  (colon-separated values). */\n        const defaultCipherList: string;\n    }\n    interface HashOptions extends stream.TransformOptions {\n        /**\n         * For XOF hash functions such as `shake256`, the\n         * outputLength option can be used to specify the desired output length in bytes.\n         */\n        outputLength?: number | undefined;\n    }\n    /** @deprecated since v10.0.0 */\n    const fips: boolean;\n    /**\n     * Creates and returns a `Hash` object that can be used to generate hash digests\n     * using the given `algorithm`. Optional `options` argument controls stream\n     * behavior. For XOF hash functions such as `'shake256'`, the `outputLength` option\n     * can be used to specify the desired output length in bytes.\n     *\n     * The `algorithm` is dependent on the available algorithms supported by the\n     * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.\n     * On recent releases of OpenSSL, `openssl list -digest-algorithms` will\n     * display the available digest algorithms.\n     *\n     * Example: generating the sha256 sum of a file\n     *\n     * ```js\n     * import {\n     *   createReadStream,\n     * } from 'node:fs';\n     * import { argv } from 'node:process';\n     * const {\n     *   createHash,\n     * } = await import('node:crypto');\n     *\n     * const filename = argv[2];\n     *\n     * const hash = createHash('sha256');\n     *\n     * const input = createReadStream(filename);\n     * input.on('readable', () => {\n     *   // Only one element is going to be produced by the\n     *   // hash stream.\n     *   const data = input.read();\n     *   if (data)\n     *     hash.update(data);\n     *   else {\n     *     console.log(`${hash.digest('hex')} ${filename}`);\n     *   }\n     * });\n     * ```\n     * @since v0.1.92\n     * @param options `stream.transform` options\n     */\n    function createHash(algorithm: string, options?: HashOptions): Hash;\n    /**\n     * Creates and returns an `Hmac` object that uses the given `algorithm` and `key`.\n     * Optional `options` argument controls stream behavior.\n     *\n     * The `algorithm` is dependent on the available algorithms supported by the\n     * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc.\n     * On recent releases of OpenSSL, `openssl list -digest-algorithms` will\n     * display the available digest algorithms.\n     *\n     * The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is\n     * a `KeyObject`, its type must be `secret`. If it is a string, please consider `caveats when using strings as inputs to cryptographic APIs`. If it was\n     * obtained from a cryptographically secure source of entropy, such as {@link randomBytes} or {@link generateKey}, its length should not\n     * exceed the block size of `algorithm` (e.g., 512 bits for SHA-256).\n     *\n     * Example: generating the sha256 HMAC of a file\n     *\n     * ```js\n     * import {\n     *   createReadStream,\n     * } from 'node:fs';\n     * import { argv } from 'node:process';\n     * const {\n     *   createHmac,\n     * } = await import('node:crypto');\n     *\n     * const filename = argv[2];\n     *\n     * const hmac = createHmac('sha256', 'a secret');\n     *\n     * const input = createReadStream(filename);\n     * input.on('readable', () => {\n     *   // Only one element is going to be produced by the\n     *   // hash stream.\n     *   const data = input.read();\n     *   if (data)\n     *     hmac.update(data);\n     *   else {\n     *     console.log(`${hmac.digest('hex')} ${filename}`);\n     *   }\n     * });\n     * ```\n     * @since v0.1.94\n     * @param options `stream.transform` options\n     */\n    function createHmac(algorithm: string, key: BinaryLike | KeyObject, options?: stream.TransformOptions): Hmac;\n    // https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings\n    type BinaryToTextEncoding = \"base64\" | \"base64url\" | \"hex\" | \"binary\";\n    type CharacterEncoding = \"utf8\" | \"utf-8\" | \"utf16le\" | \"utf-16le\" | \"latin1\";\n    type LegacyCharacterEncoding = \"ascii\" | \"binary\" | \"ucs2\" | \"ucs-2\";\n    type Encoding = BinaryToTextEncoding | CharacterEncoding | LegacyCharacterEncoding;\n    type ECDHKeyFormat = \"compressed\" | \"uncompressed\" | \"hybrid\";\n    /**\n     * The `Hash` class is a utility for creating hash digests of data. It can be\n     * used in one of two ways:\n     *\n     * * As a `stream` that is both readable and writable, where data is written\n     * to produce a computed hash digest on the readable side, or\n     * * Using the `hash.update()` and `hash.digest()` methods to produce the\n     * computed hash.\n     *\n     * The {@link createHash} method is used to create `Hash` instances. `Hash`objects are not to be created directly using the `new` keyword.\n     *\n     * Example: Using `Hash` objects as streams:\n     *\n     * ```js\n     * const {\n     *   createHash,\n     * } = await import('node:crypto');\n     *\n     * const hash = createHash('sha256');\n     *\n     * hash.on('readable', () => {\n     *   // Only one element is going to be produced by the\n     *   // hash stream.\n     *   const data = hash.read();\n     *   if (data) {\n     *     console.log(data.toString('hex'));\n     *     // Prints:\n     *     //   6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50\n     *   }\n     * });\n     *\n     * hash.write('some data to hash');\n     * hash.end();\n     * ```\n     *\n     * Example: Using `Hash` and piped streams:\n     *\n     * ```js\n     * import { createReadStream } from 'node:fs';\n     * import { stdout } from 'node:process';\n     * const { createHash } = await import('node:crypto');\n     *\n     * const hash = createHash('sha256');\n     *\n     * const input = createReadStream('test.js');\n     * input.pipe(hash).setEncoding('hex').pipe(stdout);\n     * ```\n     *\n     * Example: Using the `hash.update()` and `hash.digest()` methods:\n     *\n     * ```js\n     * const {\n     *   createHash,\n     * } = await import('node:crypto');\n     *\n     * const hash = createHash('sha256');\n     *\n     * hash.update('some data to hash');\n     * console.log(hash.digest('hex'));\n     * // Prints:\n     * //   6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50\n     * ```\n     * @since v0.1.92\n     */\n    class Hash extends stream.Transform {\n        private constructor();\n        /**\n         * Creates a new `Hash` object that contains a deep copy of the internal state\n         * of the current `Hash` object.\n         *\n         * The optional `options` argument controls stream behavior. For XOF hash\n         * functions such as `'shake256'`, the `outputLength` option can be used to\n         * specify the desired output length in bytes.\n         *\n         * An error is thrown when an attempt is made to copy the `Hash` object after\n         * its `hash.digest()` method has been called.\n         *\n         * ```js\n         * // Calculate a rolling hash.\n         * const {\n         *   createHash,\n         * } = await import('node:crypto');\n         *\n         * const hash = createHash('sha256');\n         *\n         * hash.update('one');\n         * console.log(hash.copy().digest('hex'));\n         *\n         * hash.update('two');\n         * console.log(hash.copy().digest('hex'));\n         *\n         * hash.update('three');\n         * console.log(hash.copy().digest('hex'));\n         *\n         * // Etc.\n         * ```\n         * @since v13.1.0\n         * @param options `stream.transform` options\n         */\n        copy(options?: HashOptions): Hash;\n        /**\n         * Updates the hash content with the given `data`, the encoding of which\n         * is given in `inputEncoding`.\n         * If `encoding` is not provided, and the `data` is a string, an\n         * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.\n         *\n         * This can be called many times with new data as it is streamed.\n         * @since v0.1.92\n         * @param inputEncoding The `encoding` of the `data` string.\n         */\n        update(data: BinaryLike): Hash;\n        update(data: string, inputEncoding: Encoding): Hash;\n        /**\n         * Calculates the digest of all of the data passed to be hashed (using the `hash.update()` method).\n         * If `encoding` is provided a string will be returned; otherwise\n         * a `Buffer` is returned.\n         *\n         * The `Hash` object can not be used again after `hash.digest()` method has been\n         * called. Multiple calls will cause an error to be thrown.\n         * @since v0.1.92\n         * @param encoding The `encoding` of the return value.\n         */\n        digest(): Buffer;\n        digest(encoding: BinaryToTextEncoding): string;\n    }\n    /**\n     * The `Hmac` class is a utility for creating cryptographic HMAC digests. It can\n     * be used in one of two ways:\n     *\n     * * As a `stream` that is both readable and writable, where data is written\n     * to produce a computed HMAC digest on the readable side, or\n     * * Using the `hmac.update()` and `hmac.digest()` methods to produce the\n     * computed HMAC digest.\n     *\n     * The {@link createHmac} method is used to create `Hmac` instances. `Hmac`objects are not to be created directly using the `new` keyword.\n     *\n     * Example: Using `Hmac` objects as streams:\n     *\n     * ```js\n     * const {\n     *   createHmac,\n     * } = await import('node:crypto');\n     *\n     * const hmac = createHmac('sha256', 'a secret');\n     *\n     * hmac.on('readable', () => {\n     *   // Only one element is going to be produced by the\n     *   // hash stream.\n     *   const data = hmac.read();\n     *   if (data) {\n     *     console.log(data.toString('hex'));\n     *     // Prints:\n     *     //   7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e\n     *   }\n     * });\n     *\n     * hmac.write('some data to hash');\n     * hmac.end();\n     * ```\n     *\n     * Example: Using `Hmac` and piped streams:\n     *\n     * ```js\n     * import { createReadStream } from 'node:fs';\n     * import { stdout } from 'node:process';\n     * const {\n     *   createHmac,\n     * } = await import('node:crypto');\n     *\n     * const hmac = createHmac('sha256', 'a secret');\n     *\n     * const input = createReadStream('test.js');\n     * input.pipe(hmac).pipe(stdout);\n     * ```\n     *\n     * Example: Using the `hmac.update()` and `hmac.digest()` methods:\n     *\n     * ```js\n     * const {\n     *   createHmac,\n     * } = await import('node:crypto');\n     *\n     * const hmac = createHmac('sha256', 'a secret');\n     *\n     * hmac.update('some data to hash');\n     * console.log(hmac.digest('hex'));\n     * // Prints:\n     * //   7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e\n     * ```\n     * @since v0.1.94\n     * @deprecated Since v20.13.0 Calling `Hmac` class directly with `Hmac()` or `new Hmac()` is deprecated due to being internals, not intended for public use. Please use the {@link createHmac} method to create Hmac instances.\n     */\n    class Hmac extends stream.Transform {\n        private constructor();\n        /**\n         * Updates the `Hmac` content with the given `data`, the encoding of which\n         * is given in `inputEncoding`.\n         * If `encoding` is not provided, and the `data` is a string, an\n         * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.\n         *\n         * This can be called many times with new data as it is streamed.\n         * @since v0.1.94\n         * @param inputEncoding The `encoding` of the `data` string.\n         */\n        update(data: BinaryLike): Hmac;\n        update(data: string, inputEncoding: Encoding): Hmac;\n        /**\n         * Calculates the HMAC digest of all of the data passed using `hmac.update()`.\n         * If `encoding` is\n         * provided a string is returned; otherwise a `Buffer` is returned;\n         *\n         * The `Hmac` object can not be used again after `hmac.digest()` has been\n         * called. Multiple calls to `hmac.digest()` will result in an error being thrown.\n         * @since v0.1.94\n         * @param encoding The `encoding` of the return value.\n         */\n        digest(): Buffer;\n        digest(encoding: BinaryToTextEncoding): string;\n    }\n    type KeyObjectType = \"secret\" | \"public\" | \"private\";\n    interface KeyExportOptions<T extends KeyFormat> {\n        type: \"pkcs1\" | \"spki\" | \"pkcs8\" | \"sec1\";\n        format: T;\n        cipher?: string | undefined;\n        passphrase?: string | Buffer | undefined;\n    }\n    interface JwkKeyExportOptions {\n        format: \"jwk\";\n    }\n    interface JsonWebKey {\n        crv?: string | undefined;\n        d?: string | undefined;\n        dp?: string | undefined;\n        dq?: string | undefined;\n        e?: string | undefined;\n        k?: string | undefined;\n        kty?: string | undefined;\n        n?: string | undefined;\n        p?: string | undefined;\n        q?: string | undefined;\n        qi?: string | undefined;\n        x?: string | undefined;\n        y?: string | undefined;\n        [key: string]: unknown;\n    }\n    interface AsymmetricKeyDetails {\n        /**\n         * Key size in bits (RSA, DSA).\n         */\n        modulusLength?: number | undefined;\n        /**\n         * Public exponent (RSA).\n         */\n        publicExponent?: bigint | undefined;\n        /**\n         * Name of the message digest (RSA-PSS).\n         */\n        hashAlgorithm?: string | undefined;\n        /**\n         * Name of the message digest used by MGF1 (RSA-PSS).\n         */\n        mgf1HashAlgorithm?: string | undefined;\n        /**\n         * Minimal salt length in bytes (RSA-PSS).\n         */\n        saltLength?: number | undefined;\n        /**\n         * Size of q in bits (DSA).\n         */\n        divisorLength?: number | undefined;\n        /**\n         * Name of the curve (EC).\n         */\n        namedCurve?: string | undefined;\n    }\n    /**\n     * Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key,\n     * and each kind of key exposes different functions. The {@link createSecretKey}, {@link createPublicKey} and {@link createPrivateKey} methods are used to create `KeyObject`instances. `KeyObject`\n     * objects are not to be created directly using the `new`keyword.\n     *\n     * Most applications should consider using the new `KeyObject` API instead of\n     * passing keys as strings or `Buffer`s due to improved security features.\n     *\n     * `KeyObject` instances can be passed to other threads via `postMessage()`.\n     * The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to\n     * be listed in the `transferList` argument.\n     * @since v11.6.0\n     */\n    class KeyObject {\n        private constructor();\n        /**\n         * Example: Converting a `CryptoKey` instance to a `KeyObject`:\n         *\n         * ```js\n         * const { KeyObject } = await import('node:crypto');\n         * const { subtle } = globalThis.crypto;\n         *\n         * const key = await subtle.generateKey({\n         *   name: 'HMAC',\n         *   hash: 'SHA-256',\n         *   length: 256,\n         * }, true, ['sign', 'verify']);\n         *\n         * const keyObject = KeyObject.from(key);\n         * console.log(keyObject.symmetricKeySize);\n         * // Prints: 32 (symmetric key size in bytes)\n         * ```\n         * @since v15.0.0\n         */\n        static from(key: webcrypto.CryptoKey): KeyObject;\n        /**\n         * For asymmetric keys, this property represents the type of the key. Supported key\n         * types are:\n         *\n         * * `'rsa'` (OID 1.2.840.113549.1.1.1)\n         * * `'rsa-pss'` (OID 1.2.840.113549.1.1.10)\n         * * `'dsa'` (OID 1.2.840.10040.4.1)\n         * * `'ec'` (OID 1.2.840.10045.2.1)\n         * * `'x25519'` (OID 1.3.101.110)\n         * * `'x448'` (OID 1.3.101.111)\n         * * `'ed25519'` (OID 1.3.101.112)\n         * * `'ed448'` (OID 1.3.101.113)\n         * * `'dh'` (OID 1.2.840.113549.1.3.1)\n         *\n         * This property is `undefined` for unrecognized `KeyObject` types and symmetric\n         * keys.\n         * @since v11.6.0\n         */\n        asymmetricKeyType?: KeyType | undefined;\n        /**\n         * This property exists only on asymmetric keys. Depending on the type of the key,\n         * this object contains information about the key. None of the information obtained\n         * through this property can be used to uniquely identify a key or to compromise\n         * the security of the key.\n         *\n         * For RSA-PSS keys, if the key material contains a `RSASSA-PSS-params` sequence,\n         * the `hashAlgorithm`, `mgf1HashAlgorithm`, and `saltLength` properties will be\n         * set.\n         *\n         * Other key details might be exposed via this API using additional attributes.\n         * @since v15.7.0\n         */\n        asymmetricKeyDetails?: AsymmetricKeyDetails | undefined;\n        /**\n         * For symmetric keys, the following encoding options can be used:\n         *\n         * For public keys, the following encoding options can be used:\n         *\n         * For private keys, the following encoding options can be used:\n         *\n         * The result type depends on the selected encoding format, when PEM the\n         * result is a string, when DER it will be a buffer containing the data\n         * encoded as DER, when [JWK](https://tools.ietf.org/html/rfc7517) it will be an object.\n         *\n         * When [JWK](https://tools.ietf.org/html/rfc7517) encoding format was selected, all other encoding options are\n         * ignored.\n         *\n         * PKCS#1, SEC1, and PKCS#8 type keys can be encrypted by using a combination of\n         * the `cipher` and `format` options. The PKCS#8 `type` can be used with any`format` to encrypt any key algorithm (RSA, EC, or DH) by specifying a`cipher`. PKCS#1 and SEC1 can only be\n         * encrypted by specifying a `cipher`when the PEM `format` is used. For maximum compatibility, use PKCS#8 for\n         * encrypted private keys. Since PKCS#8 defines its own\n         * encryption mechanism, PEM-level encryption is not supported when encrypting\n         * a PKCS#8 key. See [RFC 5208](https://www.rfc-editor.org/rfc/rfc5208.txt) for PKCS#8 encryption and [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421.txt) for\n         * PKCS#1 and SEC1 encryption.\n         * @since v11.6.0\n         */\n        export(options: KeyExportOptions<\"pem\">): string | Buffer;\n        export(options?: KeyExportOptions<\"der\">): Buffer;\n        export(options?: JwkKeyExportOptions): JsonWebKey;\n        /**\n         * Returns `true` or `false` depending on whether the keys have exactly the same\n         * type, value, and parameters. This method is not [constant time](https://en.wikipedia.org/wiki/Timing_attack).\n         * @since v17.7.0, v16.15.0\n         * @param otherKeyObject A `KeyObject` with which to compare `keyObject`.\n         */\n        equals(otherKeyObject: KeyObject): boolean;\n        /**\n         * For secret keys, this property represents the size of the key in bytes. This\n         * property is `undefined` for asymmetric keys.\n         * @since v11.6.0\n         */\n        symmetricKeySize?: number | undefined;\n        /**\n         * Converts a `KeyObject` instance to a `CryptoKey`.\n         * @since 22.10.0\n         */\n        toCryptoKey(\n            algorithm:\n                | webcrypto.AlgorithmIdentifier\n                | webcrypto.RsaHashedImportParams\n                | webcrypto.EcKeyImportParams\n                | webcrypto.HmacImportParams,\n            extractable: boolean,\n            keyUsages: readonly webcrypto.KeyUsage[],\n        ): webcrypto.CryptoKey;\n        /**\n         * Depending on the type of this `KeyObject`, this property is either`'secret'` for secret (symmetric) keys, `'public'` for public (asymmetric) keys\n         * or `'private'` for private (asymmetric) keys.\n         * @since v11.6.0\n         */\n        type: KeyObjectType;\n    }\n    type CipherCCMTypes = \"aes-128-ccm\" | \"aes-192-ccm\" | \"aes-256-ccm\";\n    type CipherGCMTypes = \"aes-128-gcm\" | \"aes-192-gcm\" | \"aes-256-gcm\";\n    type CipherOCBTypes = \"aes-128-ocb\" | \"aes-192-ocb\" | \"aes-256-ocb\";\n    type CipherChaCha20Poly1305Types = \"chacha20-poly1305\";\n    type BinaryLike = string | NodeJS.ArrayBufferView;\n    type CipherKey = BinaryLike | KeyObject;\n    interface CipherCCMOptions extends stream.TransformOptions {\n        authTagLength: number;\n    }\n    interface CipherGCMOptions extends stream.TransformOptions {\n        authTagLength?: number | undefined;\n    }\n    interface CipherOCBOptions extends stream.TransformOptions {\n        authTagLength: number;\n    }\n    interface CipherChaCha20Poly1305Options extends stream.TransformOptions {\n        /** @default 16 */\n        authTagLength?: number | undefined;\n    }\n    /**\n     * Creates and returns a `Cipher` object, with the given `algorithm`, `key` and\n     * initialization vector (`iv`).\n     *\n     * The `options` argument controls stream behavior and is optional except when a\n     * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the\n     * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication\n     * tag that will be returned by `getAuthTag()` and defaults to 16 bytes.\n     * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes.\n     *\n     * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On\n     * recent OpenSSL releases, `openssl list -cipher-algorithms` will\n     * display the available cipher algorithms.\n     *\n     * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded\n     * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be\n     * a `KeyObject` of type `secret`. If the cipher does not need\n     * an initialization vector, `iv` may be `null`.\n     *\n     * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * Initialization vectors should be unpredictable and unique; ideally, they will be\n     * cryptographically random. They do not have to be secret: IVs are typically just\n     * added to ciphertext messages unencrypted. It may sound contradictory that\n     * something has to be unpredictable and unique, but does not have to be secret;\n     * remember that an attacker must not be able to predict ahead of time what a\n     * given IV will be.\n     * @since v0.1.94\n     * @param options `stream.transform` options\n     */\n    function createCipheriv(\n        algorithm: CipherCCMTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options: CipherCCMOptions,\n    ): CipherCCM;\n    function createCipheriv(\n        algorithm: CipherOCBTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options: CipherOCBOptions,\n    ): CipherOCB;\n    function createCipheriv(\n        algorithm: CipherGCMTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options?: CipherGCMOptions,\n    ): CipherGCM;\n    function createCipheriv(\n        algorithm: CipherChaCha20Poly1305Types,\n        key: CipherKey,\n        iv: BinaryLike,\n        options?: CipherChaCha20Poly1305Options,\n    ): CipherChaCha20Poly1305;\n    function createCipheriv(\n        algorithm: string,\n        key: CipherKey,\n        iv: BinaryLike | null,\n        options?: stream.TransformOptions,\n    ): Cipher;\n    /**\n     * Instances of the `Cipher` class are used to encrypt data. The class can be\n     * used in one of two ways:\n     *\n     * * As a `stream` that is both readable and writable, where plain unencrypted\n     * data is written to produce encrypted data on the readable side, or\n     * * Using the `cipher.update()` and `cipher.final()` methods to produce\n     * the encrypted data.\n     *\n     * The {@link createCipheriv} method is\n     * used to create `Cipher` instances. `Cipher` objects are not to be created\n     * directly using the `new` keyword.\n     *\n     * Example: Using `Cipher` objects as streams:\n     *\n     * ```js\n     * const {\n     *   scrypt,\n     *   randomFill,\n     *   createCipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     *\n     * // First, we'll generate the key. The key length is dependent on the algorithm.\n     * // In this case for aes192, it is 24 bytes (192 bits).\n     * scrypt(password, 'salt', 24, (err, key) => {\n     *   if (err) throw err;\n     *   // Then, we'll generate a random initialization vector\n     *   randomFill(new Uint8Array(16), (err, iv) => {\n     *     if (err) throw err;\n     *\n     *     // Once we have the key and iv, we can create and use the cipher...\n     *     const cipher = createCipheriv(algorithm, key, iv);\n     *\n     *     let encrypted = '';\n     *     cipher.setEncoding('hex');\n     *\n     *     cipher.on('data', (chunk) => encrypted += chunk);\n     *     cipher.on('end', () => console.log(encrypted));\n     *\n     *     cipher.write('some clear text data');\n     *     cipher.end();\n     *   });\n     * });\n     * ```\n     *\n     * Example: Using `Cipher` and piped streams:\n     *\n     * ```js\n     * import {\n     *   createReadStream,\n     *   createWriteStream,\n     * } from 'node:fs';\n     *\n     * import {\n     *   pipeline,\n     * } from 'node:stream';\n     *\n     * const {\n     *   scrypt,\n     *   randomFill,\n     *   createCipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     *\n     * // First, we'll generate the key. The key length is dependent on the algorithm.\n     * // In this case for aes192, it is 24 bytes (192 bits).\n     * scrypt(password, 'salt', 24, (err, key) => {\n     *   if (err) throw err;\n     *   // Then, we'll generate a random initialization vector\n     *   randomFill(new Uint8Array(16), (err, iv) => {\n     *     if (err) throw err;\n     *\n     *     const cipher = createCipheriv(algorithm, key, iv);\n     *\n     *     const input = createReadStream('test.js');\n     *     const output = createWriteStream('test.enc');\n     *\n     *     pipeline(input, cipher, output, (err) => {\n     *       if (err) throw err;\n     *     });\n     *   });\n     * });\n     * ```\n     *\n     * Example: Using the `cipher.update()` and `cipher.final()` methods:\n     *\n     * ```js\n     * const {\n     *   scrypt,\n     *   randomFill,\n     *   createCipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     *\n     * // First, we'll generate the key. The key length is dependent on the algorithm.\n     * // In this case for aes192, it is 24 bytes (192 bits).\n     * scrypt(password, 'salt', 24, (err, key) => {\n     *   if (err) throw err;\n     *   // Then, we'll generate a random initialization vector\n     *   randomFill(new Uint8Array(16), (err, iv) => {\n     *     if (err) throw err;\n     *\n     *     const cipher = createCipheriv(algorithm, key, iv);\n     *\n     *     let encrypted = cipher.update('some clear text data', 'utf8', 'hex');\n     *     encrypted += cipher.final('hex');\n     *     console.log(encrypted);\n     *   });\n     * });\n     * ```\n     * @since v0.1.94\n     */\n    class Cipher extends stream.Transform {\n        private constructor();\n        /**\n         * Updates the cipher with `data`. If the `inputEncoding` argument is given,\n         * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`, `TypedArray`, or `DataView`. If `data` is a `Buffer`,\n         * `TypedArray`, or `DataView`, then `inputEncoding` is ignored.\n         *\n         * The `outputEncoding` specifies the output format of the enciphered\n         * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned.\n         *\n         * The `cipher.update()` method can be called multiple times with new data until `cipher.final()` is called. Calling `cipher.update()` after `cipher.final()` will result in an error being\n         * thrown.\n         * @since v0.1.94\n         * @param inputEncoding The `encoding` of the data.\n         * @param outputEncoding The `encoding` of the return value.\n         */\n        update(data: BinaryLike): Buffer;\n        update(data: string, inputEncoding: Encoding): Buffer;\n        update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;\n        update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;\n        /**\n         * Once the `cipher.final()` method has been called, the `Cipher` object can no\n         * longer be used to encrypt data. Attempts to call `cipher.final()` more than\n         * once will result in an error being thrown.\n         * @since v0.1.94\n         * @param outputEncoding The `encoding` of the return value.\n         * @return Any remaining enciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.\n         */\n        final(): Buffer;\n        final(outputEncoding: BufferEncoding): string;\n        /**\n         * When using block encryption algorithms, the `Cipher` class will automatically\n         * add padding to the input data to the appropriate block size. To disable the\n         * default padding call `cipher.setAutoPadding(false)`.\n         *\n         * When `autoPadding` is `false`, the length of the entire input data must be a\n         * multiple of the cipher's block size or `cipher.final()` will throw an error.\n         * Disabling automatic padding is useful for non-standard padding, for instance\n         * using `0x0` instead of PKCS padding.\n         *\n         * The `cipher.setAutoPadding()` method must be called before `cipher.final()`.\n         * @since v0.7.1\n         * @param [autoPadding=true]\n         * @return for method chaining.\n         */\n        setAutoPadding(autoPadding?: boolean): this;\n    }\n    interface CipherCCM extends Cipher {\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options: {\n                plaintextLength: number;\n            },\n        ): this;\n        getAuthTag(): Buffer;\n    }\n    interface CipherGCM extends Cipher {\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options?: {\n                plaintextLength: number;\n            },\n        ): this;\n        getAuthTag(): Buffer;\n    }\n    interface CipherOCB extends Cipher {\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options?: {\n                plaintextLength: number;\n            },\n        ): this;\n        getAuthTag(): Buffer;\n    }\n    interface CipherChaCha20Poly1305 extends Cipher {\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options: {\n                plaintextLength: number;\n            },\n        ): this;\n        getAuthTag(): Buffer;\n    }\n    /**\n     * Creates and returns a `Decipher` object that uses the given `algorithm`, `key` and initialization vector (`iv`).\n     *\n     * The `options` argument controls stream behavior and is optional except when a\n     * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the `authTagLength` option is required and specifies the length of the\n     * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength` option is not required but can be used to restrict accepted authentication tags\n     * to those with the specified length.\n     * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes.\n     *\n     * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On\n     * recent OpenSSL releases, `openssl list -cipher-algorithms` will\n     * display the available cipher algorithms.\n     *\n     * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded\n     * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be\n     * a `KeyObject` of type `secret`. If the cipher does not need\n     * an initialization vector, `iv` may be `null`.\n     *\n     * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * Initialization vectors should be unpredictable and unique; ideally, they will be\n     * cryptographically random. They do not have to be secret: IVs are typically just\n     * added to ciphertext messages unencrypted. It may sound contradictory that\n     * something has to be unpredictable and unique, but does not have to be secret;\n     * remember that an attacker must not be able to predict ahead of time what a given\n     * IV will be.\n     * @since v0.1.94\n     * @param options `stream.transform` options\n     */\n    function createDecipheriv(\n        algorithm: CipherCCMTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options: CipherCCMOptions,\n    ): DecipherCCM;\n    function createDecipheriv(\n        algorithm: CipherOCBTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options: CipherOCBOptions,\n    ): DecipherOCB;\n    function createDecipheriv(\n        algorithm: CipherGCMTypes,\n        key: CipherKey,\n        iv: BinaryLike,\n        options?: CipherGCMOptions,\n    ): DecipherGCM;\n    function createDecipheriv(\n        algorithm: CipherChaCha20Poly1305Types,\n        key: CipherKey,\n        iv: BinaryLike,\n        options?: CipherChaCha20Poly1305Options,\n    ): DecipherChaCha20Poly1305;\n    function createDecipheriv(\n        algorithm: string,\n        key: CipherKey,\n        iv: BinaryLike | null,\n        options?: stream.TransformOptions,\n    ): Decipher;\n    /**\n     * Instances of the `Decipher` class are used to decrypt data. The class can be\n     * used in one of two ways:\n     *\n     * * As a `stream` that is both readable and writable, where plain encrypted\n     * data is written to produce unencrypted data on the readable side, or\n     * * Using the `decipher.update()` and `decipher.final()` methods to\n     * produce the unencrypted data.\n     *\n     * The {@link createDecipheriv} method is\n     * used to create `Decipher` instances. `Decipher` objects are not to be created\n     * directly using the `new` keyword.\n     *\n     * Example: Using `Decipher` objects as streams:\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const {\n     *   scryptSync,\n     *   createDecipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     * // Key length is dependent on the algorithm. In this case for aes192, it is\n     * // 24 bytes (192 bits).\n     * // Use the async `crypto.scrypt()` instead.\n     * const key = scryptSync(password, 'salt', 24);\n     * // The IV is usually passed along with the ciphertext.\n     * const iv = Buffer.alloc(16, 0); // Initialization vector.\n     *\n     * const decipher = createDecipheriv(algorithm, key, iv);\n     *\n     * let decrypted = '';\n     * decipher.on('readable', () => {\n     *   let chunk;\n     *   while (null !== (chunk = decipher.read())) {\n     *     decrypted += chunk.toString('utf8');\n     *   }\n     * });\n     * decipher.on('end', () => {\n     *   console.log(decrypted);\n     *   // Prints: some clear text data\n     * });\n     *\n     * // Encrypted with same algorithm, key and iv.\n     * const encrypted =\n     *   'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';\n     * decipher.write(encrypted, 'hex');\n     * decipher.end();\n     * ```\n     *\n     * Example: Using `Decipher` and piped streams:\n     *\n     * ```js\n     * import {\n     *   createReadStream,\n     *   createWriteStream,\n     * } from 'node:fs';\n     * import { Buffer } from 'node:buffer';\n     * const {\n     *   scryptSync,\n     *   createDecipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     * // Use the async `crypto.scrypt()` instead.\n     * const key = scryptSync(password, 'salt', 24);\n     * // The IV is usually passed along with the ciphertext.\n     * const iv = Buffer.alloc(16, 0); // Initialization vector.\n     *\n     * const decipher = createDecipheriv(algorithm, key, iv);\n     *\n     * const input = createReadStream('test.enc');\n     * const output = createWriteStream('test.js');\n     *\n     * input.pipe(decipher).pipe(output);\n     * ```\n     *\n     * Example: Using the `decipher.update()` and `decipher.final()` methods:\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const {\n     *   scryptSync,\n     *   createDecipheriv,\n     * } = await import('node:crypto');\n     *\n     * const algorithm = 'aes-192-cbc';\n     * const password = 'Password used to generate key';\n     * // Use the async `crypto.scrypt()` instead.\n     * const key = scryptSync(password, 'salt', 24);\n     * // The IV is usually passed along with the ciphertext.\n     * const iv = Buffer.alloc(16, 0); // Initialization vector.\n     *\n     * const decipher = createDecipheriv(algorithm, key, iv);\n     *\n     * // Encrypted using same algorithm, key and iv.\n     * const encrypted =\n     *   'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa';\n     * let decrypted = decipher.update(encrypted, 'hex', 'utf8');\n     * decrypted += decipher.final('utf8');\n     * console.log(decrypted);\n     * // Prints: some clear text data\n     * ```\n     * @since v0.1.94\n     */\n    class Decipher extends stream.Transform {\n        private constructor();\n        /**\n         * Updates the decipher with `data`. If the `inputEncoding` argument is given,\n         * the `data` argument is a string using the specified encoding. If the `inputEncoding` argument is not given, `data` must be a `Buffer`. If `data` is a `Buffer` then `inputEncoding` is\n         * ignored.\n         *\n         * The `outputEncoding` specifies the output format of the enciphered\n         * data. If the `outputEncoding` is specified, a string using the specified encoding is returned. If no `outputEncoding` is provided, a `Buffer` is returned.\n         *\n         * The `decipher.update()` method can be called multiple times with new data until `decipher.final()` is called. Calling `decipher.update()` after `decipher.final()` will result in an error\n         * being thrown.\n         * @since v0.1.94\n         * @param inputEncoding The `encoding` of the `data` string.\n         * @param outputEncoding The `encoding` of the return value.\n         */\n        update(data: NodeJS.ArrayBufferView): Buffer;\n        update(data: string, inputEncoding: Encoding): Buffer;\n        update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string;\n        update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string;\n        /**\n         * Once the `decipher.final()` method has been called, the `Decipher` object can\n         * no longer be used to decrypt data. Attempts to call `decipher.final()` more\n         * than once will result in an error being thrown.\n         * @since v0.1.94\n         * @param outputEncoding The `encoding` of the return value.\n         * @return Any remaining deciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned.\n         */\n        final(): Buffer;\n        final(outputEncoding: BufferEncoding): string;\n        /**\n         * When data has been encrypted without standard block padding, calling `decipher.setAutoPadding(false)` will disable automatic padding to prevent `decipher.final()` from checking for and\n         * removing padding.\n         *\n         * Turning auto padding off will only work if the input data's length is a\n         * multiple of the ciphers block size.\n         *\n         * The `decipher.setAutoPadding()` method must be called before `decipher.final()`.\n         * @since v0.7.1\n         * @param [autoPadding=true]\n         * @return for method chaining.\n         */\n        setAutoPadding(auto_padding?: boolean): this;\n    }\n    interface DecipherCCM extends Decipher {\n        setAuthTag(buffer: NodeJS.ArrayBufferView): this;\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options: {\n                plaintextLength: number;\n            },\n        ): this;\n    }\n    interface DecipherGCM extends Decipher {\n        setAuthTag(buffer: NodeJS.ArrayBufferView): this;\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options?: {\n                plaintextLength: number;\n            },\n        ): this;\n    }\n    interface DecipherOCB extends Decipher {\n        setAuthTag(buffer: NodeJS.ArrayBufferView): this;\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options?: {\n                plaintextLength: number;\n            },\n        ): this;\n    }\n    interface DecipherChaCha20Poly1305 extends Decipher {\n        setAuthTag(buffer: NodeJS.ArrayBufferView): this;\n        setAAD(\n            buffer: NodeJS.ArrayBufferView,\n            options: {\n                plaintextLength: number;\n            },\n        ): this;\n    }\n    interface PrivateKeyInput {\n        key: string | Buffer;\n        format?: KeyFormat | undefined;\n        type?: \"pkcs1\" | \"pkcs8\" | \"sec1\" | undefined;\n        passphrase?: string | Buffer | undefined;\n        encoding?: string | undefined;\n    }\n    interface PublicKeyInput {\n        key: string | Buffer;\n        format?: KeyFormat | undefined;\n        type?: \"pkcs1\" | \"spki\" | undefined;\n        encoding?: string | undefined;\n    }\n    /**\n     * Asynchronously generates a new random secret key of the given `length`. The `type` will determine which validations will be performed on the `length`.\n     *\n     * ```js\n     * const {\n     *   generateKey,\n     * } = await import('node:crypto');\n     *\n     * generateKey('hmac', { length: 512 }, (err, key) => {\n     *   if (err) throw err;\n     *   console.log(key.export().toString('hex'));  // 46e..........620\n     * });\n     * ```\n     *\n     * The size of a generated HMAC key should not exceed the block size of the\n     * underlying hash function. See {@link createHmac} for more information.\n     * @since v15.0.0\n     * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.\n     */\n    function generateKey(\n        type: \"hmac\" | \"aes\",\n        options: {\n            length: number;\n        },\n        callback: (err: Error | null, key: KeyObject) => void,\n    ): void;\n    /**\n     * Synchronously generates a new random secret key of the given `length`. The `type` will determine which validations will be performed on the `length`.\n     *\n     * ```js\n     * const {\n     *   generateKeySync,\n     * } = await import('node:crypto');\n     *\n     * const key = generateKeySync('hmac', { length: 512 });\n     * console.log(key.export().toString('hex'));  // e89..........41e\n     * ```\n     *\n     * The size of a generated HMAC key should not exceed the block size of the\n     * underlying hash function. See {@link createHmac} for more information.\n     * @since v15.0.0\n     * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`.\n     */\n    function generateKeySync(\n        type: \"hmac\" | \"aes\",\n        options: {\n            length: number;\n        },\n    ): KeyObject;\n    interface JsonWebKeyInput {\n        key: JsonWebKey;\n        format: \"jwk\";\n    }\n    /**\n     * Creates and returns a new key object containing a private key. If `key` is a\n     * string or `Buffer`, `format` is assumed to be `'pem'`; otherwise, `key` must be an object with the properties described above.\n     *\n     * If the private key is encrypted, a `passphrase` must be specified. The length\n     * of the passphrase is limited to 1024 bytes.\n     * @since v11.6.0\n     */\n    function createPrivateKey(key: PrivateKeyInput | string | Buffer | JsonWebKeyInput): KeyObject;\n    /**\n     * Creates and returns a new key object containing a public key. If `key` is a\n     * string or `Buffer`, `format` is assumed to be `'pem'`; if `key` is a `KeyObject` with type `'private'`, the public key is derived from the given private key;\n     * otherwise, `key` must be an object with the properties described above.\n     *\n     * If the format is `'pem'`, the `'key'` may also be an X.509 certificate.\n     *\n     * Because public keys can be derived from private keys, a private key may be\n     * passed instead of a public key. In that case, this function behaves as if {@link createPrivateKey} had been called, except that the type of the\n     * returned `KeyObject` will be `'public'` and that the private key cannot be\n     * extracted from the returned `KeyObject`. Similarly, if a `KeyObject` with type `'private'` is given, a new `KeyObject` with type `'public'` will be returned\n     * and it will be impossible to extract the private key from the returned object.\n     * @since v11.6.0\n     */\n    function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject | JsonWebKeyInput): KeyObject;\n    /**\n     * Creates and returns a new key object containing a secret key for symmetric\n     * encryption or `Hmac`.\n     * @since v11.6.0\n     * @param encoding The string encoding when `key` is a string.\n     */\n    function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject;\n    function createSecretKey(key: string, encoding: BufferEncoding): KeyObject;\n    /**\n     * Creates and returns a `Sign` object that uses the given `algorithm`. Use {@link getHashes} to obtain the names of the available digest algorithms.\n     * Optional `options` argument controls the `stream.Writable` behavior.\n     *\n     * In some cases, a `Sign` instance can be created using the name of a signature\n     * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use\n     * the corresponding digest algorithm. This does not work for all signature\n     * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest\n     * algorithm names.\n     * @since v0.1.92\n     * @param options `stream.Writable` options\n     */\n    function createSign(algorithm: string, options?: stream.WritableOptions): Sign;\n    type DSAEncoding = \"der\" | \"ieee-p1363\";\n    interface SigningOptions {\n        /**\n         * @see crypto.constants.RSA_PKCS1_PADDING\n         */\n        padding?: number | undefined;\n        saltLength?: number | undefined;\n        dsaEncoding?: DSAEncoding | undefined;\n    }\n    interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions {}\n    interface SignKeyObjectInput extends SigningOptions {\n        key: KeyObject;\n    }\n    interface SignJsonWebKeyInput extends JsonWebKeyInput, SigningOptions {}\n    interface VerifyPublicKeyInput extends PublicKeyInput, SigningOptions {}\n    interface VerifyKeyObjectInput extends SigningOptions {\n        key: KeyObject;\n    }\n    interface VerifyJsonWebKeyInput extends JsonWebKeyInput, SigningOptions {}\n    type KeyLike = string | Buffer | KeyObject;\n    /**\n     * The `Sign` class is a utility for generating signatures. It can be used in one\n     * of two ways:\n     *\n     * * As a writable `stream`, where data to be signed is written and the `sign.sign()` method is used to generate and return the signature, or\n     * * Using the `sign.update()` and `sign.sign()` methods to produce the\n     * signature.\n     *\n     * The {@link createSign} method is used to create `Sign` instances. The\n     * argument is the string name of the hash function to use. `Sign` objects are not\n     * to be created directly using the `new` keyword.\n     *\n     * Example: Using `Sign` and `Verify` objects as streams:\n     *\n     * ```js\n     * const {\n     *   generateKeyPairSync,\n     *   createSign,\n     *   createVerify,\n     * } = await import('node:crypto');\n     *\n     * const { privateKey, publicKey } = generateKeyPairSync('ec', {\n     *   namedCurve: 'sect239k1',\n     * });\n     *\n     * const sign = createSign('SHA256');\n     * sign.write('some data to sign');\n     * sign.end();\n     * const signature = sign.sign(privateKey, 'hex');\n     *\n     * const verify = createVerify('SHA256');\n     * verify.write('some data to sign');\n     * verify.end();\n     * console.log(verify.verify(publicKey, signature, 'hex'));\n     * // Prints: true\n     * ```\n     *\n     * Example: Using the `sign.update()` and `verify.update()` methods:\n     *\n     * ```js\n     * const {\n     *   generateKeyPairSync,\n     *   createSign,\n     *   createVerify,\n     * } = await import('node:crypto');\n     *\n     * const { privateKey, publicKey } = generateKeyPairSync('rsa', {\n     *   modulusLength: 2048,\n     * });\n     *\n     * const sign = createSign('SHA256');\n     * sign.update('some data to sign');\n     * sign.end();\n     * const signature = sign.sign(privateKey);\n     *\n     * const verify = createVerify('SHA256');\n     * verify.update('some data to sign');\n     * verify.end();\n     * console.log(verify.verify(publicKey, signature));\n     * // Prints: true\n     * ```\n     * @since v0.1.92\n     */\n    class Sign extends stream.Writable {\n        private constructor();\n        /**\n         * Updates the `Sign` content with the given `data`, the encoding of which\n         * is given in `inputEncoding`.\n         * If `encoding` is not provided, and the `data` is a string, an\n         * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored.\n         *\n         * This can be called many times with new data as it is streamed.\n         * @since v0.1.92\n         * @param inputEncoding The `encoding` of the `data` string.\n         */\n        update(data: BinaryLike): this;\n        update(data: string, inputEncoding: Encoding): this;\n        /**\n         * Calculates the signature on all the data passed through using either `sign.update()` or `sign.write()`.\n         *\n         * If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an\n         * object, the following additional properties can be passed:\n         *\n         * If `outputEncoding` is provided a string is returned; otherwise a `Buffer` is returned.\n         *\n         * The `Sign` object can not be again used after `sign.sign()` method has been\n         * called. Multiple calls to `sign.sign()` will result in an error being thrown.\n         * @since v0.1.92\n         */\n        sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput): Buffer;\n        sign(\n            privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,\n            outputFormat: BinaryToTextEncoding,\n        ): string;\n    }\n    /**\n     * Creates and returns a `Verify` object that uses the given algorithm.\n     * Use {@link getHashes} to obtain an array of names of the available\n     * signing algorithms. Optional `options` argument controls the `stream.Writable` behavior.\n     *\n     * In some cases, a `Verify` instance can be created using the name of a signature\n     * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use\n     * the corresponding digest algorithm. This does not work for all signature\n     * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest\n     * algorithm names.\n     * @since v0.1.92\n     * @param options `stream.Writable` options\n     */\n    function createVerify(algorithm: string, options?: stream.WritableOptions): Verify;\n    /**\n     * The `Verify` class is a utility for verifying signatures. It can be used in one\n     * of two ways:\n     *\n     * * As a writable `stream` where written data is used to validate against the\n     * supplied signature, or\n     * * Using the `verify.update()` and `verify.verify()` methods to verify\n     * the signature.\n     *\n     * The {@link createVerify} method is used to create `Verify` instances. `Verify` objects are not to be created directly using the `new` keyword.\n     *\n     * See `Sign` for examples.\n     * @since v0.1.92\n     */\n    class Verify extends stream.Writable {\n        private constructor();\n        /**\n         * Updates the `Verify` content with the given `data`, the encoding of which\n         * is given in `inputEncoding`.\n         * If `inputEncoding` is not provided, and the `data` is a string, an\n         * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or `DataView`, then `inputEncoding` is ignored.\n         *\n         * This can be called many times with new data as it is streamed.\n         * @since v0.1.92\n         * @param inputEncoding The `encoding` of the `data` string.\n         */\n        update(data: BinaryLike): Verify;\n        update(data: string, inputEncoding: Encoding): Verify;\n        /**\n         * Verifies the provided data using the given `object` and `signature`.\n         *\n         * If `object` is not a `KeyObject`, this function behaves as if `object` had been passed to {@link createPublicKey}. If it is an\n         * object, the following additional properties can be passed:\n         *\n         * The `signature` argument is the previously calculated signature for the data, in\n         * the `signatureEncoding`.\n         * If a `signatureEncoding` is specified, the `signature` is expected to be a\n         * string; otherwise `signature` is expected to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * The `verify` object can not be used again after `verify.verify()` has been\n         * called. Multiple calls to `verify.verify()` will result in an error being\n         * thrown.\n         *\n         * Because public keys can be derived from private keys, a private key may\n         * be passed instead of a public key.\n         * @since v0.1.92\n         */\n        verify(\n            object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,\n            signature: NodeJS.ArrayBufferView,\n        ): boolean;\n        verify(\n            object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,\n            signature: string,\n            signature_format?: BinaryToTextEncoding,\n        ): boolean;\n    }\n    /**\n     * Creates a `DiffieHellman` key exchange object using the supplied `prime` and an\n     * optional specific `generator`.\n     *\n     * The `generator` argument can be a number, string, or `Buffer`. If `generator` is not specified, the value `2` is used.\n     *\n     * If `primeEncoding` is specified, `prime` is expected to be a string; otherwise\n     * a `Buffer`, `TypedArray`, or `DataView` is expected.\n     *\n     * If `generatorEncoding` is specified, `generator` is expected to be a string;\n     * otherwise a number, `Buffer`, `TypedArray`, or `DataView` is expected.\n     * @since v0.11.12\n     * @param primeEncoding The `encoding` of the `prime` string.\n     * @param [generator=2]\n     * @param generatorEncoding The `encoding` of the `generator` string.\n     */\n    function createDiffieHellman(primeLength: number, generator?: number): DiffieHellman;\n    function createDiffieHellman(\n        prime: ArrayBuffer | NodeJS.ArrayBufferView,\n        generator?: number | ArrayBuffer | NodeJS.ArrayBufferView,\n    ): DiffieHellman;\n    function createDiffieHellman(\n        prime: ArrayBuffer | NodeJS.ArrayBufferView,\n        generator: string,\n        generatorEncoding: BinaryToTextEncoding,\n    ): DiffieHellman;\n    function createDiffieHellman(\n        prime: string,\n        primeEncoding: BinaryToTextEncoding,\n        generator?: number | ArrayBuffer | NodeJS.ArrayBufferView,\n    ): DiffieHellman;\n    function createDiffieHellman(\n        prime: string,\n        primeEncoding: BinaryToTextEncoding,\n        generator: string,\n        generatorEncoding: BinaryToTextEncoding,\n    ): DiffieHellman;\n    /**\n     * The `DiffieHellman` class is a utility for creating Diffie-Hellman key\n     * exchanges.\n     *\n     * Instances of the `DiffieHellman` class can be created using the {@link createDiffieHellman} function.\n     *\n     * ```js\n     * import assert from 'node:assert';\n     *\n     * const {\n     *   createDiffieHellman,\n     * } = await import('node:crypto');\n     *\n     * // Generate Alice's keys...\n     * const alice = createDiffieHellman(2048);\n     * const aliceKey = alice.generateKeys();\n     *\n     * // Generate Bob's keys...\n     * const bob = createDiffieHellman(alice.getPrime(), alice.getGenerator());\n     * const bobKey = bob.generateKeys();\n     *\n     * // Exchange and generate the secret...\n     * const aliceSecret = alice.computeSecret(bobKey);\n     * const bobSecret = bob.computeSecret(aliceKey);\n     *\n     * // OK\n     * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));\n     * ```\n     * @since v0.5.0\n     */\n    class DiffieHellman {\n        private constructor();\n        /**\n         * Generates private and public Diffie-Hellman key values unless they have been\n         * generated or computed already, and returns\n         * the public key in the specified `encoding`. This key should be\n         * transferred to the other party.\n         * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.\n         *\n         * This function is a thin wrapper around [`DH_generate_key()`](https://www.openssl.org/docs/man3.0/man3/DH_generate_key.html). In particular,\n         * once a private key has been generated or set, calling this function only updates\n         * the public key but does not generate a new private key.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the return value.\n         */\n        generateKeys(): Buffer;\n        generateKeys(encoding: BinaryToTextEncoding): string;\n        /**\n         * Computes the shared secret using `otherPublicKey` as the other\n         * party's public key and returns the computed shared secret. The supplied\n         * key is interpreted using the specified `inputEncoding`, and secret is\n         * encoded using specified `outputEncoding`.\n         * If the `inputEncoding` is not\n         * provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * If `outputEncoding` is given a string is returned; otherwise, a `Buffer` is returned.\n         * @since v0.5.0\n         * @param inputEncoding The `encoding` of an `otherPublicKey` string.\n         * @param outputEncoding The `encoding` of the return value.\n         */\n        computeSecret(otherPublicKey: NodeJS.ArrayBufferView, inputEncoding?: null, outputEncoding?: null): Buffer;\n        computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding?: null): Buffer;\n        computeSecret(\n            otherPublicKey: NodeJS.ArrayBufferView,\n            inputEncoding: null,\n            outputEncoding: BinaryToTextEncoding,\n        ): string;\n        computeSecret(\n            otherPublicKey: string,\n            inputEncoding: BinaryToTextEncoding,\n            outputEncoding: BinaryToTextEncoding,\n        ): string;\n        /**\n         * Returns the Diffie-Hellman prime in the specified `encoding`.\n         * If `encoding` is provided a string is\n         * returned; otherwise a `Buffer` is returned.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the return value.\n         */\n        getPrime(): Buffer;\n        getPrime(encoding: BinaryToTextEncoding): string;\n        /**\n         * Returns the Diffie-Hellman generator in the specified `encoding`.\n         * If `encoding` is provided a string is\n         * returned; otherwise a `Buffer` is returned.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the return value.\n         */\n        getGenerator(): Buffer;\n        getGenerator(encoding: BinaryToTextEncoding): string;\n        /**\n         * Returns the Diffie-Hellman public key in the specified `encoding`.\n         * If `encoding` is provided a\n         * string is returned; otherwise a `Buffer` is returned.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the return value.\n         */\n        getPublicKey(): Buffer;\n        getPublicKey(encoding: BinaryToTextEncoding): string;\n        /**\n         * Returns the Diffie-Hellman private key in the specified `encoding`.\n         * If `encoding` is provided a\n         * string is returned; otherwise a `Buffer` is returned.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the return value.\n         */\n        getPrivateKey(): Buffer;\n        getPrivateKey(encoding: BinaryToTextEncoding): string;\n        /**\n         * Sets the Diffie-Hellman public key. If the `encoding` argument is provided, `publicKey` is expected\n         * to be a string. If no `encoding` is provided, `publicKey` is expected\n         * to be a `Buffer`, `TypedArray`, or `DataView`.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the `publicKey` string.\n         */\n        setPublicKey(publicKey: NodeJS.ArrayBufferView): void;\n        setPublicKey(publicKey: string, encoding: BufferEncoding): void;\n        /**\n         * Sets the Diffie-Hellman private key. If the `encoding` argument is provided,`privateKey` is expected\n         * to be a string. If no `encoding` is provided, `privateKey` is expected\n         * to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * This function does not automatically compute the associated public key. Either `diffieHellman.setPublicKey()` or `diffieHellman.generateKeys()` can be\n         * used to manually provide the public key or to automatically derive it.\n         * @since v0.5.0\n         * @param encoding The `encoding` of the `privateKey` string.\n         */\n        setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;\n        setPrivateKey(privateKey: string, encoding: BufferEncoding): void;\n        /**\n         * A bit field containing any warnings and/or errors resulting from a check\n         * performed during initialization of the `DiffieHellman` object.\n         *\n         * The following values are valid for this property (as defined in `node:constants` module):\n         *\n         * * `DH_CHECK_P_NOT_SAFE_PRIME`\n         * * `DH_CHECK_P_NOT_PRIME`\n         * * `DH_UNABLE_TO_CHECK_GENERATOR`\n         * * `DH_NOT_SUITABLE_GENERATOR`\n         * @since v0.11.12\n         */\n        verifyError: number;\n    }\n    /**\n     * The `DiffieHellmanGroup` class takes a well-known modp group as its argument.\n     * It works the same as `DiffieHellman`, except that it does not allow changing its keys after creation.\n     * In other words, it does not implement `setPublicKey()` or `setPrivateKey()` methods.\n     *\n     * ```js\n     * const { createDiffieHellmanGroup } = await import('node:crypto');\n     * const dh = createDiffieHellmanGroup('modp1');\n     * ```\n     * The name (e.g. `'modp1'`) is taken from [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt) (modp1 and 2) and [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt):\n     * ```bash\n     * $ perl -ne 'print \"$1\\n\" if /\"(modp\\d+)\"/' src/node_crypto_groups.h\n     * modp1  #  768 bits\n     * modp2  # 1024 bits\n     * modp5  # 1536 bits\n     * modp14 # 2048 bits\n     * modp15 # etc.\n     * modp16\n     * modp17\n     * modp18\n     * ```\n     * @since v0.7.5\n     */\n    const DiffieHellmanGroup: DiffieHellmanGroupConstructor;\n    interface DiffieHellmanGroupConstructor {\n        new(name: string): DiffieHellmanGroup;\n        (name: string): DiffieHellmanGroup;\n        readonly prototype: DiffieHellmanGroup;\n    }\n    type DiffieHellmanGroup = Omit<DiffieHellman, \"setPublicKey\" | \"setPrivateKey\">;\n    /**\n     * Creates a predefined `DiffieHellmanGroup` key exchange object. The\n     * supported groups are listed in the documentation for `DiffieHellmanGroup`.\n     *\n     * The returned object mimics the interface of objects created by {@link createDiffieHellman}, but will not allow changing\n     * the keys (with `diffieHellman.setPublicKey()`, for example). The\n     * advantage of using this method is that the parties do not have to\n     * generate nor exchange a group modulus beforehand, saving both processor\n     * and communication time.\n     *\n     * Example (obtaining a shared secret):\n     *\n     * ```js\n     * const {\n     *   getDiffieHellman,\n     * } = await import('node:crypto');\n     * const alice = getDiffieHellman('modp14');\n     * const bob = getDiffieHellman('modp14');\n     *\n     * alice.generateKeys();\n     * bob.generateKeys();\n     *\n     * const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex');\n     * const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex');\n     *\n     * // aliceSecret and bobSecret should be the same\n     * console.log(aliceSecret === bobSecret);\n     * ```\n     * @since v0.7.5\n     */\n    function getDiffieHellman(groupName: string): DiffieHellmanGroup;\n    /**\n     * An alias for {@link getDiffieHellman}\n     * @since v0.9.3\n     */\n    function createDiffieHellmanGroup(name: string): DiffieHellmanGroup;\n    /**\n     * Provides an asynchronous Password-Based Key Derivation Function 2 (PBKDF2)\n     * implementation. A selected HMAC digest algorithm specified by `digest` is\n     * applied to derive a key of the requested byte length (`keylen`) from the `password`, `salt` and `iterations`.\n     *\n     * The supplied `callback` function is called with two arguments: `err` and `derivedKey`. If an error occurs while deriving the key, `err` will be set;\n     * otherwise `err` will be `null`. By default, the successfully generated `derivedKey` will be passed to the callback as a `Buffer`. An error will be\n     * thrown if any of the input arguments specify invalid values or types.\n     *\n     * The `iterations` argument must be a number set as high as possible. The\n     * higher the number of iterations, the more secure the derived key will be,\n     * but will take a longer amount of time to complete.\n     *\n     * The `salt` should be as unique as possible. It is recommended that a salt is\n     * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.\n     *\n     * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * ```js\n     * const {\n     *   pbkdf2,\n     * } = await import('node:crypto');\n     *\n     * pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => {\n     *   if (err) throw err;\n     *   console.log(derivedKey.toString('hex'));  // '3745e48...08d59ae'\n     * });\n     * ```\n     *\n     * An array of supported digest functions can be retrieved using {@link getHashes}.\n     *\n     * This API uses libuv's threadpool, which can have surprising and\n     * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.\n     * @since v0.5.5\n     */\n    function pbkdf2(\n        password: BinaryLike,\n        salt: BinaryLike,\n        iterations: number,\n        keylen: number,\n        digest: string,\n        callback: (err: Error | null, derivedKey: Buffer) => void,\n    ): void;\n    /**\n     * Provides a synchronous Password-Based Key Derivation Function 2 (PBKDF2)\n     * implementation. A selected HMAC digest algorithm specified by `digest` is\n     * applied to derive a key of the requested byte length (`keylen`) from the `password`, `salt` and `iterations`.\n     *\n     * If an error occurs an `Error` will be thrown, otherwise the derived key will be\n     * returned as a `Buffer`.\n     *\n     * The `iterations` argument must be a number set as high as possible. The\n     * higher the number of iterations, the more secure the derived key will be,\n     * but will take a longer amount of time to complete.\n     *\n     * The `salt` should be as unique as possible. It is recommended that a salt is\n     * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.\n     *\n     * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * ```js\n     * const {\n     *   pbkdf2Sync,\n     * } = await import('node:crypto');\n     *\n     * const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512');\n     * console.log(key.toString('hex'));  // '3745e48...08d59ae'\n     * ```\n     *\n     * An array of supported digest functions can be retrieved using {@link getHashes}.\n     * @since v0.9.3\n     */\n    function pbkdf2Sync(\n        password: BinaryLike,\n        salt: BinaryLike,\n        iterations: number,\n        keylen: number,\n        digest: string,\n    ): Buffer;\n    /**\n     * Generates cryptographically strong pseudorandom data. The `size` argument\n     * is a number indicating the number of bytes to generate.\n     *\n     * If a `callback` function is provided, the bytes are generated asynchronously\n     * and the `callback` function is invoked with two arguments: `err` and `buf`.\n     * If an error occurs, `err` will be an `Error` object; otherwise it is `null`. The `buf` argument is a `Buffer` containing the generated bytes.\n     *\n     * ```js\n     * // Asynchronous\n     * const {\n     *   randomBytes,\n     * } = await import('node:crypto');\n     *\n     * randomBytes(256, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`);\n     * });\n     * ```\n     *\n     * If the `callback` function is not provided, the random bytes are generated\n     * synchronously and returned as a `Buffer`. An error will be thrown if\n     * there is a problem generating the bytes.\n     *\n     * ```js\n     * // Synchronous\n     * const {\n     *   randomBytes,\n     * } = await import('node:crypto');\n     *\n     * const buf = randomBytes(256);\n     * console.log(\n     *   `${buf.length} bytes of random data: ${buf.toString('hex')}`);\n     * ```\n     *\n     * The `crypto.randomBytes()` method will not complete until there is\n     * sufficient entropy available.\n     * This should normally never take longer than a few milliseconds. The only time\n     * when generating the random bytes may conceivably block for a longer period of\n     * time is right after boot, when the whole system is still low on entropy.\n     *\n     * This API uses libuv's threadpool, which can have surprising and\n     * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.\n     *\n     * The asynchronous version of `crypto.randomBytes()` is carried out in a single\n     * threadpool request. To minimize threadpool task length variation, partition\n     * large `randomBytes` requests when doing so as part of fulfilling a client\n     * request.\n     * @since v0.5.8\n     * @param size The number of bytes to generate. The `size` must not be larger than `2**31 - 1`.\n     * @return if the `callback` function is not provided.\n     */\n    function randomBytes(size: number): Buffer;\n    function randomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void;\n    function pseudoRandomBytes(size: number): Buffer;\n    function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void;\n    /**\n     * Return a random integer `n` such that `min <= n < max`.  This\n     * implementation avoids [modulo bias](https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias).\n     *\n     * The range (`max - min`) must be less than 2**48. `min` and `max` must\n     * be [safe integers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger).\n     *\n     * If the `callback` function is not provided, the random integer is\n     * generated synchronously.\n     *\n     * ```js\n     * // Asynchronous\n     * const {\n     *   randomInt,\n     * } = await import('node:crypto');\n     *\n     * randomInt(3, (err, n) => {\n     *   if (err) throw err;\n     *   console.log(`Random number chosen from (0, 1, 2): ${n}`);\n     * });\n     * ```\n     *\n     * ```js\n     * // Synchronous\n     * const {\n     *   randomInt,\n     * } = await import('node:crypto');\n     *\n     * const n = randomInt(3);\n     * console.log(`Random number chosen from (0, 1, 2): ${n}`);\n     * ```\n     *\n     * ```js\n     * // With `min` argument\n     * const {\n     *   randomInt,\n     * } = await import('node:crypto');\n     *\n     * const n = randomInt(1, 7);\n     * console.log(`The dice rolled: ${n}`);\n     * ```\n     * @since v14.10.0, v12.19.0\n     * @param [min=0] Start of random range (inclusive).\n     * @param max End of random range (exclusive).\n     * @param callback `function(err, n) {}`.\n     */\n    function randomInt(max: number): number;\n    function randomInt(min: number, max: number): number;\n    function randomInt(max: number, callback: (err: Error | null, value: number) => void): void;\n    function randomInt(min: number, max: number, callback: (err: Error | null, value: number) => void): void;\n    /**\n     * Synchronous version of {@link randomFill}.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const { randomFillSync } = await import('node:crypto');\n     *\n     * const buf = Buffer.alloc(10);\n     * console.log(randomFillSync(buf).toString('hex'));\n     *\n     * randomFillSync(buf, 5);\n     * console.log(buf.toString('hex'));\n     *\n     * // The above is equivalent to the following:\n     * randomFillSync(buf, 5, 5);\n     * console.log(buf.toString('hex'));\n     * ```\n     *\n     * Any `ArrayBuffer`, `TypedArray` or `DataView` instance may be passed as`buffer`.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const { randomFillSync } = await import('node:crypto');\n     *\n     * const a = new Uint32Array(10);\n     * console.log(Buffer.from(randomFillSync(a).buffer,\n     *                         a.byteOffset, a.byteLength).toString('hex'));\n     *\n     * const b = new DataView(new ArrayBuffer(10));\n     * console.log(Buffer.from(randomFillSync(b).buffer,\n     *                         b.byteOffset, b.byteLength).toString('hex'));\n     *\n     * const c = new ArrayBuffer(10);\n     * console.log(Buffer.from(randomFillSync(c)).toString('hex'));\n     * ```\n     * @since v7.10.0, v6.13.0\n     * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.\n     * @param [offset=0]\n     * @param [size=buffer.length - offset]\n     * @return The object passed as `buffer` argument.\n     */\n    function randomFillSync<T extends NodeJS.ArrayBufferView>(buffer: T, offset?: number, size?: number): T;\n    /**\n     * This function is similar to {@link randomBytes} but requires the first\n     * argument to be a `Buffer` that will be filled. It also\n     * requires that a callback is passed in.\n     *\n     * If the `callback` function is not provided, an error will be thrown.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const { randomFill } = await import('node:crypto');\n     *\n     * const buf = Buffer.alloc(10);\n     * randomFill(buf, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(buf.toString('hex'));\n     * });\n     *\n     * randomFill(buf, 5, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(buf.toString('hex'));\n     * });\n     *\n     * // The above is equivalent to the following:\n     * randomFill(buf, 5, 5, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(buf.toString('hex'));\n     * });\n     * ```\n     *\n     * Any `ArrayBuffer`, `TypedArray`, or `DataView` instance may be passed as `buffer`.\n     *\n     * While this includes instances of `Float32Array` and `Float64Array`, this\n     * function should not be used to generate random floating-point numbers. The\n     * result may contain `+Infinity`, `-Infinity`, and `NaN`, and even if the array\n     * contains finite numbers only, they are not drawn from a uniform random\n     * distribution and have no meaningful lower or upper bounds.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const { randomFill } = await import('node:crypto');\n     *\n     * const a = new Uint32Array(10);\n     * randomFill(a, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)\n     *     .toString('hex'));\n     * });\n     *\n     * const b = new DataView(new ArrayBuffer(10));\n     * randomFill(b, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength)\n     *     .toString('hex'));\n     * });\n     *\n     * const c = new ArrayBuffer(10);\n     * randomFill(c, (err, buf) => {\n     *   if (err) throw err;\n     *   console.log(Buffer.from(buf).toString('hex'));\n     * });\n     * ```\n     *\n     * This API uses libuv's threadpool, which can have surprising and\n     * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information.\n     *\n     * The asynchronous version of `crypto.randomFill()` is carried out in a single\n     * threadpool request. To minimize threadpool task length variation, partition\n     * large `randomFill` requests when doing so as part of fulfilling a client\n     * request.\n     * @since v7.10.0, v6.13.0\n     * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`.\n     * @param [offset=0]\n     * @param [size=buffer.length - offset]\n     * @param callback `function(err, buf) {}`.\n     */\n    function randomFill<T extends NodeJS.ArrayBufferView>(\n        buffer: T,\n        callback: (err: Error | null, buf: T) => void,\n    ): void;\n    function randomFill<T extends NodeJS.ArrayBufferView>(\n        buffer: T,\n        offset: number,\n        callback: (err: Error | null, buf: T) => void,\n    ): void;\n    function randomFill<T extends NodeJS.ArrayBufferView>(\n        buffer: T,\n        offset: number,\n        size: number,\n        callback: (err: Error | null, buf: T) => void,\n    ): void;\n    interface ScryptOptions {\n        cost?: number | undefined;\n        blockSize?: number | undefined;\n        parallelization?: number | undefined;\n        N?: number | undefined;\n        r?: number | undefined;\n        p?: number | undefined;\n        maxmem?: number | undefined;\n    }\n    /**\n     * Provides an asynchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based\n     * key derivation function that is designed to be expensive computationally and\n     * memory-wise in order to make brute-force attacks unrewarding.\n     *\n     * The `salt` should be as unique as possible. It is recommended that a salt is\n     * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.\n     *\n     * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * The `callback` function is called with two arguments: `err` and `derivedKey`. `err` is an exception object when key derivation fails, otherwise `err` is `null`. `derivedKey` is passed to the\n     * callback as a `Buffer`.\n     *\n     * An exception is thrown when any of the input arguments specify invalid values\n     * or types.\n     *\n     * ```js\n     * const {\n     *   scrypt,\n     * } = await import('node:crypto');\n     *\n     * // Using the factory defaults.\n     * scrypt('password', 'salt', 64, (err, derivedKey) => {\n     *   if (err) throw err;\n     *   console.log(derivedKey.toString('hex'));  // '3745e48...08d59ae'\n     * });\n     * // Using a custom N parameter. Must be a power of two.\n     * scrypt('password', 'salt', 64, { N: 1024 }, (err, derivedKey) => {\n     *   if (err) throw err;\n     *   console.log(derivedKey.toString('hex'));  // '3745e48...aa39b34'\n     * });\n     * ```\n     * @since v10.5.0\n     */\n    function scrypt(\n        password: BinaryLike,\n        salt: BinaryLike,\n        keylen: number,\n        callback: (err: Error | null, derivedKey: Buffer) => void,\n    ): void;\n    function scrypt(\n        password: BinaryLike,\n        salt: BinaryLike,\n        keylen: number,\n        options: ScryptOptions,\n        callback: (err: Error | null, derivedKey: Buffer) => void,\n    ): void;\n    /**\n     * Provides a synchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based\n     * key derivation function that is designed to be expensive computationally and\n     * memory-wise in order to make brute-force attacks unrewarding.\n     *\n     * The `salt` should be as unique as possible. It is recommended that a salt is\n     * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details.\n     *\n     * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`.\n     *\n     * An exception is thrown when key derivation fails, otherwise the derived key is\n     * returned as a `Buffer`.\n     *\n     * An exception is thrown when any of the input arguments specify invalid values\n     * or types.\n     *\n     * ```js\n     * const {\n     *   scryptSync,\n     * } = await import('node:crypto');\n     * // Using the factory defaults.\n     *\n     * const key1 = scryptSync('password', 'salt', 64);\n     * console.log(key1.toString('hex'));  // '3745e48...08d59ae'\n     * // Using a custom N parameter. Must be a power of two.\n     * const key2 = scryptSync('password', 'salt', 64, { N: 1024 });\n     * console.log(key2.toString('hex'));  // '3745e48...aa39b34'\n     * ```\n     * @since v10.5.0\n     */\n    function scryptSync(password: BinaryLike, salt: BinaryLike, keylen: number, options?: ScryptOptions): Buffer;\n    interface RsaPublicKey {\n        key: KeyLike;\n        padding?: number | undefined;\n    }\n    interface RsaPrivateKey {\n        key: KeyLike;\n        passphrase?: string | undefined;\n        /**\n         * @default 'sha1'\n         */\n        oaepHash?: string | undefined;\n        oaepLabel?: NodeJS.TypedArray | undefined;\n        padding?: number | undefined;\n    }\n    /**\n     * Encrypts the content of `buffer` with `key` and returns a new `Buffer` with encrypted content. The returned data can be decrypted using\n     * the corresponding private key, for example using {@link privateDecrypt}.\n     *\n     * If `key` is not a `KeyObject`, this function behaves as if `key` had been passed to {@link createPublicKey}. If it is an\n     * object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_OAEP_PADDING`.\n     *\n     * Because RSA public keys can be derived from private keys, a private key may\n     * be passed instead of a public key.\n     * @since v0.11.14\n     */\n    function publicEncrypt(\n        key: RsaPublicKey | RsaPrivateKey | KeyLike,\n        buffer: NodeJS.ArrayBufferView | string,\n    ): Buffer;\n    /**\n     * Decrypts `buffer` with `key`.`buffer` was previously encrypted using\n     * the corresponding private key, for example using {@link privateEncrypt}.\n     *\n     * If `key` is not a `KeyObject`, this function behaves as if `key` had been passed to {@link createPublicKey}. If it is an\n     * object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_PADDING`.\n     *\n     * Because RSA public keys can be derived from private keys, a private key may\n     * be passed instead of a public key.\n     * @since v1.1.0\n     */\n    function publicDecrypt(\n        key: RsaPublicKey | RsaPrivateKey | KeyLike,\n        buffer: NodeJS.ArrayBufferView | string,\n    ): Buffer;\n    /**\n     * Decrypts `buffer` with `privateKey`. `buffer` was previously encrypted using\n     * the corresponding public key, for example using {@link publicEncrypt}.\n     *\n     * If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an\n     * object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_OAEP_PADDING`.\n     * @since v0.11.14\n     */\n    function privateDecrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView | string): Buffer;\n    /**\n     * Encrypts `buffer` with `privateKey`. The returned data can be decrypted using\n     * the corresponding public key, for example using {@link publicDecrypt}.\n     *\n     * If `privateKey` is not a `KeyObject`, this function behaves as if `privateKey` had been passed to {@link createPrivateKey}. If it is an\n     * object, the `padding` property can be passed. Otherwise, this function uses `RSA_PKCS1_PADDING`.\n     * @since v1.1.0\n     */\n    function privateEncrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView | string): Buffer;\n    /**\n     * ```js\n     * const {\n     *   getCiphers,\n     * } = await import('node:crypto');\n     *\n     * console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]\n     * ```\n     * @since v0.9.3\n     * @return An array with the names of the supported cipher algorithms.\n     */\n    function getCiphers(): string[];\n    /**\n     * ```js\n     * const {\n     *   getCurves,\n     * } = await import('node:crypto');\n     *\n     * console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...]\n     * ```\n     * @since v2.3.0\n     * @return An array with the names of the supported elliptic curves.\n     */\n    function getCurves(): string[];\n    /**\n     * @since v10.0.0\n     * @return `1` if and only if a FIPS compliant crypto provider is currently in use, `0` otherwise. A future semver-major release may change the return type of this API to a {boolean}.\n     */\n    function getFips(): 1 | 0;\n    /**\n     * Enables the FIPS compliant crypto provider in a FIPS-enabled Node.js build.\n     * Throws an error if FIPS mode is not available.\n     * @since v10.0.0\n     * @param bool `true` to enable FIPS mode.\n     */\n    function setFips(bool: boolean): void;\n    /**\n     * ```js\n     * const {\n     *   getHashes,\n     * } = await import('node:crypto');\n     *\n     * console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]\n     * ```\n     * @since v0.9.3\n     * @return An array of the names of the supported hash algorithms, such as `'RSA-SHA256'`. Hash algorithms are also called \"digest\" algorithms.\n     */\n    function getHashes(): string[];\n    /**\n     * The `ECDH` class is a utility for creating Elliptic Curve Diffie-Hellman (ECDH)\n     * key exchanges.\n     *\n     * Instances of the `ECDH` class can be created using the {@link createECDH} function.\n     *\n     * ```js\n     * import assert from 'node:assert';\n     *\n     * const {\n     *   createECDH,\n     * } = await import('node:crypto');\n     *\n     * // Generate Alice's keys...\n     * const alice = createECDH('secp521r1');\n     * const aliceKey = alice.generateKeys();\n     *\n     * // Generate Bob's keys...\n     * const bob = createECDH('secp521r1');\n     * const bobKey = bob.generateKeys();\n     *\n     * // Exchange and generate the secret...\n     * const aliceSecret = alice.computeSecret(bobKey);\n     * const bobSecret = bob.computeSecret(aliceKey);\n     *\n     * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex'));\n     * // OK\n     * ```\n     * @since v0.11.14\n     */\n    class ECDH {\n        private constructor();\n        /**\n         * Converts the EC Diffie-Hellman public key specified by `key` and `curve` to the\n         * format specified by `format`. The `format` argument specifies point encoding\n         * and can be `'compressed'`, `'uncompressed'` or `'hybrid'`. The supplied key is\n         * interpreted using the specified `inputEncoding`, and the returned key is encoded\n         * using the specified `outputEncoding`.\n         *\n         * Use {@link getCurves} to obtain a list of available curve names.\n         * On recent OpenSSL releases, `openssl ecparam -list_curves` will also display\n         * the name and description of each available elliptic curve.\n         *\n         * If `format` is not specified the point will be returned in `'uncompressed'` format.\n         *\n         * If the `inputEncoding` is not provided, `key` is expected to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * Example (uncompressing a key):\n         *\n         * ```js\n         * const {\n         *   createECDH,\n         *   ECDH,\n         * } = await import('node:crypto');\n         *\n         * const ecdh = createECDH('secp256k1');\n         * ecdh.generateKeys();\n         *\n         * const compressedKey = ecdh.getPublicKey('hex', 'compressed');\n         *\n         * const uncompressedKey = ECDH.convertKey(compressedKey,\n         *                                         'secp256k1',\n         *                                         'hex',\n         *                                         'hex',\n         *                                         'uncompressed');\n         *\n         * // The converted key and the uncompressed public key should be the same\n         * console.log(uncompressedKey === ecdh.getPublicKey('hex'));\n         * ```\n         * @since v10.0.0\n         * @param inputEncoding The `encoding` of the `key` string.\n         * @param outputEncoding The `encoding` of the return value.\n         * @param [format='uncompressed']\n         */\n        static convertKey(\n            key: BinaryLike,\n            curve: string,\n            inputEncoding?: BinaryToTextEncoding,\n            outputEncoding?: \"latin1\" | \"hex\" | \"base64\" | \"base64url\",\n            format?: \"uncompressed\" | \"compressed\" | \"hybrid\",\n        ): Buffer | string;\n        /**\n         * Generates private and public EC Diffie-Hellman key values, and returns\n         * the public key in the specified `format` and `encoding`. This key should be\n         * transferred to the other party.\n         *\n         * The `format` argument specifies point encoding and can be `'compressed'` or `'uncompressed'`. If `format` is not specified, the point will be returned in`'uncompressed'` format.\n         *\n         * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned.\n         * @since v0.11.14\n         * @param encoding The `encoding` of the return value.\n         * @param [format='uncompressed']\n         */\n        generateKeys(): Buffer;\n        generateKeys(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;\n        /**\n         * Computes the shared secret using `otherPublicKey` as the other\n         * party's public key and returns the computed shared secret. The supplied\n         * key is interpreted using specified `inputEncoding`, and the returned secret\n         * is encoded using the specified `outputEncoding`.\n         * If the `inputEncoding` is not\n         * provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * If `outputEncoding` is given a string will be returned; otherwise a `Buffer` is returned.\n         *\n         * `ecdh.computeSecret` will throw an`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY` error when `otherPublicKey` lies outside of the elliptic curve. Since `otherPublicKey` is\n         * usually supplied from a remote user over an insecure network,\n         * be sure to handle this exception accordingly.\n         * @since v0.11.14\n         * @param inputEncoding The `encoding` of the `otherPublicKey` string.\n         * @param outputEncoding The `encoding` of the return value.\n         */\n        computeSecret(otherPublicKey: NodeJS.ArrayBufferView): Buffer;\n        computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): Buffer;\n        computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string;\n        computeSecret(\n            otherPublicKey: string,\n            inputEncoding: BinaryToTextEncoding,\n            outputEncoding: BinaryToTextEncoding,\n        ): string;\n        /**\n         * If `encoding` is specified, a string is returned; otherwise a `Buffer` is\n         * returned.\n         * @since v0.11.14\n         * @param encoding The `encoding` of the return value.\n         * @return The EC Diffie-Hellman in the specified `encoding`.\n         */\n        getPrivateKey(): Buffer;\n        getPrivateKey(encoding: BinaryToTextEncoding): string;\n        /**\n         * The `format` argument specifies point encoding and can be `'compressed'` or `'uncompressed'`. If `format` is not specified the point will be returned in`'uncompressed'` format.\n         *\n         * If `encoding` is specified, a string is returned; otherwise a `Buffer` is\n         * returned.\n         * @since v0.11.14\n         * @param encoding The `encoding` of the return value.\n         * @param [format='uncompressed']\n         * @return The EC Diffie-Hellman public key in the specified `encoding` and `format`.\n         */\n        getPublicKey(encoding?: null, format?: ECDHKeyFormat): Buffer;\n        getPublicKey(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string;\n        /**\n         * Sets the EC Diffie-Hellman private key.\n         * If `encoding` is provided, `privateKey` is expected\n         * to be a string; otherwise `privateKey` is expected to be a `Buffer`, `TypedArray`, or `DataView`.\n         *\n         * If `privateKey` is not valid for the curve specified when the `ECDH` object was\n         * created, an error is thrown. Upon setting the private key, the associated\n         * public point (key) is also generated and set in the `ECDH` object.\n         * @since v0.11.14\n         * @param encoding The `encoding` of the `privateKey` string.\n         */\n        setPrivateKey(privateKey: NodeJS.ArrayBufferView): void;\n        setPrivateKey(privateKey: string, encoding: BinaryToTextEncoding): void;\n    }\n    /**\n     * Creates an Elliptic Curve Diffie-Hellman (`ECDH`) key exchange object using a\n     * predefined curve specified by the `curveName` string. Use {@link getCurves} to obtain a list of available curve names. On recent\n     * OpenSSL releases, `openssl ecparam -list_curves` will also display the name\n     * and description of each available elliptic curve.\n     * @since v0.11.14\n     */\n    function createECDH(curveName: string): ECDH;\n    /**\n     * This function compares the underlying bytes that represent the given `ArrayBuffer`, `TypedArray`, or `DataView` instances using a constant-time\n     * algorithm.\n     *\n     * This function does not leak timing information that\n     * would allow an attacker to guess one of the values. This is suitable for\n     * comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/).\n     *\n     * `a` and `b` must both be `Buffer`s, `TypedArray`s, or `DataView`s, and they\n     * must have the same byte length. An error is thrown if `a` and `b` have\n     * different byte lengths.\n     *\n     * If at least one of `a` and `b` is a `TypedArray` with more than one byte per\n     * entry, such as `Uint16Array`, the result will be computed using the platform\n     * byte order.\n     *\n     * **When both of the inputs are `Float32Array`s or `Float64Array`s, this function might return unexpected results due to IEEE 754**\n     * **encoding of floating-point numbers. In particular, neither `x === y` nor `Object.is(x, y)` implies that the byte representations of two floating-point**\n     * **numbers `x` and `y` are equal.**\n     *\n     * Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code\n     * is timing-safe. Care should be taken to ensure that the surrounding code does\n     * not introduce timing vulnerabilities.\n     * @since v6.6.0\n     */\n    function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean;\n    type KeyType = \"rsa\" | \"rsa-pss\" | \"dsa\" | \"ec\" | \"ed25519\" | \"ed448\" | \"x25519\" | \"x448\";\n    type KeyFormat = \"pem\" | \"der\" | \"jwk\";\n    interface BasePrivateKeyEncodingOptions<T extends KeyFormat> {\n        format: T;\n        cipher?: string | undefined;\n        passphrase?: string | undefined;\n    }\n    interface KeyPairKeyObjectResult {\n        publicKey: KeyObject;\n        privateKey: KeyObject;\n    }\n    interface ED25519KeyPairKeyObjectOptions {}\n    interface ED448KeyPairKeyObjectOptions {}\n    interface X25519KeyPairKeyObjectOptions {}\n    interface X448KeyPairKeyObjectOptions {}\n    interface ECKeyPairKeyObjectOptions {\n        /**\n         * Name of the curve to use\n         */\n        namedCurve: string;\n        /**\n         * Must be `'named'` or `'explicit'`. Default: `'named'`.\n         */\n        paramEncoding?: \"explicit\" | \"named\" | undefined;\n    }\n    interface RSAKeyPairKeyObjectOptions {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Public exponent\n         * @default 0x10001\n         */\n        publicExponent?: number | undefined;\n    }\n    interface RSAPSSKeyPairKeyObjectOptions {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Public exponent\n         * @default 0x10001\n         */\n        publicExponent?: number | undefined;\n        /**\n         * Name of the message digest\n         */\n        hashAlgorithm?: string;\n        /**\n         * Name of the message digest used by MGF1\n         */\n        mgf1HashAlgorithm?: string;\n        /**\n         * Minimal salt length in bytes\n         */\n        saltLength?: string;\n    }\n    interface DSAKeyPairKeyObjectOptions {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Size of q in bits\n         */\n        divisorLength: number;\n    }\n    interface RSAKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Public exponent\n         * @default 0x10001\n         */\n        publicExponent?: number | undefined;\n        publicKeyEncoding: {\n            type: \"pkcs1\" | \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs1\" | \"pkcs8\";\n        };\n    }\n    interface RSAPSSKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Public exponent\n         * @default 0x10001\n         */\n        publicExponent?: number | undefined;\n        /**\n         * Name of the message digest\n         */\n        hashAlgorithm?: string;\n        /**\n         * Name of the message digest used by MGF1\n         */\n        mgf1HashAlgorithm?: string;\n        /**\n         * Minimal salt length in bytes\n         */\n        saltLength?: string;\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface DSAKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        /**\n         * Key size in bits\n         */\n        modulusLength: number;\n        /**\n         * Size of q in bits\n         */\n        divisorLength: number;\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface ECKeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> extends ECKeyPairKeyObjectOptions {\n        publicKeyEncoding: {\n            type: \"pkcs1\" | \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"sec1\" | \"pkcs8\";\n        };\n    }\n    interface ED25519KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface ED448KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface X25519KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface X448KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {\n        publicKeyEncoding: {\n            type: \"spki\";\n            format: PubF;\n        };\n        privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {\n            type: \"pkcs8\";\n        };\n    }\n    interface KeyPairSyncResult<T1 extends string | Buffer, T2 extends string | Buffer> {\n        publicKey: T1;\n        privateKey: T2;\n    }\n    /**\n     * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC,\n     * Ed25519, Ed448, X25519, X448, and DH are currently supported.\n     *\n     * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function\n     * behaves as if `keyObject.export()` had been called on its result. Otherwise,\n     * the respective part of the key is returned as a `KeyObject`.\n     *\n     * When encoding public keys, it is recommended to use `'spki'`. When encoding\n     * private keys, it is recommended to use `'pkcs8'` with a strong passphrase,\n     * and to keep the passphrase confidential.\n     *\n     * ```js\n     * const {\n     *   generateKeyPairSync,\n     * } = await import('node:crypto');\n     *\n     * const {\n     *   publicKey,\n     *   privateKey,\n     * } = generateKeyPairSync('rsa', {\n     *   modulusLength: 4096,\n     *   publicKeyEncoding: {\n     *     type: 'spki',\n     *     format: 'pem',\n     *   },\n     *   privateKeyEncoding: {\n     *     type: 'pkcs8',\n     *     format: 'pem',\n     *     cipher: 'aes-256-cbc',\n     *     passphrase: 'top secret',\n     *   },\n     * });\n     * ```\n     *\n     * The return value `{ publicKey, privateKey }` represents the generated key pair.\n     * When PEM encoding was selected, the respective key will be a string, otherwise\n     * it will be a buffer containing the data encoded as DER.\n     * @since v10.12.0\n     * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`.\n     */\n    function generateKeyPairSync(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"rsa\", options: RSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"rsa-pss\", options: RSAPSSKeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"dsa\", options: DSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"ec\", options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"ed25519\", options?: ED25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"ed448\", options?: ED448KeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"x25519\", options?: X25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    function generateKeyPairSync(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"pem\", \"pem\">,\n    ): KeyPairSyncResult<string, string>;\n    function generateKeyPairSync(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"pem\", \"der\">,\n    ): KeyPairSyncResult<string, Buffer>;\n    function generateKeyPairSync(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"der\", \"pem\">,\n    ): KeyPairSyncResult<Buffer, string>;\n    function generateKeyPairSync(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"der\", \"der\">,\n    ): KeyPairSyncResult<Buffer, Buffer>;\n    function generateKeyPairSync(type: \"x448\", options?: X448KeyPairKeyObjectOptions): KeyPairKeyObjectResult;\n    /**\n     * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC,\n     * Ed25519, Ed448, X25519, X448, and DH are currently supported.\n     *\n     * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function\n     * behaves as if `keyObject.export()` had been called on its result. Otherwise,\n     * the respective part of the key is returned as a `KeyObject`.\n     *\n     * It is recommended to encode public keys as `'spki'` and private keys as `'pkcs8'` with encryption for long-term storage:\n     *\n     * ```js\n     * const {\n     *   generateKeyPair,\n     * } = await import('node:crypto');\n     *\n     * generateKeyPair('rsa', {\n     *   modulusLength: 4096,\n     *   publicKeyEncoding: {\n     *     type: 'spki',\n     *     format: 'pem',\n     *   },\n     *   privateKeyEncoding: {\n     *     type: 'pkcs8',\n     *     format: 'pem',\n     *     cipher: 'aes-256-cbc',\n     *     passphrase: 'top secret',\n     *   },\n     * }, (err, publicKey, privateKey) => {\n     *   // Handle errors and use the generated key pair.\n     * });\n     * ```\n     *\n     * On completion, `callback` will be called with `err` set to `undefined` and `publicKey` / `privateKey` representing the generated key pair.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a `Promise` for an `Object` with `publicKey` and `privateKey` properties.\n     * @since v10.12.0\n     * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`.\n     */\n    function generateKeyPair(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa\",\n        options: RSAKeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa\",\n        options: RSAKeyPairKeyObjectOptions,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"rsa-pss\",\n        options: RSAPSSKeyPairKeyObjectOptions,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"dsa\",\n        options: DSAKeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"dsa\",\n        options: DSAKeyPairKeyObjectOptions,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ec\",\n        options: ECKeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ec\",\n        options: ECKeyPairKeyObjectOptions,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed25519\",\n        options: ED25519KeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed25519\",\n        options: ED25519KeyPairKeyObjectOptions | undefined,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed448\",\n        options: ED448KeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"ed448\",\n        options: ED448KeyPairKeyObjectOptions | undefined,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x25519\",\n        options: X25519KeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x25519\",\n        options: X25519KeyPairKeyObjectOptions | undefined,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"pem\", \"pem\">,\n        callback: (err: Error | null, publicKey: string, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"pem\", \"der\">,\n        callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"der\", \"pem\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x448\",\n        options: X448KeyPairOptions<\"der\", \"der\">,\n        callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void,\n    ): void;\n    function generateKeyPair(\n        type: \"x448\",\n        options: X448KeyPairKeyObjectOptions | undefined,\n        callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void,\n    ): void;\n    namespace generateKeyPair {\n        function __promisify__(\n            type: \"rsa\",\n            options: RSAKeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"rsa\",\n            options: RSAKeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"rsa\",\n            options: RSAKeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"rsa\",\n            options: RSAKeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(type: \"rsa\", options: RSAKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"rsa-pss\",\n            options: RSAPSSKeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"rsa-pss\",\n            options: RSAPSSKeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"rsa-pss\",\n            options: RSAPSSKeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"rsa-pss\",\n            options: RSAPSSKeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"rsa-pss\",\n            options: RSAPSSKeyPairKeyObjectOptions,\n        ): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"dsa\",\n            options: DSAKeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"dsa\",\n            options: DSAKeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"dsa\",\n            options: DSAKeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"dsa\",\n            options: DSAKeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(type: \"dsa\", options: DSAKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"ec\",\n            options: ECKeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ec\",\n            options: ECKeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"ec\",\n            options: ECKeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ec\",\n            options: ECKeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(type: \"ec\", options: ECKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"ed25519\",\n            options: ED25519KeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ed25519\",\n            options: ED25519KeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"ed25519\",\n            options: ED25519KeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ed25519\",\n            options: ED25519KeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"ed25519\",\n            options?: ED25519KeyPairKeyObjectOptions,\n        ): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"ed448\",\n            options: ED448KeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ed448\",\n            options: ED448KeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"ed448\",\n            options: ED448KeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"ed448\",\n            options: ED448KeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(type: \"ed448\", options?: ED448KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"x25519\",\n            options: X25519KeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"x25519\",\n            options: X25519KeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"x25519\",\n            options: X25519KeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"x25519\",\n            options: X25519KeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"x25519\",\n            options?: X25519KeyPairKeyObjectOptions,\n        ): Promise<KeyPairKeyObjectResult>;\n        function __promisify__(\n            type: \"x448\",\n            options: X448KeyPairOptions<\"pem\", \"pem\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"x448\",\n            options: X448KeyPairOptions<\"pem\", \"der\">,\n        ): Promise<{\n            publicKey: string;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(\n            type: \"x448\",\n            options: X448KeyPairOptions<\"der\", \"pem\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: string;\n        }>;\n        function __promisify__(\n            type: \"x448\",\n            options: X448KeyPairOptions<\"der\", \"der\">,\n        ): Promise<{\n            publicKey: Buffer;\n            privateKey: Buffer;\n        }>;\n        function __promisify__(type: \"x448\", options?: X448KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;\n    }\n    /**\n     * Calculates and returns the signature for `data` using the given private key and\n     * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is\n     * dependent upon the key type (especially Ed25519 and Ed448).\n     *\n     * If `key` is not a `KeyObject`, this function behaves as if `key` had been\n     * passed to {@link createPrivateKey}. If it is an object, the following\n     * additional properties can be passed:\n     *\n     * If the `callback` function is provided this function uses libuv's threadpool.\n     * @since v12.0.0\n     */\n    function sign(\n        algorithm: string | null | undefined,\n        data: NodeJS.ArrayBufferView,\n        key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,\n    ): Buffer;\n    function sign(\n        algorithm: string | null | undefined,\n        data: NodeJS.ArrayBufferView,\n        key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput | SignJsonWebKeyInput,\n        callback: (error: Error | null, data: Buffer) => void,\n    ): void;\n    /**\n     * Verifies the given signature for `data` using the given key and algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is dependent upon the\n     * key type (especially Ed25519 and Ed448).\n     *\n     * If `key` is not a `KeyObject`, this function behaves as if `key` had been\n     * passed to {@link createPublicKey}. If it is an object, the following\n     * additional properties can be passed:\n     *\n     * The `signature` argument is the previously calculated signature for the `data`.\n     *\n     * Because public keys can be derived from private keys, a private key or a public\n     * key may be passed for `key`.\n     *\n     * If the `callback` function is provided this function uses libuv's threadpool.\n     * @since v12.0.0\n     */\n    function verify(\n        algorithm: string | null | undefined,\n        data: NodeJS.ArrayBufferView,\n        key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,\n        signature: NodeJS.ArrayBufferView,\n    ): boolean;\n    function verify(\n        algorithm: string | null | undefined,\n        data: NodeJS.ArrayBufferView,\n        key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput | VerifyJsonWebKeyInput,\n        signature: NodeJS.ArrayBufferView,\n        callback: (error: Error | null, result: boolean) => void,\n    ): void;\n    /**\n     * Computes the Diffie-Hellman secret based on a `privateKey` and a `publicKey`.\n     * Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'` (for Diffie-Hellman), `'ec'` (for ECDH), `'x448'`, or `'x25519'` (for ECDH-ES).\n     * @since v13.9.0, v12.17.0\n     */\n    function diffieHellman(options: { privateKey: KeyObject; publicKey: KeyObject }): Buffer;\n    /**\n     * A utility for creating one-shot hash digests of data. It can be faster than the object-based `crypto.createHash()` when hashing a smaller amount of data\n     * (<= 5MB) that's readily available. If the data can be big or if it is streamed, it's still recommended to use `crypto.createHash()` instead. The `algorithm`\n     * is dependent on the available algorithms supported by the version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc. On recent releases\n     * of OpenSSL, `openssl list -digest-algorithms` will display the available digest algorithms.\n     *\n     * Example:\n     *\n     * ```js\n     * import crypto from 'node:crypto';\n     * import { Buffer } from 'node:buffer';\n     *\n     * // Hashing a string and return the result as a hex-encoded string.\n     * const string = 'Node.js';\n     * // 10b3493287f831e81a438811a1ffba01f8cec4b7\n     * console.log(crypto.hash('sha1', string));\n     *\n     * // Encode a base64-encoded string into a Buffer, hash it and return\n     * // the result as a buffer.\n     * const base64 = 'Tm9kZS5qcw==';\n     * // <Buffer 10 b3 49 32 87 f8 31 e8 1a 43 88 11 a1 ff ba 01 f8 ce c4 b7>\n     * console.log(crypto.hash('sha1', Buffer.from(base64, 'base64'), 'buffer'));\n     * ```\n     * @since v21.7.0, v20.12.0\n     * @param data When `data` is a string, it will be encoded as UTF-8 before being hashed. If a different input encoding is desired for a string input, user\n     *             could encode the string into a `TypedArray` using either `TextEncoder` or `Buffer.from()` and passing the encoded `TypedArray` into this API instead.\n     * @param [outputEncoding='hex'] [Encoding](https://nodejs.org/docs/latest-v22.x/api/buffer.html#buffers-and-character-encodings) used to encode the returned digest.\n     */\n    function hash(algorithm: string, data: BinaryLike, outputEncoding?: BinaryToTextEncoding): string;\n    function hash(algorithm: string, data: BinaryLike, outputEncoding: \"buffer\"): Buffer;\n    function hash(\n        algorithm: string,\n        data: BinaryLike,\n        outputEncoding?: BinaryToTextEncoding | \"buffer\",\n    ): string | Buffer;\n    type CipherMode = \"cbc\" | \"ccm\" | \"cfb\" | \"ctr\" | \"ecb\" | \"gcm\" | \"ocb\" | \"ofb\" | \"stream\" | \"wrap\" | \"xts\";\n    interface CipherInfoOptions {\n        /**\n         * A test key length.\n         */\n        keyLength?: number | undefined;\n        /**\n         * A test IV length.\n         */\n        ivLength?: number | undefined;\n    }\n    interface CipherInfo {\n        /**\n         * The name of the cipher.\n         */\n        name: string;\n        /**\n         * The nid of the cipher.\n         */\n        nid: number;\n        /**\n         * The block size of the cipher in bytes.\n         * This property is omitted when mode is 'stream'.\n         */\n        blockSize?: number | undefined;\n        /**\n         * The expected or default initialization vector length in bytes.\n         * This property is omitted if the cipher does not use an initialization vector.\n         */\n        ivLength?: number | undefined;\n        /**\n         * The expected or default key length in bytes.\n         */\n        keyLength: number;\n        /**\n         * The cipher mode.\n         */\n        mode: CipherMode;\n    }\n    /**\n     * Returns information about a given cipher.\n     *\n     * Some ciphers accept variable length keys and initialization vectors. By default,\n     * the `crypto.getCipherInfo()` method will return the default values for these\n     * ciphers. To test if a given key length or iv length is acceptable for given\n     * cipher, use the `keyLength` and `ivLength` options. If the given values are\n     * unacceptable, `undefined` will be returned.\n     * @since v15.0.0\n     * @param nameOrNid The name or nid of the cipher to query.\n     */\n    function getCipherInfo(nameOrNid: string | number, options?: CipherInfoOptions): CipherInfo | undefined;\n    /**\n     * HKDF is a simple key derivation function defined in RFC 5869\\. The given `ikm`, `salt` and `info` are used with the `digest` to derive a key of `keylen` bytes.\n     *\n     * The supplied `callback` function is called with two arguments: `err` and `derivedKey`. If an errors occurs while deriving the key, `err` will be set;\n     * otherwise `err` will be `null`. The successfully generated `derivedKey` will\n     * be passed to the callback as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). An error will be thrown if any\n     * of the input arguments specify invalid values or types.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const {\n     *   hkdf,\n     * } = await import('node:crypto');\n     *\n     * hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => {\n     *   if (err) throw err;\n     *   console.log(Buffer.from(derivedKey).toString('hex'));  // '24156e2...5391653'\n     * });\n     * ```\n     * @since v15.0.0\n     * @param digest The digest algorithm to use.\n     * @param ikm The input keying material. Must be provided but can be zero-length.\n     * @param salt The salt value. Must be provided but can be zero-length.\n     * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.\n     * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`\n     * generates 64-byte hashes, making the maximum HKDF output 16320 bytes).\n     */\n    function hkdf(\n        digest: string,\n        irm: BinaryLike | KeyObject,\n        salt: BinaryLike,\n        info: BinaryLike,\n        keylen: number,\n        callback: (err: Error | null, derivedKey: ArrayBuffer) => void,\n    ): void;\n    /**\n     * Provides a synchronous HKDF key derivation function as defined in RFC 5869\\. The\n     * given `ikm`, `salt` and `info` are used with the `digest` to derive a key of `keylen` bytes.\n     *\n     * The successfully generated `derivedKey` will be returned as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer).\n     *\n     * An error will be thrown if any of the input arguments specify invalid values or\n     * types, or if the derived key cannot be generated.\n     *\n     * ```js\n     * import { Buffer } from 'node:buffer';\n     * const {\n     *   hkdfSync,\n     * } = await import('node:crypto');\n     *\n     * const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64);\n     * console.log(Buffer.from(derivedKey).toString('hex'));  // '24156e2...5391653'\n     * ```\n     * @since v15.0.0\n     * @param digest The digest algorithm to use.\n     * @param ikm The input keying material. Must be provided but can be zero-length.\n     * @param salt The salt value. Must be provided but can be zero-length.\n     * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes.\n     * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512`\n     * generates 64-byte hashes, making the maximum HKDF output 16320 bytes).\n     */\n    function hkdfSync(\n        digest: string,\n        ikm: BinaryLike | KeyObject,\n        salt: BinaryLike,\n        info: BinaryLike,\n        keylen: number,\n    ): ArrayBuffer;\n    interface SecureHeapUsage {\n        /**\n         * The total allocated secure heap size as specified using the `--secure-heap=n` command-line flag.\n         */\n        total: number;\n        /**\n         * The minimum allocation from the secure heap as specified using the `--secure-heap-min` command-line flag.\n         */\n        min: number;\n        /**\n         * The total number of bytes currently allocated from the secure heap.\n         */\n        used: number;\n        /**\n         * The calculated ratio of `used` to `total` allocated bytes.\n         */\n        utilization: number;\n    }\n    /**\n     * @since v15.6.0\n     */\n    function secureHeapUsed(): SecureHeapUsage;\n    interface RandomUUIDOptions {\n        /**\n         * By default, to improve performance,\n         * Node.js will pre-emptively generate and persistently cache enough\n         * random data to generate up to 128 random UUIDs. To generate a UUID\n         * without using the cache, set `disableEntropyCache` to `true`.\n         *\n         * @default `false`\n         */\n        disableEntropyCache?: boolean | undefined;\n    }\n    type UUID = `${string}-${string}-${string}-${string}-${string}`;\n    /**\n     * Generates a random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) version 4 UUID. The UUID is generated using a\n     * cryptographic pseudorandom number generator.\n     * @since v15.6.0, v14.17.0\n     */\n    function randomUUID(options?: RandomUUIDOptions): UUID;\n    interface X509CheckOptions {\n        /**\n         * @default 'always'\n         */\n        subject?: \"always\" | \"default\" | \"never\";\n        /**\n         * @default true\n         */\n        wildcards?: boolean;\n        /**\n         * @default true\n         */\n        partialWildcards?: boolean;\n        /**\n         * @default false\n         */\n        multiLabelWildcards?: boolean;\n        /**\n         * @default false\n         */\n        singleLabelSubdomains?: boolean;\n    }\n    /**\n     * Encapsulates an X509 certificate and provides read-only access to\n     * its information.\n     *\n     * ```js\n     * const { X509Certificate } = await import('node:crypto');\n     *\n     * const x509 = new X509Certificate('{... pem encoded cert ...}');\n     *\n     * console.log(x509.subject);\n     * ```\n     * @since v15.6.0\n     */\n    class X509Certificate {\n        /**\n         * Will be \\`true\\` if this is a Certificate Authority (CA) certificate.\n         * @since v15.6.0\n         */\n        readonly ca: boolean;\n        /**\n         * The SHA-1 fingerprint of this certificate.\n         *\n         * Because SHA-1 is cryptographically broken and because the security of SHA-1 is\n         * significantly worse than that of algorithms that are commonly used to sign\n         * certificates, consider using `x509.fingerprint256` instead.\n         * @since v15.6.0\n         */\n        readonly fingerprint: string;\n        /**\n         * The SHA-256 fingerprint of this certificate.\n         * @since v15.6.0\n         */\n        readonly fingerprint256: string;\n        /**\n         * The SHA-512 fingerprint of this certificate.\n         *\n         * Because computing the SHA-256 fingerprint is usually faster and because it is\n         * only half the size of the SHA-512 fingerprint, `x509.fingerprint256` may be\n         * a better choice. While SHA-512 presumably provides a higher level of security in\n         * general, the security of SHA-256 matches that of most algorithms that are\n         * commonly used to sign certificates.\n         * @since v17.2.0, v16.14.0\n         */\n        readonly fingerprint512: string;\n        /**\n         * The complete subject of this certificate.\n         * @since v15.6.0\n         */\n        readonly subject: string;\n        /**\n         * The subject alternative name specified for this certificate.\n         *\n         * This is a comma-separated list of subject alternative names. Each entry begins\n         * with a string identifying the kind of the subject alternative name followed by\n         * a colon and the value associated with the entry.\n         *\n         * Earlier versions of Node.js incorrectly assumed that it is safe to split this\n         * property at the two-character sequence `', '` (see [CVE-2021-44532](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532)). However,\n         * both malicious and legitimate certificates can contain subject alternative names\n         * that include this sequence when represented as a string.\n         *\n         * After the prefix denoting the type of the entry, the remainder of each entry\n         * might be enclosed in quotes to indicate that the value is a JSON string literal.\n         * For backward compatibility, Node.js only uses JSON string literals within this\n         * property when necessary to avoid ambiguity. Third-party code should be prepared\n         * to handle both possible entry formats.\n         * @since v15.6.0\n         */\n        readonly subjectAltName: string | undefined;\n        /**\n         * A textual representation of the certificate's authority information access\n         * extension.\n         *\n         * This is a line feed separated list of access descriptions. Each line begins with\n         * the access method and the kind of the access location, followed by a colon and\n         * the value associated with the access location.\n         *\n         * After the prefix denoting the access method and the kind of the access location,\n         * the remainder of each line might be enclosed in quotes to indicate that the\n         * value is a JSON string literal. For backward compatibility, Node.js only uses\n         * JSON string literals within this property when necessary to avoid ambiguity.\n         * Third-party code should be prepared to handle both possible entry formats.\n         * @since v15.6.0\n         */\n        readonly infoAccess: string | undefined;\n        /**\n         * An array detailing the key usages for this certificate.\n         * @since v15.6.0\n         */\n        readonly keyUsage: string[];\n        /**\n         * The issuer identification included in this certificate.\n         * @since v15.6.0\n         */\n        readonly issuer: string;\n        /**\n         * The issuer certificate or `undefined` if the issuer certificate is not\n         * available.\n         * @since v15.9.0\n         */\n        readonly issuerCertificate?: X509Certificate | undefined;\n        /**\n         * The public key `KeyObject` for this certificate.\n         * @since v15.6.0\n         */\n        readonly publicKey: KeyObject;\n        /**\n         * A `Buffer` containing the DER encoding of this certificate.\n         * @since v15.6.0\n         */\n        readonly raw: Buffer;\n        /**\n         * The serial number of this certificate.\n         *\n         * Serial numbers are assigned by certificate authorities and do not uniquely\n         * identify certificates. Consider using `x509.fingerprint256` as a unique\n         * identifier instead.\n         * @since v15.6.0\n         */\n        readonly serialNumber: string;\n        /**\n         * The date/time from which this certificate is considered valid.\n         * @since v15.6.0\n         */\n        readonly validFrom: string;\n        /**\n         * The date/time from which this certificate is valid, encapsulated in a `Date` object.\n         * @since v22.10.0\n         */\n        readonly validFromDate: Date;\n        /**\n         * The date/time until which this certificate is considered valid.\n         * @since v15.6.0\n         */\n        readonly validTo: string;\n        /**\n         * The date/time until which this certificate is valid, encapsulated in a `Date` object.\n         * @since v22.10.0\n         */\n        readonly validToDate: Date;\n        constructor(buffer: BinaryLike);\n        /**\n         * Checks whether the certificate matches the given email address.\n         *\n         * If the `'subject'` option is undefined or set to `'default'`, the certificate\n         * subject is only considered if the subject alternative name extension either does\n         * not exist or does not contain any email addresses.\n         *\n         * If the `'subject'` option is set to `'always'` and if the subject alternative\n         * name extension either does not exist or does not contain a matching email\n         * address, the certificate subject is considered.\n         *\n         * If the `'subject'` option is set to `'never'`, the certificate subject is never\n         * considered, even if the certificate contains no subject alternative names.\n         * @since v15.6.0\n         * @return Returns `email` if the certificate matches, `undefined` if it does not.\n         */\n        checkEmail(email: string, options?: Pick<X509CheckOptions, \"subject\">): string | undefined;\n        /**\n         * Checks whether the certificate matches the given host name.\n         *\n         * If the certificate matches the given host name, the matching subject name is\n         * returned. The returned name might be an exact match (e.g., `foo.example.com`)\n         * or it might contain wildcards (e.g., `*.example.com`). Because host name\n         * comparisons are case-insensitive, the returned subject name might also differ\n         * from the given `name` in capitalization.\n         *\n         * If the `'subject'` option is undefined or set to `'default'`, the certificate\n         * subject is only considered if the subject alternative name extension either does\n         * not exist or does not contain any DNS names. This behavior is consistent with [RFC 2818](https://www.rfc-editor.org/rfc/rfc2818.txt) (\"HTTP Over TLS\").\n         *\n         * If the `'subject'` option is set to `'always'` and if the subject alternative\n         * name extension either does not exist or does not contain a matching DNS name,\n         * the certificate subject is considered.\n         *\n         * If the `'subject'` option is set to `'never'`, the certificate subject is never\n         * considered, even if the certificate contains no subject alternative names.\n         * @since v15.6.0\n         * @return Returns a subject name that matches `name`, or `undefined` if no subject name matches `name`.\n         */\n        checkHost(name: string, options?: X509CheckOptions): string | undefined;\n        /**\n         * Checks whether the certificate matches the given IP address (IPv4 or IPv6).\n         *\n         * Only [RFC 5280](https://www.rfc-editor.org/rfc/rfc5280.txt) `iPAddress` subject alternative names are considered, and they\n         * must match the given `ip` address exactly. Other subject alternative names as\n         * well as the subject field of the certificate are ignored.\n         * @since v15.6.0\n         * @return Returns `ip` if the certificate matches, `undefined` if it does not.\n         */\n        checkIP(ip: string): string | undefined;\n        /**\n         * Checks whether this certificate was issued by the given `otherCert`.\n         * @since v15.6.0\n         */\n        checkIssued(otherCert: X509Certificate): boolean;\n        /**\n         * Checks whether the public key for this certificate is consistent with\n         * the given private key.\n         * @since v15.6.0\n         * @param privateKey A private key.\n         */\n        checkPrivateKey(privateKey: KeyObject): boolean;\n        /**\n         * There is no standard JSON encoding for X509 certificates. The`toJSON()` method returns a string containing the PEM encoded\n         * certificate.\n         * @since v15.6.0\n         */\n        toJSON(): string;\n        /**\n         * Returns information about this certificate using the legacy `certificate object` encoding.\n         * @since v15.6.0\n         */\n        toLegacyObject(): PeerCertificate;\n        /**\n         * Returns the PEM-encoded certificate.\n         * @since v15.6.0\n         */\n        toString(): string;\n        /**\n         * Verifies that this certificate was signed by the given public key.\n         * Does not perform any other validation checks on the certificate.\n         * @since v15.6.0\n         * @param publicKey A public key.\n         */\n        verify(publicKey: KeyObject): boolean;\n    }\n    type LargeNumberLike = NodeJS.ArrayBufferView | SharedArrayBuffer | ArrayBuffer | bigint;\n    interface GeneratePrimeOptions {\n        add?: LargeNumberLike | undefined;\n        rem?: LargeNumberLike | undefined;\n        /**\n         * @default false\n         */\n        safe?: boolean | undefined;\n        bigint?: boolean | undefined;\n    }\n    interface GeneratePrimeOptionsBigInt extends GeneratePrimeOptions {\n        bigint: true;\n    }\n    interface GeneratePrimeOptionsArrayBuffer extends GeneratePrimeOptions {\n        bigint?: false | undefined;\n    }\n    /**\n     * Generates a pseudorandom prime of `size` bits.\n     *\n     * If `options.safe` is `true`, the prime will be a safe prime -- that is, `(prime - 1) / 2` will also be a prime.\n     *\n     * The `options.add` and `options.rem` parameters can be used to enforce additional\n     * requirements, e.g., for Diffie-Hellman:\n     *\n     * * If `options.add` and `options.rem` are both set, the prime will satisfy the\n     * condition that `prime % add = rem`.\n     * * If only `options.add` is set and `options.safe` is not `true`, the prime will\n     * satisfy the condition that `prime % add = 1`.\n     * * If only `options.add` is set and `options.safe` is set to `true`, the prime\n     * will instead satisfy the condition that `prime % add = 3`. This is necessary\n     * because `prime % add = 1` for `options.add > 2` would contradict the condition\n     * enforced by `options.safe`.\n     * * `options.rem` is ignored if `options.add` is not given.\n     *\n     * Both `options.add` and `options.rem` must be encoded as big-endian sequences\n     * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or `DataView`.\n     *\n     * By default, the prime is encoded as a big-endian sequence of octets\n     * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a\n     * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.\n     * @since v15.8.0\n     * @param size The size (in bits) of the prime to generate.\n     */\n    function generatePrime(size: number, callback: (err: Error | null, prime: ArrayBuffer) => void): void;\n    function generatePrime(\n        size: number,\n        options: GeneratePrimeOptionsBigInt,\n        callback: (err: Error | null, prime: bigint) => void,\n    ): void;\n    function generatePrime(\n        size: number,\n        options: GeneratePrimeOptionsArrayBuffer,\n        callback: (err: Error | null, prime: ArrayBuffer) => void,\n    ): void;\n    function generatePrime(\n        size: number,\n        options: GeneratePrimeOptions,\n        callback: (err: Error | null, prime: ArrayBuffer | bigint) => void,\n    ): void;\n    /**\n     * Generates a pseudorandom prime of `size` bits.\n     *\n     * If `options.safe` is `true`, the prime will be a safe prime -- that is, `(prime - 1) / 2` will also be a prime.\n     *\n     * The `options.add` and `options.rem` parameters can be used to enforce additional\n     * requirements, e.g., for Diffie-Hellman:\n     *\n     * * If `options.add` and `options.rem` are both set, the prime will satisfy the\n     * condition that `prime % add = rem`.\n     * * If only `options.add` is set and `options.safe` is not `true`, the prime will\n     * satisfy the condition that `prime % add = 1`.\n     * * If only `options.add` is set and `options.safe` is set to `true`, the prime\n     * will instead satisfy the condition that `prime % add = 3`. This is necessary\n     * because `prime % add = 1` for `options.add > 2` would contradict the condition\n     * enforced by `options.safe`.\n     * * `options.rem` is ignored if `options.add` is not given.\n     *\n     * Both `options.add` and `options.rem` must be encoded as big-endian sequences\n     * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or `DataView`.\n     *\n     * By default, the prime is encoded as a big-endian sequence of octets\n     * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a\n     * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided.\n     * @since v15.8.0\n     * @param size The size (in bits) of the prime to generate.\n     */\n    function generatePrimeSync(size: number): ArrayBuffer;\n    function generatePrimeSync(size: number, options: GeneratePrimeOptionsBigInt): bigint;\n    function generatePrimeSync(size: number, options: GeneratePrimeOptionsArrayBuffer): ArrayBuffer;\n    function generatePrimeSync(size: number, options: GeneratePrimeOptions): ArrayBuffer | bigint;\n    interface CheckPrimeOptions {\n        /**\n         * The number of Miller-Rabin probabilistic primality iterations to perform.\n         * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most `2**-64` for random input.\n         * Care must be used when selecting a number of checks.\n         * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details.\n         *\n         * @default 0\n         */\n        checks?: number | undefined;\n    }\n    /**\n     * Checks the primality of the `candidate`.\n     * @since v15.8.0\n     * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.\n     */\n    function checkPrime(value: LargeNumberLike, callback: (err: Error | null, result: boolean) => void): void;\n    function checkPrime(\n        value: LargeNumberLike,\n        options: CheckPrimeOptions,\n        callback: (err: Error | null, result: boolean) => void,\n    ): void;\n    /**\n     * Checks the primality of the `candidate`.\n     * @since v15.8.0\n     * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length.\n     * @return `true` if the candidate is a prime with an error probability less than `0.25 ** options.checks`.\n     */\n    function checkPrimeSync(candidate: LargeNumberLike, options?: CheckPrimeOptions): boolean;\n    /**\n     * Load and set the `engine` for some or all OpenSSL functions (selected by flags).\n     *\n     * `engine` could be either an id or a path to the engine's shared library.\n     *\n     * The optional `flags` argument uses `ENGINE_METHOD_ALL` by default. The `flags` is a bit field taking one of or a mix of the following flags (defined in `crypto.constants`):\n     *\n     * * `crypto.constants.ENGINE_METHOD_RSA`\n     * * `crypto.constants.ENGINE_METHOD_DSA`\n     * * `crypto.constants.ENGINE_METHOD_DH`\n     * * `crypto.constants.ENGINE_METHOD_RAND`\n     * * `crypto.constants.ENGINE_METHOD_EC`\n     * * `crypto.constants.ENGINE_METHOD_CIPHERS`\n     * * `crypto.constants.ENGINE_METHOD_DIGESTS`\n     * * `crypto.constants.ENGINE_METHOD_PKEY_METHS`\n     * * `crypto.constants.ENGINE_METHOD_PKEY_ASN1_METHS`\n     * * `crypto.constants.ENGINE_METHOD_ALL`\n     * * `crypto.constants.ENGINE_METHOD_NONE`\n     * @since v0.11.11\n     * @param flags\n     */\n    function setEngine(engine: string, flags?: number): void;\n    /**\n     * A convenient alias for {@link webcrypto.getRandomValues}. This\n     * implementation is not compliant with the Web Crypto spec, to write\n     * web-compatible code use {@link webcrypto.getRandomValues} instead.\n     * @since v17.4.0\n     * @return Returns `typedArray`.\n     */\n    function getRandomValues<T extends webcrypto.BufferSource>(typedArray: T): T;\n    /**\n     * A convenient alias for `crypto.webcrypto.subtle`.\n     * @since v17.4.0\n     */\n    const subtle: webcrypto.SubtleCrypto;\n    /**\n     * An implementation of the Web Crypto API standard.\n     *\n     * See the {@link https://nodejs.org/docs/latest/api/webcrypto.html Web Crypto API documentation} for details.\n     * @since v15.0.0\n     */\n    const webcrypto: webcrypto.Crypto;\n    namespace webcrypto {\n        type BufferSource = ArrayBufferView | ArrayBuffer;\n        type KeyFormat = \"jwk\" | \"pkcs8\" | \"raw\" | \"spki\";\n        type KeyType = \"private\" | \"public\" | \"secret\";\n        type KeyUsage =\n            | \"decrypt\"\n            | \"deriveBits\"\n            | \"deriveKey\"\n            | \"encrypt\"\n            | \"sign\"\n            | \"unwrapKey\"\n            | \"verify\"\n            | \"wrapKey\";\n        type AlgorithmIdentifier = Algorithm | string;\n        type HashAlgorithmIdentifier = AlgorithmIdentifier;\n        type NamedCurve = string;\n        type BigInteger = Uint8Array;\n        interface AesCbcParams extends Algorithm {\n            iv: BufferSource;\n        }\n        interface AesCtrParams extends Algorithm {\n            counter: BufferSource;\n            length: number;\n        }\n        interface AesDerivedKeyParams extends Algorithm {\n            length: number;\n        }\n        interface AesGcmParams extends Algorithm {\n            additionalData?: BufferSource;\n            iv: BufferSource;\n            tagLength?: number;\n        }\n        interface AesKeyAlgorithm extends KeyAlgorithm {\n            length: number;\n        }\n        interface AesKeyGenParams extends Algorithm {\n            length: number;\n        }\n        interface Algorithm {\n            name: string;\n        }\n        interface EcKeyAlgorithm extends KeyAlgorithm {\n            namedCurve: NamedCurve;\n        }\n        interface EcKeyGenParams extends Algorithm {\n            namedCurve: NamedCurve;\n        }\n        interface EcKeyImportParams extends Algorithm {\n            namedCurve: NamedCurve;\n        }\n        interface EcdhKeyDeriveParams extends Algorithm {\n            public: CryptoKey;\n        }\n        interface EcdsaParams extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n        }\n        interface Ed448Params extends Algorithm {\n            context?: BufferSource;\n        }\n        interface HkdfParams extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n            info: BufferSource;\n            salt: BufferSource;\n        }\n        interface HmacImportParams extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n            length?: number;\n        }\n        interface HmacKeyAlgorithm extends KeyAlgorithm {\n            hash: KeyAlgorithm;\n            length: number;\n        }\n        interface HmacKeyGenParams extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n            length?: number;\n        }\n        interface JsonWebKey {\n            alg?: string;\n            crv?: string;\n            d?: string;\n            dp?: string;\n            dq?: string;\n            e?: string;\n            ext?: boolean;\n            k?: string;\n            key_ops?: string[];\n            kty?: string;\n            n?: string;\n            oth?: RsaOtherPrimesInfo[];\n            p?: string;\n            q?: string;\n            qi?: string;\n            use?: string;\n            x?: string;\n            y?: string;\n        }\n        interface KeyAlgorithm {\n            name: string;\n        }\n        interface Pbkdf2Params extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n            iterations: number;\n            salt: BufferSource;\n        }\n        interface RsaHashedImportParams extends Algorithm {\n            hash: HashAlgorithmIdentifier;\n        }\n        interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm {\n            hash: KeyAlgorithm;\n        }\n        interface RsaHashedKeyGenParams extends RsaKeyGenParams {\n            hash: HashAlgorithmIdentifier;\n        }\n        interface RsaKeyAlgorithm extends KeyAlgorithm {\n            modulusLength: number;\n            publicExponent: BigInteger;\n        }\n        interface RsaKeyGenParams extends Algorithm {\n            modulusLength: number;\n            publicExponent: BigInteger;\n        }\n        interface RsaOaepParams extends Algorithm {\n            label?: BufferSource;\n        }\n        interface RsaOtherPrimesInfo {\n            d?: string;\n            r?: string;\n            t?: string;\n        }\n        interface RsaPssParams extends Algorithm {\n            saltLength: number;\n        }\n        /**\n         * Importing the `webcrypto` object (`import { webcrypto } from 'node:crypto'`) gives an instance of the `Crypto` class.\n         * `Crypto` is a singleton that provides access to the remainder of the crypto API.\n         * @since v15.0.0\n         */\n        interface Crypto {\n            /**\n             * Provides access to the `SubtleCrypto` API.\n             * @since v15.0.0\n             */\n            readonly subtle: SubtleCrypto;\n            /**\n             * Generates cryptographically strong random values.\n             * The given `typedArray` is filled with random values, and a reference to `typedArray` is returned.\n             *\n             * The given `typedArray` must be an integer-based instance of {@link NodeJS.TypedArray}, i.e. `Float32Array` and `Float64Array` are not accepted.\n             *\n             * An error will be thrown if the given `typedArray` is larger than 65,536 bytes.\n             * @since v15.0.0\n             */\n            getRandomValues<T extends Exclude<NodeJS.TypedArray, Float32Array | Float64Array>>(typedArray: T): T;\n            /**\n             * Generates a random {@link https://www.rfc-editor.org/rfc/rfc4122.txt RFC 4122} version 4 UUID.\n             * The UUID is generated using a cryptographic pseudorandom number generator.\n             * @since v16.7.0\n             */\n            randomUUID(): UUID;\n            CryptoKey: CryptoKeyConstructor;\n        }\n        // This constructor throws ILLEGAL_CONSTRUCTOR so it should not be newable.\n        interface CryptoKeyConstructor {\n            /** Illegal constructor */\n            (_: { readonly _: unique symbol }): never; // Allows instanceof to work but not be callable by the user.\n            readonly length: 0;\n            readonly name: \"CryptoKey\";\n            readonly prototype: CryptoKey;\n        }\n        /**\n         * @since v15.0.0\n         */\n        interface CryptoKey {\n            /**\n             * An object detailing the algorithm for which the key can be used along with additional algorithm-specific parameters.\n             * @since v15.0.0\n             */\n            readonly algorithm: KeyAlgorithm;\n            /**\n             * When `true`, the {@link CryptoKey} can be extracted using either `subtleCrypto.exportKey()` or `subtleCrypto.wrapKey()`.\n             * @since v15.0.0\n             */\n            readonly extractable: boolean;\n            /**\n             * A string identifying whether the key is a symmetric (`'secret'`) or asymmetric (`'private'` or `'public'`) key.\n             * @since v15.0.0\n             */\n            readonly type: KeyType;\n            /**\n             * An array of strings identifying the operations for which the key may be used.\n             *\n             * The possible usages are:\n             * - `'encrypt'` - The key may be used to encrypt data.\n             * - `'decrypt'` - The key may be used to decrypt data.\n             * - `'sign'` - The key may be used to generate digital signatures.\n             * - `'verify'` - The key may be used to verify digital signatures.\n             * - `'deriveKey'` - The key may be used to derive a new key.\n             * - `'deriveBits'` - The key may be used to derive bits.\n             * - `'wrapKey'` - The key may be used to wrap another key.\n             * - `'unwrapKey'` - The key may be used to unwrap another key.\n             *\n             * Valid key usages depend on the key algorithm (identified by `cryptokey.algorithm.name`).\n             * @since v15.0.0\n             */\n            readonly usages: KeyUsage[];\n        }\n        /**\n         * The `CryptoKeyPair` is a simple dictionary object with `publicKey` and `privateKey` properties, representing an asymmetric key pair.\n         * @since v15.0.0\n         */\n        interface CryptoKeyPair {\n            /**\n             * A {@link CryptoKey} whose type will be `'private'`.\n             * @since v15.0.0\n             */\n            privateKey: CryptoKey;\n            /**\n             * A {@link CryptoKey} whose type will be `'public'`.\n             * @since v15.0.0\n             */\n            publicKey: CryptoKey;\n        }\n        /**\n         * @since v15.0.0\n         */\n        interface SubtleCrypto {\n            /**\n             * Using the method and parameters specified in `algorithm` and the keying material provided by `key`,\n             * `subtle.decrypt()` attempts to decipher the provided `data`. If successful,\n             * the returned promise will be resolved with an `<ArrayBuffer>` containing the plaintext result.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'RSA-OAEP'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * @since v15.0.0\n             */\n            decrypt(\n                algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams,\n                key: CryptoKey,\n                data: BufferSource,\n            ): Promise<ArrayBuffer>;\n            /**\n             * Using the method and parameters specified in `algorithm` and the keying material provided by `baseKey`,\n             * `subtle.deriveBits()` attempts to generate `length` bits.\n             * The Node.js implementation requires that when `length` is a number it must be multiple of `8`.\n             * When `length` is `null` the maximum number of bits for a given algorithm is generated. This is allowed\n             * for the `'ECDH'`, `'X25519'`, and `'X448'` algorithms.\n             * If successful, the returned promise will be resolved with an `<ArrayBuffer>` containing the generated data.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'ECDH'`\n             * - `'X25519'`\n             * - `'X448'`\n             * - `'HKDF'`\n             * - `'PBKDF2'`\n             * @since v15.0.0\n             */\n            deriveBits(\n                algorithm: EcdhKeyDeriveParams,\n                baseKey: CryptoKey,\n                length?: number | null,\n            ): Promise<ArrayBuffer>;\n            deriveBits(\n                algorithm: EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params,\n                baseKey: CryptoKey,\n                length: number,\n            ): Promise<ArrayBuffer>;\n            /**\n             * Using the method and parameters specified in `algorithm`, and the keying material provided by `baseKey`,\n             * `subtle.deriveKey()` attempts to generate a new <CryptoKey>` based on the method and parameters in `derivedKeyAlgorithm`.\n             *\n             * Calling `subtle.deriveKey()` is equivalent to calling `subtle.deriveBits()` to generate raw keying material,\n             * then passing the result into the `subtle.importKey()` method using the `deriveKeyAlgorithm`, `extractable`, and `keyUsages` parameters as input.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'ECDH'`\n             * - `'X25519'`\n             * - `'X448'`\n             * - `'HKDF'`\n             * - `'PBKDF2'`\n             * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}.\n             * @since v15.0.0\n             */\n            deriveKey(\n                algorithm: EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params,\n                baseKey: CryptoKey,\n                derivedKeyAlgorithm: AlgorithmIdentifier | HmacImportParams | AesDerivedKeyParams,\n                extractable: boolean,\n                keyUsages: readonly KeyUsage[],\n            ): Promise<CryptoKey>;\n            /**\n             * Using the method identified by `algorithm`, `subtle.digest()` attempts to generate a digest of `data`.\n             * If successful, the returned promise is resolved with an `<ArrayBuffer>` containing the computed digest.\n             *\n             * If `algorithm` is provided as a `<string>`, it must be one of:\n             *\n             * - `'SHA-1'`\n             * - `'SHA-256'`\n             * - `'SHA-384'`\n             * - `'SHA-512'`\n             *\n             * If `algorithm` is provided as an `<Object>`, it must have a `name` property whose value is one of the above.\n             * @since v15.0.0\n             */\n            digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise<ArrayBuffer>;\n            /**\n             * Using the method and parameters specified by `algorithm` and the keying material provided by `key`,\n             * `subtle.encrypt()` attempts to encipher `data`. If successful,\n             * the returned promise is resolved with an `<ArrayBuffer>` containing the encrypted result.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'RSA-OAEP'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * @since v15.0.0\n             */\n            encrypt(\n                algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams,\n                key: CryptoKey,\n                data: BufferSource,\n            ): Promise<ArrayBuffer>;\n            /**\n             * Exports the given key into the specified format, if supported.\n             *\n             * If the `<CryptoKey>` is not extractable, the returned promise will reject.\n             *\n             * When `format` is either `'pkcs8'` or `'spki'` and the export is successful,\n             * the returned promise will be resolved with an `<ArrayBuffer>` containing the exported key data.\n             *\n             * When `format` is `'jwk'` and the export is successful, the returned promise will be resolved with a\n             * JavaScript object conforming to the {@link https://tools.ietf.org/html/rfc7517 JSON Web Key} specification.\n             * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`.\n             * @returns `<Promise>` containing `<ArrayBuffer>`.\n             * @since v15.0.0\n             */\n            exportKey(format: \"jwk\", key: CryptoKey): Promise<JsonWebKey>;\n            exportKey(format: Exclude<KeyFormat, \"jwk\">, key: CryptoKey): Promise<ArrayBuffer>;\n            /**\n             * Using the method and parameters provided in `algorithm`,\n             * `subtle.generateKey()` attempts to generate new keying material.\n             * Depending the method used, the method may generate either a single `<CryptoKey>` or a `<CryptoKeyPair>`.\n             *\n             * The `<CryptoKeyPair>` (public and private key) generating algorithms supported include:\n             *\n             * - `'RSASSA-PKCS1-v1_5'`\n             * - `'RSA-PSS'`\n             * - `'RSA-OAEP'`\n             * - `'ECDSA'`\n             * - `'Ed25519'`\n             * - `'Ed448'`\n             * - `'ECDH'`\n             * - `'X25519'`\n             * - `'X448'`\n             * The `<CryptoKey>` (secret key) generating algorithms supported include:\n             *\n             * - `'HMAC'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * - `'AES-KW'`\n             * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}.\n             * @since v15.0.0\n             */\n            generateKey(\n                algorithm: RsaHashedKeyGenParams | EcKeyGenParams,\n                extractable: boolean,\n                keyUsages: readonly KeyUsage[],\n            ): Promise<CryptoKeyPair>;\n            generateKey(\n                algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params,\n                extractable: boolean,\n                keyUsages: readonly KeyUsage[],\n            ): Promise<CryptoKey>;\n            generateKey(\n                algorithm: AlgorithmIdentifier,\n                extractable: boolean,\n                keyUsages: KeyUsage[],\n            ): Promise<CryptoKeyPair | CryptoKey>;\n            /**\n             * The `subtle.importKey()` method attempts to interpret the provided `keyData` as the given `format`\n             * to create a `<CryptoKey>` instance using the provided `algorithm`, `extractable`, and `keyUsages` arguments.\n             * If the import is successful, the returned promise will be resolved with the created `<CryptoKey>`.\n             *\n             * If importing a `'PBKDF2'` key, `extractable` must be `false`.\n             * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`.\n             * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}.\n             * @since v15.0.0\n             */\n            importKey(\n                format: \"jwk\",\n                keyData: JsonWebKey,\n                algorithm:\n                    | AlgorithmIdentifier\n                    | RsaHashedImportParams\n                    | EcKeyImportParams\n                    | HmacImportParams\n                    | AesKeyAlgorithm,\n                extractable: boolean,\n                keyUsages: readonly KeyUsage[],\n            ): Promise<CryptoKey>;\n            importKey(\n                format: Exclude<KeyFormat, \"jwk\">,\n                keyData: BufferSource,\n                algorithm:\n                    | AlgorithmIdentifier\n                    | RsaHashedImportParams\n                    | EcKeyImportParams\n                    | HmacImportParams\n                    | AesKeyAlgorithm,\n                extractable: boolean,\n                keyUsages: KeyUsage[],\n            ): Promise<CryptoKey>;\n            /**\n             * Using the method and parameters given by `algorithm` and the keying material provided by `key`,\n             * `subtle.sign()` attempts to generate a cryptographic signature of `data`. If successful,\n             * the returned promise is resolved with an `<ArrayBuffer>` containing the generated signature.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'RSASSA-PKCS1-v1_5'`\n             * - `'RSA-PSS'`\n             * - `'ECDSA'`\n             * - `'Ed25519'`\n             * - `'Ed448'`\n             * - `'HMAC'`\n             * @since v15.0.0\n             */\n            sign(\n                algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params,\n                key: CryptoKey,\n                data: BufferSource,\n            ): Promise<ArrayBuffer>;\n            /**\n             * In cryptography, \"wrapping a key\" refers to exporting and then encrypting the keying material.\n             * The `subtle.unwrapKey()` method attempts to decrypt a wrapped key and create a `<CryptoKey>` instance.\n             * It is equivalent to calling `subtle.decrypt()` first on the encrypted key data (using the `wrappedKey`, `unwrapAlgo`, and `unwrappingKey` arguments as input)\n             * then passing the results in to the `subtle.importKey()` method using the `unwrappedKeyAlgo`, `extractable`, and `keyUsages` arguments as inputs.\n             * If successful, the returned promise is resolved with a `<CryptoKey>` object.\n             *\n             * The wrapping algorithms currently supported include:\n             *\n             * - `'RSA-OAEP'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * - `'AES-KW'`\n             *\n             * The unwrapped key algorithms supported include:\n             *\n             * - `'RSASSA-PKCS1-v1_5'`\n             * - `'RSA-PSS'`\n             * - `'RSA-OAEP'`\n             * - `'ECDSA'`\n             * - `'Ed25519'`\n             * - `'Ed448'`\n             * - `'ECDH'`\n             * - `'X25519'`\n             * - `'X448'`\n             * - `'HMAC'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * - `'AES-KW'`\n             * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`.\n             * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}.\n             * @since v15.0.0\n             */\n            unwrapKey(\n                format: KeyFormat,\n                wrappedKey: BufferSource,\n                unwrappingKey: CryptoKey,\n                unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams,\n                unwrappedKeyAlgorithm:\n                    | AlgorithmIdentifier\n                    | RsaHashedImportParams\n                    | EcKeyImportParams\n                    | HmacImportParams\n                    | AesKeyAlgorithm,\n                extractable: boolean,\n                keyUsages: KeyUsage[],\n            ): Promise<CryptoKey>;\n            /**\n             * Using the method and parameters given in `algorithm` and the keying material provided by `key`,\n             * `subtle.verify()` attempts to verify that `signature` is a valid cryptographic signature of `data`.\n             * The returned promise is resolved with either `true` or `false`.\n             *\n             * The algorithms currently supported include:\n             *\n             * - `'RSASSA-PKCS1-v1_5'`\n             * - `'RSA-PSS'`\n             * - `'ECDSA'`\n             * - `'Ed25519'`\n             * - `'Ed448'`\n             * - `'HMAC'`\n             * @since v15.0.0\n             */\n            verify(\n                algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params,\n                key: CryptoKey,\n                signature: BufferSource,\n                data: BufferSource,\n            ): Promise<boolean>;\n            /**\n             * In cryptography, \"wrapping a key\" refers to exporting and then encrypting the keying material.\n             * The `subtle.wrapKey()` method exports the keying material into the format identified by `format`,\n             * then encrypts it using the method and parameters specified by `wrapAlgo` and the keying material provided by `wrappingKey`.\n             * It is the equivalent to calling `subtle.exportKey()` using `format` and `key` as the arguments,\n             * then passing the result to the `subtle.encrypt()` method using `wrappingKey` and `wrapAlgo` as inputs.\n             * If successful, the returned promise will be resolved with an `<ArrayBuffer>` containing the encrypted key data.\n             *\n             * The wrapping algorithms currently supported include:\n             *\n             * - `'RSA-OAEP'`\n             * - `'AES-CTR'`\n             * - `'AES-CBC'`\n             * - `'AES-GCM'`\n             * - `'AES-KW'`\n             * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`.\n             * @since v15.0.0\n             */\n            wrapKey(\n                format: KeyFormat,\n                key: CryptoKey,\n                wrappingKey: CryptoKey,\n                wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams,\n            ): Promise<ArrayBuffer>;\n        }\n    }\n\n    global {\n        var crypto: typeof globalThis extends {\n            crypto: infer T;\n            onmessage: any;\n        } ? T\n            : webcrypto.Crypto;\n    }\n}\ndeclare module \"node:crypto\" {\n    export * from \"crypto\";\n}\n",
    "node_modules/@types/node/dgram.d.ts": "/**\n * The `node:dgram` module provides an implementation of UDP datagram sockets.\n *\n * ```js\n * import dgram from 'node:dgram';\n *\n * const server = dgram.createSocket('udp4');\n *\n * server.on('error', (err) => {\n *   console.error(`server error:\\n${err.stack}`);\n *   server.close();\n * });\n *\n * server.on('message', (msg, rinfo) => {\n *   console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`);\n * });\n *\n * server.on('listening', () => {\n *   const address = server.address();\n *   console.log(`server listening ${address.address}:${address.port}`);\n * });\n *\n * server.bind(41234);\n * // Prints: server listening 0.0.0.0:41234\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/dgram.js)\n */\ndeclare module \"dgram\" {\n    import { AddressInfo, BlockList } from \"node:net\";\n    import * as dns from \"node:dns\";\n    import { Abortable, EventEmitter } from \"node:events\";\n    interface RemoteInfo {\n        address: string;\n        family: \"IPv4\" | \"IPv6\";\n        port: number;\n        size: number;\n    }\n    interface BindOptions {\n        port?: number | undefined;\n        address?: string | undefined;\n        exclusive?: boolean | undefined;\n        fd?: number | undefined;\n    }\n    type SocketType = \"udp4\" | \"udp6\";\n    interface SocketOptions extends Abortable {\n        type: SocketType;\n        reuseAddr?: boolean | undefined;\n        reusePort?: boolean | undefined;\n        /**\n         * @default false\n         */\n        ipv6Only?: boolean | undefined;\n        recvBufferSize?: number | undefined;\n        sendBufferSize?: number | undefined;\n        lookup?:\n            | ((\n                hostname: string,\n                options: dns.LookupOneOptions,\n                callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,\n            ) => void)\n            | undefined;\n        receiveBlockList?: BlockList | undefined;\n        sendBlockList?: BlockList | undefined;\n    }\n    /**\n     * Creates a `dgram.Socket` object. Once the socket is created, calling `socket.bind()` will instruct the socket to begin listening for datagram\n     * messages. When `address` and `port` are not passed to `socket.bind()` the\n     * method will bind the socket to the \"all interfaces\" address on a random port\n     * (it does the right thing for both `udp4` and `udp6` sockets). The bound address\n     * and port can be retrieved using `socket.address().address` and `socket.address().port`.\n     *\n     * If the `signal` option is enabled, calling `.abort()` on the corresponding `AbortController` is similar to calling `.close()` on the socket:\n     *\n     * ```js\n     * const controller = new AbortController();\n     * const { signal } = controller;\n     * const server = dgram.createSocket({ type: 'udp4', signal });\n     * server.on('message', (msg, rinfo) => {\n     *   console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`);\n     * });\n     * // Later, when you want to close the server.\n     * controller.abort();\n     * ```\n     * @since v0.11.13\n     * @param options Available options are:\n     * @param callback Attached as a listener for `'message'` events. Optional.\n     */\n    function createSocket(type: SocketType, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket;\n    function createSocket(options: SocketOptions, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket;\n    /**\n     * Encapsulates the datagram functionality.\n     *\n     * New instances of `dgram.Socket` are created using {@link createSocket}.\n     * The `new` keyword is not to be used to create `dgram.Socket` instances.\n     * @since v0.1.99\n     */\n    class Socket extends EventEmitter {\n        /**\n         * Tells the kernel to join a multicast group at the given `multicastAddress` and `multicastInterface` using the `IP_ADD_MEMBERSHIP` socket option. If the `multicastInterface` argument is not\n         * specified, the operating system will choose\n         * one interface and will add membership to it. To add membership to every\n         * available interface, call `addMembership` multiple times, once per interface.\n         *\n         * When called on an unbound socket, this method will implicitly bind to a random\n         * port, listening on all interfaces.\n         *\n         * When sharing a UDP socket across multiple `cluster` workers, the`socket.addMembership()` function must be called only once or an`EADDRINUSE` error will occur:\n         *\n         * ```js\n         * import cluster from 'node:cluster';\n         * import dgram from 'node:dgram';\n         *\n         * if (cluster.isPrimary) {\n         *   cluster.fork(); // Works ok.\n         *   cluster.fork(); // Fails with EADDRINUSE.\n         * } else {\n         *   const s = dgram.createSocket('udp4');\n         *   s.bind(1234, () => {\n         *     s.addMembership('224.0.0.114');\n         *   });\n         * }\n         * ```\n         * @since v0.6.9\n         */\n        addMembership(multicastAddress: string, multicastInterface?: string): void;\n        /**\n         * Returns an object containing the address information for a socket.\n         * For UDP sockets, this object will contain `address`, `family`, and `port` properties.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         * @since v0.1.99\n         */\n        address(): AddressInfo;\n        /**\n         * For UDP sockets, causes the `dgram.Socket` to listen for datagram\n         * messages on a named `port` and optional `address`. If `port` is not\n         * specified or is `0`, the operating system will attempt to bind to a\n         * random port. If `address` is not specified, the operating system will\n         * attempt to listen on all addresses. Once binding is complete, a `'listening'` event is emitted and the optional `callback` function is\n         * called.\n         *\n         * Specifying both a `'listening'` event listener and passing a `callback` to the `socket.bind()` method is not harmful but not very\n         * useful.\n         *\n         * A bound datagram socket keeps the Node.js process running to receive\n         * datagram messages.\n         *\n         * If binding fails, an `'error'` event is generated. In rare case (e.g.\n         * attempting to bind with a closed socket), an `Error` may be thrown.\n         *\n         * Example of a UDP server listening on port 41234:\n         *\n         * ```js\n         * import dgram from 'node:dgram';\n         *\n         * const server = dgram.createSocket('udp4');\n         *\n         * server.on('error', (err) => {\n         *   console.error(`server error:\\n${err.stack}`);\n         *   server.close();\n         * });\n         *\n         * server.on('message', (msg, rinfo) => {\n         *   console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`);\n         * });\n         *\n         * server.on('listening', () => {\n         *   const address = server.address();\n         *   console.log(`server listening ${address.address}:${address.port}`);\n         * });\n         *\n         * server.bind(41234);\n         * // Prints: server listening 0.0.0.0:41234\n         * ```\n         * @since v0.1.99\n         * @param callback with no parameters. Called when binding is complete.\n         */\n        bind(port?: number, address?: string, callback?: () => void): this;\n        bind(port?: number, callback?: () => void): this;\n        bind(callback?: () => void): this;\n        bind(options: BindOptions, callback?: () => void): this;\n        /**\n         * Close the underlying socket and stop listening for data on it. If a callback is\n         * provided, it is added as a listener for the `'close'` event.\n         * @since v0.1.99\n         * @param callback Called when the socket has been closed.\n         */\n        close(callback?: () => void): this;\n        /**\n         * Associates the `dgram.Socket` to a remote address and port. Every\n         * message sent by this handle is automatically sent to that destination. Also,\n         * the socket will only receive messages from that remote peer.\n         * Trying to call `connect()` on an already connected socket will result\n         * in an `ERR_SOCKET_DGRAM_IS_CONNECTED` exception. If `address` is not\n         * provided, `'127.0.0.1'` (for `udp4` sockets) or `'::1'` (for `udp6` sockets)\n         * will be used by default. Once the connection is complete, a `'connect'` event\n         * is emitted and the optional `callback` function is called. In case of failure,\n         * the `callback` is called or, failing this, an `'error'` event is emitted.\n         * @since v12.0.0\n         * @param callback Called when the connection is completed or on error.\n         */\n        connect(port: number, address?: string, callback?: () => void): void;\n        connect(port: number, callback: () => void): void;\n        /**\n         * A synchronous function that disassociates a connected `dgram.Socket` from\n         * its remote address. Trying to call `disconnect()` on an unbound or already\n         * disconnected socket will result in an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception.\n         * @since v12.0.0\n         */\n        disconnect(): void;\n        /**\n         * Instructs the kernel to leave a multicast group at `multicastAddress` using the `IP_DROP_MEMBERSHIP` socket option. This method is automatically called by the\n         * kernel when the socket is closed or the process terminates, so most apps will\n         * never have reason to call this.\n         *\n         * If `multicastInterface` is not specified, the operating system will attempt to\n         * drop membership on all valid interfaces.\n         * @since v0.6.9\n         */\n        dropMembership(multicastAddress: string, multicastInterface?: string): void;\n        /**\n         * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket.\n         * @since v8.7.0\n         * @return the `SO_RCVBUF` socket receive buffer size in bytes.\n         */\n        getRecvBufferSize(): number;\n        /**\n         * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket.\n         * @since v8.7.0\n         * @return the `SO_SNDBUF` socket send buffer size in bytes.\n         */\n        getSendBufferSize(): number;\n        /**\n         * @since v18.8.0, v16.19.0\n         * @return Number of bytes queued for sending.\n         */\n        getSendQueueSize(): number;\n        /**\n         * @since v18.8.0, v16.19.0\n         * @return Number of send requests currently in the queue awaiting to be processed.\n         */\n        getSendQueueCount(): number;\n        /**\n         * By default, binding a socket will cause it to block the Node.js process from\n         * exiting as long as the socket is open. The `socket.unref()` method can be used\n         * to exclude the socket from the reference counting that keeps the Node.js\n         * process active. The `socket.ref()` method adds the socket back to the reference\n         * counting and restores the default behavior.\n         *\n         * Calling `socket.ref()` multiples times will have no additional effect.\n         *\n         * The `socket.ref()` method returns a reference to the socket so calls can be\n         * chained.\n         * @since v0.9.1\n         */\n        ref(): this;\n        /**\n         * Returns an object containing the `address`, `family`, and `port` of the remote\n         * endpoint. This method throws an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception\n         * if the socket is not connected.\n         * @since v12.0.0\n         */\n        remoteAddress(): AddressInfo;\n        /**\n         * Broadcasts a datagram on the socket.\n         * For connectionless sockets, the destination `port` and `address` must be\n         * specified. Connected sockets, on the other hand, will use their associated\n         * remote endpoint, so the `port` and `address` arguments must not be set.\n         *\n         * The `msg` argument contains the message to be sent.\n         * Depending on its type, different behavior can apply. If `msg` is a `Buffer`,\n         * any `TypedArray` or a `DataView`,\n         * the `offset` and `length` specify the offset within the `Buffer` where the\n         * message begins and the number of bytes in the message, respectively.\n         * If `msg` is a `String`, then it is automatically converted to a `Buffer` with `'utf8'` encoding. With messages that\n         * contain multi-byte characters, `offset` and `length` will be calculated with\n         * respect to `byte length` and not the character position.\n         * If `msg` is an array, `offset` and `length` must not be specified.\n         *\n         * The `address` argument is a string. If the value of `address` is a host name,\n         * DNS will be used to resolve the address of the host. If `address` is not\n         * provided or otherwise nullish, `'127.0.0.1'` (for `udp4` sockets) or `'::1'` (for `udp6` sockets) will be used by default.\n         *\n         * If the socket has not been previously bound with a call to `bind`, the socket\n         * is assigned a random port number and is bound to the \"all interfaces\" address\n         * (`'0.0.0.0'` for `udp4` sockets, `'::0'` for `udp6` sockets.)\n         *\n         * An optional `callback` function may be specified to as a way of reporting\n         * DNS errors or for determining when it is safe to reuse the `buf` object.\n         * DNS lookups delay the time to send for at least one tick of the\n         * Node.js event loop.\n         *\n         * The only way to know for sure that the datagram has been sent is by using a `callback`. If an error occurs and a `callback` is given, the error will be\n         * passed as the first argument to the `callback`. If a `callback` is not given,\n         * the error is emitted as an `'error'` event on the `socket` object.\n         *\n         * Offset and length are optional but both _must_ be set if either are used.\n         * They are supported only when the first argument is a `Buffer`, a `TypedArray`,\n         * or a `DataView`.\n         *\n         * This method throws `ERR_SOCKET_BAD_PORT` if called on an unbound socket.\n         *\n         * Example of sending a UDP packet to a port on `localhost`;\n         *\n         * ```js\n         * import dgram from 'node:dgram';\n         * import { Buffer } from 'node:buffer';\n         *\n         * const message = Buffer.from('Some bytes');\n         * const client = dgram.createSocket('udp4');\n         * client.send(message, 41234, 'localhost', (err) => {\n         *   client.close();\n         * });\n         * ```\n         *\n         * Example of sending a UDP packet composed of multiple buffers to a port on`127.0.0.1`;\n         *\n         * ```js\n         * import dgram from 'node:dgram';\n         * import { Buffer } from 'node:buffer';\n         *\n         * const buf1 = Buffer.from('Some ');\n         * const buf2 = Buffer.from('bytes');\n         * const client = dgram.createSocket('udp4');\n         * client.send([buf1, buf2], 41234, (err) => {\n         *   client.close();\n         * });\n         * ```\n         *\n         * Sending multiple buffers might be faster or slower depending on the\n         * application and operating system. Run benchmarks to\n         * determine the optimal strategy on a case-by-case basis. Generally speaking,\n         * however, sending multiple buffers is faster.\n         *\n         * Example of sending a UDP packet using a socket connected to a port on `localhost`:\n         *\n         * ```js\n         * import dgram from 'node:dgram';\n         * import { Buffer } from 'node:buffer';\n         *\n         * const message = Buffer.from('Some bytes');\n         * const client = dgram.createSocket('udp4');\n         * client.connect(41234, 'localhost', (err) => {\n         *   client.send(message, (err) => {\n         *     client.close();\n         *   });\n         * });\n         * ```\n         * @since v0.1.99\n         * @param msg Message to be sent.\n         * @param offset Offset in the buffer where the message starts.\n         * @param length Number of bytes in the message.\n         * @param port Destination port.\n         * @param address Destination host name or IP address.\n         * @param callback Called when the message has been sent.\n         */\n        send(\n            msg: string | NodeJS.ArrayBufferView | readonly any[],\n            port?: number,\n            address?: string,\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        send(\n            msg: string | NodeJS.ArrayBufferView | readonly any[],\n            port?: number,\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        send(\n            msg: string | NodeJS.ArrayBufferView | readonly any[],\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        send(\n            msg: string | NodeJS.ArrayBufferView,\n            offset: number,\n            length: number,\n            port?: number,\n            address?: string,\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        send(\n            msg: string | NodeJS.ArrayBufferView,\n            offset: number,\n            length: number,\n            port?: number,\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        send(\n            msg: string | NodeJS.ArrayBufferView,\n            offset: number,\n            length: number,\n            callback?: (error: Error | null, bytes: number) => void,\n        ): void;\n        /**\n         * Sets or clears the `SO_BROADCAST` socket option. When set to `true`, UDP\n         * packets may be sent to a local interface's broadcast address.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         * @since v0.6.9\n         */\n        setBroadcast(flag: boolean): void;\n        /**\n         * _All references to scope in this section are referring to [IPv6 Zone Indices](https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses), which are defined by [RFC\n         * 4007](https://tools.ietf.org/html/rfc4007). In string form, an IP_\n         * _with a scope index is written as `'IP%scope'` where scope is an interface name_\n         * _or interface number._\n         *\n         * Sets the default outgoing multicast interface of the socket to a chosen\n         * interface or back to system interface selection. The `multicastInterface` must\n         * be a valid string representation of an IP from the socket's family.\n         *\n         * For IPv4 sockets, this should be the IP configured for the desired physical\n         * interface. All packets sent to multicast on the socket will be sent on the\n         * interface determined by the most recent successful use of this call.\n         *\n         * For IPv6 sockets, `multicastInterface` should include a scope to indicate the\n         * interface as in the examples that follow. In IPv6, individual `send` calls can\n         * also use explicit scope in addresses, so only packets sent to a multicast\n         * address without specifying an explicit scope are affected by the most recent\n         * successful use of this call.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         *\n         * #### Example: IPv6 outgoing multicast interface\n         *\n         * On most systems, where scope format uses the interface name:\n         *\n         * ```js\n         * const socket = dgram.createSocket('udp6');\n         *\n         * socket.bind(1234, () => {\n         *   socket.setMulticastInterface('::%eth1');\n         * });\n         * ```\n         *\n         * On Windows, where scope format uses an interface number:\n         *\n         * ```js\n         * const socket = dgram.createSocket('udp6');\n         *\n         * socket.bind(1234, () => {\n         *   socket.setMulticastInterface('::%2');\n         * });\n         * ```\n         *\n         * #### Example: IPv4 outgoing multicast interface\n         *\n         * All systems use an IP of the host on the desired physical interface:\n         *\n         * ```js\n         * const socket = dgram.createSocket('udp4');\n         *\n         * socket.bind(1234, () => {\n         *   socket.setMulticastInterface('10.0.0.2');\n         * });\n         * ```\n         * @since v8.6.0\n         */\n        setMulticastInterface(multicastInterface: string): void;\n        /**\n         * Sets or clears the `IP_MULTICAST_LOOP` socket option. When set to `true`,\n         * multicast packets will also be received on the local interface.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         * @since v0.3.8\n         */\n        setMulticastLoopback(flag: boolean): boolean;\n        /**\n         * Sets the `IP_MULTICAST_TTL` socket option. While TTL generally stands for\n         * \"Time to Live\", in this context it specifies the number of IP hops that a\n         * packet is allowed to travel through, specifically for multicast traffic. Each\n         * router or gateway that forwards a packet decrements the TTL. If the TTL is\n         * decremented to 0 by a router, it will not be forwarded.\n         *\n         * The `ttl` argument may be between 0 and 255\\. The default on most systems is `1`.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         * @since v0.3.8\n         */\n        setMulticastTTL(ttl: number): number;\n        /**\n         * Sets the `SO_RCVBUF` socket option. Sets the maximum socket receive buffer\n         * in bytes.\n         *\n         * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket.\n         * @since v8.7.0\n         */\n        setRecvBufferSize(size: number): void;\n        /**\n         * Sets the `SO_SNDBUF` socket option. Sets the maximum socket send buffer\n         * in bytes.\n         *\n         * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket.\n         * @since v8.7.0\n         */\n        setSendBufferSize(size: number): void;\n        /**\n         * Sets the `IP_TTL` socket option. While TTL generally stands for \"Time to Live\",\n         * in this context it specifies the number of IP hops that a packet is allowed to\n         * travel through. Each router or gateway that forwards a packet decrements the\n         * TTL. If the TTL is decremented to 0 by a router, it will not be forwarded.\n         * Changing TTL values is typically done for network probes or when multicasting.\n         *\n         * The `ttl` argument may be between 1 and 255\\. The default on most systems\n         * is 64.\n         *\n         * This method throws `EBADF` if called on an unbound socket.\n         * @since v0.1.101\n         */\n        setTTL(ttl: number): number;\n        /**\n         * By default, binding a socket will cause it to block the Node.js process from\n         * exiting as long as the socket is open. The `socket.unref()` method can be used\n         * to exclude the socket from the reference counting that keeps the Node.js\n         * process active, allowing the process to exit even if the socket is still\n         * listening.\n         *\n         * Calling `socket.unref()` multiple times will have no additional effect.\n         *\n         * The `socket.unref()` method returns a reference to the socket so calls can be\n         * chained.\n         * @since v0.9.1\n         */\n        unref(): this;\n        /**\n         * Tells the kernel to join a source-specific multicast channel at the given `sourceAddress` and `groupAddress`, using the `multicastInterface` with the `IP_ADD_SOURCE_MEMBERSHIP` socket\n         * option. If the `multicastInterface` argument\n         * is not specified, the operating system will choose one interface and will add\n         * membership to it. To add membership to every available interface, call `socket.addSourceSpecificMembership()` multiple times, once per interface.\n         *\n         * When called on an unbound socket, this method will implicitly bind to a random\n         * port, listening on all interfaces.\n         * @since v13.1.0, v12.16.0\n         */\n        addSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void;\n        /**\n         * Instructs the kernel to leave a source-specific multicast channel at the given `sourceAddress` and `groupAddress` using the `IP_DROP_SOURCE_MEMBERSHIP` socket option. This method is\n         * automatically called by the kernel when the\n         * socket is closed or the process terminates, so most apps will never have\n         * reason to call this.\n         *\n         * If `multicastInterface` is not specified, the operating system will attempt to\n         * drop membership on all valid interfaces.\n         * @since v13.1.0, v12.16.0\n         */\n        dropSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void;\n        /**\n         * events.EventEmitter\n         * 1. close\n         * 2. connect\n         * 3. error\n         * 4. listening\n         * 5. message\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"connect\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"listening\", listener: () => void): this;\n        addListener(event: \"message\", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"connect\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"listening\"): boolean;\n        emit(event: \"message\", msg: Buffer, rinfo: RemoteInfo): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"connect\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"listening\", listener: () => void): this;\n        on(event: \"message\", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"connect\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"listening\", listener: () => void): this;\n        once(event: \"message\", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"connect\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"listening\", listener: () => void): this;\n        prependListener(event: \"message\", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"connect\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"listening\", listener: () => void): this;\n        prependOnceListener(event: \"message\", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this;\n        /**\n         * Calls `socket.close()` and returns a promise that fulfills when the socket has closed.\n         * @since v20.5.0\n         */\n        [Symbol.asyncDispose](): Promise<void>;\n    }\n}\ndeclare module \"node:dgram\" {\n    export * from \"dgram\";\n}\n",
    "node_modules/@types/node/diagnostics_channel.d.ts": "/**\n * The `node:diagnostics_channel` module provides an API to create named channels\n * to report arbitrary message data for diagnostics purposes.\n *\n * It can be accessed using:\n *\n * ```js\n * import diagnostics_channel from 'node:diagnostics_channel';\n * ```\n *\n * It is intended that a module writer wanting to report diagnostics messages\n * will create one or many top-level channels to report messages through.\n * Channels may also be acquired at runtime but it is not encouraged\n * due to the additional overhead of doing so. Channels may be exported for\n * convenience, but as long as the name is known it can be acquired anywhere.\n *\n * If you intend for your module to produce diagnostics data for others to\n * consume it is recommended that you include documentation of what named\n * channels are used along with the shape of the message data. Channel names\n * should generally include the module name to avoid collisions with data from\n * other modules.\n * @since v15.1.0, v14.17.0\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/diagnostics_channel.js)\n */\ndeclare module \"diagnostics_channel\" {\n    import { AsyncLocalStorage } from \"node:async_hooks\";\n    /**\n     * Check if there are active subscribers to the named channel. This is helpful if\n     * the message you want to send might be expensive to prepare.\n     *\n     * This API is optional but helpful when trying to publish messages from very\n     * performance-sensitive code.\n     *\n     * ```js\n     * import diagnostics_channel from 'node:diagnostics_channel';\n     *\n     * if (diagnostics_channel.hasSubscribers('my-channel')) {\n     *   // There are subscribers, prepare and publish message\n     * }\n     * ```\n     * @since v15.1.0, v14.17.0\n     * @param name The channel name\n     * @return If there are active subscribers\n     */\n    function hasSubscribers(name: string | symbol): boolean;\n    /**\n     * This is the primary entry-point for anyone wanting to publish to a named\n     * channel. It produces a channel object which is optimized to reduce overhead at\n     * publish time as much as possible.\n     *\n     * ```js\n     * import diagnostics_channel from 'node:diagnostics_channel';\n     *\n     * const channel = diagnostics_channel.channel('my-channel');\n     * ```\n     * @since v15.1.0, v14.17.0\n     * @param name The channel name\n     * @return The named channel object\n     */\n    function channel(name: string | symbol): Channel;\n    type ChannelListener = (message: unknown, name: string | symbol) => void;\n    /**\n     * Register a message handler to subscribe to this channel. This message handler\n     * will be run synchronously whenever a message is published to the channel. Any\n     * errors thrown in the message handler will trigger an `'uncaughtException'`.\n     *\n     * ```js\n     * import diagnostics_channel from 'node:diagnostics_channel';\n     *\n     * diagnostics_channel.subscribe('my-channel', (message, name) => {\n     *   // Received data\n     * });\n     * ```\n     * @since v18.7.0, v16.17.0\n     * @param name The channel name\n     * @param onMessage The handler to receive channel messages\n     */\n    function subscribe(name: string | symbol, onMessage: ChannelListener): void;\n    /**\n     * Remove a message handler previously registered to this channel with {@link subscribe}.\n     *\n     * ```js\n     * import diagnostics_channel from 'node:diagnostics_channel';\n     *\n     * function onMessage(message, name) {\n     *   // Received data\n     * }\n     *\n     * diagnostics_channel.subscribe('my-channel', onMessage);\n     *\n     * diagnostics_channel.unsubscribe('my-channel', onMessage);\n     * ```\n     * @since v18.7.0, v16.17.0\n     * @param name The channel name\n     * @param onMessage The previous subscribed handler to remove\n     * @return `true` if the handler was found, `false` otherwise.\n     */\n    function unsubscribe(name: string | symbol, onMessage: ChannelListener): boolean;\n    /**\n     * Creates a `TracingChannel` wrapper for the given `TracingChannel Channels`. If a name is given, the corresponding tracing\n     * channels will be created in the form of `tracing:${name}:${eventType}` where `eventType` corresponds to the types of `TracingChannel Channels`.\n     *\n     * ```js\n     * import diagnostics_channel from 'node:diagnostics_channel';\n     *\n     * const channelsByName = diagnostics_channel.tracingChannel('my-channel');\n     *\n     * // or...\n     *\n     * const channelsByCollection = diagnostics_channel.tracingChannel({\n     *   start: diagnostics_channel.channel('tracing:my-channel:start'),\n     *   end: diagnostics_channel.channel('tracing:my-channel:end'),\n     *   asyncStart: diagnostics_channel.channel('tracing:my-channel:asyncStart'),\n     *   asyncEnd: diagnostics_channel.channel('tracing:my-channel:asyncEnd'),\n     *   error: diagnostics_channel.channel('tracing:my-channel:error'),\n     * });\n     * ```\n     * @since v19.9.0\n     * @experimental\n     * @param nameOrChannels Channel name or object containing all the `TracingChannel Channels`\n     * @return Collection of channels to trace with\n     */\n    function tracingChannel<\n        StoreType = unknown,\n        ContextType extends object = StoreType extends object ? StoreType : object,\n    >(\n        nameOrChannels: string | TracingChannelCollection<StoreType, ContextType>,\n    ): TracingChannel<StoreType, ContextType>;\n    /**\n     * The class `Channel` represents an individual named channel within the data\n     * pipeline. It is used to track subscribers and to publish messages when there\n     * are subscribers present. It exists as a separate object to avoid channel\n     * lookups at publish time, enabling very fast publish speeds and allowing\n     * for heavy use while incurring very minimal cost. Channels are created with {@link channel}, constructing a channel directly\n     * with `new Channel(name)` is not supported.\n     * @since v15.1.0, v14.17.0\n     */\n    class Channel<StoreType = unknown, ContextType = StoreType> {\n        readonly name: string | symbol;\n        /**\n         * Check if there are active subscribers to this channel. This is helpful if\n         * the message you want to send might be expensive to prepare.\n         *\n         * This API is optional but helpful when trying to publish messages from very\n         * performance-sensitive code.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * if (channel.hasSubscribers) {\n         *   // There are subscribers, prepare and publish message\n         * }\n         * ```\n         * @since v15.1.0, v14.17.0\n         */\n        readonly hasSubscribers: boolean;\n        private constructor(name: string | symbol);\n        /**\n         * Publish a message to any subscribers to the channel. This will trigger\n         * message handlers synchronously so they will execute within the same context.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * channel.publish({\n         *   some: 'message',\n         * });\n         * ```\n         * @since v15.1.0, v14.17.0\n         * @param message The message to send to the channel subscribers\n         */\n        publish(message: unknown): void;\n        /**\n         * Register a message handler to subscribe to this channel. This message handler\n         * will be run synchronously whenever a message is published to the channel. Any\n         * errors thrown in the message handler will trigger an `'uncaughtException'`.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * channel.subscribe((message, name) => {\n         *   // Received data\n         * });\n         * ```\n         * @since v15.1.0, v14.17.0\n         * @deprecated Since v18.7.0,v16.17.0 - Use {@link subscribe(name, onMessage)}\n         * @param onMessage The handler to receive channel messages\n         */\n        subscribe(onMessage: ChannelListener): void;\n        /**\n         * Remove a message handler previously registered to this channel with `channel.subscribe(onMessage)`.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * function onMessage(message, name) {\n         *   // Received data\n         * }\n         *\n         * channel.subscribe(onMessage);\n         *\n         * channel.unsubscribe(onMessage);\n         * ```\n         * @since v15.1.0, v14.17.0\n         * @deprecated Since v18.7.0,v16.17.0 - Use {@link unsubscribe(name, onMessage)}\n         * @param onMessage The previous subscribed handler to remove\n         * @return `true` if the handler was found, `false` otherwise.\n         */\n        unsubscribe(onMessage: ChannelListener): void;\n        /**\n         * When `channel.runStores(context, ...)` is called, the given context data\n         * will be applied to any store bound to the channel. If the store has already been\n         * bound the previous `transform` function will be replaced with the new one.\n         * The `transform` function may be omitted to set the given context data as the\n         * context directly.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         * import { AsyncLocalStorage } from 'node:async_hooks';\n         *\n         * const store = new AsyncLocalStorage();\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * channel.bindStore(store, (data) => {\n         *   return { data };\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param store The store to which to bind the context data\n         * @param transform Transform context data before setting the store context\n         */\n        bindStore(store: AsyncLocalStorage<StoreType>, transform?: (context: ContextType) => StoreType): void;\n        /**\n         * Remove a message handler previously registered to this channel with `channel.bindStore(store)`.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         * import { AsyncLocalStorage } from 'node:async_hooks';\n         *\n         * const store = new AsyncLocalStorage();\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * channel.bindStore(store);\n         * channel.unbindStore(store);\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param store The store to unbind from the channel.\n         * @return `true` if the store was found, `false` otherwise.\n         */\n        unbindStore(store: AsyncLocalStorage<StoreType>): boolean;\n        /**\n         * Applies the given data to any AsyncLocalStorage instances bound to the channel\n         * for the duration of the given function, then publishes to the channel within\n         * the scope of that data is applied to the stores.\n         *\n         * If a transform function was given to `channel.bindStore(store)` it will be\n         * applied to transform the message data before it becomes the context value for\n         * the store. The prior storage context is accessible from within the transform\n         * function in cases where context linking is required.\n         *\n         * The context applied to the store should be accessible in any async code which\n         * continues from execution which began during the given function, however\n         * there are some situations in which `context loss` may occur.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         * import { AsyncLocalStorage } from 'node:async_hooks';\n         *\n         * const store = new AsyncLocalStorage();\n         *\n         * const channel = diagnostics_channel.channel('my-channel');\n         *\n         * channel.bindStore(store, (message) => {\n         *   const parent = store.getStore();\n         *   return new Span(message, parent);\n         * });\n         * channel.runStores({ some: 'message' }, () => {\n         *   store.getStore(); // Span({ some: 'message' })\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param context Message to send to subscribers and bind to stores\n         * @param fn Handler to run within the entered storage context\n         * @param thisArg The receiver to be used for the function call.\n         * @param args Optional arguments to pass to the function.\n         */\n        runStores<ThisArg = any, Args extends any[] = any[], Result = any>(\n            context: ContextType,\n            fn: (this: ThisArg, ...args: Args) => Result,\n            thisArg?: ThisArg,\n            ...args: Args\n        ): Result;\n    }\n    interface TracingChannelSubscribers<ContextType extends object> {\n        start: (message: ContextType) => void;\n        end: (\n            message: ContextType & {\n                error?: unknown;\n                result?: unknown;\n            },\n        ) => void;\n        asyncStart: (\n            message: ContextType & {\n                error?: unknown;\n                result?: unknown;\n            },\n        ) => void;\n        asyncEnd: (\n            message: ContextType & {\n                error?: unknown;\n                result?: unknown;\n            },\n        ) => void;\n        error: (\n            message: ContextType & {\n                error: unknown;\n            },\n        ) => void;\n    }\n    interface TracingChannelCollection<StoreType = unknown, ContextType = StoreType> {\n        start: Channel<StoreType, ContextType>;\n        end: Channel<StoreType, ContextType>;\n        asyncStart: Channel<StoreType, ContextType>;\n        asyncEnd: Channel<StoreType, ContextType>;\n        error: Channel<StoreType, ContextType>;\n    }\n    /**\n     * The class `TracingChannel` is a collection of `TracingChannel Channels` which\n     * together express a single traceable action. It is used to formalize and\n     * simplify the process of producing events for tracing application flow. {@link tracingChannel} is used to construct a `TracingChannel`. As with `Channel` it is recommended to create and reuse a\n     * single `TracingChannel` at the top-level of the file rather than creating them\n     * dynamically.\n     * @since v19.9.0\n     * @experimental\n     */\n    class TracingChannel<StoreType = unknown, ContextType extends object = {}> implements TracingChannelCollection {\n        start: Channel<StoreType, ContextType>;\n        end: Channel<StoreType, ContextType>;\n        asyncStart: Channel<StoreType, ContextType>;\n        asyncEnd: Channel<StoreType, ContextType>;\n        error: Channel<StoreType, ContextType>;\n        /**\n         * Helper to subscribe a collection of functions to the corresponding channels.\n         * This is the same as calling `channel.subscribe(onMessage)` on each channel\n         * individually.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * channels.subscribe({\n         *   start(message) {\n         *     // Handle start message\n         *   },\n         *   end(message) {\n         *     // Handle end message\n         *   },\n         *   asyncStart(message) {\n         *     // Handle asyncStart message\n         *   },\n         *   asyncEnd(message) {\n         *     // Handle asyncEnd message\n         *   },\n         *   error(message) {\n         *     // Handle error message\n         *   },\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param subscribers Set of `TracingChannel Channels` subscribers\n         */\n        subscribe(subscribers: TracingChannelSubscribers<ContextType>): void;\n        /**\n         * Helper to unsubscribe a collection of functions from the corresponding channels.\n         * This is the same as calling `channel.unsubscribe(onMessage)` on each channel\n         * individually.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * channels.unsubscribe({\n         *   start(message) {\n         *     // Handle start message\n         *   },\n         *   end(message) {\n         *     // Handle end message\n         *   },\n         *   asyncStart(message) {\n         *     // Handle asyncStart message\n         *   },\n         *   asyncEnd(message) {\n         *     // Handle asyncEnd message\n         *   },\n         *   error(message) {\n         *     // Handle error message\n         *   },\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param subscribers Set of `TracingChannel Channels` subscribers\n         * @return `true` if all handlers were successfully unsubscribed, and `false` otherwise.\n         */\n        unsubscribe(subscribers: TracingChannelSubscribers<ContextType>): void;\n        /**\n         * Trace a synchronous function call. This will always produce a `start event` and `end event` around the execution and may produce an `error event` if the given function throws an error.\n         * This will run the given function using `channel.runStores(context, ...)` on the `start` channel which ensures all\n         * events should have any bound stores set to match this trace context.\n         *\n         * To ensure only correct trace graphs are formed, events will only be published if subscribers are present prior to starting the trace. Subscriptions\n         * which are added after the trace begins will not receive future events from that trace, only future traces will be seen.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * channels.traceSync(() => {\n         *   // Do something\n         * }, {\n         *   some: 'thing',\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param fn Function to wrap a trace around\n         * @param context Shared object to correlate events through\n         * @param thisArg The receiver to be used for the function call\n         * @param args Optional arguments to pass to the function\n         * @return The return value of the given function\n         */\n        traceSync<ThisArg = any, Args extends any[] = any[], Result = any>(\n            fn: (this: ThisArg, ...args: Args) => Result,\n            context?: ContextType,\n            thisArg?: ThisArg,\n            ...args: Args\n        ): Result;\n        /**\n         * Trace a promise-returning function call. This will always produce a `start event` and `end event` around the synchronous portion of the\n         * function execution, and will produce an `asyncStart event` and `asyncEnd event` when a promise continuation is reached. It may also\n         * produce an `error event` if the given function throws an error or the\n         * returned promise rejects. This will run the given function using `channel.runStores(context, ...)` on the `start` channel which ensures all\n         * events should have any bound stores set to match this trace context.\n         *\n         * To ensure only correct trace graphs are formed, events will only be published if subscribers are present prior to starting the trace. Subscriptions\n         * which are added after the trace begins will not receive future events from that trace, only future traces will be seen.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * channels.tracePromise(async () => {\n         *   // Do something\n         * }, {\n         *   some: 'thing',\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param fn Promise-returning function to wrap a trace around\n         * @param context Shared object to correlate trace events through\n         * @param thisArg The receiver to be used for the function call\n         * @param args Optional arguments to pass to the function\n         * @return Chained from promise returned by the given function\n         */\n        tracePromise<ThisArg = any, Args extends any[] = any[], Result = any>(\n            fn: (this: ThisArg, ...args: Args) => Promise<Result>,\n            context?: ContextType,\n            thisArg?: ThisArg,\n            ...args: Args\n        ): Promise<Result>;\n        /**\n         * Trace a callback-receiving function call. This will always produce a `start event` and `end event` around the synchronous portion of the\n         * function execution, and will produce a `asyncStart event` and `asyncEnd event` around the callback execution. It may also produce an `error event` if the given function throws an error or\n         * the returned\n         * promise rejects. This will run the given function using `channel.runStores(context, ...)` on the `start` channel which ensures all\n         * events should have any bound stores set to match this trace context.\n         *\n         * The `position` will be -1 by default to indicate the final argument should\n         * be used as the callback.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * channels.traceCallback((arg1, callback) => {\n         *   // Do something\n         *   callback(null, 'result');\n         * }, 1, {\n         *   some: 'thing',\n         * }, thisArg, arg1, callback);\n         * ```\n         *\n         * The callback will also be run with `channel.runStores(context, ...)` which\n         * enables context loss recovery in some cases.\n         *\n         * To ensure only correct trace graphs are formed, events will only be published if subscribers are present prior to starting the trace. Subscriptions\n         * which are added after the trace begins will not receive future events from that trace, only future traces will be seen.\n         *\n         * ```js\n         * import diagnostics_channel from 'node:diagnostics_channel';\n         * import { AsyncLocalStorage } from 'node:async_hooks';\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         * const myStore = new AsyncLocalStorage();\n         *\n         * // The start channel sets the initial store data to something\n         * // and stores that store data value on the trace context object\n         * channels.start.bindStore(myStore, (data) => {\n         *   const span = new Span(data);\n         *   data.span = span;\n         *   return span;\n         * });\n         *\n         * // Then asyncStart can restore from that data it stored previously\n         * channels.asyncStart.bindStore(myStore, (data) => {\n         *   return data.span;\n         * });\n         * ```\n         * @since v19.9.0\n         * @experimental\n         * @param fn callback using function to wrap a trace around\n         * @param position Zero-indexed argument position of expected callback\n         * @param context Shared object to correlate trace events through\n         * @param thisArg The receiver to be used for the function call\n         * @param args Optional arguments to pass to the function\n         * @return The return value of the given function\n         */\n        traceCallback<ThisArg = any, Args extends any[] = any[], Result = any>(\n            fn: (this: ThisArg, ...args: Args) => Result,\n            position?: number,\n            context?: ContextType,\n            thisArg?: ThisArg,\n            ...args: Args\n        ): Result;\n        /**\n         * `true` if any of the individual channels has a subscriber, `false` if not.\n         *\n         * This is a helper method available on a {@link TracingChannel} instance to check\n         * if any of the [TracingChannel Channels](https://nodejs.org/api/diagnostics_channel.html#tracingchannel-channels) have subscribers.\n         * A `true` is returned if any of them have at least one subscriber, a `false` is returned otherwise.\n         *\n         * ```js\n         * const diagnostics_channel = require('node:diagnostics_channel');\n         *\n         * const channels = diagnostics_channel.tracingChannel('my-channel');\n         *\n         * if (channels.hasSubscribers) {\n         *   // Do something\n         * }\n         * ```\n         * @since v22.0.0, v20.13.0\n         */\n        readonly hasSubscribers: boolean;\n    }\n}\ndeclare module \"node:diagnostics_channel\" {\n    export * from \"diagnostics_channel\";\n}\n",
    "node_modules/@types/node/dns/promises.d.ts": "/**\n * The `dns.promises` API provides an alternative set of asynchronous DNS methods\n * that return `Promise` objects rather than using callbacks. The API is accessible\n * via `import { promises as dnsPromises } from 'node:dns'` or `import dnsPromises from 'node:dns/promises'`.\n * @since v10.6.0\n */\ndeclare module \"dns/promises\" {\n    import {\n        AnyRecord,\n        CaaRecord,\n        LookupAddress,\n        LookupAllOptions,\n        LookupOneOptions,\n        LookupOptions,\n        MxRecord,\n        NaptrRecord,\n        RecordWithTtl,\n        ResolveOptions,\n        ResolverOptions,\n        ResolveWithTtlOptions,\n        SoaRecord,\n        SrvRecord,\n        TlsaRecord,\n    } from \"node:dns\";\n    /**\n     * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6),\n     * that are currently configured for DNS resolution. A string will include a port\n     * section if a custom port is used.\n     *\n     * ```js\n     * [\n     *   '4.4.4.4',\n     *   '2001:4860:4860::8888',\n     *   '4.4.4.4:1053',\n     *   '[2001:4860:4860::8888]:1053',\n     * ]\n     * ```\n     * @since v10.6.0\n     */\n    function getServers(): string[];\n    /**\n     * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or\n     * AAAA (IPv6) record. All `option` properties are optional. If `options` is an\n     * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4\n     * and IPv6 addresses are both returned if found.\n     *\n     * With the `all` option set to `true`, the `Promise` is resolved with `addresses` being an array of objects with the properties `address` and `family`.\n     *\n     * On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is the error code.\n     * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when\n     * the host name does not exist but also when the lookup fails in other ways\n     * such as no available file descriptors.\n     *\n     * [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options) does not necessarily have anything to do with the DNS\n     * protocol. The implementation uses an operating system facility that can\n     * associate names with addresses and vice versa. This implementation can have\n     * subtle but important consequences on the behavior of any Node.js program. Please\n     * take some time to consult the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations) before\n     * using `dnsPromises.lookup()`.\n     *\n     * Example usage:\n     *\n     * ```js\n     * import dns from 'node:dns';\n     * const dnsPromises = dns.promises;\n     * const options = {\n     *   family: 6,\n     *   hints: dns.ADDRCONFIG | dns.V4MAPPED,\n     * };\n     *\n     * dnsPromises.lookup('example.com', options).then((result) => {\n     *   console.log('address: %j family: IPv%s', result.address, result.family);\n     *   // address: \"2606:2800:220:1:248:1893:25c8:1946\" family: IPv6\n     * });\n     *\n     * // When options.all is true, the result will be an Array.\n     * options.all = true;\n     * dnsPromises.lookup('example.com', options).then((result) => {\n     *   console.log('addresses: %j', result);\n     *   // addresses: [{\"address\":\"2606:2800:220:1:248:1893:25c8:1946\",\"family\":6}]\n     * });\n     * ```\n     * @since v10.6.0\n     */\n    function lookup(hostname: string, family: number): Promise<LookupAddress>;\n    function lookup(hostname: string, options: LookupOneOptions): Promise<LookupAddress>;\n    function lookup(hostname: string, options: LookupAllOptions): Promise<LookupAddress[]>;\n    function lookup(hostname: string, options: LookupOptions): Promise<LookupAddress | LookupAddress[]>;\n    function lookup(hostname: string): Promise<LookupAddress>;\n    /**\n     * Resolves the given `address` and `port` into a host name and service using\n     * the operating system's underlying `getnameinfo` implementation.\n     *\n     * If `address` is not a valid IP address, a `TypeError` will be thrown.\n     * The `port` will be coerced to a number. If it is not a legal port, a `TypeError` will be thrown.\n     *\n     * On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is the error code.\n     *\n     * ```js\n     * import dnsPromises from 'node:dns';\n     * dnsPromises.lookupService('127.0.0.1', 22).then((result) => {\n     *   console.log(result.hostname, result.service);\n     *   // Prints: localhost ssh\n     * });\n     * ```\n     * @since v10.6.0\n     */\n    function lookupService(\n        address: string,\n        port: number,\n    ): Promise<{\n        hostname: string;\n        service: string;\n    }>;\n    /**\n     * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array\n     * of the resource records. When successful, the `Promise` is resolved with an\n     * array of resource records. The type and structure of individual results vary\n     * based on `rrtype`:\n     *\n     * <omitted>\n     *\n     * On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code`\n     * is one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).\n     * @since v10.6.0\n     * @param hostname Host name to resolve.\n     * @param [rrtype='A'] Resource record type.\n     */\n    function resolve(hostname: string): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"A\"): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"AAAA\"): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"ANY\"): Promise<AnyRecord[]>;\n    function resolve(hostname: string, rrtype: \"CAA\"): Promise<CaaRecord[]>;\n    function resolve(hostname: string, rrtype: \"CNAME\"): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"MX\"): Promise<MxRecord[]>;\n    function resolve(hostname: string, rrtype: \"NAPTR\"): Promise<NaptrRecord[]>;\n    function resolve(hostname: string, rrtype: \"NS\"): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"PTR\"): Promise<string[]>;\n    function resolve(hostname: string, rrtype: \"SOA\"): Promise<SoaRecord>;\n    function resolve(hostname: string, rrtype: \"SRV\"): Promise<SrvRecord[]>;\n    function resolve(hostname: string, rrtype: \"TLSA\"): Promise<TlsaRecord[]>;\n    function resolve(hostname: string, rrtype: \"TXT\"): Promise<string[][]>;\n    function resolve(\n        hostname: string,\n        rrtype: string,\n    ): Promise<\n        string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | TlsaRecord[] | string[][] | AnyRecord[]\n    >;\n    /**\n     * Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the `hostname`. On success, the `Promise` is resolved with an array of IPv4\n     * addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']`).\n     * @since v10.6.0\n     * @param hostname Host name to resolve.\n     */\n    function resolve4(hostname: string): Promise<string[]>;\n    function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;\n    function resolve4(hostname: string, options: ResolveOptions): Promise<string[] | RecordWithTtl[]>;\n    /**\n     * Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. On success, the `Promise` is resolved with an array of IPv6\n     * addresses.\n     * @since v10.6.0\n     * @param hostname Host name to resolve.\n     */\n    function resolve6(hostname: string): Promise<string[]>;\n    function resolve6(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;\n    function resolve6(hostname: string, options: ResolveOptions): Promise<string[] | RecordWithTtl[]>;\n    /**\n     * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).\n     * On success, the `Promise` is resolved with an array containing various types of\n     * records. Each object has a property `type` that indicates the type of the\n     * current record. And depending on the `type`, additional properties will be\n     * present on the object:\n     *\n     * <omitted>\n     *\n     * Here is an example of the result object:\n     *\n     * ```js\n     * [ { type: 'A', address: '127.0.0.1', ttl: 299 },\n     *   { type: 'CNAME', value: 'example.com' },\n     *   { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },\n     *   { type: 'NS', value: 'ns1.example.com' },\n     *   { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },\n     *   { type: 'SOA',\n     *     nsname: 'ns1.example.com',\n     *     hostmaster: 'admin.example.com',\n     *     serial: 156696742,\n     *     refresh: 900,\n     *     retry: 900,\n     *     expire: 1800,\n     *     minttl: 60 } ]\n     * ```\n     * @since v10.6.0\n     */\n    function resolveAny(hostname: string): Promise<AnyRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve `CAA` records for the `hostname`. On success,\n     * the `Promise` is resolved with an array of objects containing available\n     * certification authority authorization records available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'},{critical: 128, issue: 'pki.example.com'}]`).\n     * @since v15.0.0, v14.17.0\n     */\n    function resolveCaa(hostname: string): Promise<CaaRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. On success,\n     * the `Promise` is resolved with an array of canonical name records available for\n     * the `hostname` (e.g. `['bar.example.com']`).\n     * @since v10.6.0\n     */\n    function resolveCname(hostname: string): Promise<string[]>;\n    /**\n     * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the `hostname`. On success, the `Promise` is resolved with an array of objects\n     * containing both a `priority` and `exchange` property (e.g.`[{priority: 10, exchange: 'mx.example.com'}, ...]`).\n     * @since v10.6.0\n     */\n    function resolveMx(hostname: string): Promise<MxRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. On success, the `Promise` is resolved with an array\n     * of objects with the following properties:\n     *\n     * * `flags`\n     * * `service`\n     * * `regexp`\n     * * `replacement`\n     * * `order`\n     * * `preference`\n     *\n     * ```js\n     * {\n     *   flags: 's',\n     *   service: 'SIP+D2U',\n     *   regexp: '',\n     *   replacement: '_sip._udp.example.com',\n     *   order: 30,\n     *   preference: 100\n     * }\n     * ```\n     * @since v10.6.0\n     */\n    function resolveNaptr(hostname: string): Promise<NaptrRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve name server records (`NS` records) for the `hostname`. On success, the `Promise` is resolved with an array of name server\n     * records available for `hostname` (e.g.`['ns1.example.com', 'ns2.example.com']`).\n     * @since v10.6.0\n     */\n    function resolveNs(hostname: string): Promise<string[]>;\n    /**\n     * Uses the DNS protocol to resolve pointer records (`PTR` records) for the `hostname`. On success, the `Promise` is resolved with an array of strings\n     * containing the reply records.\n     * @since v10.6.0\n     */\n    function resolvePtr(hostname: string): Promise<string[]>;\n    /**\n     * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for\n     * the `hostname`. On success, the `Promise` is resolved with an object with the\n     * following properties:\n     *\n     * * `nsname`\n     * * `hostmaster`\n     * * `serial`\n     * * `refresh`\n     * * `retry`\n     * * `expire`\n     * * `minttl`\n     *\n     * ```js\n     * {\n     *   nsname: 'ns.example.com',\n     *   hostmaster: 'root.example.com',\n     *   serial: 2013101809,\n     *   refresh: 10000,\n     *   retry: 2400,\n     *   expire: 604800,\n     *   minttl: 3600\n     * }\n     * ```\n     * @since v10.6.0\n     */\n    function resolveSoa(hostname: string): Promise<SoaRecord>;\n    /**\n     * Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. On success, the `Promise` is resolved with an array of objects with\n     * the following properties:\n     *\n     * * `priority`\n     * * `weight`\n     * * `port`\n     * * `name`\n     *\n     * ```js\n     * {\n     *   priority: 10,\n     *   weight: 5,\n     *   port: 21223,\n     *   name: 'service.example.com'\n     * }\n     * ```\n     * @since v10.6.0\n     */\n    function resolveSrv(hostname: string): Promise<SrvRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve certificate associations (`TLSA` records) for\n     * the `hostname`. On success, the `Promise` is resolved with an array of objectsAdd commentMore actions\n     * with these properties:\n     *\n     * * `certUsage`\n     * * `selector`\n     * * `match`\n     * * `data`\n     *\n     * ```js\n     * {\n     *   certUsage: 3,\n     *   selector: 1,\n     *   match: 1,\n     *   data: [ArrayBuffer]\n     * }\n     * ```\n     * @since v22.15.0\n     */\n    function resolveTlsa(hostname: string): Promise<TlsaRecord[]>;\n    /**\n     * Uses the DNS protocol to resolve text queries (`TXT` records) for the `hostname`. On success, the `Promise` is resolved with a two-dimensional array\n     * of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of\n     * one record. Depending on the use case, these could be either joined together or\n     * treated separately.\n     * @since v10.6.0\n     */\n    function resolveTxt(hostname: string): Promise<string[][]>;\n    /**\n     * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an\n     * array of host names.\n     *\n     * On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code`\n     * is one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).\n     * @since v10.6.0\n     */\n    function reverse(ip: string): Promise<string[]>;\n    /**\n     * Get the default value for `verbatim` in {@link lookup} and [dnsPromises.lookup()](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).\n     * The value could be:\n     *\n     * * `ipv4first`: for `verbatim` defaulting to `false`.\n     * * `verbatim`: for `verbatim` defaulting to `true`.\n     * @since v20.1.0\n     */\n    function getDefaultResultOrder(): \"ipv4first\" | \"verbatim\";\n    /**\n     * Sets the IP address and port of servers to be used when performing DNS\n     * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted\n     * addresses. If the port is the IANA default DNS port (53) it can be omitted.\n     *\n     * ```js\n     * dnsPromises.setServers([\n     *   '4.4.4.4',\n     *   '[2001:4860:4860::8888]',\n     *   '4.4.4.4:1053',\n     *   '[2001:4860:4860::8888]:1053',\n     * ]);\n     * ```\n     *\n     * An error will be thrown if an invalid address is provided.\n     *\n     * The `dnsPromises.setServers()` method must not be called while a DNS query is in\n     * progress.\n     *\n     * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).\n     * That is, if attempting to resolve with the first server provided results in a `NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with\n     * subsequent servers provided. Fallback DNS servers will only be used if the\n     * earlier ones time out or result in some other error.\n     * @since v10.6.0\n     * @param servers array of `RFC 5952` formatted addresses\n     */\n    function setServers(servers: readonly string[]): void;\n    /**\n     * Set the default value of `order` in `dns.lookup()` and `{@link lookup}`. The value could be:\n     *\n     * * `ipv4first`: sets default `order` to `ipv4first`.\n     * * `ipv6first`: sets default `order` to `ipv6first`.\n     * * `verbatim`: sets default `order` to `verbatim`.\n     *\n     * The default is `verbatim` and [dnsPromises.setDefaultResultOrder()](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetdefaultresultorderorder)\n     * have higher priority than [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder).\n     * When using [worker threads](https://nodejs.org/docs/latest-v20.x/api/worker_threads.html), [`dnsPromises.setDefaultResultOrder()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetdefaultresultorderorder)\n     * from the main thread won't affect the default dns orders in workers.\n     * @since v16.4.0, v14.18.0\n     * @param order must be `'ipv4first'`, `'ipv6first'` or `'verbatim'`.\n     */\n    function setDefaultResultOrder(order: \"ipv4first\" | \"ipv6first\" | \"verbatim\"): void;\n    // Error codes\n    const NODATA: \"ENODATA\";\n    const FORMERR: \"EFORMERR\";\n    const SERVFAIL: \"ESERVFAIL\";\n    const NOTFOUND: \"ENOTFOUND\";\n    const NOTIMP: \"ENOTIMP\";\n    const REFUSED: \"EREFUSED\";\n    const BADQUERY: \"EBADQUERY\";\n    const BADNAME: \"EBADNAME\";\n    const BADFAMILY: \"EBADFAMILY\";\n    const BADRESP: \"EBADRESP\";\n    const CONNREFUSED: \"ECONNREFUSED\";\n    const TIMEOUT: \"ETIMEOUT\";\n    const EOF: \"EOF\";\n    const FILE: \"EFILE\";\n    const NOMEM: \"ENOMEM\";\n    const DESTRUCTION: \"EDESTRUCTION\";\n    const BADSTR: \"EBADSTR\";\n    const BADFLAGS: \"EBADFLAGS\";\n    const NONAME: \"ENONAME\";\n    const BADHINTS: \"EBADHINTS\";\n    const NOTINITIALIZED: \"ENOTINITIALIZED\";\n    const LOADIPHLPAPI: \"ELOADIPHLPAPI\";\n    const ADDRGETNETWORKPARAMS: \"EADDRGETNETWORKPARAMS\";\n    const CANCELLED: \"ECANCELLED\";\n\n    /**\n     * An independent resolver for DNS requests.\n     *\n     * Creating a new resolver uses the default server settings. Setting\n     * the servers used for a resolver using [`resolver.setServers()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetserversservers) does not affect\n     * other resolvers:\n     *\n     * ```js\n     * import { promises } from 'node:dns';\n     * const resolver = new promises.Resolver();\n     * resolver.setServers(['4.4.4.4']);\n     *\n     * // This request will use the server at 4.4.4.4, independent of global settings.\n     * resolver.resolve4('example.org').then((addresses) => {\n     *   // ...\n     * });\n     *\n     * // Alternatively, the same code can be written using async-await style.\n     * (async function() {\n     *   const addresses = await resolver.resolve4('example.org');\n     * })();\n     * ```\n     *\n     * The following methods from the `dnsPromises` API are available:\n     *\n     * * `resolver.getServers()`\n     * * `resolver.resolve()`\n     * * `resolver.resolve4()`\n     * * `resolver.resolve6()`\n     * * `resolver.resolveAny()`\n     * * `resolver.resolveCaa()`\n     * * `resolver.resolveCname()`\n     * * `resolver.resolveMx()`\n     * * `resolver.resolveNaptr()`\n     * * `resolver.resolveNs()`\n     * * `resolver.resolvePtr()`\n     * * `resolver.resolveSoa()`\n     * * `resolver.resolveSrv()`\n     * * `resolver.resolveTxt()`\n     * * `resolver.reverse()`\n     * * `resolver.setServers()`\n     * @since v10.6.0\n     */\n    class Resolver {\n        constructor(options?: ResolverOptions);\n        /**\n         * Cancel all outstanding DNS queries made by this resolver. The corresponding\n         * callbacks will be called with an error with code `ECANCELLED`.\n         * @since v8.3.0\n         */\n        cancel(): void;\n        getServers: typeof getServers;\n        resolve: typeof resolve;\n        resolve4: typeof resolve4;\n        resolve6: typeof resolve6;\n        resolveAny: typeof resolveAny;\n        resolveCaa: typeof resolveCaa;\n        resolveCname: typeof resolveCname;\n        resolveMx: typeof resolveMx;\n        resolveNaptr: typeof resolveNaptr;\n        resolveNs: typeof resolveNs;\n        resolvePtr: typeof resolvePtr;\n        resolveSoa: typeof resolveSoa;\n        resolveSrv: typeof resolveSrv;\n        resolveTlsa: typeof resolveTlsa;\n        resolveTxt: typeof resolveTxt;\n        reverse: typeof reverse;\n        /**\n         * The resolver instance will send its requests from the specified IP address.\n         * This allows programs to specify outbound interfaces when used on multi-homed\n         * systems.\n         *\n         * If a v4 or v6 address is not specified, it is set to the default and the\n         * operating system will choose a local address automatically.\n         *\n         * The resolver will use the v4 local address when making requests to IPv4 DNS\n         * servers, and the v6 local address when making requests to IPv6 DNS servers.\n         * The `rrtype` of resolution requests has no impact on the local address used.\n         * @since v15.1.0, v14.17.0\n         * @param [ipv4='0.0.0.0'] A string representation of an IPv4 address.\n         * @param [ipv6='::0'] A string representation of an IPv6 address.\n         */\n        setLocalAddress(ipv4?: string, ipv6?: string): void;\n        setServers: typeof setServers;\n    }\n}\ndeclare module \"node:dns/promises\" {\n    export * from \"dns/promises\";\n}\n",
    "node_modules/@types/node/dns.d.ts": "/**\n * The `node:dns` module enables name resolution. For example, use it to look up IP\n * addresses of host names.\n *\n * Although named for the [Domain Name System (DNS)](https://en.wikipedia.org/wiki/Domain_Name_System), it does not always use the\n * DNS protocol for lookups. {@link lookup} uses the operating system\n * facilities to perform name resolution. It may not need to perform any network\n * communication. To perform name resolution the way other applications on the same\n * system do, use {@link lookup}.\n *\n * ```js\n * import dns from 'node:dns';\n *\n * dns.lookup('example.org', (err, address, family) => {\n *   console.log('address: %j family: IPv%s', address, family);\n * });\n * // address: \"93.184.216.34\" family: IPv4\n * ```\n *\n * All other functions in the `node:dns` module connect to an actual DNS server to\n * perform name resolution. They will always use the network to perform DNS\n * queries. These functions do not use the same set of configuration files used by {@link lookup} (e.g. `/etc/hosts`). Use these functions to always perform\n * DNS queries, bypassing other name-resolution facilities.\n *\n * ```js\n * import dns from 'node:dns';\n *\n * dns.resolve4('archive.org', (err, addresses) => {\n *   if (err) throw err;\n *\n *   console.log(`addresses: ${JSON.stringify(addresses)}`);\n *\n *   addresses.forEach((a) => {\n *     dns.reverse(a, (err, hostnames) => {\n *       if (err) {\n *         throw err;\n *       }\n *       console.log(`reverse for ${a}: ${JSON.stringify(hostnames)}`);\n *     });\n *   });\n * });\n * ```\n *\n * See the [Implementation considerations section](https://nodejs.org/docs/latest-v22.x/api/dns.html#implementation-considerations) for more information.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/dns.js)\n */\ndeclare module \"dns\" {\n    import * as dnsPromises from \"node:dns/promises\";\n    // Supported getaddrinfo flags.\n    /**\n     * Limits returned address types to the types of non-loopback addresses configured on the system. For example, IPv4 addresses are\n     * only returned if the current system has at least one IPv4 address configured.\n     */\n    export const ADDRCONFIG: number;\n    /**\n     * If the IPv6 family was specified, but no IPv6 addresses were found, then return IPv4 mapped IPv6 addresses. It is not supported\n     * on some operating systems (e.g. FreeBSD 10.1).\n     */\n    export const V4MAPPED: number;\n    /**\n     * If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as\n     * well as IPv4 mapped IPv6 addresses.\n     */\n    export const ALL: number;\n    export interface LookupOptions {\n        /**\n         * The record family. Must be `4`, `6`, or `0`. For backward compatibility reasons, `'IPv4'` and `'IPv6'` are interpreted\n         * as `4` and `6` respectively. The value 0 indicates that either an IPv4 or IPv6 address is returned. If the value `0` is used\n         * with `{ all: true } (see below)`, both IPv4 and IPv6 addresses are returned.\n         * @default 0\n         */\n        family?: number | \"IPv4\" | \"IPv6\" | undefined;\n        /**\n         * One or more [supported `getaddrinfo`](https://nodejs.org/docs/latest-v22.x/api/dns.html#supported-getaddrinfo-flags) flags. Multiple flags may be\n         * passed by bitwise `OR`ing their values.\n         */\n        hints?: number | undefined;\n        /**\n         * When `true`, the callback returns all resolved addresses in an array. Otherwise, returns a single address.\n         * @default false\n         */\n        all?: boolean | undefined;\n        /**\n         * When `verbatim`, the resolved addresses are return unsorted. When `ipv4first`, the resolved addresses are sorted\n         * by placing IPv4 addresses before IPv6 addresses. When `ipv6first`, the resolved addresses are sorted by placing IPv6\n         * addresses before IPv4 addresses. Default value is configurable using\n         * {@link setDefaultResultOrder} or [`--dns-result-order`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--dns-result-orderorder).\n         * @default `verbatim` (addresses are not reordered)\n         * @since v22.1.0\n         */\n        order?: \"ipv4first\" | \"ipv6first\" | \"verbatim\" | undefined;\n        /**\n         * When `true`, the callback receives IPv4 and IPv6 addresses in the order the DNS resolver returned them. When `false`, IPv4\n         * addresses are placed before IPv6 addresses. This option will be deprecated in favor of `order`. When both are specified,\n         * `order` has higher precedence. New code should only use `order`. Default value is configurable using {@link setDefaultResultOrder}\n         * @default true (addresses are not reordered)\n         * @deprecated Please use `order` option\n         */\n        verbatim?: boolean | undefined;\n    }\n    export interface LookupOneOptions extends LookupOptions {\n        all?: false | undefined;\n    }\n    export interface LookupAllOptions extends LookupOptions {\n        all: true;\n    }\n    export interface LookupAddress {\n        /**\n         * A string representation of an IPv4 or IPv6 address.\n         */\n        address: string;\n        /**\n         * `4` or `6`, denoting the family of `address`, or `0` if the address is not an IPv4 or IPv6 address. `0` is a likely indicator of a\n         * bug in the name resolution service used by the operating system.\n         */\n        family: number;\n    }\n    /**\n     * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or\n     * AAAA (IPv6) record. All `option` properties are optional. If `options` is an\n     * integer, then it must be `4` or `6` – if `options` is `0` or not provided, then\n     * IPv4 and IPv6 addresses are both returned if found.\n     *\n     * With the `all` option set to `true`, the arguments for `callback` change to `(err, addresses)`, with `addresses` being an array of objects with the\n     * properties `address` and `family`.\n     *\n     * On error, `err` is an `Error` object, where `err.code` is the error code.\n     * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when\n     * the host name does not exist but also when the lookup fails in other ways\n     * such as no available file descriptors.\n     *\n     * `dns.lookup()` does not necessarily have anything to do with the DNS protocol.\n     * The implementation uses an operating system facility that can associate names\n     * with addresses and vice versa. This implementation can have subtle but\n     * important consequences on the behavior of any Node.js program. Please take some\n     * time to consult the [Implementation considerations section](https://nodejs.org/docs/latest-v22.x/api/dns.html#implementation-considerations)\n     * before using `dns.lookup()`.\n     *\n     * Example usage:\n     *\n     * ```js\n     * import dns from 'node:dns';\n     * const options = {\n     *   family: 6,\n     *   hints: dns.ADDRCONFIG | dns.V4MAPPED,\n     * };\n     * dns.lookup('example.com', options, (err, address, family) =>\n     *   console.log('address: %j family: IPv%s', address, family));\n     * // address: \"2606:2800:220:1:248:1893:25c8:1946\" family: IPv6\n     *\n     * // When options.all is true, the result will be an Array.\n     * options.all = true;\n     * dns.lookup('example.com', options, (err, addresses) =>\n     *   console.log('addresses: %j', addresses));\n     * // addresses: [{\"address\":\"2606:2800:220:1:248:1893:25c8:1946\",\"family\":6}]\n     * ```\n     *\n     * If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v22.x/api/util.html#utilpromisifyoriginal) ed\n     * version, and `all` is not set to `true`, it returns a `Promise` for an `Object` with `address` and `family` properties.\n     * @since v0.1.90\n     */\n    export function lookup(\n        hostname: string,\n        family: number,\n        callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,\n    ): void;\n    export function lookup(\n        hostname: string,\n        options: LookupOneOptions,\n        callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,\n    ): void;\n    export function lookup(\n        hostname: string,\n        options: LookupAllOptions,\n        callback: (err: NodeJS.ErrnoException | null, addresses: LookupAddress[]) => void,\n    ): void;\n    export function lookup(\n        hostname: string,\n        options: LookupOptions,\n        callback: (err: NodeJS.ErrnoException | null, address: string | LookupAddress[], family: number) => void,\n    ): void;\n    export function lookup(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,\n    ): void;\n    export namespace lookup {\n        function __promisify__(hostname: string, options: LookupAllOptions): Promise<LookupAddress[]>;\n        function __promisify__(hostname: string, options?: LookupOneOptions | number): Promise<LookupAddress>;\n        function __promisify__(hostname: string, options: LookupOptions): Promise<LookupAddress | LookupAddress[]>;\n    }\n    /**\n     * Resolves the given `address` and `port` into a host name and service using\n     * the operating system's underlying `getnameinfo` implementation.\n     *\n     * If `address` is not a valid IP address, a `TypeError` will be thrown.\n     * The `port` will be coerced to a number. If it is not a legal port, a `TypeError` will be thrown.\n     *\n     * On an error, `err` is an [`Error`](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-error) object,\n     * where `err.code` is the error code.\n     *\n     * ```js\n     * import dns from 'node:dns';\n     * dns.lookupService('127.0.0.1', 22, (err, hostname, service) => {\n     *   console.log(hostname, service);\n     *   // Prints: localhost ssh\n     * });\n     * ```\n     *\n     * If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v22.x/api/util.html#utilpromisifyoriginal) ed\n     * version, it returns a `Promise` for an `Object` with `hostname` and `service` properties.\n     * @since v0.11.14\n     */\n    export function lookupService(\n        address: string,\n        port: number,\n        callback: (err: NodeJS.ErrnoException | null, hostname: string, service: string) => void,\n    ): void;\n    export namespace lookupService {\n        function __promisify__(\n            address: string,\n            port: number,\n        ): Promise<{\n            hostname: string;\n            service: string;\n        }>;\n    }\n    export interface ResolveOptions {\n        ttl: boolean;\n    }\n    export interface ResolveWithTtlOptions extends ResolveOptions {\n        ttl: true;\n    }\n    export interface RecordWithTtl {\n        address: string;\n        ttl: number;\n    }\n    /** @deprecated Use `AnyARecord` or `AnyAaaaRecord` instead. */\n    export type AnyRecordWithTtl = AnyARecord | AnyAaaaRecord;\n    export interface AnyARecord extends RecordWithTtl {\n        type: \"A\";\n    }\n    export interface AnyAaaaRecord extends RecordWithTtl {\n        type: \"AAAA\";\n    }\n    export interface CaaRecord {\n        critical: number;\n        issue?: string | undefined;\n        issuewild?: string | undefined;\n        iodef?: string | undefined;\n        contactemail?: string | undefined;\n        contactphone?: string | undefined;\n    }\n    export interface MxRecord {\n        priority: number;\n        exchange: string;\n    }\n    export interface AnyMxRecord extends MxRecord {\n        type: \"MX\";\n    }\n    export interface NaptrRecord {\n        flags: string;\n        service: string;\n        regexp: string;\n        replacement: string;\n        order: number;\n        preference: number;\n    }\n    export interface AnyNaptrRecord extends NaptrRecord {\n        type: \"NAPTR\";\n    }\n    export interface SoaRecord {\n        nsname: string;\n        hostmaster: string;\n        serial: number;\n        refresh: number;\n        retry: number;\n        expire: number;\n        minttl: number;\n    }\n    export interface AnySoaRecord extends SoaRecord {\n        type: \"SOA\";\n    }\n    export interface SrvRecord {\n        priority: number;\n        weight: number;\n        port: number;\n        name: string;\n    }\n    export interface AnySrvRecord extends SrvRecord {\n        type: \"SRV\";\n    }\n    export interface TlsaRecord {\n        certUsage: number;\n        selector: number;\n        match: number;\n        data: ArrayBuffer;\n    }\n    export interface AnyTlsaRecord extends TlsaRecord {\n        type: \"TLSA\";\n    }\n    export interface AnyTxtRecord {\n        type: \"TXT\";\n        entries: string[];\n    }\n    export interface AnyNsRecord {\n        type: \"NS\";\n        value: string;\n    }\n    export interface AnyPtrRecord {\n        type: \"PTR\";\n        value: string;\n    }\n    export interface AnyCnameRecord {\n        type: \"CNAME\";\n        value: string;\n    }\n    export type AnyRecord =\n        | AnyARecord\n        | AnyAaaaRecord\n        | AnyCnameRecord\n        | AnyMxRecord\n        | AnyNaptrRecord\n        | AnyNsRecord\n        | AnyPtrRecord\n        | AnySoaRecord\n        | AnySrvRecord\n        | AnyTlsaRecord\n        | AnyTxtRecord;\n    /**\n     * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array\n     * of the resource records. The `callback` function has arguments `(err, records)`. When successful, `records` will be an array of resource\n     * records. The type and structure of individual results varies based on `rrtype`:\n     *\n     * <omitted>\n     *\n     * On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-error) object,\n     * where `err.code` is one of the `DNS error codes`.\n     * @since v0.1.27\n     * @param hostname Host name to resolve.\n     * @param [rrtype='A'] Resource record type.\n     */\n    export function resolve(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"A\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"AAAA\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"ANY\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"CNAME\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"MX\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"NAPTR\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"NS\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"PTR\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"SOA\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: SoaRecord) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"SRV\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"TLSA\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: TlsaRecord[]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: \"TXT\",\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void,\n    ): void;\n    export function resolve(\n        hostname: string,\n        rrtype: string,\n        callback: (\n            err: NodeJS.ErrnoException | null,\n            addresses:\n                | string[]\n                | MxRecord[]\n                | NaptrRecord[]\n                | SoaRecord\n                | SrvRecord[]\n                | TlsaRecord[]\n                | string[][]\n                | AnyRecord[],\n        ) => void,\n    ): void;\n    export namespace resolve {\n        function __promisify__(hostname: string, rrtype?: \"A\" | \"AAAA\" | \"CNAME\" | \"NS\" | \"PTR\"): Promise<string[]>;\n        function __promisify__(hostname: string, rrtype: \"ANY\"): Promise<AnyRecord[]>;\n        function __promisify__(hostname: string, rrtype: \"MX\"): Promise<MxRecord[]>;\n        function __promisify__(hostname: string, rrtype: \"NAPTR\"): Promise<NaptrRecord[]>;\n        function __promisify__(hostname: string, rrtype: \"SOA\"): Promise<SoaRecord>;\n        function __promisify__(hostname: string, rrtype: \"SRV\"): Promise<SrvRecord[]>;\n        function __promisify__(hostname: string, rrtype: \"TLSA\"): Promise<TlsaRecord[]>;\n        function __promisify__(hostname: string, rrtype: \"TXT\"): Promise<string[][]>;\n        function __promisify__(\n            hostname: string,\n            rrtype: string,\n        ): Promise<\n            string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | TlsaRecord[] | string[][] | AnyRecord[]\n        >;\n    }\n    /**\n     * Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the `hostname`. The `addresses` argument passed to the `callback` function\n     * will contain an array of IPv4 addresses (e.g.`['74.125.79.104', '74.125.79.105', '74.125.79.106']`).\n     * @since v0.1.16\n     * @param hostname Host name to resolve.\n     */\n    export function resolve4(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve4(\n        hostname: string,\n        options: ResolveWithTtlOptions,\n        callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void,\n    ): void;\n    export function resolve4(\n        hostname: string,\n        options: ResolveOptions,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void,\n    ): void;\n    export namespace resolve4 {\n        function __promisify__(hostname: string): Promise<string[]>;\n        function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;\n        function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. The `addresses` argument passed to the `callback` function\n     * will contain an array of IPv6 addresses.\n     * @since v0.1.16\n     * @param hostname Host name to resolve.\n     */\n    export function resolve6(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export function resolve6(\n        hostname: string,\n        options: ResolveWithTtlOptions,\n        callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void,\n    ): void;\n    export function resolve6(\n        hostname: string,\n        options: ResolveOptions,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void,\n    ): void;\n    export namespace resolve6 {\n        function __promisify__(hostname: string): Promise<string[]>;\n        function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;\n        function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The `addresses` argument passed to the `callback` function\n     * will contain an array of canonical name records available for the `hostname` (e.g. `['bar.example.com']`).\n     * @since v0.3.2\n     */\n    export function resolveCname(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export namespace resolveCname {\n        function __promisify__(hostname: string): Promise<string[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve `CAA` records for the `hostname`. The `addresses` argument passed to the `callback` function\n     * will contain an array of certification authority authorization records\n     * available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'}, {critical: 128, issue: 'pki.example.com'}]`).\n     * @since v15.0.0, v14.17.0\n     */\n    export function resolveCaa(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, records: CaaRecord[]) => void,\n    ): void;\n    export namespace resolveCaa {\n        function __promisify__(hostname: string): Promise<CaaRecord[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the `hostname`. The `addresses` argument passed to the `callback` function will\n     * contain an array of objects containing both a `priority` and `exchange` property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`).\n     * @since v0.1.27\n     */\n    export function resolveMx(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void,\n    ): void;\n    export namespace resolveMx {\n        function __promisify__(hostname: string): Promise<MxRecord[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will contain an array of\n     * objects with the following properties:\n     *\n     * * `flags`\n     * * `service`\n     * * `regexp`\n     * * `replacement`\n     * * `order`\n     * * `preference`\n     *\n     * ```js\n     * {\n     *   flags: 's',\n     *   service: 'SIP+D2U',\n     *   regexp: '',\n     *   replacement: '_sip._udp.example.com',\n     *   order: 30,\n     *   preference: 100\n     * }\n     * ```\n     * @since v0.9.12\n     */\n    export function resolveNaptr(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void,\n    ): void;\n    export namespace resolveNaptr {\n        function __promisify__(hostname: string): Promise<NaptrRecord[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve name server records (`NS` records) for the `hostname`. The `addresses` argument passed to the `callback` function will\n     * contain an array of name server records available for `hostname` (e.g. `['ns1.example.com', 'ns2.example.com']`).\n     * @since v0.1.90\n     */\n    export function resolveNs(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export namespace resolveNs {\n        function __promisify__(hostname: string): Promise<string[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve pointer records (`PTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will\n     * be an array of strings containing the reply records.\n     * @since v6.0.0\n     */\n    export function resolvePtr(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,\n    ): void;\n    export namespace resolvePtr {\n        function __promisify__(hostname: string): Promise<string[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for\n     * the `hostname`. The `address` argument passed to the `callback` function will\n     * be an object with the following properties:\n     *\n     * * `nsname`\n     * * `hostmaster`\n     * * `serial`\n     * * `refresh`\n     * * `retry`\n     * * `expire`\n     * * `minttl`\n     *\n     * ```js\n     * {\n     *   nsname: 'ns.example.com',\n     *   hostmaster: 'root.example.com',\n     *   serial: 2013101809,\n     *   refresh: 10000,\n     *   retry: 2400,\n     *   expire: 604800,\n     *   minttl: 3600\n     * }\n     * ```\n     * @since v0.11.10\n     */\n    export function resolveSoa(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, address: SoaRecord) => void,\n    ): void;\n    export namespace resolveSoa {\n        function __promisify__(hostname: string): Promise<SoaRecord>;\n    }\n    /**\n     * Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. The `addresses` argument passed to the `callback` function will\n     * be an array of objects with the following properties:\n     *\n     * * `priority`\n     * * `weight`\n     * * `port`\n     * * `name`\n     *\n     * ```js\n     * {\n     *   priority: 10,\n     *   weight: 5,\n     *   port: 21223,\n     *   name: 'service.example.com'\n     * }\n     * ```\n     * @since v0.1.27\n     */\n    export function resolveSrv(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void,\n    ): void;\n    export namespace resolveSrv {\n        function __promisify__(hostname: string): Promise<SrvRecord[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve certificate associations (`TLSA` records) for\n     * the `hostname`. The `records` argument passed to the `callback` function is an\n     * array of objects with these properties:\n     *\n     * * `certUsage`\n     * * `selector`\n     * * `match`\n     * * `data`\n     *\n     * ```js\n     * {\n     *   certUsage: 3,\n     *   selector: 1,\n     *   match: 1,\n     *   data: [ArrayBuffer]\n     * }\n     * ```\n     * @since v22.15.0\n     */\n    export function resolveTlsa(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: TlsaRecord[]) => void,\n    ): void;\n    export namespace resolveTlsa {\n        function __promisify__(hostname: string): Promise<TlsaRecord[]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve text queries (`TXT` records) for the `hostname`. The `records` argument passed to the `callback` function is a\n     * two-dimensional array of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of\n     * one record. Depending on the use case, these could be either joined together or\n     * treated separately.\n     * @since v0.1.27\n     */\n    export function resolveTxt(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void,\n    ): void;\n    export namespace resolveTxt {\n        function __promisify__(hostname: string): Promise<string[][]>;\n    }\n    /**\n     * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).\n     * The `ret` argument passed to the `callback` function will be an array containing\n     * various types of records. Each object has a property `type` that indicates the\n     * type of the current record. And depending on the `type`, additional properties\n     * will be present on the object:\n     *\n     * <omitted>\n     *\n     * Here is an example of the `ret` object passed to the callback:\n     *\n     * ```js\n     * [ { type: 'A', address: '127.0.0.1', ttl: 299 },\n     *   { type: 'CNAME', value: 'example.com' },\n     *   { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },\n     *   { type: 'NS', value: 'ns1.example.com' },\n     *   { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },\n     *   { type: 'SOA',\n     *     nsname: 'ns1.example.com',\n     *     hostmaster: 'admin.example.com',\n     *     serial: 156696742,\n     *     refresh: 900,\n     *     retry: 900,\n     *     expire: 1800,\n     *     minttl: 60 } ]\n     * ```\n     *\n     * DNS server operators may choose not to respond to `ANY` queries. It may be better to call individual methods like {@link resolve4}, {@link resolveMx}, and so on. For more details, see\n     * [RFC 8482](https://tools.ietf.org/html/rfc8482).\n     */\n    export function resolveAny(\n        hostname: string,\n        callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void,\n    ): void;\n    export namespace resolveAny {\n        function __promisify__(hostname: string): Promise<AnyRecord[]>;\n    }\n    /**\n     * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an\n     * array of host names.\n     *\n     * On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-error) object, where `err.code` is\n     * one of the [DNS error codes](https://nodejs.org/docs/latest-v22.x/api/dns.html#error-codes).\n     * @since v0.1.16\n     */\n    export function reverse(\n        ip: string,\n        callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void,\n    ): void;\n    /**\n     * Get the default value for `order` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v22.x/api/dns.html#dnspromiseslookuphostname-options).\n     * The value could be:\n     *\n     * * `ipv4first`: for `order` defaulting to `ipv4first`.\n     * * `ipv6first`: for `order` defaulting to `ipv6first`.\n     * * `verbatim`: for `order` defaulting to `verbatim`.\n     * @since v18.17.0\n     */\n    export function getDefaultResultOrder(): \"ipv4first\" | \"ipv6first\" | \"verbatim\";\n    /**\n     * Sets the IP address and port of servers to be used when performing DNS\n     * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted\n     * addresses. If the port is the IANA default DNS port (53) it can be omitted.\n     *\n     * ```js\n     * dns.setServers([\n     *   '4.4.4.4',\n     *   '[2001:4860:4860::8888]',\n     *   '4.4.4.4:1053',\n     *   '[2001:4860:4860::8888]:1053',\n     * ]);\n     * ```\n     *\n     * An error will be thrown if an invalid address is provided.\n     *\n     * The `dns.setServers()` method must not be called while a DNS query is in\n     * progress.\n     *\n     * The {@link setServers} method affects only {@link resolve}, `dns.resolve*()` and {@link reverse} (and specifically _not_ {@link lookup}).\n     *\n     * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).\n     * That is, if attempting to resolve with the first server provided results in a `NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with\n     * subsequent servers provided. Fallback DNS servers will only be used if the\n     * earlier ones time out or result in some other error.\n     * @since v0.11.3\n     * @param servers array of [RFC 5952](https://datatracker.ietf.org/doc/html/rfc5952#section-6) formatted addresses\n     */\n    export function setServers(servers: readonly string[]): void;\n    /**\n     * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6),\n     * that are currently configured for DNS resolution. A string will include a port\n     * section if a custom port is used.\n     *\n     * ```js\n     * [\n     *   '4.4.4.4',\n     *   '2001:4860:4860::8888',\n     *   '4.4.4.4:1053',\n     *   '[2001:4860:4860::8888]:1053',\n     * ]\n     * ```\n     * @since v0.11.3\n     */\n    export function getServers(): string[];\n    /**\n     * Set the default value of `order` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v22.x/api/dns.html#dnspromiseslookuphostname-options).\n     * The value could be:\n     *\n     * * `ipv4first`: sets default `order` to `ipv4first`.\n     * * `ipv6first`: sets default `order` to `ipv6first`.\n     * * `verbatim`: sets default `order` to `verbatim`.\n     *\n     * The default is `verbatim` and {@link setDefaultResultOrder} have higher\n     * priority than [`--dns-result-order`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--dns-result-orderorder). When using\n     * [worker threads](https://nodejs.org/docs/latest-v22.x/api/worker_threads.html), {@link setDefaultResultOrder} from the main\n     * thread won't affect the default dns orders in workers.\n     * @since v16.4.0, v14.18.0\n     * @param order must be `'ipv4first'`, `'ipv6first'` or `'verbatim'`.\n     */\n    export function setDefaultResultOrder(order: \"ipv4first\" | \"ipv6first\" | \"verbatim\"): void;\n    // Error codes\n    export const NODATA: \"ENODATA\";\n    export const FORMERR: \"EFORMERR\";\n    export const SERVFAIL: \"ESERVFAIL\";\n    export const NOTFOUND: \"ENOTFOUND\";\n    export const NOTIMP: \"ENOTIMP\";\n    export const REFUSED: \"EREFUSED\";\n    export const BADQUERY: \"EBADQUERY\";\n    export const BADNAME: \"EBADNAME\";\n    export const BADFAMILY: \"EBADFAMILY\";\n    export const BADRESP: \"EBADRESP\";\n    export const CONNREFUSED: \"ECONNREFUSED\";\n    export const TIMEOUT: \"ETIMEOUT\";\n    export const EOF: \"EOF\";\n    export const FILE: \"EFILE\";\n    export const NOMEM: \"ENOMEM\";\n    export const DESTRUCTION: \"EDESTRUCTION\";\n    export const BADSTR: \"EBADSTR\";\n    export const BADFLAGS: \"EBADFLAGS\";\n    export const NONAME: \"ENONAME\";\n    export const BADHINTS: \"EBADHINTS\";\n    export const NOTINITIALIZED: \"ENOTINITIALIZED\";\n    export const LOADIPHLPAPI: \"ELOADIPHLPAPI\";\n    export const ADDRGETNETWORKPARAMS: \"EADDRGETNETWORKPARAMS\";\n    export const CANCELLED: \"ECANCELLED\";\n    export interface ResolverOptions {\n        /**\n         * Query timeout in milliseconds, or `-1` to use the default timeout.\n         */\n        timeout?: number | undefined;\n        /**\n         * The number of tries the resolver will try contacting each name server before giving up.\n         * @default 4\n         */\n        tries?: number;\n    }\n    /**\n     * An independent resolver for DNS requests.\n     *\n     * Creating a new resolver uses the default server settings. Setting\n     * the servers used for a resolver using [`resolver.setServers()`](https://nodejs.org/docs/latest-v22.x/api/dns.html#dnssetserversservers) does not affect\n     * other resolvers:\n     *\n     * ```js\n     * import { Resolver } from 'node:dns';\n     * const resolver = new Resolver();\n     * resolver.setServers(['4.4.4.4']);\n     *\n     * // This request will use the server at 4.4.4.4, independent of global settings.\n     * resolver.resolve4('example.org', (err, addresses) => {\n     *   // ...\n     * });\n     * ```\n     *\n     * The following methods from the `node:dns` module are available:\n     *\n     * * `resolver.getServers()`\n     * * `resolver.resolve()`\n     * * `resolver.resolve4()`\n     * * `resolver.resolve6()`\n     * * `resolver.resolveAny()`\n     * * `resolver.resolveCaa()`\n     * * `resolver.resolveCname()`\n     * * `resolver.resolveMx()`\n     * * `resolver.resolveNaptr()`\n     * * `resolver.resolveNs()`\n     * * `resolver.resolvePtr()`\n     * * `resolver.resolveSoa()`\n     * * `resolver.resolveSrv()`\n     * * `resolver.resolveTxt()`\n     * * `resolver.reverse()`\n     * * `resolver.setServers()`\n     * @since v8.3.0\n     */\n    export class Resolver {\n        constructor(options?: ResolverOptions);\n        /**\n         * Cancel all outstanding DNS queries made by this resolver. The corresponding\n         * callbacks will be called with an error with code `ECANCELLED`.\n         * @since v8.3.0\n         */\n        cancel(): void;\n        getServers: typeof getServers;\n        resolve: typeof resolve;\n        resolve4: typeof resolve4;\n        resolve6: typeof resolve6;\n        resolveAny: typeof resolveAny;\n        resolveCaa: typeof resolveCaa;\n        resolveCname: typeof resolveCname;\n        resolveMx: typeof resolveMx;\n        resolveNaptr: typeof resolveNaptr;\n        resolveNs: typeof resolveNs;\n        resolvePtr: typeof resolvePtr;\n        resolveSoa: typeof resolveSoa;\n        resolveSrv: typeof resolveSrv;\n        resolveTlsa: typeof resolveTlsa;\n        resolveTxt: typeof resolveTxt;\n        reverse: typeof reverse;\n        /**\n         * The resolver instance will send its requests from the specified IP address.\n         * This allows programs to specify outbound interfaces when used on multi-homed\n         * systems.\n         *\n         * If a v4 or v6 address is not specified, it is set to the default and the\n         * operating system will choose a local address automatically.\n         *\n         * The resolver will use the v4 local address when making requests to IPv4 DNS\n         * servers, and the v6 local address when making requests to IPv6 DNS servers.\n         * The `rrtype` of resolution requests has no impact on the local address used.\n         * @since v15.1.0, v14.17.0\n         * @param [ipv4='0.0.0.0'] A string representation of an IPv4 address.\n         * @param [ipv6='::0'] A string representation of an IPv6 address.\n         */\n        setLocalAddress(ipv4?: string, ipv6?: string): void;\n        setServers: typeof setServers;\n    }\n    export { dnsPromises as promises };\n}\ndeclare module \"node:dns\" {\n    export * from \"dns\";\n}\n",
    "node_modules/@types/node/dom-events.d.ts": "// Make this a module\nexport {};\n\n// Conditional type aliases, which are later merged into the global scope.\n// Will either be empty if the relevant web library is already present, or the @types/node definition otherwise.\n\ntype __Event = typeof globalThis extends { onmessage: any } ? {} : Event;\ninterface Event {\n    readonly bubbles: boolean;\n    cancelBubble: boolean;\n    readonly cancelable: boolean;\n    readonly composed: boolean;\n    composedPath(): [EventTarget?];\n    readonly currentTarget: EventTarget | null;\n    readonly defaultPrevented: boolean;\n    readonly eventPhase: 0 | 2;\n    initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;\n    readonly isTrusted: boolean;\n    preventDefault(): void;\n    readonly returnValue: boolean;\n    readonly srcElement: EventTarget | null;\n    stopImmediatePropagation(): void;\n    stopPropagation(): void;\n    readonly target: EventTarget | null;\n    readonly timeStamp: number;\n    readonly type: string;\n}\n\ntype __CustomEvent<T = any> = typeof globalThis extends { onmessage: any } ? {} : CustomEvent<T>;\ninterface CustomEvent<T = any> extends Event {\n    readonly detail: T;\n}\n\ntype __EventTarget = typeof globalThis extends { onmessage: any } ? {} : EventTarget;\ninterface EventTarget {\n    addEventListener(\n        type: string,\n        listener: EventListener | EventListenerObject,\n        options?: AddEventListenerOptions | boolean,\n    ): void;\n    dispatchEvent(event: Event): boolean;\n    removeEventListener(\n        type: string,\n        listener: EventListener | EventListenerObject,\n        options?: EventListenerOptions | boolean,\n    ): void;\n}\n\ninterface EventInit {\n    bubbles?: boolean;\n    cancelable?: boolean;\n    composed?: boolean;\n}\n\ninterface CustomEventInit<T = any> extends EventInit {\n    detail?: T;\n}\n\ninterface EventListenerOptions {\n    capture?: boolean;\n}\n\ninterface AddEventListenerOptions extends EventListenerOptions {\n    once?: boolean;\n    passive?: boolean;\n    signal?: AbortSignal;\n}\n\ninterface EventListener {\n    (evt: Event): void;\n}\n\ninterface EventListenerObject {\n    handleEvent(object: Event): void;\n}\n\n// Merge conditional interfaces into global scope, and conditionally declare global constructors.\ndeclare global {\n    interface Event extends __Event {}\n    var Event: typeof globalThis extends { onmessage: any; Event: infer T } ? T\n        : {\n            prototype: Event;\n            new(type: string, eventInitDict?: EventInit): Event;\n        };\n\n    interface CustomEvent<T = any> extends __CustomEvent<T> {}\n    var CustomEvent: typeof globalThis extends { onmessage: any; CustomEvent: infer T } ? T\n        : {\n            prototype: CustomEvent;\n            new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;\n        };\n\n    interface EventTarget extends __EventTarget {}\n    var EventTarget: typeof globalThis extends { onmessage: any; EventTarget: infer T } ? T\n        : {\n            prototype: EventTarget;\n            new(): EventTarget;\n        };\n}\n",
    "node_modules/@types/node/domain.d.ts": "/**\n * **This module is pending deprecation.** Once a replacement API has been\n * finalized, this module will be fully deprecated. Most developers should\n * **not** have cause to use this module. Users who absolutely must have\n * the functionality that domains provide may rely on it for the time being\n * but should expect to have to migrate to a different solution\n * in the future.\n *\n * Domains provide a way to handle multiple different IO operations as a\n * single group. If any of the event emitters or callbacks registered to a\n * domain emit an `'error'` event, or throw an error, then the domain object\n * will be notified, rather than losing the context of the error in the `process.on('uncaughtException')` handler, or causing the program to\n * exit immediately with an error code.\n * @deprecated Since v1.4.2 - Deprecated\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/domain.js)\n */\ndeclare module \"domain\" {\n    import EventEmitter = require(\"node:events\");\n    /**\n     * The `Domain` class encapsulates the functionality of routing errors and\n     * uncaught exceptions to the active `Domain` object.\n     *\n     * To handle the errors that it catches, listen to its `'error'` event.\n     */\n    class Domain extends EventEmitter {\n        /**\n         * An array of timers and event emitters that have been explicitly added\n         * to the domain.\n         */\n        members: Array<EventEmitter | NodeJS.Timer>;\n        /**\n         * The `enter()` method is plumbing used by the `run()`, `bind()`, and `intercept()` methods to set the active domain. It sets `domain.active` and `process.domain` to the domain, and implicitly\n         * pushes the domain onto the domain\n         * stack managed by the domain module (see {@link exit} for details on the\n         * domain stack). The call to `enter()` delimits the beginning of a chain of\n         * asynchronous calls and I/O operations bound to a domain.\n         *\n         * Calling `enter()` changes only the active domain, and does not alter the domain\n         * itself. `enter()` and `exit()` can be called an arbitrary number of times on a\n         * single domain.\n         */\n        enter(): void;\n        /**\n         * The `exit()` method exits the current domain, popping it off the domain stack.\n         * Any time execution is going to switch to the context of a different chain of\n         * asynchronous calls, it's important to ensure that the current domain is exited.\n         * The call to `exit()` delimits either the end of or an interruption to the chain\n         * of asynchronous calls and I/O operations bound to a domain.\n         *\n         * If there are multiple, nested domains bound to the current execution context, `exit()` will exit any domains nested within this domain.\n         *\n         * Calling `exit()` changes only the active domain, and does not alter the domain\n         * itself. `enter()` and `exit()` can be called an arbitrary number of times on a\n         * single domain.\n         */\n        exit(): void;\n        /**\n         * Run the supplied function in the context of the domain, implicitly\n         * binding all event emitters, timers, and low-level requests that are\n         * created in that context. Optionally, arguments can be passed to\n         * the function.\n         *\n         * This is the most basic way to use a domain.\n         *\n         * ```js\n         * import domain from 'node:domain';\n         * import fs from 'node:fs';\n         * const d = domain.create();\n         * d.on('error', (er) => {\n         *   console.error('Caught error!', er);\n         * });\n         * d.run(() => {\n         *   process.nextTick(() => {\n         *     setTimeout(() => { // Simulating some various async stuff\n         *       fs.open('non-existent file', 'r', (er, fd) => {\n         *         if (er) throw er;\n         *         // proceed...\n         *       });\n         *     }, 100);\n         *   });\n         * });\n         * ```\n         *\n         * In this example, the `d.on('error')` handler will be triggered, rather\n         * than crashing the program.\n         */\n        run<T>(fn: (...args: any[]) => T, ...args: any[]): T;\n        /**\n         * Explicitly adds an emitter to the domain. If any event handlers called by\n         * the emitter throw an error, or if the emitter emits an `'error'` event, it\n         * will be routed to the domain's `'error'` event, just like with implicit\n         * binding.\n         *\n         * This also works with timers that are returned from `setInterval()` and `setTimeout()`. If their callback function throws, it will be caught by\n         * the domain `'error'` handler.\n         *\n         * If the Timer or `EventEmitter` was already bound to a domain, it is removed\n         * from that one, and bound to this one instead.\n         * @param emitter emitter or timer to be added to the domain\n         */\n        add(emitter: EventEmitter | NodeJS.Timer): void;\n        /**\n         * The opposite of {@link add}. Removes domain handling from the\n         * specified emitter.\n         * @param emitter emitter or timer to be removed from the domain\n         */\n        remove(emitter: EventEmitter | NodeJS.Timer): void;\n        /**\n         * The returned function will be a wrapper around the supplied callback\n         * function. When the returned function is called, any errors that are\n         * thrown will be routed to the domain's `'error'` event.\n         *\n         * ```js\n         * const d = domain.create();\n         *\n         * function readSomeFile(filename, cb) {\n         *   fs.readFile(filename, 'utf8', d.bind((er, data) => {\n         *     // If this throws, it will also be passed to the domain.\n         *     return cb(er, data ? JSON.parse(data) : null);\n         *   }));\n         * }\n         *\n         * d.on('error', (er) => {\n         *   // An error occurred somewhere. If we throw it now, it will crash the program\n         *   // with the normal line number and stack message.\n         * });\n         * ```\n         * @param callback The callback function\n         * @return The bound function\n         */\n        bind<T extends Function>(callback: T): T;\n        /**\n         * This method is almost identical to {@link bind}. However, in\n         * addition to catching thrown errors, it will also intercept `Error` objects sent as the first argument to the function.\n         *\n         * In this way, the common `if (err) return callback(err);` pattern can be replaced\n         * with a single error handler in a single place.\n         *\n         * ```js\n         * const d = domain.create();\n         *\n         * function readSomeFile(filename, cb) {\n         *   fs.readFile(filename, 'utf8', d.intercept((data) => {\n         *     // Note, the first argument is never passed to the\n         *     // callback since it is assumed to be the 'Error' argument\n         *     // and thus intercepted by the domain.\n         *\n         *     // If this throws, it will also be passed to the domain\n         *     // so the error-handling logic can be moved to the 'error'\n         *     // event on the domain instead of being repeated throughout\n         *     // the program.\n         *     return cb(null, JSON.parse(data));\n         *   }));\n         * }\n         *\n         * d.on('error', (er) => {\n         *   // An error occurred somewhere. If we throw it now, it will crash the program\n         *   // with the normal line number and stack message.\n         * });\n         * ```\n         * @param callback The callback function\n         * @return The intercepted function\n         */\n        intercept<T extends Function>(callback: T): T;\n    }\n    function create(): Domain;\n}\ndeclare module \"node:domain\" {\n    export * from \"domain\";\n}\n",
    "node_modules/@types/node/events.d.ts": "/**\n * Much of the Node.js core API is built around an idiomatic asynchronous\n * event-driven architecture in which certain kinds of objects (called \"emitters\")\n * emit named events that cause `Function` objects (\"listeners\") to be called.\n *\n * For instance: a `net.Server` object emits an event each time a peer\n * connects to it; a `fs.ReadStream` emits an event when the file is opened;\n * a `stream` emits an event whenever data is available to be read.\n *\n * All objects that emit events are instances of the `EventEmitter` class. These\n * objects expose an `eventEmitter.on()` function that allows one or more\n * functions to be attached to named events emitted by the object. Typically,\n * event names are camel-cased strings but any valid JavaScript property key\n * can be used.\n *\n * When the `EventEmitter` object emits an event, all of the functions attached\n * to that specific event are called _synchronously_. Any values returned by the\n * called listeners are _ignored_ and discarded.\n *\n * The following example shows a simple `EventEmitter` instance with a single\n * listener. The `eventEmitter.on()` method is used to register listeners, while\n * the `eventEmitter.emit()` method is used to trigger the event.\n *\n * ```js\n * import { EventEmitter } from 'node:events';\n *\n * class MyEmitter extends EventEmitter {}\n *\n * const myEmitter = new MyEmitter();\n * myEmitter.on('event', () => {\n *   console.log('an event occurred!');\n * });\n * myEmitter.emit('event');\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/events.js)\n */\ndeclare module \"events\" {\n    import { AsyncResource, AsyncResourceOptions } from \"node:async_hooks\";\n    // NOTE: This class is in the docs but is **not actually exported** by Node.\n    // If https://github.com/nodejs/node/issues/39903 gets resolved and Node\n    // actually starts exporting the class, uncomment below.\n    // import { EventListener, EventListenerObject } from '__dom-events';\n    // /** The NodeEventTarget is a Node.js-specific extension to EventTarget that emulates a subset of the EventEmitter API. */\n    // interface NodeEventTarget extends EventTarget {\n    //     /**\n    //      * Node.js-specific extension to the `EventTarget` class that emulates the equivalent `EventEmitter` API.\n    //      * The only difference between `addListener()` and `addEventListener()` is that addListener() will return a reference to the EventTarget.\n    //      */\n    //     addListener(type: string, listener: EventListener | EventListenerObject, options?: { once: boolean }): this;\n    //     /** Node.js-specific extension to the `EventTarget` class that returns an array of event `type` names for which event listeners are registered. */\n    //     eventNames(): string[];\n    //     /** Node.js-specific extension to the `EventTarget` class that returns the number of event listeners registered for the `type`. */\n    //     listenerCount(type: string): number;\n    //     /** Node.js-specific alias for `eventTarget.removeListener()`. */\n    //     off(type: string, listener: EventListener | EventListenerObject): this;\n    //     /** Node.js-specific alias for `eventTarget.addListener()`. */\n    //     on(type: string, listener: EventListener | EventListenerObject, options?: { once: boolean }): this;\n    //     /** Node.js-specific extension to the `EventTarget` class that adds a `once` listener for the given event `type`. This is equivalent to calling `on` with the `once` option set to `true`. */\n    //     once(type: string, listener: EventListener | EventListenerObject): this;\n    //     /**\n    //      * Node.js-specific extension to the `EventTarget` class.\n    //      * If `type` is specified, removes all registered listeners for `type`,\n    //      * otherwise removes all registered listeners.\n    //      */\n    //     removeAllListeners(type: string): this;\n    //     /**\n    //      * Node.js-specific extension to the `EventTarget` class that removes the listener for the given `type`.\n    //      * The only difference between `removeListener()` and `removeEventListener()` is that `removeListener()` will return a reference to the `EventTarget`.\n    //      */\n    //     removeListener(type: string, listener: EventListener | EventListenerObject): this;\n    // }\n    interface EventEmitterOptions {\n        /**\n         * Enables automatic capturing of promise rejection.\n         */\n        captureRejections?: boolean | undefined;\n    }\n    interface StaticEventEmitterOptions {\n        /**\n         * Can be used to cancel awaiting events.\n         */\n        signal?: AbortSignal | undefined;\n    }\n    interface StaticEventEmitterIteratorOptions extends StaticEventEmitterOptions {\n        /**\n         * Names of events that will end the iteration.\n         */\n        close?: string[] | undefined;\n        /**\n         * The high watermark. The emitter is paused every time the size of events being buffered is higher than it.\n         * Supported only on emitters implementing `pause()` and `resume()` methods.\n         * @default Number.MAX_SAFE_INTEGER\n         */\n        highWaterMark?: number | undefined;\n        /**\n         * The low watermark. The emitter is resumed every time the size of events being buffered is lower than it.\n         * Supported only on emitters implementing `pause()` and `resume()` methods.\n         * @default 1\n         */\n        lowWaterMark?: number | undefined;\n    }\n    interface EventEmitter<T extends EventMap<T> = DefaultEventMap> extends NodeJS.EventEmitter<T> {}\n    type EventMap<T> = Record<keyof T, any[]> | DefaultEventMap;\n    type DefaultEventMap = [never];\n    type AnyRest = [...args: any[]];\n    type Args<K, T> = T extends DefaultEventMap ? AnyRest : (\n        K extends keyof T ? T[K] : never\n    );\n    type Key<K, T> = T extends DefaultEventMap ? string | symbol : K | keyof T;\n    type Key2<K, T> = T extends DefaultEventMap ? string | symbol : K & keyof T;\n    type Listener<K, T, F> = T extends DefaultEventMap ? F : (\n        K extends keyof T ? (\n                T[K] extends unknown[] ? (...args: T[K]) => void : never\n            )\n            : never\n    );\n    type Listener1<K, T> = Listener<K, T, (...args: any[]) => void>;\n    type Listener2<K, T> = Listener<K, T, Function>;\n\n    /**\n     * The `EventEmitter` class is defined and exposed by the `node:events` module:\n     *\n     * ```js\n     * import { EventEmitter } from 'node:events';\n     * ```\n     *\n     * All `EventEmitter`s emit the event `'newListener'` when new listeners are\n     * added and `'removeListener'` when existing listeners are removed.\n     *\n     * It supports the following option:\n     * @since v0.1.26\n     */\n    class EventEmitter<T extends EventMap<T> = DefaultEventMap> {\n        constructor(options?: EventEmitterOptions);\n\n        [EventEmitter.captureRejectionSymbol]?<K>(error: Error, event: Key<K, T>, ...args: Args<K, T>): void;\n\n        /**\n         * Creates a `Promise` that is fulfilled when the `EventEmitter` emits the given\n         * event or that is rejected if the `EventEmitter` emits `'error'` while waiting.\n         * The `Promise` will resolve with an array of all the arguments emitted to the\n         * given event.\n         *\n         * This method is intentionally generic and works with the web platform [EventTarget](https://dom.spec.whatwg.org/#interface-eventtarget) interface, which has no special`'error'` event\n         * semantics and does not listen to the `'error'` event.\n         *\n         * ```js\n         * import { once, EventEmitter } from 'node:events';\n         * import process from 'node:process';\n         *\n         * const ee = new EventEmitter();\n         *\n         * process.nextTick(() => {\n         *   ee.emit('myevent', 42);\n         * });\n         *\n         * const [value] = await once(ee, 'myevent');\n         * console.log(value);\n         *\n         * const err = new Error('kaboom');\n         * process.nextTick(() => {\n         *   ee.emit('error', err);\n         * });\n         *\n         * try {\n         *   await once(ee, 'myevent');\n         * } catch (err) {\n         *   console.error('error happened', err);\n         * }\n         * ```\n         *\n         * The special handling of the `'error'` event is only used when `events.once()` is used to wait for another event. If `events.once()` is used to wait for the\n         * '`error'` event itself, then it is treated as any other kind of event without\n         * special handling:\n         *\n         * ```js\n         * import { EventEmitter, once } from 'node:events';\n         *\n         * const ee = new EventEmitter();\n         *\n         * once(ee, 'error')\n         *   .then(([err]) => console.log('ok', err.message))\n         *   .catch((err) => console.error('error', err.message));\n         *\n         * ee.emit('error', new Error('boom'));\n         *\n         * // Prints: ok boom\n         * ```\n         *\n         * An `AbortSignal` can be used to cancel waiting for the event:\n         *\n         * ```js\n         * import { EventEmitter, once } from 'node:events';\n         *\n         * const ee = new EventEmitter();\n         * const ac = new AbortController();\n         *\n         * async function foo(emitter, event, signal) {\n         *   try {\n         *     await once(emitter, event, { signal });\n         *     console.log('event emitted!');\n         *   } catch (error) {\n         *     if (error.name === 'AbortError') {\n         *       console.error('Waiting for the event was canceled!');\n         *     } else {\n         *       console.error('There was an error', error.message);\n         *     }\n         *   }\n         * }\n         *\n         * foo(ee, 'foo', ac.signal);\n         * ac.abort(); // Abort waiting for the event\n         * ee.emit('foo'); // Prints: Waiting for the event was canceled!\n         * ```\n         * @since v11.13.0, v10.16.0\n         */\n        static once(\n            emitter: NodeJS.EventEmitter,\n            eventName: string | symbol,\n            options?: StaticEventEmitterOptions,\n        ): Promise<any[]>;\n        static once(emitter: EventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise<any[]>;\n        /**\n         * ```js\n         * import { on, EventEmitter } from 'node:events';\n         * import process from 'node:process';\n         *\n         * const ee = new EventEmitter();\n         *\n         * // Emit later on\n         * process.nextTick(() => {\n         *   ee.emit('foo', 'bar');\n         *   ee.emit('foo', 42);\n         * });\n         *\n         * for await (const event of on(ee, 'foo')) {\n         *   // The execution of this inner block is synchronous and it\n         *   // processes one event at a time (even with await). Do not use\n         *   // if concurrent execution is required.\n         *   console.log(event); // prints ['bar'] [42]\n         * }\n         * // Unreachable here\n         * ```\n         *\n         * Returns an `AsyncIterator` that iterates `eventName` events. It will throw\n         * if the `EventEmitter` emits `'error'`. It removes all listeners when\n         * exiting the loop. The `value` returned by each iteration is an array\n         * composed of the emitted event arguments.\n         *\n         * An `AbortSignal` can be used to cancel waiting on events:\n         *\n         * ```js\n         * import { on, EventEmitter } from 'node:events';\n         * import process from 'node:process';\n         *\n         * const ac = new AbortController();\n         *\n         * (async () => {\n         *   const ee = new EventEmitter();\n         *\n         *   // Emit later on\n         *   process.nextTick(() => {\n         *     ee.emit('foo', 'bar');\n         *     ee.emit('foo', 42);\n         *   });\n         *\n         *   for await (const event of on(ee, 'foo', { signal: ac.signal })) {\n         *     // The execution of this inner block is synchronous and it\n         *     // processes one event at a time (even with await). Do not use\n         *     // if concurrent execution is required.\n         *     console.log(event); // prints ['bar'] [42]\n         *   }\n         *   // Unreachable here\n         * })();\n         *\n         * process.nextTick(() => ac.abort());\n         * ```\n         *\n         * Use the `close` option to specify an array of event names that will end the iteration:\n         *\n         * ```js\n         * import { on, EventEmitter } from 'node:events';\n         * import process from 'node:process';\n         *\n         * const ee = new EventEmitter();\n         *\n         * // Emit later on\n         * process.nextTick(() => {\n         *   ee.emit('foo', 'bar');\n         *   ee.emit('foo', 42);\n         *   ee.emit('close');\n         * });\n         *\n         * for await (const event of on(ee, 'foo', { close: ['close'] })) {\n         *   console.log(event); // prints ['bar'] [42]\n         * }\n         * // the loop will exit after 'close' is emitted\n         * console.log('done'); // prints 'done'\n         * ```\n         * @since v13.6.0, v12.16.0\n         * @return An `AsyncIterator` that iterates `eventName` events emitted by the `emitter`\n         */\n        static on(\n            emitter: NodeJS.EventEmitter,\n            eventName: string | symbol,\n            options?: StaticEventEmitterIteratorOptions,\n        ): NodeJS.AsyncIterator<any[]>;\n        static on(\n            emitter: EventTarget,\n            eventName: string,\n            options?: StaticEventEmitterIteratorOptions,\n        ): NodeJS.AsyncIterator<any[]>;\n        /**\n         * A class method that returns the number of listeners for the given `eventName` registered on the given `emitter`.\n         *\n         * ```js\n         * import { EventEmitter, listenerCount } from 'node:events';\n         *\n         * const myEmitter = new EventEmitter();\n         * myEmitter.on('event', () => {});\n         * myEmitter.on('event', () => {});\n         * console.log(listenerCount(myEmitter, 'event'));\n         * // Prints: 2\n         * ```\n         * @since v0.9.12\n         * @deprecated Since v3.2.0 - Use `listenerCount` instead.\n         * @param emitter The emitter to query\n         * @param eventName The event name\n         */\n        static listenerCount(emitter: NodeJS.EventEmitter, eventName: string | symbol): number;\n        /**\n         * Returns a copy of the array of listeners for the event named `eventName`.\n         *\n         * For `EventEmitter`s this behaves exactly the same as calling `.listeners` on\n         * the emitter.\n         *\n         * For `EventTarget`s this is the only way to get the event listeners for the\n         * event target. This is useful for debugging and diagnostic purposes.\n         *\n         * ```js\n         * import { getEventListeners, EventEmitter } from 'node:events';\n         *\n         * {\n         *   const ee = new EventEmitter();\n         *   const listener = () => console.log('Events are fun');\n         *   ee.on('foo', listener);\n         *   console.log(getEventListeners(ee, 'foo')); // [ [Function: listener] ]\n         * }\n         * {\n         *   const et = new EventTarget();\n         *   const listener = () => console.log('Events are fun');\n         *   et.addEventListener('foo', listener);\n         *   console.log(getEventListeners(et, 'foo')); // [ [Function: listener] ]\n         * }\n         * ```\n         * @since v15.2.0, v14.17.0\n         */\n        static getEventListeners(emitter: EventTarget | NodeJS.EventEmitter, name: string | symbol): Function[];\n        /**\n         * Returns the currently set max amount of listeners.\n         *\n         * For `EventEmitter`s this behaves exactly the same as calling `.getMaxListeners` on\n         * the emitter.\n         *\n         * For `EventTarget`s this is the only way to get the max event listeners for the\n         * event target. If the number of event handlers on a single EventTarget exceeds\n         * the max set, the EventTarget will print a warning.\n         *\n         * ```js\n         * import { getMaxListeners, setMaxListeners, EventEmitter } from 'node:events';\n         *\n         * {\n         *   const ee = new EventEmitter();\n         *   console.log(getMaxListeners(ee)); // 10\n         *   setMaxListeners(11, ee);\n         *   console.log(getMaxListeners(ee)); // 11\n         * }\n         * {\n         *   const et = new EventTarget();\n         *   console.log(getMaxListeners(et)); // 10\n         *   setMaxListeners(11, et);\n         *   console.log(getMaxListeners(et)); // 11\n         * }\n         * ```\n         * @since v19.9.0\n         */\n        static getMaxListeners(emitter: EventTarget | NodeJS.EventEmitter): number;\n        /**\n         * ```js\n         * import { setMaxListeners, EventEmitter } from 'node:events';\n         *\n         * const target = new EventTarget();\n         * const emitter = new EventEmitter();\n         *\n         * setMaxListeners(5, target, emitter);\n         * ```\n         * @since v15.4.0\n         * @param n A non-negative number. The maximum number of listeners per `EventTarget` event.\n         * @param eventTargets Zero or more {EventTarget} or {EventEmitter} instances. If none are specified, `n` is set as the default max for all newly created {EventTarget} and {EventEmitter}\n         * objects.\n         */\n        static setMaxListeners(n?: number, ...eventTargets: Array<EventTarget | NodeJS.EventEmitter>): void;\n        /**\n         * Listens once to the `abort` event on the provided `signal`.\n         *\n         * Listening to the `abort` event on abort signals is unsafe and may\n         * lead to resource leaks since another third party with the signal can\n         * call `e.stopImmediatePropagation()`. Unfortunately Node.js cannot change\n         * this since it would violate the web standard. Additionally, the original\n         * API makes it easy to forget to remove listeners.\n         *\n         * This API allows safely using `AbortSignal`s in Node.js APIs by solving these\n         * two issues by listening to the event such that `stopImmediatePropagation` does\n         * not prevent the listener from running.\n         *\n         * Returns a disposable so that it may be unsubscribed from more easily.\n         *\n         * ```js\n         * import { addAbortListener } from 'node:events';\n         *\n         * function example(signal) {\n         *   let disposable;\n         *   try {\n         *     signal.addEventListener('abort', (e) => e.stopImmediatePropagation());\n         *     disposable = addAbortListener(signal, (e) => {\n         *       // Do something when signal is aborted.\n         *     });\n         *   } finally {\n         *     disposable?.[Symbol.dispose]();\n         *   }\n         * }\n         * ```\n         * @since v20.5.0\n         * @experimental\n         * @return Disposable that removes the `abort` listener.\n         */\n        static addAbortListener(signal: AbortSignal, resource: (event: Event) => void): Disposable;\n        /**\n         * This symbol shall be used to install a listener for only monitoring `'error'` events. Listeners installed using this symbol are called before the regular `'error'` listeners are called.\n         *\n         * Installing a listener using this symbol does not change the behavior once an `'error'` event is emitted. Therefore, the process will still crash if no\n         * regular `'error'` listener is installed.\n         * @since v13.6.0, v12.17.0\n         */\n        static readonly errorMonitor: unique symbol;\n        /**\n         * Value: `Symbol.for('nodejs.rejection')`\n         *\n         * See how to write a custom `rejection handler`.\n         * @since v13.4.0, v12.16.0\n         */\n        static readonly captureRejectionSymbol: unique symbol;\n        /**\n         * Value: [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type)\n         *\n         * Change the default `captureRejections` option on all new `EventEmitter` objects.\n         * @since v13.4.0, v12.16.0\n         */\n        static captureRejections: boolean;\n        /**\n         * By default, a maximum of `10` listeners can be registered for any single\n         * event. This limit can be changed for individual `EventEmitter` instances\n         * using the `emitter.setMaxListeners(n)` method. To change the default\n         * for _all_`EventEmitter` instances, the `events.defaultMaxListeners` property\n         * can be used. If this value is not a positive number, a `RangeError` is thrown.\n         *\n         * Take caution when setting the `events.defaultMaxListeners` because the\n         * change affects _all_ `EventEmitter` instances, including those created before\n         * the change is made. However, calling `emitter.setMaxListeners(n)` still has\n         * precedence over `events.defaultMaxListeners`.\n         *\n         * This is not a hard limit. The `EventEmitter` instance will allow\n         * more listeners to be added but will output a trace warning to stderr indicating\n         * that a \"possible EventEmitter memory leak\" has been detected. For any single\n         * `EventEmitter`, the `emitter.getMaxListeners()` and `emitter.setMaxListeners()` methods can be used to\n         * temporarily avoid this warning:\n         *\n         * ```js\n         * import { EventEmitter } from 'node:events';\n         * const emitter = new EventEmitter();\n         * emitter.setMaxListeners(emitter.getMaxListeners() + 1);\n         * emitter.once('event', () => {\n         *   // do stuff\n         *   emitter.setMaxListeners(Math.max(emitter.getMaxListeners() - 1, 0));\n         * });\n         * ```\n         *\n         * The `--trace-warnings` command-line flag can be used to display the\n         * stack trace for such warnings.\n         *\n         * The emitted warning can be inspected with `process.on('warning')` and will\n         * have the additional `emitter`, `type`, and `count` properties, referring to\n         * the event emitter instance, the event's name and the number of attached\n         * listeners, respectively.\n         * Its `name` property is set to `'MaxListenersExceededWarning'`.\n         * @since v0.11.2\n         */\n        static defaultMaxListeners: number;\n    }\n    import internal = require(\"node:events\");\n    namespace EventEmitter {\n        // Should just be `export { EventEmitter }`, but that doesn't work in TypeScript 3.4\n        export { internal as EventEmitter };\n        export interface Abortable {\n            /**\n             * When provided the corresponding `AbortController` can be used to cancel an asynchronous action.\n             */\n            signal?: AbortSignal | undefined;\n        }\n\n        export interface EventEmitterReferencingAsyncResource extends AsyncResource {\n            readonly eventEmitter: EventEmitterAsyncResource;\n        }\n\n        export interface EventEmitterAsyncResourceOptions extends AsyncResourceOptions, EventEmitterOptions {\n            /**\n             * The type of async event, this is required when instantiating `EventEmitterAsyncResource`\n             * directly rather than as a child class.\n             * @default new.target.name if instantiated as a child class.\n             */\n            name?: string;\n        }\n\n        /**\n         * Integrates `EventEmitter` with `AsyncResource` for `EventEmitter`s that\n         * require manual async tracking. Specifically, all events emitted by instances\n         * of `events.EventEmitterAsyncResource` will run within its `async context`.\n         *\n         * ```js\n         * import { EventEmitterAsyncResource, EventEmitter } from 'node:events';\n         * import { notStrictEqual, strictEqual } from 'node:assert';\n         * import { executionAsyncId, triggerAsyncId } from 'node:async_hooks';\n         *\n         * // Async tracking tooling will identify this as 'Q'.\n         * const ee1 = new EventEmitterAsyncResource({ name: 'Q' });\n         *\n         * // 'foo' listeners will run in the EventEmitters async context.\n         * ee1.on('foo', () => {\n         *   strictEqual(executionAsyncId(), ee1.asyncId);\n         *   strictEqual(triggerAsyncId(), ee1.triggerAsyncId);\n         * });\n         *\n         * const ee2 = new EventEmitter();\n         *\n         * // 'foo' listeners on ordinary EventEmitters that do not track async\n         * // context, however, run in the same async context as the emit().\n         * ee2.on('foo', () => {\n         *   notStrictEqual(executionAsyncId(), ee2.asyncId);\n         *   notStrictEqual(triggerAsyncId(), ee2.triggerAsyncId);\n         * });\n         *\n         * Promise.resolve().then(() => {\n         *   ee1.emit('foo');\n         *   ee2.emit('foo');\n         * });\n         * ```\n         *\n         * The `EventEmitterAsyncResource` class has the same methods and takes the\n         * same options as `EventEmitter` and `AsyncResource` themselves.\n         * @since v17.4.0, v16.14.0\n         */\n        export class EventEmitterAsyncResource extends EventEmitter {\n            /**\n             * @param options Only optional in child class.\n             */\n            constructor(options?: EventEmitterAsyncResourceOptions);\n            /**\n             * Call all `destroy` hooks. This should only ever be called once. An error will\n             * be thrown if it is called more than once. This **must** be manually called. If\n             * the resource is left to be collected by the GC then the `destroy` hooks will\n             * never be called.\n             */\n            emitDestroy(): void;\n            /**\n             * The unique `asyncId` assigned to the resource.\n             */\n            readonly asyncId: number;\n            /**\n             * The same triggerAsyncId that is passed to the AsyncResource constructor.\n             */\n            readonly triggerAsyncId: number;\n            /**\n             * The returned `AsyncResource` object has an additional `eventEmitter` property\n             * that provides a reference to this `EventEmitterAsyncResource`.\n             */\n            readonly asyncResource: EventEmitterReferencingAsyncResource;\n        }\n    }\n    global {\n        namespace NodeJS {\n            interface EventEmitter<T extends EventMap<T> = DefaultEventMap> {\n                [EventEmitter.captureRejectionSymbol]?<K>(error: Error, event: Key<K, T>, ...args: Args<K, T>): void;\n                /**\n                 * Alias for `emitter.on(eventName, listener)`.\n                 * @since v0.1.26\n                 */\n                addListener<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Adds the `listener` function to the end of the listeners array for the event\n                 * named `eventName`. No checks are made to see if the `listener` has already\n                 * been added. Multiple calls passing the same combination of `eventName` and\n                 * `listener` will result in the `listener` being added, and called, multiple times.\n                 *\n                 * ```js\n                 * server.on('connection', (stream) => {\n                 *   console.log('someone connected!');\n                 * });\n                 * ```\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 *\n                 * By default, event listeners are invoked in the order they are added. The `emitter.prependListener()` method can be used as an alternative to add the\n                 * event listener to the beginning of the listeners array.\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * const myEE = new EventEmitter();\n                 * myEE.on('foo', () => console.log('a'));\n                 * myEE.prependListener('foo', () => console.log('b'));\n                 * myEE.emit('foo');\n                 * // Prints:\n                 * //   b\n                 * //   a\n                 * ```\n                 * @since v0.1.101\n                 * @param eventName The name of the event.\n                 * @param listener The callback function\n                 */\n                on<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Adds a **one-time** `listener` function for the event named `eventName`. The\n                 * next time `eventName` is triggered, this listener is removed and then invoked.\n                 *\n                 * ```js\n                 * server.once('connection', (stream) => {\n                 *   console.log('Ah, we have our first user!');\n                 * });\n                 * ```\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 *\n                 * By default, event listeners are invoked in the order they are added. The `emitter.prependOnceListener()` method can be used as an alternative to add the\n                 * event listener to the beginning of the listeners array.\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * const myEE = new EventEmitter();\n                 * myEE.once('foo', () => console.log('a'));\n                 * myEE.prependOnceListener('foo', () => console.log('b'));\n                 * myEE.emit('foo');\n                 * // Prints:\n                 * //   b\n                 * //   a\n                 * ```\n                 * @since v0.3.0\n                 * @param eventName The name of the event.\n                 * @param listener The callback function\n                 */\n                once<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Removes the specified `listener` from the listener array for the event named `eventName`.\n                 *\n                 * ```js\n                 * const callback = (stream) => {\n                 *   console.log('someone connected!');\n                 * };\n                 * server.on('connection', callback);\n                 * // ...\n                 * server.removeListener('connection', callback);\n                 * ```\n                 *\n                 * `removeListener()` will remove, at most, one instance of a listener from the\n                 * listener array. If any single listener has been added multiple times to the\n                 * listener array for the specified `eventName`, then `removeListener()` must be\n                 * called multiple times to remove each instance.\n                 *\n                 * Once an event is emitted, all listeners attached to it at the\n                 * time of emitting are called in order. This implies that any `removeListener()` or `removeAllListeners()` calls _after_ emitting and _before_ the last listener finishes execution\n                 * will not remove them from`emit()` in progress. Subsequent events behave as expected.\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * class MyEmitter extends EventEmitter {}\n                 * const myEmitter = new MyEmitter();\n                 *\n                 * const callbackA = () => {\n                 *   console.log('A');\n                 *   myEmitter.removeListener('event', callbackB);\n                 * };\n                 *\n                 * const callbackB = () => {\n                 *   console.log('B');\n                 * };\n                 *\n                 * myEmitter.on('event', callbackA);\n                 *\n                 * myEmitter.on('event', callbackB);\n                 *\n                 * // callbackA removes listener callbackB but it will still be called.\n                 * // Internal listener array at time of emit [callbackA, callbackB]\n                 * myEmitter.emit('event');\n                 * // Prints:\n                 * //   A\n                 * //   B\n                 *\n                 * // callbackB is now removed.\n                 * // Internal listener array [callbackA]\n                 * myEmitter.emit('event');\n                 * // Prints:\n                 * //   A\n                 * ```\n                 *\n                 * Because listeners are managed using an internal array, calling this will\n                 * change the position indices of any listener registered _after_ the listener\n                 * being removed. This will not impact the order in which listeners are called,\n                 * but it means that any copies of the listener array as returned by\n                 * the `emitter.listeners()` method will need to be recreated.\n                 *\n                 * When a single function has been added as a handler multiple times for a single\n                 * event (as in the example below), `removeListener()` will remove the most\n                 * recently added instance. In the example the `once('ping')` listener is removed:\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * const ee = new EventEmitter();\n                 *\n                 * function pong() {\n                 *   console.log('pong');\n                 * }\n                 *\n                 * ee.on('ping', pong);\n                 * ee.once('ping', pong);\n                 * ee.removeListener('ping', pong);\n                 *\n                 * ee.emit('ping');\n                 * ee.emit('ping');\n                 * ```\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 * @since v0.1.26\n                 */\n                removeListener<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Alias for `emitter.removeListener()`.\n                 * @since v10.0.0\n                 */\n                off<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Removes all listeners, or those of the specified `eventName`.\n                 *\n                 * It is bad practice to remove listeners added elsewhere in the code,\n                 * particularly when the `EventEmitter` instance was created by some other\n                 * component or module (e.g. sockets or file streams).\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 * @since v0.1.26\n                 */\n                removeAllListeners(eventName?: Key<unknown, T>): this;\n                /**\n                 * By default `EventEmitter`s will print a warning if more than `10` listeners are\n                 * added for a particular event. This is a useful default that helps finding\n                 * memory leaks. The `emitter.setMaxListeners()` method allows the limit to be\n                 * modified for this specific `EventEmitter` instance. The value can be set to `Infinity` (or `0`) to indicate an unlimited number of listeners.\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 * @since v0.3.5\n                 */\n                setMaxListeners(n: number): this;\n                /**\n                 * Returns the current max listener value for the `EventEmitter` which is either\n                 * set by `emitter.setMaxListeners(n)` or defaults to {@link EventEmitter.defaultMaxListeners}.\n                 * @since v1.0.0\n                 */\n                getMaxListeners(): number;\n                /**\n                 * Returns a copy of the array of listeners for the event named `eventName`.\n                 *\n                 * ```js\n                 * server.on('connection', (stream) => {\n                 *   console.log('someone connected!');\n                 * });\n                 * console.log(util.inspect(server.listeners('connection')));\n                 * // Prints: [ [Function] ]\n                 * ```\n                 * @since v0.1.26\n                 */\n                listeners<K>(eventName: Key<K, T>): Array<Listener2<K, T>>;\n                /**\n                 * Returns a copy of the array of listeners for the event named `eventName`,\n                 * including any wrappers (such as those created by `.once()`).\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * const emitter = new EventEmitter();\n                 * emitter.once('log', () => console.log('log once'));\n                 *\n                 * // Returns a new Array with a function `onceWrapper` which has a property\n                 * // `listener` which contains the original listener bound above\n                 * const listeners = emitter.rawListeners('log');\n                 * const logFnWrapper = listeners[0];\n                 *\n                 * // Logs \"log once\" to the console and does not unbind the `once` event\n                 * logFnWrapper.listener();\n                 *\n                 * // Logs \"log once\" to the console and removes the listener\n                 * logFnWrapper();\n                 *\n                 * emitter.on('log', () => console.log('log persistently'));\n                 * // Will return a new Array with a single function bound by `.on()` above\n                 * const newListeners = emitter.rawListeners('log');\n                 *\n                 * // Logs \"log persistently\" twice\n                 * newListeners[0]();\n                 * emitter.emit('log');\n                 * ```\n                 * @since v9.4.0\n                 */\n                rawListeners<K>(eventName: Key<K, T>): Array<Listener2<K, T>>;\n                /**\n                 * Synchronously calls each of the listeners registered for the event named `eventName`, in the order they were registered, passing the supplied arguments\n                 * to each.\n                 *\n                 * Returns `true` if the event had listeners, `false` otherwise.\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 * const myEmitter = new EventEmitter();\n                 *\n                 * // First listener\n                 * myEmitter.on('event', function firstListener() {\n                 *   console.log('Helloooo! first listener');\n                 * });\n                 * // Second listener\n                 * myEmitter.on('event', function secondListener(arg1, arg2) {\n                 *   console.log(`event with parameters ${arg1}, ${arg2} in second listener`);\n                 * });\n                 * // Third listener\n                 * myEmitter.on('event', function thirdListener(...args) {\n                 *   const parameters = args.join(', ');\n                 *   console.log(`event with parameters ${parameters} in third listener`);\n                 * });\n                 *\n                 * console.log(myEmitter.listeners('event'));\n                 *\n                 * myEmitter.emit('event', 1, 2, 3, 4, 5);\n                 *\n                 * // Prints:\n                 * // [\n                 * //   [Function: firstListener],\n                 * //   [Function: secondListener],\n                 * //   [Function: thirdListener]\n                 * // ]\n                 * // Helloooo! first listener\n                 * // event with parameters 1, 2 in second listener\n                 * // event with parameters 1, 2, 3, 4, 5 in third listener\n                 * ```\n                 * @since v0.1.26\n                 */\n                emit<K>(eventName: Key<K, T>, ...args: Args<K, T>): boolean;\n                /**\n                 * Returns the number of listeners listening for the event named `eventName`.\n                 * If `listener` is provided, it will return how many times the listener is found\n                 * in the list of the listeners of the event.\n                 * @since v3.2.0\n                 * @param eventName The name of the event being listened for\n                 * @param listener The event handler function\n                 */\n                listenerCount<K>(eventName: Key<K, T>, listener?: Listener2<K, T>): number;\n                /**\n                 * Adds the `listener` function to the _beginning_ of the listeners array for the\n                 * event named `eventName`. No checks are made to see if the `listener` has\n                 * already been added. Multiple calls passing the same combination of `eventName`\n                 * and `listener` will result in the `listener` being added, and called, multiple times.\n                 *\n                 * ```js\n                 * server.prependListener('connection', (stream) => {\n                 *   console.log('someone connected!');\n                 * });\n                 * ```\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 * @since v6.0.0\n                 * @param eventName The name of the event.\n                 * @param listener The callback function\n                 */\n                prependListener<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Adds a **one-time**`listener` function for the event named `eventName` to the _beginning_ of the listeners array. The next time `eventName` is triggered, this\n                 * listener is removed, and then invoked.\n                 *\n                 * ```js\n                 * server.prependOnceListener('connection', (stream) => {\n                 *   console.log('Ah, we have our first user!');\n                 * });\n                 * ```\n                 *\n                 * Returns a reference to the `EventEmitter`, so that calls can be chained.\n                 * @since v6.0.0\n                 * @param eventName The name of the event.\n                 * @param listener The callback function\n                 */\n                prependOnceListener<K>(eventName: Key<K, T>, listener: Listener1<K, T>): this;\n                /**\n                 * Returns an array listing the events for which the emitter has registered\n                 * listeners. The values in the array are strings or `Symbol`s.\n                 *\n                 * ```js\n                 * import { EventEmitter } from 'node:events';\n                 *\n                 * const myEE = new EventEmitter();\n                 * myEE.on('foo', () => {});\n                 * myEE.on('bar', () => {});\n                 *\n                 * const sym = Symbol('symbol');\n                 * myEE.on(sym, () => {});\n                 *\n                 * console.log(myEE.eventNames());\n                 * // Prints: [ 'foo', 'bar', Symbol(symbol) ]\n                 * ```\n                 * @since v6.0.0\n                 */\n                eventNames(): Array<(string | symbol) & Key2<unknown, T>>;\n            }\n        }\n    }\n    export = EventEmitter;\n}\ndeclare module \"node:events\" {\n    import events = require(\"events\");\n    export = events;\n}\n",
    "node_modules/@types/node/fs/promises.d.ts": "/**\n * The `fs/promises` API provides asynchronous file system methods that return\n * promises.\n *\n * The promise APIs use the underlying Node.js threadpool to perform file\n * system operations off the event loop thread. These operations are not\n * synchronized or threadsafe. Care must be taken when performing multiple\n * concurrent modifications on the same file or data corruption may occur.\n * @since v10.0.0\n */\ndeclare module \"fs/promises\" {\n    import { Abortable } from \"node:events\";\n    import { Stream } from \"node:stream\";\n    import { ReadableStream } from \"node:stream/web\";\n    import {\n        BigIntStats,\n        BigIntStatsFs,\n        BufferEncodingOption,\n        constants as fsConstants,\n        CopyOptions,\n        Dir,\n        Dirent,\n        GlobOptions,\n        GlobOptionsWithFileTypes,\n        GlobOptionsWithoutFileTypes,\n        MakeDirectoryOptions,\n        Mode,\n        ObjectEncodingOptions,\n        OpenDirOptions,\n        OpenMode,\n        PathLike,\n        ReadPosition,\n        ReadStream,\n        ReadVResult,\n        RmDirOptions,\n        RmOptions,\n        StatFsOptions,\n        StatOptions,\n        Stats,\n        StatsFs,\n        TimeLike,\n        WatchEventType,\n        WatchOptions,\n        WriteStream,\n        WriteVResult,\n    } from \"node:fs\";\n    import { Interface as ReadlineInterface } from \"node:readline\";\n    interface FileChangeInfo<T extends string | Buffer> {\n        eventType: WatchEventType;\n        filename: T | null;\n    }\n    interface FlagAndOpenMode {\n        mode?: Mode | undefined;\n        flag?: OpenMode | undefined;\n    }\n    interface FileReadResult<T extends NodeJS.ArrayBufferView> {\n        bytesRead: number;\n        buffer: T;\n    }\n    interface FileReadOptions<T extends NodeJS.ArrayBufferView = Buffer> {\n        /**\n         * @default `Buffer.alloc(0xffff)`\n         */\n        buffer?: T;\n        /**\n         * @default 0\n         */\n        offset?: number | null;\n        /**\n         * @default `buffer.byteLength`\n         */\n        length?: number | null;\n        position?: ReadPosition | null;\n    }\n    interface CreateReadStreamOptions extends Abortable {\n        encoding?: BufferEncoding | null | undefined;\n        autoClose?: boolean | undefined;\n        emitClose?: boolean | undefined;\n        start?: number | undefined;\n        end?: number | undefined;\n        highWaterMark?: number | undefined;\n    }\n    interface CreateWriteStreamOptions {\n        encoding?: BufferEncoding | null | undefined;\n        autoClose?: boolean | undefined;\n        emitClose?: boolean | undefined;\n        start?: number | undefined;\n        highWaterMark?: number | undefined;\n        flush?: boolean | undefined;\n    }\n    // TODO: Add `EventEmitter` close\n    interface FileHandle {\n        /**\n         * The numeric file descriptor managed by the {FileHandle} object.\n         * @since v10.0.0\n         */\n        readonly fd: number;\n        /**\n         * Alias of `filehandle.writeFile()`.\n         *\n         * When operating on file handles, the mode cannot be changed from what it was set\n         * to with `fsPromises.open()`. Therefore, this is equivalent to `filehandle.writeFile()`.\n         * @since v10.0.0\n         * @return Fulfills with `undefined` upon success.\n         */\n        appendFile(\n            data: string | Uint8Array,\n            options?:\n                | (ObjectEncodingOptions & Abortable)\n                | BufferEncoding\n                | null,\n        ): Promise<void>;\n        /**\n         * Changes the ownership of the file. A wrapper for [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html).\n         * @since v10.0.0\n         * @param uid The file's new owner's user id.\n         * @param gid The file's new group's group id.\n         * @return Fulfills with `undefined` upon success.\n         */\n        chown(uid: number, gid: number): Promise<void>;\n        /**\n         * Modifies the permissions on the file. See [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html).\n         * @since v10.0.0\n         * @param mode the file mode bit mask.\n         * @return Fulfills with `undefined` upon success.\n         */\n        chmod(mode: Mode): Promise<void>;\n        /**\n         * Unlike the 16 KiB default `highWaterMark` for a `stream.Readable`, the stream\n         * returned by this method has a default `highWaterMark` of 64 KiB.\n         *\n         * `options` can include `start` and `end` values to read a range of bytes from\n         * the file instead of the entire file. Both `start` and `end` are inclusive and\n         * start counting at 0, allowed values are in the\n         * \\[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\\] range. If `start` is\n         * omitted or `undefined`, `filehandle.createReadStream()` reads sequentially from\n         * the current file position. The `encoding` can be any one of those accepted by `Buffer`.\n         *\n         * If the `FileHandle` points to a character device that only supports blocking\n         * reads (such as keyboard or sound card), read operations do not finish until data\n         * is available. This can prevent the process from exiting and the stream from\n         * closing naturally.\n         *\n         * By default, the stream will emit a `'close'` event after it has been\n         * destroyed.  Set the `emitClose` option to `false` to change this behavior.\n         *\n         * ```js\n         * import { open } from 'node:fs/promises';\n         *\n         * const fd = await open('/dev/input/event0');\n         * // Create a stream from some character device.\n         * const stream = fd.createReadStream();\n         * setTimeout(() => {\n         *   stream.close(); // This may not close the stream.\n         *   // Artificially marking end-of-stream, as if the underlying resource had\n         *   // indicated end-of-file by itself, allows the stream to close.\n         *   // This does not cancel pending read operations, and if there is such an\n         *   // operation, the process may still not be able to exit successfully\n         *   // until it finishes.\n         *   stream.push(null);\n         *   stream.read(0);\n         * }, 100);\n         * ```\n         *\n         * If `autoClose` is false, then the file descriptor won't be closed, even if\n         * there's an error. It is the application's responsibility to close it and make\n         * sure there's no file descriptor leak. If `autoClose` is set to true (default\n         * behavior), on `'error'` or `'end'` the file descriptor will be closed\n         * automatically.\n         *\n         * An example to read the last 10 bytes of a file which is 100 bytes long:\n         *\n         * ```js\n         * import { open } from 'node:fs/promises';\n         *\n         * const fd = await open('sample.txt');\n         * fd.createReadStream({ start: 90, end: 99 });\n         * ```\n         * @since v16.11.0\n         */\n        createReadStream(options?: CreateReadStreamOptions): ReadStream;\n        /**\n         * `options` may also include a `start` option to allow writing data at some\n         * position past the beginning of the file, allowed values are in the\n         * \\[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\\] range. Modifying a file rather than\n         * replacing it may require the `flags` `open` option to be set to `r+` rather than\n         * the default `r`. The `encoding` can be any one of those accepted by `Buffer`.\n         *\n         * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'` the file descriptor will be closed automatically. If `autoClose` is false,\n         * then the file descriptor won't be closed, even if there's an error.\n         * It is the application's responsibility to close it and make sure there's no\n         * file descriptor leak.\n         *\n         * By default, the stream will emit a `'close'` event after it has been\n         * destroyed.  Set the `emitClose` option to `false` to change this behavior.\n         * @since v16.11.0\n         */\n        createWriteStream(options?: CreateWriteStreamOptions): WriteStream;\n        /**\n         * Forces all currently queued I/O operations associated with the file to the\n         * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details.\n         *\n         * Unlike `filehandle.sync` this method does not flush modified metadata.\n         * @since v10.0.0\n         * @return Fulfills with `undefined` upon success.\n         */\n        datasync(): Promise<void>;\n        /**\n         * Request that all data for the open file descriptor is flushed to the storage\n         * device. The specific implementation is operating system and device specific.\n         * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail.\n         * @since v10.0.0\n         * @return Fulfills with `undefined` upon success.\n         */\n        sync(): Promise<void>;\n        /**\n         * Reads data from the file and stores that in the given buffer.\n         *\n         * If the file is not modified concurrently, the end-of-file is reached when the\n         * number of bytes read is zero.\n         * @since v10.0.0\n         * @param buffer A buffer that will be filled with the file data read.\n         * @param offset The location in the buffer at which to start filling.\n         * @param length The number of bytes to read.\n         * @param position The location where to begin reading data from the file. If `null`, data will be read from the current file position, and the position will be updated. If `position` is an\n         * integer, the current file position will remain unchanged.\n         * @return Fulfills upon success with an object with two properties:\n         */\n        read<T extends NodeJS.ArrayBufferView>(\n            buffer: T,\n            offset?: number | null,\n            length?: number | null,\n            position?: ReadPosition | null,\n        ): Promise<FileReadResult<T>>;\n        read<T extends NodeJS.ArrayBufferView = Buffer>(\n            buffer: T,\n            options?: FileReadOptions<T>,\n        ): Promise<FileReadResult<T>>;\n        read<T extends NodeJS.ArrayBufferView = Buffer>(options?: FileReadOptions<T>): Promise<FileReadResult<T>>;\n        /**\n         * Returns a byte-oriented `ReadableStream` that may be used to read the file's\n         * contents.\n         *\n         * An error will be thrown if this method is called more than once or is called\n         * after the `FileHandle` is closed or closing.\n         *\n         * ```js\n         * import {\n         *   open,\n         * } from 'node:fs/promises';\n         *\n         * const file = await open('./some/file/to/read');\n         *\n         * for await (const chunk of file.readableWebStream())\n         *   console.log(chunk);\n         *\n         * await file.close();\n         * ```\n         *\n         * While the `ReadableStream` will read the file to completion, it will not\n         * close the `FileHandle` automatically. User code must still call the`fileHandle.close()` method.\n         * @since v17.0.0\n         * @experimental\n         */\n        readableWebStream(): ReadableStream;\n        /**\n         * Asynchronously reads the entire contents of a file.\n         *\n         * If `options` is a string, then it specifies the `encoding`.\n         *\n         * The `FileHandle` has to support reading.\n         *\n         * If one or more `filehandle.read()` calls are made on a file handle and then a `filehandle.readFile()` call is made, the data will be read from the current\n         * position till the end of the file. It doesn't always read from the beginning\n         * of the file.\n         * @since v10.0.0\n         * @return Fulfills upon a successful read with the contents of the file. If no encoding is specified (using `options.encoding`), the data is returned as a {Buffer} object. Otherwise, the\n         * data will be a string.\n         */\n        readFile(\n            options?:\n                | ({ encoding?: null | undefined } & Abortable)\n                | null,\n        ): Promise<Buffer>;\n        /**\n         * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically.\n         * The `FileHandle` must have been opened for reading.\n         */\n        readFile(\n            options:\n                | ({ encoding: BufferEncoding } & Abortable)\n                | BufferEncoding,\n        ): Promise<string>;\n        /**\n         * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically.\n         * The `FileHandle` must have been opened for reading.\n         */\n        readFile(\n            options?:\n                | (ObjectEncodingOptions & Abortable)\n                | BufferEncoding\n                | null,\n        ): Promise<string | Buffer>;\n        /**\n         * Convenience method to create a `readline` interface and stream over the file.\n         * See `filehandle.createReadStream()` for the options.\n         *\n         * ```js\n         * import { open } from 'node:fs/promises';\n         *\n         * const file = await open('./some/file/to/read');\n         *\n         * for await (const line of file.readLines()) {\n         *   console.log(line);\n         * }\n         * ```\n         * @since v18.11.0\n         */\n        readLines(options?: CreateReadStreamOptions): ReadlineInterface;\n        /**\n         * @since v10.0.0\n         * @return Fulfills with an {fs.Stats} for the file.\n         */\n        stat(\n            opts?: StatOptions & {\n                bigint?: false | undefined;\n            },\n        ): Promise<Stats>;\n        stat(\n            opts: StatOptions & {\n                bigint: true;\n            },\n        ): Promise<BigIntStats>;\n        stat(opts?: StatOptions): Promise<Stats | BigIntStats>;\n        /**\n         * Truncates the file.\n         *\n         * If the file was larger than `len` bytes, only the first `len` bytes will be\n         * retained in the file.\n         *\n         * The following example retains only the first four bytes of the file:\n         *\n         * ```js\n         * import { open } from 'node:fs/promises';\n         *\n         * let filehandle = null;\n         * try {\n         *   filehandle = await open('temp.txt', 'r+');\n         *   await filehandle.truncate(4);\n         * } finally {\n         *   await filehandle?.close();\n         * }\n         * ```\n         *\n         * If the file previously was shorter than `len` bytes, it is extended, and the\n         * extended part is filled with null bytes (`'\\0'`):\n         *\n         * If `len` is negative then `0` will be used.\n         * @since v10.0.0\n         * @param [len=0]\n         * @return Fulfills with `undefined` upon success.\n         */\n        truncate(len?: number): Promise<void>;\n        /**\n         * Change the file system timestamps of the object referenced by the `FileHandle` then fulfills the promise with no arguments upon success.\n         * @since v10.0.0\n         */\n        utimes(atime: TimeLike, mtime: TimeLike): Promise<void>;\n        /**\n         * Asynchronously writes data to a file, replacing the file if it already exists. `data` can be a string, a buffer, an\n         * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface), or an\n         * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object.\n         * The promise is fulfilled with no arguments upon success.\n         *\n         * If `options` is a string, then it specifies the `encoding`.\n         *\n         * The `FileHandle` has to support writing.\n         *\n         * It is unsafe to use `filehandle.writeFile()` multiple times on the same file\n         * without waiting for the promise to be fulfilled (or rejected).\n         *\n         * If one or more `filehandle.write()` calls are made on a file handle and then a`filehandle.writeFile()` call is made, the data will be written from the\n         * current position till the end of the file. It doesn't always write from the\n         * beginning of the file.\n         * @since v10.0.0\n         */\n        writeFile(\n            data: string | Uint8Array,\n            options?:\n                | (ObjectEncodingOptions & Abortable)\n                | BufferEncoding\n                | null,\n        ): Promise<void>;\n        /**\n         * Write `buffer` to the file.\n         *\n         * The promise is fulfilled with an object containing two properties:\n         *\n         * It is unsafe to use `filehandle.write()` multiple times on the same file\n         * without waiting for the promise to be fulfilled (or rejected). For this\n         * scenario, use `filehandle.createWriteStream()`.\n         *\n         * On Linux, positional writes do not work when the file is opened in append mode.\n         * The kernel ignores the position argument and always appends the data to\n         * the end of the file.\n         * @since v10.0.0\n         * @param offset The start position from within `buffer` where the data to write begins.\n         * @param [length=buffer.byteLength - offset] The number of bytes from `buffer` to write.\n         * @param [position='null'] The offset from the beginning of the file where the data from `buffer` should be written. If `position` is not a `number`, the data will be written at the current\n         * position. See the POSIX pwrite(2) documentation for more detail.\n         */\n        write<TBuffer extends Uint8Array>(\n            buffer: TBuffer,\n            offset?: number | null,\n            length?: number | null,\n            position?: number | null,\n        ): Promise<{\n            bytesWritten: number;\n            buffer: TBuffer;\n        }>;\n        write<TBuffer extends Uint8Array>(\n            buffer: TBuffer,\n            options?: { offset?: number; length?: number; position?: number },\n        ): Promise<{\n            bytesWritten: number;\n            buffer: TBuffer;\n        }>;\n        write(\n            data: string,\n            position?: number | null,\n            encoding?: BufferEncoding | null,\n        ): Promise<{\n            bytesWritten: number;\n            buffer: string;\n        }>;\n        /**\n         * Write an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s to the file.\n         *\n         * The promise is fulfilled with an object containing a two properties:\n         *\n         * It is unsafe to call `writev()` multiple times on the same file without waiting\n         * for the promise to be fulfilled (or rejected).\n         *\n         * On Linux, positional writes don't work when the file is opened in append mode.\n         * The kernel ignores the position argument and always appends the data to\n         * the end of the file.\n         * @since v12.9.0\n         * @param [position='null'] The offset from the beginning of the file where the data from `buffers` should be written. If `position` is not a `number`, the data will be written at the current\n         * position.\n         */\n        writev(buffers: readonly NodeJS.ArrayBufferView[], position?: number): Promise<WriteVResult>;\n        /**\n         * Read from a file and write to an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s\n         * @since v13.13.0, v12.17.0\n         * @param [position='null'] The offset from the beginning of the file where the data should be read from. If `position` is not a `number`, the data will be read from the current position.\n         * @return Fulfills upon success an object containing two properties:\n         */\n        readv(buffers: readonly NodeJS.ArrayBufferView[], position?: number): Promise<ReadVResult>;\n        /**\n         * Closes the file handle after waiting for any pending operation on the handle to\n         * complete.\n         *\n         * ```js\n         * import { open } from 'node:fs/promises';\n         *\n         * let filehandle;\n         * try {\n         *   filehandle = await open('thefile.txt', 'r');\n         * } finally {\n         *   await filehandle?.close();\n         * }\n         * ```\n         * @since v10.0.0\n         * @return Fulfills with `undefined` upon success.\n         */\n        close(): Promise<void>;\n        /**\n         * An alias for {@link FileHandle.close()}.\n         * @since v20.4.0\n         */\n        [Symbol.asyncDispose](): Promise<void>;\n    }\n    const constants: typeof fsConstants;\n    /**\n     * Tests a user's permissions for the file or directory specified by `path`.\n     * The `mode` argument is an optional integer that specifies the accessibility\n     * checks to be performed. `mode` should be either the value `fs.constants.F_OK` or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, `fs.constants.W_OK`, and `fs.constants.X_OK`\n     * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for\n     * possible values of `mode`.\n     *\n     * If the accessibility check is successful, the promise is fulfilled with no\n     * value. If any of the accessibility checks fail, the promise is rejected\n     * with an [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object. The following example checks if the file`/etc/passwd` can be read and\n     * written by the current process.\n     *\n     * ```js\n     * import { access, constants } from 'node:fs/promises';\n     *\n     * try {\n     *   await access('/etc/passwd', constants.R_OK | constants.W_OK);\n     *   console.log('can access');\n     * } catch {\n     *   console.error('cannot access');\n     * }\n     * ```\n     *\n     * Using `fsPromises.access()` to check for the accessibility of a file before\n     * calling `fsPromises.open()` is not recommended. Doing so introduces a race\n     * condition, since other processes may change the file's state between the two\n     * calls. Instead, user code should open/read/write the file directly and handle\n     * the error raised if the file is not accessible.\n     * @since v10.0.0\n     * @param [mode=fs.constants.F_OK]\n     * @return Fulfills with `undefined` upon success.\n     */\n    function access(path: PathLike, mode?: number): Promise<void>;\n    /**\n     * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it\n     * already exists.\n     *\n     * No guarantees are made about the atomicity of the copy operation. If an\n     * error occurs after the destination file has been opened for writing, an attempt\n     * will be made to remove the destination.\n     *\n     * ```js\n     * import { copyFile, constants } from 'node:fs/promises';\n     *\n     * try {\n     *   await copyFile('source.txt', 'destination.txt');\n     *   console.log('source.txt was copied to destination.txt');\n     * } catch {\n     *   console.error('The file could not be copied');\n     * }\n     *\n     * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.\n     * try {\n     *   await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL);\n     *   console.log('source.txt was copied to destination.txt');\n     * } catch {\n     *   console.error('The file could not be copied');\n     * }\n     * ```\n     * @since v10.0.0\n     * @param src source filename to copy\n     * @param dest destination filename of the copy operation\n     * @param [mode=0] Optional modifiers that specify the behavior of the copy operation. It is possible to create a mask consisting of the bitwise OR of two or more values (e.g.\n     * `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`)\n     * @return Fulfills with `undefined` upon success.\n     */\n    function copyFile(src: PathLike, dest: PathLike, mode?: number): Promise<void>;\n    /**\n     * Opens a `FileHandle`.\n     *\n     * Refer to the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more detail.\n     *\n     * Some characters (`< > : \" / \\ | ? *`) are reserved under Windows as documented\n     * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains\n     * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams).\n     * @since v10.0.0\n     * @param [flags='r'] See `support of file system `flags``.\n     * @param [mode=0o666] Sets the file mode (permission and sticky bits) if the file is created.\n     * @return Fulfills with a {FileHandle} object.\n     */\n    function open(path: PathLike, flags?: string | number, mode?: Mode): Promise<FileHandle>;\n    /**\n     * Renames `oldPath` to `newPath`.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function rename(oldPath: PathLike, newPath: PathLike): Promise<void>;\n    /**\n     * Truncates (shortens or extends the length) of the content at `path` to `len` bytes.\n     * @since v10.0.0\n     * @param [len=0]\n     * @return Fulfills with `undefined` upon success.\n     */\n    function truncate(path: PathLike, len?: number): Promise<void>;\n    /**\n     * Removes the directory identified by `path`.\n     *\n     * Using `fsPromises.rmdir()` on a file (not a directory) results in the\n     * promise being rejected with an `ENOENT` error on Windows and an `ENOTDIR` error on POSIX.\n     *\n     * To get a behavior similar to the `rm -rf` Unix command, use `fsPromises.rm()` with options `{ recursive: true, force: true }`.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function rmdir(path: PathLike, options?: RmDirOptions): Promise<void>;\n    /**\n     * Removes files and directories (modeled on the standard POSIX `rm` utility).\n     * @since v14.14.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function rm(path: PathLike, options?: RmOptions): Promise<void>;\n    /**\n     * Asynchronously creates a directory.\n     *\n     * The optional `options` argument can be an integer specifying `mode` (permission\n     * and sticky bits), or an object with a `mode` property and a `recursive` property indicating whether parent directories should be created. Calling `fsPromises.mkdir()` when `path` is a directory\n     * that exists results in a\n     * rejection only when `recursive` is false.\n     *\n     * ```js\n     * import { mkdir } from 'node:fs/promises';\n     *\n     * try {\n     *   const projectFolder = new URL('./test/project/', import.meta.url);\n     *   const createDir = await mkdir(projectFolder, { recursive: true });\n     *\n     *   console.log(`created ${createDir}`);\n     * } catch (err) {\n     *   console.error(err.message);\n     * }\n     * ```\n     * @since v10.0.0\n     * @return Upon success, fulfills with `undefined` if `recursive` is `false`, or the first directory path created if `recursive` is `true`.\n     */\n    function mkdir(\n        path: PathLike,\n        options: MakeDirectoryOptions & {\n            recursive: true;\n        },\n    ): Promise<string | undefined>;\n    /**\n     * Asynchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    function mkdir(\n        path: PathLike,\n        options?:\n            | Mode\n            | (MakeDirectoryOptions & {\n                recursive?: false | undefined;\n            })\n            | null,\n    ): Promise<void>;\n    /**\n     * Asynchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    function mkdir(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise<string | undefined>;\n    /**\n     * Reads the contents of a directory.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the filenames. If the `encoding` is set to `'buffer'`, the filenames returned\n     * will be passed as `Buffer` objects.\n     *\n     * If `options.withFileTypes` is set to `true`, the returned array will contain `fs.Dirent` objects.\n     *\n     * ```js\n     * import { readdir } from 'node:fs/promises';\n     *\n     * try {\n     *   const files = await readdir(path);\n     *   for (const file of files)\n     *     console.log(file);\n     * } catch (err) {\n     *   console.error(err);\n     * }\n     * ```\n     * @since v10.0.0\n     * @return Fulfills with an array of the names of the files in the directory excluding `'.'` and `'..'`.\n     */\n    function readdir(\n        path: PathLike,\n        options?:\n            | (ObjectEncodingOptions & {\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            })\n            | BufferEncoding\n            | null,\n    ): Promise<string[]>;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function readdir(\n        path: PathLike,\n        options:\n            | {\n                encoding: \"buffer\";\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            }\n            | \"buffer\",\n    ): Promise<Buffer[]>;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function readdir(\n        path: PathLike,\n        options?:\n            | (ObjectEncodingOptions & {\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            })\n            | BufferEncoding\n            | null,\n    ): Promise<string[] | Buffer[]>;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.\n     */\n    function readdir(\n        path: PathLike,\n        options: ObjectEncodingOptions & {\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n    ): Promise<Dirent[]>;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a directory. If a URL is provided, it must use the `file:` protocol.\n     * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.\n     */\n    function readdir(\n        path: PathLike,\n        options: {\n            encoding: \"buffer\";\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n    ): Promise<Dirent<Buffer>[]>;\n    /**\n     * Reads the contents of the symbolic link referred to by `path`. See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more detail. The promise is\n     * fulfilled with the`linkString` upon success.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the link path returned. If the `encoding` is set to `'buffer'`, the link path\n     * returned will be passed as a `Buffer` object.\n     * @since v10.0.0\n     * @return Fulfills with the `linkString` upon success.\n     */\n    function readlink(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise<string>;\n    /**\n     * Asynchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function readlink(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;\n    /**\n     * Asynchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function readlink(path: PathLike, options?: ObjectEncodingOptions | string | null): Promise<string | Buffer>;\n    /**\n     * Creates a symbolic link.\n     *\n     * The `type` argument is only used on Windows platforms and can be one of `'dir'`, `'file'`, or `'junction'`. If the `type` argument is not a string, Node.js will\n     * autodetect `target` type and use `'file'` or `'dir'`. If the `target` does not\n     * exist, `'file'` will be used. Windows junction points require the destination\n     * path to be absolute. When using `'junction'`, the `target` argument will\n     * automatically be normalized to absolute path. Junction points on NTFS volumes\n     * can only point to directories.\n     * @since v10.0.0\n     * @param [type='null']\n     * @return Fulfills with `undefined` upon success.\n     */\n    function symlink(target: PathLike, path: PathLike, type?: string | null): Promise<void>;\n    /**\n     * Equivalent to `fsPromises.stat()` unless `path` refers to a symbolic link,\n     * in which case the link itself is stat-ed, not the file that it refers to.\n     * Refer to the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) document for more detail.\n     * @since v10.0.0\n     * @return Fulfills with the {fs.Stats} object for the given symbolic link `path`.\n     */\n    function lstat(\n        path: PathLike,\n        opts?: StatOptions & {\n            bigint?: false | undefined;\n        },\n    ): Promise<Stats>;\n    function lstat(\n        path: PathLike,\n        opts: StatOptions & {\n            bigint: true;\n        },\n    ): Promise<BigIntStats>;\n    function lstat(path: PathLike, opts?: StatOptions): Promise<Stats | BigIntStats>;\n    /**\n     * @since v10.0.0\n     * @return Fulfills with the {fs.Stats} object for the given `path`.\n     */\n    function stat(\n        path: PathLike,\n        opts?: StatOptions & {\n            bigint?: false | undefined;\n        },\n    ): Promise<Stats>;\n    function stat(\n        path: PathLike,\n        opts: StatOptions & {\n            bigint: true;\n        },\n    ): Promise<BigIntStats>;\n    function stat(path: PathLike, opts?: StatOptions): Promise<Stats | BigIntStats>;\n    /**\n     * @since v19.6.0, v18.15.0\n     * @return Fulfills with the {fs.StatFs} object for the given `path`.\n     */\n    function statfs(\n        path: PathLike,\n        opts?: StatFsOptions & {\n            bigint?: false | undefined;\n        },\n    ): Promise<StatsFs>;\n    function statfs(\n        path: PathLike,\n        opts: StatFsOptions & {\n            bigint: true;\n        },\n    ): Promise<BigIntStatsFs>;\n    function statfs(path: PathLike, opts?: StatFsOptions): Promise<StatsFs | BigIntStatsFs>;\n    /**\n     * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function link(existingPath: PathLike, newPath: PathLike): Promise<void>;\n    /**\n     * If `path` refers to a symbolic link, then the link is removed without affecting\n     * the file or directory to which that link refers. If the `path` refers to a file\n     * path that is not a symbolic link, the file is deleted. See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more detail.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function unlink(path: PathLike): Promise<void>;\n    /**\n     * Changes the permissions of a file.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function chmod(path: PathLike, mode: Mode): Promise<void>;\n    /**\n     * Changes the permissions on a symbolic link.\n     *\n     * This method is only implemented on macOS.\n     * @deprecated Since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function lchmod(path: PathLike, mode: Mode): Promise<void>;\n    /**\n     * Changes the ownership on a symbolic link.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function lchown(path: PathLike, uid: number, gid: number): Promise<void>;\n    /**\n     * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`, with the difference that if the path refers to a\n     * symbolic link, then the link is not dereferenced: instead, the timestamps of\n     * the symbolic link itself are changed.\n     * @since v14.5.0, v12.19.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;\n    /**\n     * Changes the ownership of a file.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function chown(path: PathLike, uid: number, gid: number): Promise<void>;\n    /**\n     * Change the file system timestamps of the object referenced by `path`.\n     *\n     * The `atime` and `mtime` arguments follow these rules:\n     *\n     * * Values can be either numbers representing Unix epoch time, `Date`s, or a\n     * numeric string like `'123456789.0'`.\n     * * If the value can not be converted to a number, or is `NaN`, `Infinity`, or `-Infinity`, an `Error` will be thrown.\n     * @since v10.0.0\n     * @return Fulfills with `undefined` upon success.\n     */\n    function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;\n    /**\n     * Determines the actual location of `path` using the same semantics as the `fs.realpath.native()` function.\n     *\n     * Only paths that can be converted to UTF8 strings are supported.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the path. If the `encoding` is set to `'buffer'`, the path returned will be\n     * passed as a `Buffer` object.\n     *\n     * On Linux, when Node.js is linked against musl libc, the procfs file system must\n     * be mounted on `/proc` in order for this function to work. Glibc does not have\n     * this restriction.\n     * @since v10.0.0\n     * @return Fulfills with the resolved path upon success.\n     */\n    function realpath(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise<string>;\n    /**\n     * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function realpath(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;\n    /**\n     * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function realpath(\n        path: PathLike,\n        options?: ObjectEncodingOptions | BufferEncoding | null,\n    ): Promise<string | Buffer>;\n    /**\n     * Creates a unique temporary directory. A unique directory name is generated by\n     * appending six random characters to the end of the provided `prefix`. Due to\n     * platform inconsistencies, avoid trailing `X` characters in `prefix`. Some\n     * platforms, notably the BSDs, can return more than six random characters, and\n     * replace trailing `X` characters in `prefix` with random characters.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use.\n     *\n     * ```js\n     * import { mkdtemp } from 'node:fs/promises';\n     * import { join } from 'node:path';\n     * import { tmpdir } from 'node:os';\n     *\n     * try {\n     *   await mkdtemp(join(tmpdir(), 'foo-'));\n     * } catch (err) {\n     *   console.error(err);\n     * }\n     * ```\n     *\n     * The `fsPromises.mkdtemp()` method will append the six randomly selected\n     * characters directly to the `prefix` string. For instance, given a directory `/tmp`, if the intention is to create a temporary directory _within_ `/tmp`, the `prefix` must end with a trailing\n     * platform-specific path separator\n     * (`import { sep } from 'node:path'`).\n     * @since v10.0.0\n     * @return Fulfills with a string containing the file system path of the newly created temporary directory.\n     */\n    function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise<string>;\n    /**\n     * Asynchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function mkdtemp(prefix: string, options: BufferEncodingOption): Promise<Buffer>;\n    /**\n     * Asynchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise<string | Buffer>;\n    /**\n     * Asynchronously writes data to a file, replacing the file if it already exists. `data` can be a string, a buffer, an\n     * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface), or an\n     * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object.\n     *\n     * The `encoding` option is ignored if `data` is a buffer.\n     *\n     * If `options` is a string, then it specifies the encoding.\n     *\n     * The `mode` option only affects the newly created file. See `fs.open()` for more details.\n     *\n     * Any specified `FileHandle` has to support writing.\n     *\n     * It is unsafe to use `fsPromises.writeFile()` multiple times on the same file\n     * without waiting for the promise to be settled.\n     *\n     * Similarly to `fsPromises.readFile` \\- `fsPromises.writeFile` is a convenience\n     * method that performs multiple `write` calls internally to write the buffer\n     * passed to it. For performance sensitive code consider using `fs.createWriteStream()` or `filehandle.createWriteStream()`.\n     *\n     * It is possible to use an `AbortSignal` to cancel an `fsPromises.writeFile()`.\n     * Cancelation is \"best effort\", and some amount of data is likely still\n     * to be written.\n     *\n     * ```js\n     * import { writeFile } from 'node:fs/promises';\n     * import { Buffer } from 'node:buffer';\n     *\n     * try {\n     *   const controller = new AbortController();\n     *   const { signal } = controller;\n     *   const data = new Uint8Array(Buffer.from('Hello Node.js'));\n     *   const promise = writeFile('message.txt', data, { signal });\n     *\n     *   // Abort the request before the promise settles.\n     *   controller.abort();\n     *\n     *   await promise;\n     * } catch (err) {\n     *   // When a request is aborted - err is an AbortError\n     *   console.error(err);\n     * }\n     * ```\n     *\n     * Aborting an ongoing request does not abort individual operating\n     * system requests but rather the internal buffering `fs.writeFile` performs.\n     * @since v10.0.0\n     * @param file filename or `FileHandle`\n     * @return Fulfills with `undefined` upon success.\n     */\n    function writeFile(\n        file: PathLike | FileHandle,\n        data:\n            | string\n            | NodeJS.ArrayBufferView\n            | Iterable<string | NodeJS.ArrayBufferView>\n            | AsyncIterable<string | NodeJS.ArrayBufferView>\n            | Stream,\n        options?:\n            | (ObjectEncodingOptions & {\n                mode?: Mode | undefined;\n                flag?: OpenMode | undefined;\n                /**\n                 * If all data is successfully written to the file, and `flush`\n                 * is `true`, `filehandle.sync()` is used to flush the data.\n                 * @default false\n                 */\n                flush?: boolean | undefined;\n            } & Abortable)\n            | BufferEncoding\n            | null,\n    ): Promise<void>;\n    /**\n     * Asynchronously append data to a file, creating the file if it does not yet\n     * exist. `data` can be a string or a `Buffer`.\n     *\n     * If `options` is a string, then it specifies the `encoding`.\n     *\n     * The `mode` option only affects the newly created file. See `fs.open()` for more details.\n     *\n     * The `path` may be specified as a `FileHandle` that has been opened\n     * for appending (using `fsPromises.open()`).\n     * @since v10.0.0\n     * @param path filename or {FileHandle}\n     * @return Fulfills with `undefined` upon success.\n     */\n    function appendFile(\n        path: PathLike | FileHandle,\n        data: string | Uint8Array,\n        options?: (ObjectEncodingOptions & FlagAndOpenMode & { flush?: boolean | undefined }) | BufferEncoding | null,\n    ): Promise<void>;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     *\n     * If no encoding is specified (using `options.encoding`), the data is returned\n     * as a `Buffer` object. Otherwise, the data will be a string.\n     *\n     * If `options` is a string, then it specifies the encoding.\n     *\n     * When the `path` is a directory, the behavior of `fsPromises.readFile()` is\n     * platform-specific. On macOS, Linux, and Windows, the promise will be rejected\n     * with an error. On FreeBSD, a representation of the directory's contents will be\n     * returned.\n     *\n     * An example of reading a `package.json` file located in the same directory of the\n     * running code:\n     *\n     * ```js\n     * import { readFile } from 'node:fs/promises';\n     * try {\n     *   const filePath = new URL('./package.json', import.meta.url);\n     *   const contents = await readFile(filePath, { encoding: 'utf8' });\n     *   console.log(contents);\n     * } catch (err) {\n     *   console.error(err.message);\n     * }\n     * ```\n     *\n     * It is possible to abort an ongoing `readFile` using an `AbortSignal`. If a\n     * request is aborted the promise returned is rejected with an `AbortError`:\n     *\n     * ```js\n     * import { readFile } from 'node:fs/promises';\n     *\n     * try {\n     *   const controller = new AbortController();\n     *   const { signal } = controller;\n     *   const promise = readFile(fileName, { signal });\n     *\n     *   // Abort the request before the promise settles.\n     *   controller.abort();\n     *\n     *   await promise;\n     * } catch (err) {\n     *   // When a request is aborted - err is an AbortError\n     *   console.error(err);\n     * }\n     * ```\n     *\n     * Aborting an ongoing request does not abort individual operating\n     * system requests but rather the internal buffering `fs.readFile` performs.\n     *\n     * Any specified `FileHandle` has to support reading.\n     * @since v10.0.0\n     * @param path filename or `FileHandle`\n     * @return Fulfills with the contents of the file.\n     */\n    function readFile(\n        path: PathLike | FileHandle,\n        options?:\n            | ({\n                encoding?: null | undefined;\n                flag?: OpenMode | undefined;\n            } & Abortable)\n            | null,\n    ): Promise<Buffer>;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically.\n     * @param options An object that may contain an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    function readFile(\n        path: PathLike | FileHandle,\n        options:\n            | ({\n                encoding: BufferEncoding;\n                flag?: OpenMode | undefined;\n            } & Abortable)\n            | BufferEncoding,\n    ): Promise<string>;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically.\n     * @param options An object that may contain an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    function readFile(\n        path: PathLike | FileHandle,\n        options?:\n            | (\n                & ObjectEncodingOptions\n                & Abortable\n                & {\n                    flag?: OpenMode | undefined;\n                }\n            )\n            | BufferEncoding\n            | null,\n    ): Promise<string | Buffer>;\n    /**\n     * Asynchronously open a directory for iterative scanning. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for more detail.\n     *\n     * Creates an `fs.Dir`, which contains all further functions for reading from\n     * and cleaning up the directory.\n     *\n     * The `encoding` option sets the encoding for the `path` while opening the\n     * directory and subsequent read operations.\n     *\n     * Example using async iteration:\n     *\n     * ```js\n     * import { opendir } from 'node:fs/promises';\n     *\n     * try {\n     *   const dir = await opendir('./');\n     *   for await (const dirent of dir)\n     *     console.log(dirent.name);\n     * } catch (err) {\n     *   console.error(err);\n     * }\n     * ```\n     *\n     * When using the async iterator, the `fs.Dir` object will be automatically\n     * closed after the iterator exits.\n     * @since v12.12.0\n     * @return Fulfills with an {fs.Dir}.\n     */\n    function opendir(path: PathLike, options?: OpenDirOptions): Promise<Dir>;\n    /**\n     * Returns an async iterator that watches for changes on `filename`, where `filename`is either a file or a directory.\n     *\n     * ```js\n     * import { watch } from 'node:fs/promises';\n     *\n     * const ac = new AbortController();\n     * const { signal } = ac;\n     * setTimeout(() => ac.abort(), 10000);\n     *\n     * (async () => {\n     *   try {\n     *     const watcher = watch(__filename, { signal });\n     *     for await (const event of watcher)\n     *       console.log(event);\n     *   } catch (err) {\n     *     if (err.name === 'AbortError')\n     *       return;\n     *     throw err;\n     *   }\n     * })();\n     * ```\n     *\n     * On most platforms, `'rename'` is emitted whenever a filename appears or\n     * disappears in the directory.\n     *\n     * All the `caveats` for `fs.watch()` also apply to `fsPromises.watch()`.\n     * @since v15.9.0, v14.18.0\n     * @return of objects with the properties:\n     */\n    function watch(\n        filename: PathLike,\n        options:\n            | (WatchOptions & {\n                encoding: \"buffer\";\n            })\n            | \"buffer\",\n    ): AsyncIterable<FileChangeInfo<Buffer>>;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.\n     * If `encoding` is not supplied, the default of `'utf8'` is used.\n     * If `persistent` is not supplied, the default of `true` is used.\n     * If `recursive` is not supplied, the default of `false` is used.\n     */\n    function watch(filename: PathLike, options?: WatchOptions | BufferEncoding): AsyncIterable<FileChangeInfo<string>>;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.\n     * If `encoding` is not supplied, the default of `'utf8'` is used.\n     * If `persistent` is not supplied, the default of `true` is used.\n     * If `recursive` is not supplied, the default of `false` is used.\n     */\n    function watch(\n        filename: PathLike,\n        options: WatchOptions | string,\n    ): AsyncIterable<FileChangeInfo<string>> | AsyncIterable<FileChangeInfo<Buffer>>;\n    /**\n     * Asynchronously copies the entire directory structure from `src` to `dest`,\n     * including subdirectories and files.\n     *\n     * When copying a directory to another directory, globs are not supported and\n     * behavior is similar to `cp dir1/ dir2/`.\n     * @since v16.7.0\n     * @experimental\n     * @param src source path to copy.\n     * @param dest destination path to copy to.\n     * @return Fulfills with `undefined` upon success.\n     */\n    function cp(source: string | URL, destination: string | URL, opts?: CopyOptions): Promise<void>;\n    /**\n     * Retrieves the files matching the specified pattern.\n     */\n    function glob(pattern: string | string[]): NodeJS.AsyncIterator<string>;\n    function glob(\n        pattern: string | string[],\n        opt: GlobOptionsWithFileTypes,\n    ): NodeJS.AsyncIterator<Dirent>;\n    function glob(\n        pattern: string | string[],\n        opt: GlobOptionsWithoutFileTypes,\n    ): NodeJS.AsyncIterator<string>;\n    function glob(\n        pattern: string | string[],\n        opt: GlobOptions,\n    ): NodeJS.AsyncIterator<Dirent | string>;\n}\ndeclare module \"node:fs/promises\" {\n    export * from \"fs/promises\";\n}\n",
    "node_modules/@types/node/fs.d.ts": "/**\n * The `node:fs` module enables interacting with the file system in a\n * way modeled on standard POSIX functions.\n *\n * To use the promise-based APIs:\n *\n * ```js\n * import * as fs from 'node:fs/promises';\n * ```\n *\n * To use the callback and sync APIs:\n *\n * ```js\n * import * as fs from 'node:fs';\n * ```\n *\n * All file system operations have synchronous, callback, and promise-based\n * forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM).\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/fs.js)\n */\ndeclare module \"fs\" {\n    import * as stream from \"node:stream\";\n    import { Abortable, EventEmitter } from \"node:events\";\n    import { URL } from \"node:url\";\n    import * as promises from \"node:fs/promises\";\n    export { promises };\n    /**\n     * Valid types for path values in \"fs\".\n     */\n    export type PathLike = string | Buffer | URL;\n    export type PathOrFileDescriptor = PathLike | number;\n    export type TimeLike = string | number | Date;\n    export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void;\n    export type BufferEncodingOption =\n        | \"buffer\"\n        | {\n            encoding: \"buffer\";\n        };\n    export interface ObjectEncodingOptions {\n        encoding?: BufferEncoding | null | undefined;\n    }\n    export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null;\n    export type OpenMode = number | string;\n    export type Mode = number | string;\n    export interface StatsBase<T> {\n        isFile(): boolean;\n        isDirectory(): boolean;\n        isBlockDevice(): boolean;\n        isCharacterDevice(): boolean;\n        isSymbolicLink(): boolean;\n        isFIFO(): boolean;\n        isSocket(): boolean;\n        dev: T;\n        ino: T;\n        mode: T;\n        nlink: T;\n        uid: T;\n        gid: T;\n        rdev: T;\n        size: T;\n        blksize: T;\n        blocks: T;\n        atimeMs: T;\n        mtimeMs: T;\n        ctimeMs: T;\n        birthtimeMs: T;\n        atime: Date;\n        mtime: Date;\n        ctime: Date;\n        birthtime: Date;\n    }\n    export interface Stats extends StatsBase<number> {}\n    /**\n     * A `fs.Stats` object provides information about a file.\n     *\n     * Objects returned from {@link stat}, {@link lstat}, {@link fstat}, and\n     * their synchronous counterparts are of this type.\n     * If `bigint` in the `options` passed to those methods is true, the numeric values\n     * will be `bigint` instead of `number`, and the object will contain additional\n     * nanosecond-precision properties suffixed with `Ns`. `Stat` objects are not to be created directly using the `new` keyword.\n     *\n     * ```console\n     * Stats {\n     *   dev: 2114,\n     *   ino: 48064969,\n     *   mode: 33188,\n     *   nlink: 1,\n     *   uid: 85,\n     *   gid: 100,\n     *   rdev: 0,\n     *   size: 527,\n     *   blksize: 4096,\n     *   blocks: 8,\n     *   atimeMs: 1318289051000.1,\n     *   mtimeMs: 1318289051000.1,\n     *   ctimeMs: 1318289051000.1,\n     *   birthtimeMs: 1318289051000.1,\n     *   atime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   mtime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   ctime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   birthtime: Mon, 10 Oct 2011 23:24:11 GMT }\n     * ```\n     *\n     * `bigint` version:\n     *\n     * ```console\n     * BigIntStats {\n     *   dev: 2114n,\n     *   ino: 48064969n,\n     *   mode: 33188n,\n     *   nlink: 1n,\n     *   uid: 85n,\n     *   gid: 100n,\n     *   rdev: 0n,\n     *   size: 527n,\n     *   blksize: 4096n,\n     *   blocks: 8n,\n     *   atimeMs: 1318289051000n,\n     *   mtimeMs: 1318289051000n,\n     *   ctimeMs: 1318289051000n,\n     *   birthtimeMs: 1318289051000n,\n     *   atimeNs: 1318289051000000000n,\n     *   mtimeNs: 1318289051000000000n,\n     *   ctimeNs: 1318289051000000000n,\n     *   birthtimeNs: 1318289051000000000n,\n     *   atime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   mtime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   ctime: Mon, 10 Oct 2011 23:24:11 GMT,\n     *   birthtime: Mon, 10 Oct 2011 23:24:11 GMT }\n     * ```\n     * @since v0.1.21\n     */\n    export class Stats {\n        private constructor();\n    }\n    export interface StatsFsBase<T> {\n        /** Type of file system. */\n        type: T;\n        /**  Optimal transfer block size. */\n        bsize: T;\n        /**  Total data blocks in file system. */\n        blocks: T;\n        /** Free blocks in file system. */\n        bfree: T;\n        /** Available blocks for unprivileged users */\n        bavail: T;\n        /** Total file nodes in file system. */\n        files: T;\n        /** Free file nodes in file system. */\n        ffree: T;\n    }\n    export interface StatsFs extends StatsFsBase<number> {}\n    /**\n     * Provides information about a mounted file system.\n     *\n     * Objects returned from {@link statfs} and its synchronous counterpart are of\n     * this type. If `bigint` in the `options` passed to those methods is `true`, the\n     * numeric values will be `bigint` instead of `number`.\n     *\n     * ```console\n     * StatFs {\n     *   type: 1397114950,\n     *   bsize: 4096,\n     *   blocks: 121938943,\n     *   bfree: 61058895,\n     *   bavail: 61058895,\n     *   files: 999,\n     *   ffree: 1000000\n     * }\n     * ```\n     *\n     * `bigint` version:\n     *\n     * ```console\n     * StatFs {\n     *   type: 1397114950n,\n     *   bsize: 4096n,\n     *   blocks: 121938943n,\n     *   bfree: 61058895n,\n     *   bavail: 61058895n,\n     *   files: 999n,\n     *   ffree: 1000000n\n     * }\n     * ```\n     * @since v19.6.0, v18.15.0\n     */\n    export class StatsFs {}\n    export interface BigIntStatsFs extends StatsFsBase<bigint> {}\n    export interface StatFsOptions {\n        bigint?: boolean | undefined;\n    }\n    /**\n     * A representation of a directory entry, which can be a file or a subdirectory\n     * within the directory, as returned by reading from an `fs.Dir`. The\n     * directory entry is a combination of the file name and file type pairs.\n     *\n     * Additionally, when {@link readdir} or {@link readdirSync} is called with\n     * the `withFileTypes` option set to `true`, the resulting array is filled with `fs.Dirent` objects, rather than strings or `Buffer` s.\n     * @since v10.10.0\n     */\n    export class Dirent<Name extends string | Buffer = string> {\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a regular file.\n         * @since v10.10.0\n         */\n        isFile(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a file system\n         * directory.\n         * @since v10.10.0\n         */\n        isDirectory(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a block device.\n         * @since v10.10.0\n         */\n        isBlockDevice(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a character device.\n         * @since v10.10.0\n         */\n        isCharacterDevice(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a symbolic link.\n         * @since v10.10.0\n         */\n        isSymbolicLink(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a first-in-first-out\n         * (FIFO) pipe.\n         * @since v10.10.0\n         */\n        isFIFO(): boolean;\n        /**\n         * Returns `true` if the `fs.Dirent` object describes a socket.\n         * @since v10.10.0\n         */\n        isSocket(): boolean;\n        /**\n         * The file name that this `fs.Dirent` object refers to. The type of this\n         * value is determined by the `options.encoding` passed to {@link readdir} or {@link readdirSync}.\n         * @since v10.10.0\n         */\n        name: Name;\n        /**\n         * The base path that this `fs.Dirent` object refers to.\n         * @since v20.12.0\n         */\n        parentPath: string;\n        /**\n         * Alias for `dirent.parentPath`.\n         * @since v20.1.0\n         * @deprecated Since v20.12.0\n         */\n        path: string;\n    }\n    /**\n     * A class representing a directory stream.\n     *\n     * Created by {@link opendir}, {@link opendirSync}, or `fsPromises.opendir()`.\n     *\n     * ```js\n     * import { opendir } from 'node:fs/promises';\n     *\n     * try {\n     *   const dir = await opendir('./');\n     *   for await (const dirent of dir)\n     *     console.log(dirent.name);\n     * } catch (err) {\n     *   console.error(err);\n     * }\n     * ```\n     *\n     * When using the async iterator, the `fs.Dir` object will be automatically\n     * closed after the iterator exits.\n     * @since v12.12.0\n     */\n    export class Dir implements AsyncIterable<Dirent> {\n        /**\n         * The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or `fsPromises.opendir()`.\n         * @since v12.12.0\n         */\n        readonly path: string;\n        /**\n         * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read.\n         */\n        [Symbol.asyncIterator](): NodeJS.AsyncIterator<Dirent>;\n        /**\n         * Asynchronously close the directory's underlying resource handle.\n         * Subsequent reads will result in errors.\n         *\n         * A promise is returned that will be fulfilled after the resource has been\n         * closed.\n         * @since v12.12.0\n         */\n        close(): Promise<void>;\n        close(cb: NoParamCallback): void;\n        /**\n         * Synchronously close the directory's underlying resource handle.\n         * Subsequent reads will result in errors.\n         * @since v12.12.0\n         */\n        closeSync(): void;\n        /**\n         * Asynchronously read the next directory entry via [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) as an `fs.Dirent`.\n         *\n         * A promise is returned that will be fulfilled with an `fs.Dirent`, or `null` if there are no more directory entries to read.\n         *\n         * Directory entries returned by this function are in no particular order as\n         * provided by the operating system's underlying directory mechanisms.\n         * Entries added or removed while iterating over the directory might not be\n         * included in the iteration results.\n         * @since v12.12.0\n         * @return containing {fs.Dirent|null}\n         */\n        read(): Promise<Dirent | null>;\n        read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void;\n        /**\n         * Synchronously read the next directory entry as an `fs.Dirent`. See the\n         * POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more detail.\n         *\n         * If there are no more directory entries to read, `null` will be returned.\n         *\n         * Directory entries returned by this function are in no particular order as\n         * provided by the operating system's underlying directory mechanisms.\n         * Entries added or removed while iterating over the directory might not be\n         * included in the iteration results.\n         * @since v12.12.0\n         */\n        readSync(): Dirent | null;\n    }\n    /**\n     * Class: fs.StatWatcher\n     * @since v14.3.0, v12.20.0\n     * Extends `EventEmitter`\n     * A successful call to {@link watchFile} method will return a new fs.StatWatcher object.\n     */\n    export interface StatWatcher extends EventEmitter {\n        /**\n         * When called, requests that the Node.js event loop _not_ exit so long as the `fs.StatWatcher` is active. Calling `watcher.ref()` multiple times will have\n         * no effect.\n         *\n         * By default, all `fs.StatWatcher` objects are \"ref'ed\", making it normally\n         * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been\n         * called previously.\n         * @since v14.3.0, v12.20.0\n         */\n        ref(): this;\n        /**\n         * When called, the active `fs.StatWatcher` object will not require the Node.js\n         * event loop to remain active. If there is no other activity keeping the\n         * event loop running, the process may exit before the `fs.StatWatcher` object's\n         * callback is invoked. Calling `watcher.unref()` multiple times will have\n         * no effect.\n         * @since v14.3.0, v12.20.0\n         */\n        unref(): this;\n    }\n    export interface FSWatcher extends EventEmitter {\n        /**\n         * Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the `fs.FSWatcher` object is no longer usable.\n         * @since v0.5.8\n         */\n        close(): void;\n        /**\n         * When called, requests that the Node.js event loop _not_ exit so long as the `fs.FSWatcher` is active. Calling `watcher.ref()` multiple times will have\n         * no effect.\n         *\n         * By default, all `fs.FSWatcher` objects are \"ref'ed\", making it normally\n         * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been\n         * called previously.\n         * @since v14.3.0, v12.20.0\n         */\n        ref(): this;\n        /**\n         * When called, the active `fs.FSWatcher` object will not require the Node.js\n         * event loop to remain active. If there is no other activity keeping the\n         * event loop running, the process may exit before the `fs.FSWatcher` object's\n         * callback is invoked. Calling `watcher.unref()` multiple times will have\n         * no effect.\n         * @since v14.3.0, v12.20.0\n         */\n        unref(): this;\n        /**\n         * events.EventEmitter\n         *   1. change\n         *   2. close\n         *   3. error\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"change\", listener: (eventType: string, filename: string | Buffer) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"error\", listener: (error: Error) => void): this;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"change\", listener: (eventType: string, filename: string | Buffer) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"error\", listener: (error: Error) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"change\", listener: (eventType: string, filename: string | Buffer) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"error\", listener: (error: Error) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"change\", listener: (eventType: string, filename: string | Buffer) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (error: Error) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"change\", listener: (eventType: string, filename: string | Buffer) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (error: Error) => void): this;\n    }\n    /**\n     * Instances of `fs.ReadStream` are created and returned using the {@link createReadStream} function.\n     * @since v0.1.93\n     */\n    export class ReadStream extends stream.Readable {\n        close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;\n        /**\n         * The number of bytes that have been read so far.\n         * @since v6.4.0\n         */\n        bytesRead: number;\n        /**\n         * The path to the file the stream is reading from as specified in the first\n         * argument to `fs.createReadStream()`. If `path` is passed as a string, then`readStream.path` will be a string. If `path` is passed as a `Buffer`, then`readStream.path` will be a\n         * `Buffer`. If `fd` is specified, then`readStream.path` will be `undefined`.\n         * @since v0.1.93\n         */\n        path: string | Buffer;\n        /**\n         * This property is `true` if the underlying file has not been opened yet,\n         * i.e. before the `'ready'` event is emitted.\n         * @since v11.2.0, v10.16.0\n         */\n        pending: boolean;\n        /**\n         * events.EventEmitter\n         *   1. open\n         *   2. close\n         *   3. ready\n         */\n        addListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;\n        on<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;\n        once<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;\n        prependListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;\n        prependOnceListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;\n    }\n\n    /**\n     * The Keys are events of the ReadStream and the values are the functions that are called when the event is emitted.\n     */\n    type ReadStreamEvents = {\n        close: () => void;\n        data: (chunk: Buffer | string) => void;\n        end: () => void;\n        error: (err: Error) => void;\n        open: (fd: number) => void;\n        pause: () => void;\n        readable: () => void;\n        ready: () => void;\n        resume: () => void;\n    } & CustomEvents;\n\n    /**\n     * string & {} allows to allow any kind of strings for the event\n     * but still allows to have auto completion for the normal events.\n     */\n    type CustomEvents = { [Key in string & {} | symbol]: (...args: any[]) => void };\n\n    /**\n     * The Keys are events of the WriteStream and the values are the functions that are called when the event is emitted.\n     */\n    type WriteStreamEvents = {\n        close: () => void;\n        drain: () => void;\n        error: (err: Error) => void;\n        finish: () => void;\n        open: (fd: number) => void;\n        pipe: (src: stream.Readable) => void;\n        ready: () => void;\n        unpipe: (src: stream.Readable) => void;\n    } & CustomEvents;\n    /**\n     * * Extends `stream.Writable`\n     *\n     * Instances of `fs.WriteStream` are created and returned using the {@link createWriteStream} function.\n     * @since v0.1.93\n     */\n    export class WriteStream extends stream.Writable {\n        /**\n         * Closes `writeStream`. Optionally accepts a\n         * callback that will be executed once the `writeStream`is closed.\n         * @since v0.9.4\n         */\n        close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;\n        /**\n         * The number of bytes written so far. Does not include data that is still queued\n         * for writing.\n         * @since v0.4.7\n         */\n        bytesWritten: number;\n        /**\n         * The path to the file the stream is writing to as specified in the first\n         * argument to {@link createWriteStream}. If `path` is passed as a string, then`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then`writeStream.path` will be a\n         * `Buffer`.\n         * @since v0.1.93\n         */\n        path: string | Buffer;\n        /**\n         * This property is `true` if the underlying file has not been opened yet,\n         * i.e. before the `'ready'` event is emitted.\n         * @since v11.2.0\n         */\n        pending: boolean;\n        /**\n         * events.EventEmitter\n         *   1. open\n         *   2. close\n         *   3. ready\n         */\n        addListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;\n        on<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;\n        once<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;\n        prependListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;\n        prependOnceListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;\n    }\n    /**\n     * Asynchronously rename file at `oldPath` to the pathname provided\n     * as `newPath`. In the case that `newPath` already exists, it will\n     * be overwritten. If there is a directory at `newPath`, an error will\n     * be raised instead. No arguments other than a possible exception are\n     * given to the completion callback.\n     *\n     * See also: [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html).\n     *\n     * ```js\n     * import { rename } from 'node:fs';\n     *\n     * rename('oldFile.txt', 'newFile.txt', (err) => {\n     *   if (err) throw err;\n     *   console.log('Rename complete!');\n     * });\n     * ```\n     * @since v0.0.2\n     */\n    export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;\n    export namespace rename {\n        /**\n         * Asynchronous rename(2) - Change the name or location of a file or directory.\n         * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         */\n        function __promisify__(oldPath: PathLike, newPath: PathLike): Promise<void>;\n    }\n    /**\n     * Renames the file from `oldPath` to `newPath`. Returns `undefined`.\n     *\n     * See the POSIX [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html) documentation for more details.\n     * @since v0.1.21\n     */\n    export function renameSync(oldPath: PathLike, newPath: PathLike): void;\n    /**\n     * Truncates the file. No arguments other than a possible exception are\n     * given to the completion callback. A file descriptor can also be passed as the\n     * first argument. In this case, `fs.ftruncate()` is called.\n     *\n     * ```js\n     * import { truncate } from 'node:fs';\n     * // Assuming that 'path/file.txt' is a regular file.\n     * truncate('path/file.txt', (err) => {\n     *   if (err) throw err;\n     *   console.log('path/file.txt was truncated');\n     * });\n     * ```\n     *\n     * Passing a file descriptor is deprecated and may result in an error being thrown\n     * in the future.\n     *\n     * See the POSIX [`truncate(2)`](http://man7.org/linux/man-pages/man2/truncate.2.html) documentation for more details.\n     * @since v0.8.6\n     * @param [len=0]\n     */\n    export function truncate(path: PathLike, len: number | undefined, callback: NoParamCallback): void;\n    /**\n     * Asynchronous truncate(2) - Truncate a file to a specified length.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function truncate(path: PathLike, callback: NoParamCallback): void;\n    export namespace truncate {\n        /**\n         * Asynchronous truncate(2) - Truncate a file to a specified length.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param len If not specified, defaults to `0`.\n         */\n        function __promisify__(path: PathLike, len?: number): Promise<void>;\n    }\n    /**\n     * Truncates the file. Returns `undefined`. A file descriptor can also be\n     * passed as the first argument. In this case, `fs.ftruncateSync()` is called.\n     *\n     * Passing a file descriptor is deprecated and may result in an error being thrown\n     * in the future.\n     * @since v0.8.6\n     * @param [len=0]\n     */\n    export function truncateSync(path: PathLike, len?: number): void;\n    /**\n     * Truncates the file descriptor. No arguments other than a possible exception are\n     * given to the completion callback.\n     *\n     * See the POSIX [`ftruncate(2)`](http://man7.org/linux/man-pages/man2/ftruncate.2.html) documentation for more detail.\n     *\n     * If the file referred to by the file descriptor was larger than `len` bytes, only\n     * the first `len` bytes will be retained in the file.\n     *\n     * For example, the following program retains only the first four bytes of the\n     * file:\n     *\n     * ```js\n     * import { open, close, ftruncate } from 'node:fs';\n     *\n     * function closeFd(fd) {\n     *   close(fd, (err) => {\n     *     if (err) throw err;\n     *   });\n     * }\n     *\n     * open('temp.txt', 'r+', (err, fd) => {\n     *   if (err) throw err;\n     *\n     *   try {\n     *     ftruncate(fd, 4, (err) => {\n     *       closeFd(fd);\n     *       if (err) throw err;\n     *     });\n     *   } catch (err) {\n     *     closeFd(fd);\n     *     if (err) throw err;\n     *   }\n     * });\n     * ```\n     *\n     * If the file previously was shorter than `len` bytes, it is extended, and the\n     * extended part is filled with null bytes (`'\\0'`):\n     *\n     * If `len` is negative then `0` will be used.\n     * @since v0.8.6\n     * @param [len=0]\n     */\n    export function ftruncate(fd: number, len: number | undefined, callback: NoParamCallback): void;\n    /**\n     * Asynchronous ftruncate(2) - Truncate a file to a specified length.\n     * @param fd A file descriptor.\n     */\n    export function ftruncate(fd: number, callback: NoParamCallback): void;\n    export namespace ftruncate {\n        /**\n         * Asynchronous ftruncate(2) - Truncate a file to a specified length.\n         * @param fd A file descriptor.\n         * @param len If not specified, defaults to `0`.\n         */\n        function __promisify__(fd: number, len?: number): Promise<void>;\n    }\n    /**\n     * Truncates the file descriptor. Returns `undefined`.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link ftruncate}.\n     * @since v0.8.6\n     * @param [len=0]\n     */\n    export function ftruncateSync(fd: number, len?: number): void;\n    /**\n     * Asynchronously changes owner and group of a file. No arguments other than a\n     * possible exception are given to the completion callback.\n     *\n     * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.\n     * @since v0.1.97\n     */\n    export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;\n    export namespace chown {\n        /**\n         * Asynchronous chown(2) - Change ownership of a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;\n    }\n    /**\n     * Synchronously changes owner and group of a file. Returns `undefined`.\n     * This is the synchronous version of {@link chown}.\n     *\n     * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.\n     * @since v0.1.97\n     */\n    export function chownSync(path: PathLike, uid: number, gid: number): void;\n    /**\n     * Sets the owner of the file. No arguments other than a possible exception are\n     * given to the completion callback.\n     *\n     * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.\n     * @since v0.4.7\n     */\n    export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void;\n    export namespace fchown {\n        /**\n         * Asynchronous fchown(2) - Change ownership of a file.\n         * @param fd A file descriptor.\n         */\n        function __promisify__(fd: number, uid: number, gid: number): Promise<void>;\n    }\n    /**\n     * Sets the owner of the file. Returns `undefined`.\n     *\n     * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.\n     * @since v0.4.7\n     * @param uid The file's new owner's user id.\n     * @param gid The file's new group's group id.\n     */\n    export function fchownSync(fd: number, uid: number, gid: number): void;\n    /**\n     * Set the owner of the symbolic link. No arguments other than a possible\n     * exception are given to the completion callback.\n     *\n     * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more detail.\n     */\n    export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;\n    export namespace lchown {\n        /**\n         * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;\n    }\n    /**\n     * Set the owner for the path. Returns `undefined`.\n     *\n     * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more details.\n     * @param uid The file's new owner's user id.\n     * @param gid The file's new group's group id.\n     */\n    export function lchownSync(path: PathLike, uid: number, gid: number): void;\n    /**\n     * Changes the access and modification times of a file in the same way as {@link utimes}, with the difference that if the path refers to a symbolic\n     * link, then the link is not dereferenced: instead, the timestamps of the\n     * symbolic link itself are changed.\n     *\n     * No arguments other than a possible exception are given to the completion\n     * callback.\n     * @since v14.5.0, v12.19.0\n     */\n    export function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;\n    export namespace lutimes {\n        /**\n         * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`,\n         * with the difference that if the path refers to a symbolic link, then the link is not\n         * dereferenced: instead, the timestamps of the symbolic link itself are changed.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param atime The last access time. If a string is provided, it will be coerced to number.\n         * @param mtime The last modified time. If a string is provided, it will be coerced to number.\n         */\n        function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;\n    }\n    /**\n     * Change the file system timestamps of the symbolic link referenced by `path`.\n     * Returns `undefined`, or throws an exception when parameters are incorrect or\n     * the operation fails. This is the synchronous version of {@link lutimes}.\n     * @since v14.5.0, v12.19.0\n     */\n    export function lutimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;\n    /**\n     * Asynchronously changes the permissions of a file. No arguments other than a\n     * possible exception are given to the completion callback.\n     *\n     * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.\n     *\n     * ```js\n     * import { chmod } from 'node:fs';\n     *\n     * chmod('my_file.txt', 0o775, (err) => {\n     *   if (err) throw err;\n     *   console.log('The permissions for file \"my_file.txt\" have been changed!');\n     * });\n     * ```\n     * @since v0.1.30\n     */\n    export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;\n    export namespace chmod {\n        /**\n         * Asynchronous chmod(2) - Change permissions of a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param mode A file mode. If a string is passed, it is parsed as an octal integer.\n         */\n        function __promisify__(path: PathLike, mode: Mode): Promise<void>;\n    }\n    /**\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link chmod}.\n     *\n     * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.\n     * @since v0.6.7\n     */\n    export function chmodSync(path: PathLike, mode: Mode): void;\n    /**\n     * Sets the permissions on the file. No arguments other than a possible exception\n     * are given to the completion callback.\n     *\n     * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.\n     * @since v0.4.7\n     */\n    export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void;\n    export namespace fchmod {\n        /**\n         * Asynchronous fchmod(2) - Change permissions of a file.\n         * @param fd A file descriptor.\n         * @param mode A file mode. If a string is passed, it is parsed as an octal integer.\n         */\n        function __promisify__(fd: number, mode: Mode): Promise<void>;\n    }\n    /**\n     * Sets the permissions on the file. Returns `undefined`.\n     *\n     * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.\n     * @since v0.4.7\n     */\n    export function fchmodSync(fd: number, mode: Mode): void;\n    /**\n     * Changes the permissions on a symbolic link. No arguments other than a possible\n     * exception are given to the completion callback.\n     *\n     * This method is only implemented on macOS.\n     *\n     * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.\n     * @deprecated Since v0.4.7\n     */\n    export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;\n    /** @deprecated */\n    export namespace lchmod {\n        /**\n         * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param mode A file mode. If a string is passed, it is parsed as an octal integer.\n         */\n        function __promisify__(path: PathLike, mode: Mode): Promise<void>;\n    }\n    /**\n     * Changes the permissions on a symbolic link. Returns `undefined`.\n     *\n     * This method is only implemented on macOS.\n     *\n     * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.\n     * @deprecated Since v0.4.7\n     */\n    export function lchmodSync(path: PathLike, mode: Mode): void;\n    /**\n     * Asynchronous [`stat(2)`](http://man7.org/linux/man-pages/man2/stat.2.html). The callback gets two arguments `(err, stats)` where`stats` is an `fs.Stats` object.\n     *\n     * In case of an error, the `err.code` will be one of `Common System Errors`.\n     *\n     * {@link stat} follows symbolic links. Use {@link lstat} to look at the\n     * links themselves.\n     *\n     * Using `fs.stat()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()`, or `fs.writeFile()` is not recommended.\n     * Instead, user code should open/read/write the file directly and handle the\n     * error raised if the file is not available.\n     *\n     * To check if a file exists without manipulating it afterwards, {@link access} is recommended.\n     *\n     * For example, given the following directory structure:\n     *\n     * ```text\n     * - txtDir\n     * -- file.txt\n     * - app.js\n     * ```\n     *\n     * The next program will check for the stats of the given paths:\n     *\n     * ```js\n     * import { stat } from 'node:fs';\n     *\n     * const pathsToCheck = ['./txtDir', './txtDir/file.txt'];\n     *\n     * for (let i = 0; i < pathsToCheck.length; i++) {\n     *   stat(pathsToCheck[i], (err, stats) => {\n     *     console.log(stats.isDirectory());\n     *     console.log(stats);\n     *   });\n     * }\n     * ```\n     *\n     * The resulting output will resemble:\n     *\n     * ```console\n     * true\n     * Stats {\n     *   dev: 16777220,\n     *   mode: 16877,\n     *   nlink: 3,\n     *   uid: 501,\n     *   gid: 20,\n     *   rdev: 0,\n     *   blksize: 4096,\n     *   ino: 14214262,\n     *   size: 96,\n     *   blocks: 0,\n     *   atimeMs: 1561174653071.963,\n     *   mtimeMs: 1561174614583.3518,\n     *   ctimeMs: 1561174626623.5366,\n     *   birthtimeMs: 1561174126937.2893,\n     *   atime: 2019-06-22T03:37:33.072Z,\n     *   mtime: 2019-06-22T03:36:54.583Z,\n     *   ctime: 2019-06-22T03:37:06.624Z,\n     *   birthtime: 2019-06-22T03:28:46.937Z\n     * }\n     * false\n     * Stats {\n     *   dev: 16777220,\n     *   mode: 33188,\n     *   nlink: 1,\n     *   uid: 501,\n     *   gid: 20,\n     *   rdev: 0,\n     *   blksize: 4096,\n     *   ino: 14214074,\n     *   size: 8,\n     *   blocks: 8,\n     *   atimeMs: 1561174616618.8555,\n     *   mtimeMs: 1561174614584,\n     *   ctimeMs: 1561174614583.8145,\n     *   birthtimeMs: 1561174007710.7478,\n     *   atime: 2019-06-22T03:36:56.619Z,\n     *   mtime: 2019-06-22T03:36:54.584Z,\n     *   ctime: 2019-06-22T03:36:54.584Z,\n     *   birthtime: 2019-06-22T03:26:47.711Z\n     * }\n     * ```\n     * @since v0.0.2\n     */\n    export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;\n    export function stat(\n        path: PathLike,\n        options:\n            | (StatOptions & {\n                bigint?: false | undefined;\n            })\n            | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,\n    ): void;\n    export function stat(\n        path: PathLike,\n        options: StatOptions & {\n            bigint: true;\n        },\n        callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,\n    ): void;\n    export function stat(\n        path: PathLike,\n        options: StatOptions | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,\n    ): void;\n    export namespace stat {\n        /**\n         * Asynchronous stat(2) - Get file status.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?: StatOptions & {\n                bigint?: false | undefined;\n            },\n        ): Promise<Stats>;\n        function __promisify__(\n            path: PathLike,\n            options: StatOptions & {\n                bigint: true;\n            },\n        ): Promise<BigIntStats>;\n        function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;\n    }\n    export interface StatSyncFn extends Function {\n        (path: PathLike, options?: undefined): Stats;\n        (\n            path: PathLike,\n            options?: StatSyncOptions & {\n                bigint?: false | undefined;\n                throwIfNoEntry: false;\n            },\n        ): Stats | undefined;\n        (\n            path: PathLike,\n            options: StatSyncOptions & {\n                bigint: true;\n                throwIfNoEntry: false;\n            },\n        ): BigIntStats | undefined;\n        (\n            path: PathLike,\n            options?: StatSyncOptions & {\n                bigint?: false | undefined;\n            },\n        ): Stats;\n        (\n            path: PathLike,\n            options: StatSyncOptions & {\n                bigint: true;\n            },\n        ): BigIntStats;\n        (\n            path: PathLike,\n            options: StatSyncOptions & {\n                bigint: boolean;\n                throwIfNoEntry?: false | undefined;\n            },\n        ): Stats | BigIntStats;\n        (path: PathLike, options?: StatSyncOptions): Stats | BigIntStats | undefined;\n    }\n    /**\n     * Synchronous stat(2) - Get file status.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export const statSync: StatSyncFn;\n    /**\n     * Invokes the callback with the `fs.Stats` for the file descriptor.\n     *\n     * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.\n     * @since v0.1.95\n     */\n    export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;\n    export function fstat(\n        fd: number,\n        options:\n            | (StatOptions & {\n                bigint?: false | undefined;\n            })\n            | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,\n    ): void;\n    export function fstat(\n        fd: number,\n        options: StatOptions & {\n            bigint: true;\n        },\n        callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,\n    ): void;\n    export function fstat(\n        fd: number,\n        options: StatOptions | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,\n    ): void;\n    export namespace fstat {\n        /**\n         * Asynchronous fstat(2) - Get file status.\n         * @param fd A file descriptor.\n         */\n        function __promisify__(\n            fd: number,\n            options?: StatOptions & {\n                bigint?: false | undefined;\n            },\n        ): Promise<Stats>;\n        function __promisify__(\n            fd: number,\n            options: StatOptions & {\n                bigint: true;\n            },\n        ): Promise<BigIntStats>;\n        function __promisify__(fd: number, options?: StatOptions): Promise<Stats | BigIntStats>;\n    }\n    /**\n     * Retrieves the `fs.Stats` for the file descriptor.\n     *\n     * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.\n     * @since v0.1.95\n     */\n    export function fstatSync(\n        fd: number,\n        options?: StatOptions & {\n            bigint?: false | undefined;\n        },\n    ): Stats;\n    export function fstatSync(\n        fd: number,\n        options: StatOptions & {\n            bigint: true;\n        },\n    ): BigIntStats;\n    export function fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats;\n    /**\n     * Retrieves the `fs.Stats` for the symbolic link referred to by the path.\n     * The callback gets two arguments `(err, stats)` where `stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic\n     * link, then the link itself is stat-ed, not the file that it refers to.\n     *\n     * See the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) documentation for more details.\n     * @since v0.1.30\n     */\n    export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;\n    export function lstat(\n        path: PathLike,\n        options:\n            | (StatOptions & {\n                bigint?: false | undefined;\n            })\n            | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,\n    ): void;\n    export function lstat(\n        path: PathLike,\n        options: StatOptions & {\n            bigint: true;\n        },\n        callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,\n    ): void;\n    export function lstat(\n        path: PathLike,\n        options: StatOptions | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,\n    ): void;\n    export namespace lstat {\n        /**\n         * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?: StatOptions & {\n                bigint?: false | undefined;\n            },\n        ): Promise<Stats>;\n        function __promisify__(\n            path: PathLike,\n            options: StatOptions & {\n                bigint: true;\n            },\n        ): Promise<BigIntStats>;\n        function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;\n    }\n    /**\n     * Asynchronous [`statfs(2)`](http://man7.org/linux/man-pages/man2/statfs.2.html). Returns information about the mounted file system which\n     * contains `path`. The callback gets two arguments `(err, stats)` where `stats`is an `fs.StatFs` object.\n     *\n     * In case of an error, the `err.code` will be one of `Common System Errors`.\n     * @since v19.6.0, v18.15.0\n     * @param path A path to an existing file or directory on the file system to be queried.\n     */\n    export function statfs(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: StatsFs) => void): void;\n    export function statfs(\n        path: PathLike,\n        options:\n            | (StatFsOptions & {\n                bigint?: false | undefined;\n            })\n            | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: StatsFs) => void,\n    ): void;\n    export function statfs(\n        path: PathLike,\n        options: StatFsOptions & {\n            bigint: true;\n        },\n        callback: (err: NodeJS.ErrnoException | null, stats: BigIntStatsFs) => void,\n    ): void;\n    export function statfs(\n        path: PathLike,\n        options: StatFsOptions | undefined,\n        callback: (err: NodeJS.ErrnoException | null, stats: StatsFs | BigIntStatsFs) => void,\n    ): void;\n    export namespace statfs {\n        /**\n         * Asynchronous statfs(2) - Returns information about the mounted file system which contains path. The callback gets two arguments (err, stats) where stats is an <fs.StatFs> object.\n         * @param path A path to an existing file or directory on the file system to be queried.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?: StatFsOptions & {\n                bigint?: false | undefined;\n            },\n        ): Promise<StatsFs>;\n        function __promisify__(\n            path: PathLike,\n            options: StatFsOptions & {\n                bigint: true;\n            },\n        ): Promise<BigIntStatsFs>;\n        function __promisify__(path: PathLike, options?: StatFsOptions): Promise<StatsFs | BigIntStatsFs>;\n    }\n    /**\n     * Synchronous [`statfs(2)`](http://man7.org/linux/man-pages/man2/statfs.2.html). Returns information about the mounted file system which\n     * contains `path`.\n     *\n     * In case of an error, the `err.code` will be one of `Common System Errors`.\n     * @since v19.6.0, v18.15.0\n     * @param path A path to an existing file or directory on the file system to be queried.\n     */\n    export function statfsSync(\n        path: PathLike,\n        options?: StatFsOptions & {\n            bigint?: false | undefined;\n        },\n    ): StatsFs;\n    export function statfsSync(\n        path: PathLike,\n        options: StatFsOptions & {\n            bigint: true;\n        },\n    ): BigIntStatsFs;\n    export function statfsSync(path: PathLike, options?: StatFsOptions): StatsFs | BigIntStatsFs;\n    /**\n     * Synchronous lstat(2) - Get file status. Does not dereference symbolic links.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export const lstatSync: StatSyncFn;\n    /**\n     * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. No arguments other than\n     * a possible\n     * exception are given to the completion callback.\n     * @since v0.1.31\n     */\n    export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;\n    export namespace link {\n        /**\n         * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.\n         * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(existingPath: PathLike, newPath: PathLike): Promise<void>;\n    }\n    /**\n     * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Returns `undefined`.\n     * @since v0.1.31\n     */\n    export function linkSync(existingPath: PathLike, newPath: PathLike): void;\n    /**\n     * Creates the link called `path` pointing to `target`. No arguments other than a\n     * possible exception are given to the completion callback.\n     *\n     * See the POSIX [`symlink(2)`](http://man7.org/linux/man-pages/man2/symlink.2.html) documentation for more details.\n     *\n     * The `type` argument is only available on Windows and ignored on other platforms.\n     * It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is\n     * not a string, Node.js will autodetect `target` type and use `'file'` or `'dir'`.\n     * If the `target` does not exist, `'file'` will be used. Windows junction points\n     * require the destination path to be absolute. When using `'junction'`, the`target` argument will automatically be normalized to absolute path. Junction\n     * points on NTFS volumes can only point to directories.\n     *\n     * Relative targets are relative to the link's parent directory.\n     *\n     * ```js\n     * import { symlink } from 'node:fs';\n     *\n     * symlink('./mew', './mewtwo', callback);\n     * ```\n     *\n     * The above example creates a symbolic link `mewtwo` which points to `mew` in the\n     * same directory:\n     *\n     * ```bash\n     * $ tree .\n     * .\n     * ├── mew\n     * └── mewtwo -> ./mew\n     * ```\n     * @since v0.1.31\n     * @param [type='null']\n     */\n    export function symlink(\n        target: PathLike,\n        path: PathLike,\n        type: symlink.Type | undefined | null,\n        callback: NoParamCallback,\n    ): void;\n    /**\n     * Asynchronous symlink(2) - Create a new symbolic link to an existing file.\n     * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.\n     * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void;\n    export namespace symlink {\n        /**\n         * Asynchronous symlink(2) - Create a new symbolic link to an existing file.\n         * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.\n         * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.\n         * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).\n         * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.\n         */\n        function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise<void>;\n        type Type = \"dir\" | \"file\" | \"junction\";\n    }\n    /**\n     * Returns `undefined`.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link symlink}.\n     * @since v0.1.31\n     * @param [type='null']\n     */\n    export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void;\n    /**\n     * Reads the contents of the symbolic link referred to by `path`. The callback gets\n     * two arguments `(err, linkString)`.\n     *\n     * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the link path passed to the callback. If the `encoding` is set to `'buffer'`,\n     * the link path returned will be passed as a `Buffer` object.\n     * @since v0.1.31\n     */\n    export function readlink(\n        path: PathLike,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, linkString: string) => void,\n    ): void;\n    /**\n     * Asynchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readlink(\n        path: PathLike,\n        options: BufferEncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void,\n    ): void;\n    /**\n     * Asynchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readlink(\n        path: PathLike,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void,\n    ): void;\n    /**\n     * Asynchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function readlink(\n        path: PathLike,\n        callback: (err: NodeJS.ErrnoException | null, linkString: string) => void,\n    ): void;\n    export namespace readlink {\n        /**\n         * Asynchronous readlink(2) - read value of a symbolic link.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;\n        /**\n         * Asynchronous readlink(2) - read value of a symbolic link.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;\n        /**\n         * Asynchronous readlink(2) - read value of a symbolic link.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;\n    }\n    /**\n     * Returns the symbolic link's string value.\n     *\n     * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the link path returned. If the `encoding` is set to `'buffer'`,\n     * the link path returned will be passed as a `Buffer` object.\n     * @since v0.1.31\n     */\n    export function readlinkSync(path: PathLike, options?: EncodingOption): string;\n    /**\n     * Synchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer;\n    /**\n     * Synchronous readlink(2) - read value of a symbolic link.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readlinkSync(path: PathLike, options?: EncodingOption): string | Buffer;\n    /**\n     * Asynchronously computes the canonical pathname by resolving `.`, `..`, and\n     * symbolic links.\n     *\n     * A canonical pathname is not necessarily unique. Hard links and bind mounts can\n     * expose a file system entity through many pathnames.\n     *\n     * This function behaves like [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html), with some exceptions:\n     *\n     * 1. No case conversion is performed on case-insensitive file systems.\n     * 2. The maximum number of symbolic links is platform-independent and generally\n     * (much) higher than what the native [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html) implementation supports.\n     *\n     * The `callback` gets two arguments `(err, resolvedPath)`. May use `process.cwd` to resolve relative paths.\n     *\n     * Only paths that can be converted to UTF8 strings are supported.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the path passed to the callback. If the `encoding` is set to `'buffer'`,\n     * the path returned will be passed as a `Buffer` object.\n     *\n     * If `path` resolves to a socket or a pipe, the function will return a system\n     * dependent name for that object.\n     * @since v0.1.31\n     */\n    export function realpath(\n        path: PathLike,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,\n    ): void;\n    /**\n     * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function realpath(\n        path: PathLike,\n        options: BufferEncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void,\n    ): void;\n    /**\n     * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function realpath(\n        path: PathLike,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void,\n    ): void;\n    /**\n     * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function realpath(\n        path: PathLike,\n        callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,\n    ): void;\n    export namespace realpath {\n        /**\n         * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;\n        /**\n         * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;\n        /**\n         * Asynchronous realpath(3) - return the canonicalized absolute pathname.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;\n        /**\n         * Asynchronous [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html).\n         *\n         * The `callback` gets two arguments `(err, resolvedPath)`.\n         *\n         * Only paths that can be converted to UTF8 strings are supported.\n         *\n         * The optional `options` argument can be a string specifying an encoding, or an\n         * object with an `encoding` property specifying the character encoding to use for\n         * the path passed to the callback. If the `encoding` is set to `'buffer'`,\n         * the path returned will be passed as a `Buffer` object.\n         *\n         * On Linux, when Node.js is linked against musl libc, the procfs file system must\n         * be mounted on `/proc` in order for this function to work. Glibc does not have\n         * this restriction.\n         * @since v9.2.0\n         */\n        function native(\n            path: PathLike,\n            options: EncodingOption,\n            callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,\n        ): void;\n        function native(\n            path: PathLike,\n            options: BufferEncodingOption,\n            callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void,\n        ): void;\n        function native(\n            path: PathLike,\n            options: EncodingOption,\n            callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void,\n        ): void;\n        function native(\n            path: PathLike,\n            callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,\n        ): void;\n    }\n    /**\n     * Returns the resolved pathname.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link realpath}.\n     * @since v0.1.31\n     */\n    export function realpathSync(path: PathLike, options?: EncodingOption): string;\n    /**\n     * Synchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer;\n    /**\n     * Synchronous realpath(3) - return the canonicalized absolute pathname.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function realpathSync(path: PathLike, options?: EncodingOption): string | Buffer;\n    export namespace realpathSync {\n        function native(path: PathLike, options?: EncodingOption): string;\n        function native(path: PathLike, options: BufferEncodingOption): Buffer;\n        function native(path: PathLike, options?: EncodingOption): string | Buffer;\n    }\n    /**\n     * Asynchronously removes a file or symbolic link. No arguments other than a\n     * possible exception are given to the completion callback.\n     *\n     * ```js\n     * import { unlink } from 'node:fs';\n     * // Assuming that 'path/file.txt' is a regular file.\n     * unlink('path/file.txt', (err) => {\n     *   if (err) throw err;\n     *   console.log('path/file.txt was deleted');\n     * });\n     * ```\n     *\n     * `fs.unlink()` will not work on a directory, empty or otherwise. To remove a\n     * directory, use {@link rmdir}.\n     *\n     * See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more details.\n     * @since v0.0.2\n     */\n    export function unlink(path: PathLike, callback: NoParamCallback): void;\n    export namespace unlink {\n        /**\n         * Asynchronous unlink(2) - delete a name and possibly the file it refers to.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(path: PathLike): Promise<void>;\n    }\n    /**\n     * Synchronous [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html). Returns `undefined`.\n     * @since v0.1.21\n     */\n    export function unlinkSync(path: PathLike): void;\n    export interface RmDirOptions {\n        /**\n         * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or\n         * `EPERM` error is encountered, Node.js will retry the operation with a linear\n         * backoff wait of `retryDelay` ms longer on each try. This option represents the\n         * number of retries. This option is ignored if the `recursive` option is not\n         * `true`.\n         * @default 0\n         */\n        maxRetries?: number | undefined;\n        /**\n         * @deprecated since v14.14.0 In future versions of Node.js and will trigger a warning\n         * `fs.rmdir(path, { recursive: true })` will throw if `path` does not exist or is a file.\n         * Use `fs.rm(path, { recursive: true, force: true })` instead.\n         *\n         * If `true`, perform a recursive directory removal. In\n         * recursive mode, operations are retried on failure.\n         * @default false\n         */\n        recursive?: boolean | undefined;\n        /**\n         * The amount of time in milliseconds to wait between retries.\n         * This option is ignored if the `recursive` option is not `true`.\n         * @default 100\n         */\n        retryDelay?: number | undefined;\n    }\n    /**\n     * Asynchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). No arguments other than a possible exception are given\n     * to the completion callback.\n     *\n     * Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT` error on\n     * Windows and an `ENOTDIR` error on POSIX.\n     *\n     * To get a behavior similar to the `rm -rf` Unix command, use {@link rm} with options `{ recursive: true, force: true }`.\n     * @since v0.0.2\n     */\n    export function rmdir(path: PathLike, callback: NoParamCallback): void;\n    export function rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): void;\n    export namespace rmdir {\n        /**\n         * Asynchronous rmdir(2) - delete a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         */\n        function __promisify__(path: PathLike, options?: RmDirOptions): Promise<void>;\n    }\n    /**\n     * Synchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). Returns `undefined`.\n     *\n     * Using `fs.rmdirSync()` on a file (not a directory) results in an `ENOENT` error\n     * on Windows and an `ENOTDIR` error on POSIX.\n     *\n     * To get a behavior similar to the `rm -rf` Unix command, use {@link rmSync} with options `{ recursive: true, force: true }`.\n     * @since v0.1.21\n     */\n    export function rmdirSync(path: PathLike, options?: RmDirOptions): void;\n    export interface RmOptions {\n        /**\n         * When `true`, exceptions will be ignored if `path` does not exist.\n         * @default false\n         */\n        force?: boolean | undefined;\n        /**\n         * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or\n         * `EPERM` error is encountered, Node.js will retry the operation with a linear\n         * backoff wait of `retryDelay` ms longer on each try. This option represents the\n         * number of retries. This option is ignored if the `recursive` option is not\n         * `true`.\n         * @default 0\n         */\n        maxRetries?: number | undefined;\n        /**\n         * If `true`, perform a recursive directory removal. In\n         * recursive mode, operations are retried on failure.\n         * @default false\n         */\n        recursive?: boolean | undefined;\n        /**\n         * The amount of time in milliseconds to wait between retries.\n         * This option is ignored if the `recursive` option is not `true`.\n         * @default 100\n         */\n        retryDelay?: number | undefined;\n    }\n    /**\n     * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility). No arguments other than a possible exception are given to the\n     * completion callback.\n     * @since v14.14.0\n     */\n    export function rm(path: PathLike, callback: NoParamCallback): void;\n    export function rm(path: PathLike, options: RmOptions, callback: NoParamCallback): void;\n    export namespace rm {\n        /**\n         * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility).\n         */\n        function __promisify__(path: PathLike, options?: RmOptions): Promise<void>;\n    }\n    /**\n     * Synchronously removes files and directories (modeled on the standard POSIX `rm` utility). Returns `undefined`.\n     * @since v14.14.0\n     */\n    export function rmSync(path: PathLike, options?: RmOptions): void;\n    export interface MakeDirectoryOptions {\n        /**\n         * Indicates whether parent folders should be created.\n         * If a folder was created, the path to the first created folder will be returned.\n         * @default false\n         */\n        recursive?: boolean | undefined;\n        /**\n         * A file mode. If a string is passed, it is parsed as an octal integer. If not specified\n         * @default 0o777\n         */\n        mode?: Mode | undefined;\n    }\n    /**\n     * Asynchronously creates a directory.\n     *\n     * The callback is given a possible exception and, if `recursive` is `true`, the\n     * first directory path created, `(err[, path])`.`path` can still be `undefined` when `recursive` is `true`, if no directory was\n     * created (for instance, if it was previously created).\n     *\n     * The optional `options` argument can be an integer specifying `mode` (permission\n     * and sticky bits), or an object with a `mode` property and a `recursive` property indicating whether parent directories should be created. Calling `fs.mkdir()` when `path` is a directory that\n     * exists results in an error only\n     * when `recursive` is false. If `recursive` is false and the directory exists,\n     * an `EEXIST` error occurs.\n     *\n     * ```js\n     * import { mkdir } from 'node:fs';\n     *\n     * // Create ./tmp/a/apple, regardless of whether ./tmp and ./tmp/a exist.\n     * mkdir('./tmp/a/apple', { recursive: true }, (err) => {\n     *   if (err) throw err;\n     * });\n     * ```\n     *\n     * On Windows, using `fs.mkdir()` on the root directory even with recursion will\n     * result in an error:\n     *\n     * ```js\n     * import { mkdir } from 'node:fs';\n     *\n     * mkdir('/', { recursive: true }, (err) => {\n     *   // => [Error: EPERM: operation not permitted, mkdir 'C:\\']\n     * });\n     * ```\n     *\n     * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.\n     * @since v0.1.8\n     */\n    export function mkdir(\n        path: PathLike,\n        options: MakeDirectoryOptions & {\n            recursive: true;\n        },\n        callback: (err: NodeJS.ErrnoException | null, path?: string) => void,\n    ): void;\n    /**\n     * Asynchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    export function mkdir(\n        path: PathLike,\n        options:\n            | Mode\n            | (MakeDirectoryOptions & {\n                recursive?: false | undefined;\n            })\n            | null\n            | undefined,\n        callback: NoParamCallback,\n    ): void;\n    /**\n     * Asynchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    export function mkdir(\n        path: PathLike,\n        options: Mode | MakeDirectoryOptions | null | undefined,\n        callback: (err: NodeJS.ErrnoException | null, path?: string) => void,\n    ): void;\n    /**\n     * Asynchronous mkdir(2) - create a directory with a mode of `0o777`.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function mkdir(path: PathLike, callback: NoParamCallback): void;\n    export namespace mkdir {\n        /**\n         * Asynchronous mkdir(2) - create a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n         * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n         */\n        function __promisify__(\n            path: PathLike,\n            options: MakeDirectoryOptions & {\n                recursive: true;\n            },\n        ): Promise<string | undefined>;\n        /**\n         * Asynchronous mkdir(2) - create a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n         * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?:\n                | Mode\n                | (MakeDirectoryOptions & {\n                    recursive?: false | undefined;\n                })\n                | null,\n        ): Promise<void>;\n        /**\n         * Asynchronous mkdir(2) - create a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n         * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?: Mode | MakeDirectoryOptions | null,\n        ): Promise<string | undefined>;\n    }\n    /**\n     * Synchronously creates a directory. Returns `undefined`, or if `recursive` is `true`, the first directory path created.\n     * This is the synchronous version of {@link mkdir}.\n     *\n     * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.\n     * @since v0.1.21\n     */\n    export function mkdirSync(\n        path: PathLike,\n        options: MakeDirectoryOptions & {\n            recursive: true;\n        },\n    ): string | undefined;\n    /**\n     * Synchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    export function mkdirSync(\n        path: PathLike,\n        options?:\n            | Mode\n            | (MakeDirectoryOptions & {\n                recursive?: false | undefined;\n            })\n            | null,\n    ): void;\n    /**\n     * Synchronous mkdir(2) - create a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders\n     * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.\n     */\n    export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined;\n    /**\n     * Creates a unique temporary directory.\n     *\n     * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. Due to platform\n     * inconsistencies, avoid trailing `X` characters in `prefix`. Some platforms,\n     * notably the BSDs, can return more than six random characters, and replace\n     * trailing `X` characters in `prefix` with random characters.\n     *\n     * The created directory path is passed as a string to the callback's second\n     * parameter.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use.\n     *\n     * ```js\n     * import { mkdtemp } from 'node:fs';\n     * import { join } from 'node:path';\n     * import { tmpdir } from 'node:os';\n     *\n     * mkdtemp(join(tmpdir(), 'foo-'), (err, directory) => {\n     *   if (err) throw err;\n     *   console.log(directory);\n     *   // Prints: /tmp/foo-itXde2 or C:\\Users\\...\\AppData\\Local\\Temp\\foo-itXde2\n     * });\n     * ```\n     *\n     * The `fs.mkdtemp()` method will append the six randomly selected characters\n     * directly to the `prefix` string. For instance, given a directory `/tmp`, if the\n     * intention is to create a temporary directory _within_`/tmp`, the `prefix`must end with a trailing platform-specific path separator\n     * (`import { sep } from 'node:path'`).\n     *\n     * ```js\n     * import { tmpdir } from 'node:os';\n     * import { mkdtemp } from 'node:fs';\n     *\n     * // The parent directory for the new temporary directory\n     * const tmpDir = tmpdir();\n     *\n     * // This method is *INCORRECT*:\n     * mkdtemp(tmpDir, (err, directory) => {\n     *   if (err) throw err;\n     *   console.log(directory);\n     *   // Will print something similar to `/tmpabc123`.\n     *   // A new temporary directory is created at the file system root\n     *   // rather than *within* the /tmp directory.\n     * });\n     *\n     * // This method is *CORRECT*:\n     * import { sep } from 'node:path';\n     * mkdtemp(`${tmpDir}${sep}`, (err, directory) => {\n     *   if (err) throw err;\n     *   console.log(directory);\n     *   // Will print something similar to `/tmp/abc123`.\n     *   // A new temporary directory is created within\n     *   // the /tmp directory.\n     * });\n     * ```\n     * @since v5.10.0\n     */\n    export function mkdtemp(\n        prefix: string,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, folder: string) => void,\n    ): void;\n    /**\n     * Asynchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function mkdtemp(\n        prefix: string,\n        options:\n            | \"buffer\"\n            | {\n                encoding: \"buffer\";\n            },\n        callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void,\n    ): void;\n    /**\n     * Asynchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function mkdtemp(\n        prefix: string,\n        options: EncodingOption,\n        callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void,\n    ): void;\n    /**\n     * Asynchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n     */\n    export function mkdtemp(\n        prefix: string,\n        callback: (err: NodeJS.ErrnoException | null, folder: string) => void,\n    ): void;\n    export namespace mkdtemp {\n        /**\n         * Asynchronously creates a unique temporary directory.\n         * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(prefix: string, options?: EncodingOption): Promise<string>;\n        /**\n         * Asynchronously creates a unique temporary directory.\n         * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(prefix: string, options: BufferEncodingOption): Promise<Buffer>;\n        /**\n         * Asynchronously creates a unique temporary directory.\n         * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(prefix: string, options?: EncodingOption): Promise<string | Buffer>;\n    }\n    /**\n     * Returns the created directory path.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link mkdtemp}.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use.\n     * @since v5.10.0\n     */\n    export function mkdtempSync(prefix: string, options?: EncodingOption): string;\n    /**\n     * Synchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer;\n    /**\n     * Synchronously creates a unique temporary directory.\n     * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function mkdtempSync(prefix: string, options?: EncodingOption): string | Buffer;\n    /**\n     * Reads the contents of a directory. The callback gets two arguments `(err, files)` where `files` is an array of the names of the files in the directory excluding `'.'` and `'..'`.\n     *\n     * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the filenames passed to the callback. If the `encoding` is set to `'buffer'`,\n     * the filenames returned will be passed as `Buffer` objects.\n     *\n     * If `options.withFileTypes` is set to `true`, the `files` array will contain `fs.Dirent` objects.\n     * @since v0.1.8\n     */\n    export function readdir(\n        path: PathLike,\n        options:\n            | {\n                encoding: BufferEncoding | null;\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            }\n            | BufferEncoding\n            | undefined\n            | null,\n        callback: (err: NodeJS.ErrnoException | null, files: string[]) => void,\n    ): void;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readdir(\n        path: PathLike,\n        options:\n            | {\n                encoding: \"buffer\";\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            }\n            | \"buffer\",\n        callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void,\n    ): void;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readdir(\n        path: PathLike,\n        options:\n            | (ObjectEncodingOptions & {\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            })\n            | BufferEncoding\n            | undefined\n            | null,\n        callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void,\n    ): void;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function readdir(\n        path: PathLike,\n        callback: (err: NodeJS.ErrnoException | null, files: string[]) => void,\n    ): void;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.\n     */\n    export function readdir(\n        path: PathLike,\n        options: ObjectEncodingOptions & {\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n        callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void,\n    ): void;\n    /**\n     * Asynchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.\n     */\n    export function readdir(\n        path: PathLike,\n        options: {\n            encoding: \"buffer\";\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n        callback: (err: NodeJS.ErrnoException | null, files: Dirent<Buffer>[]) => void,\n    ): void;\n    export namespace readdir {\n        /**\n         * Asynchronous readdir(3) - read a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?:\n                | {\n                    encoding: BufferEncoding | null;\n                    withFileTypes?: false | undefined;\n                    recursive?: boolean | undefined;\n                }\n                | BufferEncoding\n                | null,\n        ): Promise<string[]>;\n        /**\n         * Asynchronous readdir(3) - read a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(\n            path: PathLike,\n            options:\n                | \"buffer\"\n                | {\n                    encoding: \"buffer\";\n                    withFileTypes?: false | undefined;\n                    recursive?: boolean | undefined;\n                },\n        ): Promise<Buffer[]>;\n        /**\n         * Asynchronous readdir(3) - read a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n         */\n        function __promisify__(\n            path: PathLike,\n            options?:\n                | (ObjectEncodingOptions & {\n                    withFileTypes?: false | undefined;\n                    recursive?: boolean | undefined;\n                })\n                | BufferEncoding\n                | null,\n        ): Promise<string[] | Buffer[]>;\n        /**\n         * Asynchronous readdir(3) - read a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options If called with `withFileTypes: true` the result data will be an array of Dirent\n         */\n        function __promisify__(\n            path: PathLike,\n            options: ObjectEncodingOptions & {\n                withFileTypes: true;\n                recursive?: boolean | undefined;\n            },\n        ): Promise<Dirent[]>;\n        /**\n         * Asynchronous readdir(3) - read a directory.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.\n         */\n        function __promisify__(\n            path: PathLike,\n            options: {\n                encoding: \"buffer\";\n                withFileTypes: true;\n                recursive?: boolean | undefined;\n            },\n        ): Promise<Dirent<Buffer>[]>;\n    }\n    /**\n     * Reads the contents of the directory.\n     *\n     * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.\n     *\n     * The optional `options` argument can be a string specifying an encoding, or an\n     * object with an `encoding` property specifying the character encoding to use for\n     * the filenames returned. If the `encoding` is set to `'buffer'`,\n     * the filenames returned will be passed as `Buffer` objects.\n     *\n     * If `options.withFileTypes` is set to `true`, the result will contain `fs.Dirent` objects.\n     * @since v0.1.21\n     */\n    export function readdirSync(\n        path: PathLike,\n        options?:\n            | {\n                encoding: BufferEncoding | null;\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            }\n            | BufferEncoding\n            | null,\n    ): string[];\n    /**\n     * Synchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readdirSync(\n        path: PathLike,\n        options:\n            | {\n                encoding: \"buffer\";\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            }\n            | \"buffer\",\n    ): Buffer[];\n    /**\n     * Synchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.\n     */\n    export function readdirSync(\n        path: PathLike,\n        options?:\n            | (ObjectEncodingOptions & {\n                withFileTypes?: false | undefined;\n                recursive?: boolean | undefined;\n            })\n            | BufferEncoding\n            | null,\n    ): string[] | Buffer[];\n    /**\n     * Synchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.\n     */\n    export function readdirSync(\n        path: PathLike,\n        options: ObjectEncodingOptions & {\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n    ): Dirent[];\n    /**\n     * Synchronous readdir(3) - read a directory.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.\n     */\n    export function readdirSync(\n        path: PathLike,\n        options: {\n            encoding: \"buffer\";\n            withFileTypes: true;\n            recursive?: boolean | undefined;\n        },\n    ): Dirent<Buffer>[];\n    /**\n     * Closes the file descriptor. No arguments other than a possible exception are\n     * given to the completion callback.\n     *\n     * Calling `fs.close()` on any file descriptor (`fd`) that is currently in use\n     * through any other `fs` operation may lead to undefined behavior.\n     *\n     * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.\n     * @since v0.0.2\n     */\n    export function close(fd: number, callback?: NoParamCallback): void;\n    export namespace close {\n        /**\n         * Asynchronous close(2) - close a file descriptor.\n         * @param fd A file descriptor.\n         */\n        function __promisify__(fd: number): Promise<void>;\n    }\n    /**\n     * Closes the file descriptor. Returns `undefined`.\n     *\n     * Calling `fs.closeSync()` on any file descriptor (`fd`) that is currently in use\n     * through any other `fs` operation may lead to undefined behavior.\n     *\n     * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.\n     * @since v0.1.21\n     */\n    export function closeSync(fd: number): void;\n    /**\n     * Asynchronous file open. See the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more details.\n     *\n     * `mode` sets the file mode (permission and sticky bits), but only if the file was\n     * created. On Windows, only the write permission can be manipulated; see {@link chmod}.\n     *\n     * The callback gets two arguments `(err, fd)`.\n     *\n     * Some characters (`< > : \" / \\ | ? *`) are reserved under Windows as documented\n     * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains\n     * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams).\n     *\n     * Functions based on `fs.open()` exhibit this behavior as well:`fs.writeFile()`, `fs.readFile()`, etc.\n     * @since v0.0.2\n     * @param [flags='r'] See `support of file system `flags``.\n     * @param [mode=0o666]\n     */\n    export function open(\n        path: PathLike,\n        flags: OpenMode | undefined,\n        mode: Mode | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, fd: number) => void,\n    ): void;\n    /**\n     * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * @param [flags='r'] See `support of file system `flags``.\n     */\n    export function open(\n        path: PathLike,\n        flags: OpenMode | undefined,\n        callback: (err: NodeJS.ErrnoException | null, fd: number) => void,\n    ): void;\n    /**\n     * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function open(path: PathLike, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;\n    export namespace open {\n        /**\n         * Asynchronous open(2) - open and possibly create a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.\n         */\n        function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise<number>;\n    }\n    /**\n     * Returns an integer representing the file descriptor.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link open}.\n     * @since v0.1.21\n     * @param [flags='r']\n     * @param [mode=0o666]\n     */\n    export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number;\n    /**\n     * Change the file system timestamps of the object referenced by `path`.\n     *\n     * The `atime` and `mtime` arguments follow these rules:\n     *\n     * * Values can be either numbers representing Unix epoch time in seconds, `Date`s, or a numeric string like `'123456789.0'`.\n     * * If the value can not be converted to a number, or is `NaN`, `Infinity`, or `-Infinity`, an `Error` will be thrown.\n     * @since v0.4.2\n     */\n    export function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;\n    export namespace utimes {\n        /**\n         * Asynchronously change file timestamps of the file referenced by the supplied path.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * @param atime The last access time. If a string is provided, it will be coerced to number.\n         * @param mtime The last modified time. If a string is provided, it will be coerced to number.\n         */\n        function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;\n    }\n    /**\n     * Returns `undefined`.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link utimes}.\n     * @since v0.4.2\n     */\n    export function utimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;\n    /**\n     * Change the file system timestamps of the object referenced by the supplied file\n     * descriptor. See {@link utimes}.\n     * @since v0.4.2\n     */\n    export function futimes(fd: number, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;\n    export namespace futimes {\n        /**\n         * Asynchronously change file timestamps of the file referenced by the supplied file descriptor.\n         * @param fd A file descriptor.\n         * @param atime The last access time. If a string is provided, it will be coerced to number.\n         * @param mtime The last modified time. If a string is provided, it will be coerced to number.\n         */\n        function __promisify__(fd: number, atime: TimeLike, mtime: TimeLike): Promise<void>;\n    }\n    /**\n     * Synchronous version of {@link futimes}. Returns `undefined`.\n     * @since v0.4.2\n     */\n    export function futimesSync(fd: number, atime: TimeLike, mtime: TimeLike): void;\n    /**\n     * Request that all data for the open file descriptor is flushed to the storage\n     * device. The specific implementation is operating system and device specific.\n     * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. No arguments other\n     * than a possible exception are given to the completion callback.\n     * @since v0.1.96\n     */\n    export function fsync(fd: number, callback: NoParamCallback): void;\n    export namespace fsync {\n        /**\n         * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.\n         * @param fd A file descriptor.\n         */\n        function __promisify__(fd: number): Promise<void>;\n    }\n    /**\n     * Request that all data for the open file descriptor is flushed to the storage\n     * device. The specific implementation is operating system and device specific.\n     * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. Returns `undefined`.\n     * @since v0.1.96\n     */\n    export function fsyncSync(fd: number): void;\n    export interface WriteOptions {\n        /**\n         * @default 0\n         */\n        offset?: number | undefined;\n        /**\n         * @default `buffer.byteLength - offset`\n         */\n        length?: number | undefined;\n        /**\n         * @default null\n         */\n        position?: number | undefined | null;\n    }\n    /**\n     * Write `buffer` to the file specified by `fd`.\n     *\n     * `offset` determines the part of the buffer to be written, and `length` is\n     * an integer specifying the number of bytes to write.\n     *\n     * `position` refers to the offset from the beginning of the file where this data\n     * should be written. If `typeof position !== 'number'`, the data will be written\n     * at the current position. See [`pwrite(2)`](http://man7.org/linux/man-pages/man2/pwrite.2.html).\n     *\n     * The callback will be given three arguments `(err, bytesWritten, buffer)` where `bytesWritten` specifies how many _bytes_ were written from `buffer`.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a promise for an `Object` with `bytesWritten` and `buffer` properties.\n     *\n     * It is unsafe to use `fs.write()` multiple times on the same file without waiting\n     * for the callback. For this scenario, {@link createWriteStream} is\n     * recommended.\n     *\n     * On Linux, positional writes don't work when the file is opened in append mode.\n     * The kernel ignores the position argument and always appends the data to\n     * the end of the file.\n     * @since v0.0.2\n     * @param [offset=0]\n     * @param [length=buffer.byteLength - offset]\n     * @param [position='null']\n     */\n    export function write<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        offset: number | undefined | null,\n        length: number | undefined | null,\n        position: number | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.\n     * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.\n     */\n    export function write<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        offset: number | undefined | null,\n        length: number | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.\n     */\n    export function write<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        offset: number | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     */\n    export function write<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param options An object with the following properties:\n     * * `offset` The part of the buffer to be written. If not supplied, defaults to `0`.\n     * * `length` The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.\n     * * `position` The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n     */\n    export function write<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        options: WriteOptions,\n        callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously writes `string` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param string A string to write.\n     * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n     * @param encoding The expected string encoding.\n     */\n    export function write(\n        fd: number,\n        string: string,\n        position: number | undefined | null,\n        encoding: BufferEncoding | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,\n    ): void;\n    /**\n     * Asynchronously writes `string` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param string A string to write.\n     * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n     */\n    export function write(\n        fd: number,\n        string: string,\n        position: number | undefined | null,\n        callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,\n    ): void;\n    /**\n     * Asynchronously writes `string` to the file referenced by the supplied file descriptor.\n     * @param fd A file descriptor.\n     * @param string A string to write.\n     */\n    export function write(\n        fd: number,\n        string: string,\n        callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,\n    ): void;\n    export namespace write {\n        /**\n         * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n         * @param fd A file descriptor.\n         * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.\n         * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.\n         * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n         */\n        function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(\n            fd: number,\n            buffer?: TBuffer,\n            offset?: number,\n            length?: number,\n            position?: number | null,\n        ): Promise<{\n            bytesWritten: number;\n            buffer: TBuffer;\n        }>;\n        /**\n         * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.\n         * @param fd A file descriptor.\n         * @param options An object with the following properties:\n         * * `offset` The part of the buffer to be written. If not supplied, defaults to `0`.\n         * * `length` The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.\n         * * `position` The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n         */\n        function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(\n            fd: number,\n            buffer?: TBuffer,\n            options?: WriteOptions,\n        ): Promise<{\n            bytesWritten: number;\n            buffer: TBuffer;\n        }>;\n        /**\n         * Asynchronously writes `string` to the file referenced by the supplied file descriptor.\n         * @param fd A file descriptor.\n         * @param string A string to write.\n         * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n         * @param encoding The expected string encoding.\n         */\n        function __promisify__(\n            fd: number,\n            string: string,\n            position?: number | null,\n            encoding?: BufferEncoding | null,\n        ): Promise<{\n            bytesWritten: number;\n            buffer: string;\n        }>;\n    }\n    /**\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link write}.\n     * @since v0.1.21\n     * @param [offset=0]\n     * @param [length=buffer.byteLength - offset]\n     * @param [position='null']\n     * @return The number of bytes written.\n     */\n    export function writeSync(\n        fd: number,\n        buffer: NodeJS.ArrayBufferView,\n        offset?: number | null,\n        length?: number | null,\n        position?: number | null,\n    ): number;\n    /**\n     * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written.\n     * @param fd A file descriptor.\n     * @param string A string to write.\n     * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.\n     * @param encoding The expected string encoding.\n     */\n    export function writeSync(\n        fd: number,\n        string: string,\n        position?: number | null,\n        encoding?: BufferEncoding | null,\n    ): number;\n    export type ReadPosition = number | bigint;\n    export interface ReadSyncOptions {\n        /**\n         * @default 0\n         */\n        offset?: number | undefined;\n        /**\n         * @default `length of buffer`\n         */\n        length?: number | undefined;\n        /**\n         * @default null\n         */\n        position?: ReadPosition | null | undefined;\n    }\n    export interface ReadAsyncOptions<TBuffer extends NodeJS.ArrayBufferView> extends ReadSyncOptions {\n        buffer?: TBuffer;\n    }\n    /**\n     * Read data from the file specified by `fd`.\n     *\n     * The callback is given the three arguments, `(err, bytesRead, buffer)`.\n     *\n     * If the file is not modified concurrently, the end-of-file is reached when the\n     * number of bytes read is zero.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a promise for an `Object` with `bytesRead` and `buffer` properties.\n     * @since v0.0.2\n     * @param buffer The buffer that the data will be written to.\n     * @param offset The position in `buffer` to write the data to.\n     * @param length The number of bytes to read.\n     * @param position Specifies where to begin reading from in the file. If `position` is `null` or `-1 `, data will be read from the current file position, and the file position will be updated. If\n     * `position` is an integer, the file position will be unchanged.\n     */\n    export function read<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        offset: number,\n        length: number,\n        position: ReadPosition | null,\n        callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,\n    ): void;\n    /**\n     * Similar to the above `fs.read` function, this version takes an optional `options` object.\n     * If not otherwise specified in an `options` object,\n     * `buffer` defaults to `Buffer.alloc(16384)`,\n     * `offset` defaults to `0`,\n     * `length` defaults to `buffer.byteLength`, `- offset` as of Node 17.6.0\n     * `position` defaults to `null`\n     * @since v12.17.0, 13.11.0\n     */\n    export function read<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        options: ReadAsyncOptions<TBuffer>,\n        callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,\n    ): void;\n    export function read<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        options: ReadSyncOptions,\n        callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,\n    ): void;\n    export function read<TBuffer extends NodeJS.ArrayBufferView>(\n        fd: number,\n        buffer: TBuffer,\n        callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,\n    ): void;\n    export function read(\n        fd: number,\n        callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: NodeJS.ArrayBufferView) => void,\n    ): void;\n    export namespace read {\n        /**\n         * @param fd A file descriptor.\n         * @param buffer The buffer that the data will be written to.\n         * @param offset The offset in the buffer at which to start writing.\n         * @param length The number of bytes to read.\n         * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.\n         */\n        function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(\n            fd: number,\n            buffer: TBuffer,\n            offset: number,\n            length: number,\n            position: ReadPosition | null,\n        ): Promise<{\n            bytesRead: number;\n            buffer: TBuffer;\n        }>;\n        function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(\n            fd: number,\n            options: ReadAsyncOptions<TBuffer>,\n        ): Promise<{\n            bytesRead: number;\n            buffer: TBuffer;\n        }>;\n        function __promisify__(fd: number): Promise<{\n            bytesRead: number;\n            buffer: NodeJS.ArrayBufferView;\n        }>;\n    }\n    /**\n     * Returns the number of `bytesRead`.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link read}.\n     * @since v0.1.21\n     * @param [position='null']\n     */\n    export function readSync(\n        fd: number,\n        buffer: NodeJS.ArrayBufferView,\n        offset: number,\n        length: number,\n        position: ReadPosition | null,\n    ): number;\n    /**\n     * Similar to the above `fs.readSync` function, this version takes an optional `options` object.\n     * If no `options` object is specified, it will default with the above values.\n     */\n    export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     *\n     * ```js\n     * import { readFile } from 'node:fs';\n     *\n     * readFile('/etc/passwd', (err, data) => {\n     *   if (err) throw err;\n     *   console.log(data);\n     * });\n     * ```\n     *\n     * The callback is passed two arguments `(err, data)`, where `data` is the\n     * contents of the file.\n     *\n     * If no encoding is specified, then the raw buffer is returned.\n     *\n     * If `options` is a string, then it specifies the encoding:\n     *\n     * ```js\n     * import { readFile } from 'node:fs';\n     *\n     * readFile('/etc/passwd', 'utf8', callback);\n     * ```\n     *\n     * When the path is a directory, the behavior of `fs.readFile()` and {@link readFileSync} is platform-specific. On macOS, Linux, and Windows, an\n     * error will be returned. On FreeBSD, a representation of the directory's contents\n     * will be returned.\n     *\n     * ```js\n     * import { readFile } from 'node:fs';\n     *\n     * // macOS, Linux, and Windows\n     * readFile('<directory>', (err, data) => {\n     *   // => [Error: EISDIR: illegal operation on a directory, read <directory>]\n     * });\n     *\n     * //  FreeBSD\n     * readFile('<directory>', (err, data) => {\n     *   // => null, <data>\n     * });\n     * ```\n     *\n     * It is possible to abort an ongoing request using an `AbortSignal`. If a\n     * request is aborted the callback is called with an `AbortError`:\n     *\n     * ```js\n     * import { readFile } from 'node:fs';\n     *\n     * const controller = new AbortController();\n     * const signal = controller.signal;\n     * readFile(fileInfo[0].name, { signal }, (err, buf) => {\n     *   // ...\n     * });\n     * // When you want to abort the request\n     * controller.abort();\n     * ```\n     *\n     * The `fs.readFile()` function buffers the entire file. To minimize memory costs,\n     * when possible prefer streaming via `fs.createReadStream()`.\n     *\n     * Aborting an ongoing request does not abort individual operating\n     * system requests but rather the internal buffering `fs.readFile` performs.\n     * @since v0.1.29\n     * @param path filename or file descriptor\n     */\n    export function readFile(\n        path: PathOrFileDescriptor,\n        options:\n            | ({\n                encoding?: null | undefined;\n                flag?: string | undefined;\n            } & Abortable)\n            | undefined\n            | null,\n        callback: (err: NodeJS.ErrnoException | null, data: NonSharedBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    export function readFile(\n        path: PathOrFileDescriptor,\n        options:\n            | ({\n                encoding: BufferEncoding;\n                flag?: string | undefined;\n            } & Abortable)\n            | BufferEncoding,\n        callback: (err: NodeJS.ErrnoException | null, data: string) => void,\n    ): void;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    export function readFile(\n        path: PathOrFileDescriptor,\n        options:\n            | (ObjectEncodingOptions & {\n                flag?: string | undefined;\n            } & Abortable)\n            | BufferEncoding\n            | undefined\n            | null,\n        callback: (err: NodeJS.ErrnoException | null, data: string | NonSharedBuffer) => void,\n    ): void;\n    /**\n     * Asynchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     */\n    export function readFile(\n        path: PathOrFileDescriptor,\n        callback: (err: NodeJS.ErrnoException | null, data: NonSharedBuffer) => void,\n    ): void;\n    export namespace readFile {\n        /**\n         * Asynchronously reads the entire contents of a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n         * @param options An object that may contain an optional flag.\n         * If a flag is not provided, it defaults to `'r'`.\n         */\n        function __promisify__(\n            path: PathOrFileDescriptor,\n            options?: {\n                encoding?: null | undefined;\n                flag?: string | undefined;\n            } | null,\n        ): Promise<NonSharedBuffer>;\n        /**\n         * Asynchronously reads the entire contents of a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n         * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n         * If a flag is not provided, it defaults to `'r'`.\n         */\n        function __promisify__(\n            path: PathOrFileDescriptor,\n            options:\n                | {\n                    encoding: BufferEncoding;\n                    flag?: string | undefined;\n                }\n                | BufferEncoding,\n        ): Promise<string>;\n        /**\n         * Asynchronously reads the entire contents of a file.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n         * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n         * If a flag is not provided, it defaults to `'r'`.\n         */\n        function __promisify__(\n            path: PathOrFileDescriptor,\n            options?:\n                | (ObjectEncodingOptions & {\n                    flag?: string | undefined;\n                })\n                | BufferEncoding\n                | null,\n        ): Promise<string | NonSharedBuffer>;\n    }\n    /**\n     * Returns the contents of the `path`.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link readFile}.\n     *\n     * If the `encoding` option is specified then this function returns a\n     * string. Otherwise it returns a buffer.\n     *\n     * Similar to {@link readFile}, when the path is a directory, the behavior of `fs.readFileSync()` is platform-specific.\n     *\n     * ```js\n     * import { readFileSync } from 'node:fs';\n     *\n     * // macOS, Linux, and Windows\n     * readFileSync('<directory>');\n     * // => [Error: EISDIR: illegal operation on a directory, read <directory>]\n     *\n     * //  FreeBSD\n     * readFileSync('<directory>'); // => <data>\n     * ```\n     * @since v0.1.8\n     * @param path filename or file descriptor\n     */\n    export function readFileSync(\n        path: PathOrFileDescriptor,\n        options?: {\n            encoding?: null | undefined;\n            flag?: string | undefined;\n        } | null,\n    ): NonSharedBuffer;\n    /**\n     * Synchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    export function readFileSync(\n        path: PathOrFileDescriptor,\n        options:\n            | {\n                encoding: BufferEncoding;\n                flag?: string | undefined;\n            }\n            | BufferEncoding,\n    ): string;\n    /**\n     * Synchronously reads the entire contents of a file.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.\n     * If a flag is not provided, it defaults to `'r'`.\n     */\n    export function readFileSync(\n        path: PathOrFileDescriptor,\n        options?:\n            | (ObjectEncodingOptions & {\n                flag?: string | undefined;\n            })\n            | BufferEncoding\n            | null,\n    ): string | NonSharedBuffer;\n    export type WriteFileOptions =\n        | (\n            & ObjectEncodingOptions\n            & Abortable\n            & {\n                mode?: Mode | undefined;\n                flag?: string | undefined;\n                flush?: boolean | undefined;\n            }\n        )\n        | BufferEncoding\n        | null;\n    /**\n     * When `file` is a filename, asynchronously writes data to the file, replacing the\n     * file if it already exists. `data` can be a string or a buffer.\n     *\n     * When `file` is a file descriptor, the behavior is similar to calling `fs.write()` directly (which is recommended). See the notes below on using\n     * a file descriptor.\n     *\n     * The `encoding` option is ignored if `data` is a buffer.\n     *\n     * The `mode` option only affects the newly created file. See {@link open} for more details.\n     *\n     * ```js\n     * import { writeFile } from 'node:fs';\n     * import { Buffer } from 'node:buffer';\n     *\n     * const data = new Uint8Array(Buffer.from('Hello Node.js'));\n     * writeFile('message.txt', data, (err) => {\n     *   if (err) throw err;\n     *   console.log('The file has been saved!');\n     * });\n     * ```\n     *\n     * If `options` is a string, then it specifies the encoding:\n     *\n     * ```js\n     * import { writeFile } from 'node:fs';\n     *\n     * writeFile('message.txt', 'Hello Node.js', 'utf8', callback);\n     * ```\n     *\n     * It is unsafe to use `fs.writeFile()` multiple times on the same file without\n     * waiting for the callback. For this scenario, {@link createWriteStream} is\n     * recommended.\n     *\n     * Similarly to `fs.readFile` \\- `fs.writeFile` is a convenience method that\n     * performs multiple `write` calls internally to write the buffer passed to it.\n     * For performance sensitive code consider using {@link createWriteStream}.\n     *\n     * It is possible to use an `AbortSignal` to cancel an `fs.writeFile()`.\n     * Cancelation is \"best effort\", and some amount of data is likely still\n     * to be written.\n     *\n     * ```js\n     * import { writeFile } from 'node:fs';\n     * import { Buffer } from 'node:buffer';\n     *\n     * const controller = new AbortController();\n     * const { signal } = controller;\n     * const data = new Uint8Array(Buffer.from('Hello Node.js'));\n     * writeFile('message.txt', data, { signal }, (err) => {\n     *   // When a request is aborted - the callback is called with an AbortError\n     * });\n     * // When the request should be aborted\n     * controller.abort();\n     * ```\n     *\n     * Aborting an ongoing request does not abort individual operating\n     * system requests but rather the internal buffering `fs.writeFile` performs.\n     * @since v0.1.29\n     * @param file filename or file descriptor\n     */\n    export function writeFile(\n        file: PathOrFileDescriptor,\n        data: string | NodeJS.ArrayBufferView,\n        options: WriteFileOptions,\n        callback: NoParamCallback,\n    ): void;\n    /**\n     * Asynchronously writes data to a file, replacing the file if it already exists.\n     * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.\n     */\n    export function writeFile(\n        path: PathOrFileDescriptor,\n        data: string | NodeJS.ArrayBufferView,\n        callback: NoParamCallback,\n    ): void;\n    export namespace writeFile {\n        /**\n         * Asynchronously writes data to a file, replacing the file if it already exists.\n         * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n         * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.\n         * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.\n         * If `encoding` is not supplied, the default of `'utf8'` is used.\n         * If `mode` is not supplied, the default of `0o666` is used.\n         * If `mode` is a string, it is parsed as an octal integer.\n         * If `flag` is not supplied, the default of `'w'` is used.\n         */\n        function __promisify__(\n            path: PathOrFileDescriptor,\n            data: string | NodeJS.ArrayBufferView,\n            options?: WriteFileOptions,\n        ): Promise<void>;\n    }\n    /**\n     * Returns `undefined`.\n     *\n     * The `mode` option only affects the newly created file. See {@link open} for more details.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link writeFile}.\n     * @since v0.1.29\n     * @param file filename or file descriptor\n     */\n    export function writeFileSync(\n        file: PathOrFileDescriptor,\n        data: string | NodeJS.ArrayBufferView,\n        options?: WriteFileOptions,\n    ): void;\n    /**\n     * Asynchronously append data to a file, creating the file if it does not yet\n     * exist. `data` can be a string or a `Buffer`.\n     *\n     * The `mode` option only affects the newly created file. See {@link open} for more details.\n     *\n     * ```js\n     * import { appendFile } from 'node:fs';\n     *\n     * appendFile('message.txt', 'data to append', (err) => {\n     *   if (err) throw err;\n     *   console.log('The \"data to append\" was appended to file!');\n     * });\n     * ```\n     *\n     * If `options` is a string, then it specifies the encoding:\n     *\n     * ```js\n     * import { appendFile } from 'node:fs';\n     *\n     * appendFile('message.txt', 'data to append', 'utf8', callback);\n     * ```\n     *\n     * The `path` may be specified as a numeric file descriptor that has been opened\n     * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will\n     * not be closed automatically.\n     *\n     * ```js\n     * import { open, close, appendFile } from 'node:fs';\n     *\n     * function closeFd(fd) {\n     *   close(fd, (err) => {\n     *     if (err) throw err;\n     *   });\n     * }\n     *\n     * open('message.txt', 'a', (err, fd) => {\n     *   if (err) throw err;\n     *\n     *   try {\n     *     appendFile(fd, 'data to append', 'utf8', (err) => {\n     *       closeFd(fd);\n     *       if (err) throw err;\n     *     });\n     *   } catch (err) {\n     *     closeFd(fd);\n     *     throw err;\n     *   }\n     * });\n     * ```\n     * @since v0.6.7\n     * @param path filename or file descriptor\n     */\n    export function appendFile(\n        path: PathOrFileDescriptor,\n        data: string | Uint8Array,\n        options: WriteFileOptions,\n        callback: NoParamCallback,\n    ): void;\n    /**\n     * Asynchronously append data to a file, creating the file if it does not exist.\n     * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.\n     * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n     * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.\n     */\n    export function appendFile(file: PathOrFileDescriptor, data: string | Uint8Array, callback: NoParamCallback): void;\n    export namespace appendFile {\n        /**\n         * Asynchronously append data to a file, creating the file if it does not exist.\n         * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         * If a file descriptor is provided, the underlying file will _not_ be closed automatically.\n         * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.\n         * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.\n         * If `encoding` is not supplied, the default of `'utf8'` is used.\n         * If `mode` is not supplied, the default of `0o666` is used.\n         * If `mode` is a string, it is parsed as an octal integer.\n         * If `flag` is not supplied, the default of `'a'` is used.\n         */\n        function __promisify__(\n            file: PathOrFileDescriptor,\n            data: string | Uint8Array,\n            options?: WriteFileOptions,\n        ): Promise<void>;\n    }\n    /**\n     * Synchronously append data to a file, creating the file if it does not yet\n     * exist. `data` can be a string or a `Buffer`.\n     *\n     * The `mode` option only affects the newly created file. See {@link open} for more details.\n     *\n     * ```js\n     * import { appendFileSync } from 'node:fs';\n     *\n     * try {\n     *   appendFileSync('message.txt', 'data to append');\n     *   console.log('The \"data to append\" was appended to file!');\n     * } catch (err) {\n     *   // Handle the error\n     * }\n     * ```\n     *\n     * If `options` is a string, then it specifies the encoding:\n     *\n     * ```js\n     * import { appendFileSync } from 'node:fs';\n     *\n     * appendFileSync('message.txt', 'data to append', 'utf8');\n     * ```\n     *\n     * The `path` may be specified as a numeric file descriptor that has been opened\n     * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will\n     * not be closed automatically.\n     *\n     * ```js\n     * import { openSync, closeSync, appendFileSync } from 'node:fs';\n     *\n     * let fd;\n     *\n     * try {\n     *   fd = openSync('message.txt', 'a');\n     *   appendFileSync(fd, 'data to append', 'utf8');\n     * } catch (err) {\n     *   // Handle the error\n     * } finally {\n     *   if (fd !== undefined)\n     *     closeSync(fd);\n     * }\n     * ```\n     * @since v0.6.7\n     * @param path filename or file descriptor\n     */\n    export function appendFileSync(\n        path: PathOrFileDescriptor,\n        data: string | Uint8Array,\n        options?: WriteFileOptions,\n    ): void;\n    /**\n     * Watch for changes on `filename`. The callback `listener` will be called each\n     * time the file is accessed.\n     *\n     * The `options` argument may be omitted. If provided, it should be an object. The `options` object may contain a boolean named `persistent` that indicates\n     * whether the process should continue to run as long as files are being watched.\n     * The `options` object may specify an `interval` property indicating how often the\n     * target should be polled in milliseconds.\n     *\n     * The `listener` gets two arguments the current stat object and the previous\n     * stat object:\n     *\n     * ```js\n     * import { watchFile } from 'node:fs';\n     *\n     * watchFile('message.text', (curr, prev) => {\n     *   console.log(`the current mtime is: ${curr.mtime}`);\n     *   console.log(`the previous mtime was: ${prev.mtime}`);\n     * });\n     * ```\n     *\n     * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,\n     * the numeric values in these objects are specified as `BigInt`s.\n     *\n     * To be notified when the file was modified, not just accessed, it is necessary\n     * to compare `curr.mtimeMs` and `prev.mtimeMs`.\n     *\n     * When an `fs.watchFile` operation results in an `ENOENT` error, it\n     * will invoke the listener once, with all the fields zeroed (or, for dates, the\n     * Unix Epoch). If the file is created later on, the listener will be called\n     * again, with the latest stat objects. This is a change in functionality since\n     * v0.10.\n     *\n     * Using {@link watch} is more efficient than `fs.watchFile` and `fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile` when possible.\n     *\n     * When a file being watched by `fs.watchFile()` disappears and reappears,\n     * then the contents of `previous` in the second callback event (the file's\n     * reappearance) will be the same as the contents of `previous` in the first\n     * callback event (its disappearance).\n     *\n     * This happens when:\n     *\n     * * the file is deleted, followed by a restore\n     * * the file is renamed and then renamed a second time back to its original name\n     * @since v0.1.31\n     */\n    export interface WatchFileOptions {\n        bigint?: boolean | undefined;\n        persistent?: boolean | undefined;\n        interval?: number | undefined;\n    }\n    /**\n     * Watch for changes on `filename`. The callback `listener` will be called each\n     * time the file is accessed.\n     *\n     * The `options` argument may be omitted. If provided, it should be an object. The `options` object may contain a boolean named `persistent` that indicates\n     * whether the process should continue to run as long as files are being watched.\n     * The `options` object may specify an `interval` property indicating how often the\n     * target should be polled in milliseconds.\n     *\n     * The `listener` gets two arguments the current stat object and the previous\n     * stat object:\n     *\n     * ```js\n     * import { watchFile } from 'node:fs';\n     *\n     * watchFile('message.text', (curr, prev) => {\n     *   console.log(`the current mtime is: ${curr.mtime}`);\n     *   console.log(`the previous mtime was: ${prev.mtime}`);\n     * });\n     * ```\n     *\n     * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,\n     * the numeric values in these objects are specified as `BigInt`s.\n     *\n     * To be notified when the file was modified, not just accessed, it is necessary\n     * to compare `curr.mtimeMs` and `prev.mtimeMs`.\n     *\n     * When an `fs.watchFile` operation results in an `ENOENT` error, it\n     * will invoke the listener once, with all the fields zeroed (or, for dates, the\n     * Unix Epoch). If the file is created later on, the listener will be called\n     * again, with the latest stat objects. This is a change in functionality since\n     * v0.10.\n     *\n     * Using {@link watch} is more efficient than `fs.watchFile` and `fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile` when possible.\n     *\n     * When a file being watched by `fs.watchFile()` disappears and reappears,\n     * then the contents of `previous` in the second callback event (the file's\n     * reappearance) will be the same as the contents of `previous` in the first\n     * callback event (its disappearance).\n     *\n     * This happens when:\n     *\n     * * the file is deleted, followed by a restore\n     * * the file is renamed and then renamed a second time back to its original name\n     * @since v0.1.31\n     */\n    export function watchFile(\n        filename: PathLike,\n        options:\n            | (WatchFileOptions & {\n                bigint?: false | undefined;\n            })\n            | undefined,\n        listener: StatsListener,\n    ): StatWatcher;\n    export function watchFile(\n        filename: PathLike,\n        options:\n            | (WatchFileOptions & {\n                bigint: true;\n            })\n            | undefined,\n        listener: BigIntStatsListener,\n    ): StatWatcher;\n    /**\n     * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function watchFile(filename: PathLike, listener: StatsListener): StatWatcher;\n    /**\n     * Stop watching for changes on `filename`. If `listener` is specified, only that\n     * particular listener is removed. Otherwise, _all_ listeners are removed,\n     * effectively stopping watching of `filename`.\n     *\n     * Calling `fs.unwatchFile()` with a filename that is not being watched is a\n     * no-op, not an error.\n     *\n     * Using {@link watch} is more efficient than `fs.watchFile()` and `fs.unwatchFile()`. `fs.watch()` should be used instead of `fs.watchFile()` and `fs.unwatchFile()` when possible.\n     * @since v0.1.31\n     * @param listener Optional, a listener previously attached using `fs.watchFile()`\n     */\n    export function unwatchFile(filename: PathLike, listener?: StatsListener): void;\n    export function unwatchFile(filename: PathLike, listener?: BigIntStatsListener): void;\n    export interface WatchOptions extends Abortable {\n        encoding?: BufferEncoding | \"buffer\" | undefined;\n        persistent?: boolean | undefined;\n        recursive?: boolean | undefined;\n    }\n    export type WatchEventType = \"rename\" | \"change\";\n    export type WatchListener<T> = (event: WatchEventType, filename: T | null) => void;\n    export type StatsListener = (curr: Stats, prev: Stats) => void;\n    export type BigIntStatsListener = (curr: BigIntStats, prev: BigIntStats) => void;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a\n     * directory.\n     *\n     * The second argument is optional. If `options` is provided as a string, it\n     * specifies the `encoding`. Otherwise `options` should be passed as an object.\n     *\n     * The listener callback gets two arguments `(eventType, filename)`. `eventType`is either `'rename'` or `'change'`, and `filename` is the name of the file\n     * which triggered the event.\n     *\n     * On most platforms, `'rename'` is emitted whenever a filename appears or\n     * disappears in the directory.\n     *\n     * The listener callback is attached to the `'change'` event fired by `fs.FSWatcher`, but it is not the same thing as the `'change'` value of `eventType`.\n     *\n     * If a `signal` is passed, aborting the corresponding AbortController will close\n     * the returned `fs.FSWatcher`.\n     * @since v0.5.10\n     * @param listener\n     */\n    export function watch(\n        filename: PathLike,\n        options:\n            | (WatchOptions & {\n                encoding: \"buffer\";\n            })\n            | \"buffer\",\n        listener?: WatchListener<Buffer>,\n    ): FSWatcher;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.\n     * If `encoding` is not supplied, the default of `'utf8'` is used.\n     * If `persistent` is not supplied, the default of `true` is used.\n     * If `recursive` is not supplied, the default of `false` is used.\n     */\n    export function watch(\n        filename: PathLike,\n        options?: WatchOptions | BufferEncoding | null,\n        listener?: WatchListener<string>,\n    ): FSWatcher;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.\n     * If `encoding` is not supplied, the default of `'utf8'` is used.\n     * If `persistent` is not supplied, the default of `true` is used.\n     * If `recursive` is not supplied, the default of `false` is used.\n     */\n    export function watch(\n        filename: PathLike,\n        options: WatchOptions | string,\n        listener?: WatchListener<string | Buffer>,\n    ): FSWatcher;\n    /**\n     * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.\n     * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function watch(filename: PathLike, listener?: WatchListener<string>): FSWatcher;\n    /**\n     * Test whether or not the given path exists by checking with the file system.\n     * Then call the `callback` argument with either true or false:\n     *\n     * ```js\n     * import { exists } from 'node:fs';\n     *\n     * exists('/etc/passwd', (e) => {\n     *   console.log(e ? 'it exists' : 'no passwd!');\n     * });\n     * ```\n     *\n     * **The parameters for this callback are not consistent with other Node.js**\n     * **callbacks.** Normally, the first parameter to a Node.js callback is an `err` parameter, optionally followed by other parameters. The `fs.exists()` callback\n     * has only one boolean parameter. This is one reason `fs.access()` is recommended\n     * instead of `fs.exists()`.\n     *\n     * Using `fs.exists()` to check for the existence of a file before calling `fs.open()`, `fs.readFile()`, or `fs.writeFile()` is not recommended. Doing\n     * so introduces a race condition, since other processes may change the file's\n     * state between the two calls. Instead, user code should open/read/write the\n     * file directly and handle the error raised if the file does not exist.\n     *\n     * **write (NOT RECOMMENDED)**\n     *\n     * ```js\n     * import { exists, open, close } from 'node:fs';\n     *\n     * exists('myfile', (e) => {\n     *   if (e) {\n     *     console.error('myfile already exists');\n     *   } else {\n     *     open('myfile', 'wx', (err, fd) => {\n     *       if (err) throw err;\n     *\n     *       try {\n     *         writeMyData(fd);\n     *       } finally {\n     *         close(fd, (err) => {\n     *           if (err) throw err;\n     *         });\n     *       }\n     *     });\n     *   }\n     * });\n     * ```\n     *\n     * **write (RECOMMENDED)**\n     *\n     * ```js\n     * import { open, close } from 'node:fs';\n     * open('myfile', 'wx', (err, fd) => {\n     *   if (err) {\n     *     if (err.code === 'EEXIST') {\n     *       console.error('myfile already exists');\n     *       return;\n     *     }\n     *\n     *     throw err;\n     *   }\n     *\n     *   try {\n     *     writeMyData(fd);\n     *   } finally {\n     *     close(fd, (err) => {\n     *       if (err) throw err;\n     *     });\n     *   }\n     * });\n     * ```\n     *\n     * **read (NOT RECOMMENDED)**\n     *\n     * ```js\n     * import { open, close, exists } from 'node:fs';\n     *\n     * exists('myfile', (e) => {\n     *   if (e) {\n     *     open('myfile', 'r', (err, fd) => {\n     *       if (err) throw err;\n     *\n     *       try {\n     *         readMyData(fd);\n     *       } finally {\n     *         close(fd, (err) => {\n     *           if (err) throw err;\n     *         });\n     *       }\n     *     });\n     *   } else {\n     *     console.error('myfile does not exist');\n     *   }\n     * });\n     * ```\n     *\n     * **read (RECOMMENDED)**\n     *\n     * ```js\n     * import { open, close } from 'node:fs';\n     *\n     * open('myfile', 'r', (err, fd) => {\n     *   if (err) {\n     *     if (err.code === 'ENOENT') {\n     *       console.error('myfile does not exist');\n     *       return;\n     *     }\n     *\n     *     throw err;\n     *   }\n     *\n     *   try {\n     *     readMyData(fd);\n     *   } finally {\n     *     close(fd, (err) => {\n     *       if (err) throw err;\n     *     });\n     *   }\n     * });\n     * ```\n     *\n     * The \"not recommended\" examples above check for existence and then use the\n     * file; the \"recommended\" examples are better because they use the file directly\n     * and handle the error, if any.\n     *\n     * In general, check for the existence of a file only if the file won't be\n     * used directly, for example when its existence is a signal from another\n     * process.\n     * @since v0.0.2\n     * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead.\n     */\n    export function exists(path: PathLike, callback: (exists: boolean) => void): void;\n    /** @deprecated */\n    export namespace exists {\n        /**\n         * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         */\n        function __promisify__(path: PathLike): Promise<boolean>;\n    }\n    /**\n     * Returns `true` if the path exists, `false` otherwise.\n     *\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link exists}.\n     *\n     * `fs.exists()` is deprecated, but `fs.existsSync()` is not. The `callback` parameter to `fs.exists()` accepts parameters that are inconsistent with other\n     * Node.js callbacks. `fs.existsSync()` does not use a callback.\n     *\n     * ```js\n     * import { existsSync } from 'node:fs';\n     *\n     * if (existsSync('/etc/passwd'))\n     *   console.log('The path exists.');\n     * ```\n     * @since v0.1.21\n     */\n    export function existsSync(path: PathLike): boolean;\n    export namespace constants {\n        // File Access Constants\n        /** Constant for fs.access(). File is visible to the calling process. */\n        const F_OK: number;\n        /** Constant for fs.access(). File can be read by the calling process. */\n        const R_OK: number;\n        /** Constant for fs.access(). File can be written by the calling process. */\n        const W_OK: number;\n        /** Constant for fs.access(). File can be executed by the calling process. */\n        const X_OK: number;\n        // File Copy Constants\n        /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */\n        const COPYFILE_EXCL: number;\n        /**\n         * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink.\n         * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used.\n         */\n        const COPYFILE_FICLONE: number;\n        /**\n         * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink.\n         * If the underlying platform does not support copy-on-write, then the operation will fail with an error.\n         */\n        const COPYFILE_FICLONE_FORCE: number;\n        // File Open Constants\n        /** Constant for fs.open(). Flag indicating to open a file for read-only access. */\n        const O_RDONLY: number;\n        /** Constant for fs.open(). Flag indicating to open a file for write-only access. */\n        const O_WRONLY: number;\n        /** Constant for fs.open(). Flag indicating to open a file for read-write access. */\n        const O_RDWR: number;\n        /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */\n        const O_CREAT: number;\n        /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */\n        const O_EXCL: number;\n        /**\n         * Constant for fs.open(). Flag indicating that if path identifies a terminal device,\n         * opening the path shall not cause that terminal to become the controlling terminal for the process\n         * (if the process does not already have one).\n         */\n        const O_NOCTTY: number;\n        /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */\n        const O_TRUNC: number;\n        /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */\n        const O_APPEND: number;\n        /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */\n        const O_DIRECTORY: number;\n        /**\n         * constant for fs.open().\n         * Flag indicating reading accesses to the file system will no longer result in\n         * an update to the atime information associated with the file.\n         * This flag is available on Linux operating systems only.\n         */\n        const O_NOATIME: number;\n        /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */\n        const O_NOFOLLOW: number;\n        /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */\n        const O_SYNC: number;\n        /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */\n        const O_DSYNC: number;\n        /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */\n        const O_SYMLINK: number;\n        /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */\n        const O_DIRECT: number;\n        /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */\n        const O_NONBLOCK: number;\n        // File Type Constants\n        /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */\n        const S_IFMT: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */\n        const S_IFREG: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */\n        const S_IFDIR: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */\n        const S_IFCHR: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */\n        const S_IFBLK: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */\n        const S_IFIFO: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */\n        const S_IFLNK: number;\n        /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */\n        const S_IFSOCK: number;\n        // File Mode Constants\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */\n        const S_IRWXU: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */\n        const S_IRUSR: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */\n        const S_IWUSR: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */\n        const S_IXUSR: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */\n        const S_IRWXG: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */\n        const S_IRGRP: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */\n        const S_IWGRP: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */\n        const S_IXGRP: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */\n        const S_IRWXO: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */\n        const S_IROTH: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */\n        const S_IWOTH: number;\n        /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */\n        const S_IXOTH: number;\n        /**\n         * When set, a memory file mapping is used to access the file. This flag\n         * is available on Windows operating systems only. On other operating systems,\n         * this flag is ignored.\n         */\n        const UV_FS_O_FILEMAP: number;\n    }\n    /**\n     * Tests a user's permissions for the file or directory specified by `path`.\n     * The `mode` argument is an optional integer that specifies the accessibility\n     * checks to be performed. `mode` should be either the value `fs.constants.F_OK` or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, `fs.constants.W_OK`, and `fs.constants.X_OK`\n     * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for\n     * possible values of `mode`.\n     *\n     * The final argument, `callback`, is a callback function that is invoked with\n     * a possible error argument. If any of the accessibility checks fail, the error\n     * argument will be an `Error` object. The following examples check if `package.json` exists, and if it is readable or writable.\n     *\n     * ```js\n     * import { access, constants } from 'node:fs';\n     *\n     * const file = 'package.json';\n     *\n     * // Check if the file exists in the current directory.\n     * access(file, constants.F_OK, (err) => {\n     *   console.log(`${file} ${err ? 'does not exist' : 'exists'}`);\n     * });\n     *\n     * // Check if the file is readable.\n     * access(file, constants.R_OK, (err) => {\n     *   console.log(`${file} ${err ? 'is not readable' : 'is readable'}`);\n     * });\n     *\n     * // Check if the file is writable.\n     * access(file, constants.W_OK, (err) => {\n     *   console.log(`${file} ${err ? 'is not writable' : 'is writable'}`);\n     * });\n     *\n     * // Check if the file is readable and writable.\n     * access(file, constants.R_OK | constants.W_OK, (err) => {\n     *   console.log(`${file} ${err ? 'is not' : 'is'} readable and writable`);\n     * });\n     * ```\n     *\n     * Do not use `fs.access()` to check for the accessibility of a file before calling `fs.open()`, `fs.readFile()`, or `fs.writeFile()`. Doing\n     * so introduces a race condition, since other processes may change the file's\n     * state between the two calls. Instead, user code should open/read/write the\n     * file directly and handle the error raised if the file is not accessible.\n     *\n     * **write (NOT RECOMMENDED)**\n     *\n     * ```js\n     * import { access, open, close } from 'node:fs';\n     *\n     * access('myfile', (err) => {\n     *   if (!err) {\n     *     console.error('myfile already exists');\n     *     return;\n     *   }\n     *\n     *   open('myfile', 'wx', (err, fd) => {\n     *     if (err) throw err;\n     *\n     *     try {\n     *       writeMyData(fd);\n     *     } finally {\n     *       close(fd, (err) => {\n     *         if (err) throw err;\n     *       });\n     *     }\n     *   });\n     * });\n     * ```\n     *\n     * **write (RECOMMENDED)**\n     *\n     * ```js\n     * import { open, close } from 'node:fs';\n     *\n     * open('myfile', 'wx', (err, fd) => {\n     *   if (err) {\n     *     if (err.code === 'EEXIST') {\n     *       console.error('myfile already exists');\n     *       return;\n     *     }\n     *\n     *     throw err;\n     *   }\n     *\n     *   try {\n     *     writeMyData(fd);\n     *   } finally {\n     *     close(fd, (err) => {\n     *       if (err) throw err;\n     *     });\n     *   }\n     * });\n     * ```\n     *\n     * **read (NOT RECOMMENDED)**\n     *\n     * ```js\n     * import { access, open, close } from 'node:fs';\n     * access('myfile', (err) => {\n     *   if (err) {\n     *     if (err.code === 'ENOENT') {\n     *       console.error('myfile does not exist');\n     *       return;\n     *     }\n     *\n     *     throw err;\n     *   }\n     *\n     *   open('myfile', 'r', (err, fd) => {\n     *     if (err) throw err;\n     *\n     *     try {\n     *       readMyData(fd);\n     *     } finally {\n     *       close(fd, (err) => {\n     *         if (err) throw err;\n     *       });\n     *     }\n     *   });\n     * });\n     * ```\n     *\n     * **read (RECOMMENDED)**\n     *\n     * ```js\n     * import { open, close } from 'node:fs';\n     *\n     * open('myfile', 'r', (err, fd) => {\n     *   if (err) {\n     *     if (err.code === 'ENOENT') {\n     *       console.error('myfile does not exist');\n     *       return;\n     *     }\n     *\n     *     throw err;\n     *   }\n     *\n     *   try {\n     *     readMyData(fd);\n     *   } finally {\n     *     close(fd, (err) => {\n     *       if (err) throw err;\n     *     });\n     *   }\n     * });\n     * ```\n     *\n     * The \"not recommended\" examples above check for accessibility and then use the\n     * file; the \"recommended\" examples are better because they use the file directly\n     * and handle the error, if any.\n     *\n     * In general, check for the accessibility of a file only if the file will not be\n     * used directly, for example when its accessibility is a signal from another\n     * process.\n     *\n     * On Windows, access-control policies (ACLs) on a directory may limit access to\n     * a file or directory. The `fs.access()` function, however, does not check the\n     * ACL and therefore may report that a path is accessible even if the ACL restricts\n     * the user from reading or writing to it.\n     * @since v0.11.15\n     * @param [mode=fs.constants.F_OK]\n     */\n    export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void;\n    /**\n     * Asynchronously tests a user's permissions for the file specified by path.\n     * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n     */\n    export function access(path: PathLike, callback: NoParamCallback): void;\n    export namespace access {\n        /**\n         * Asynchronously tests a user's permissions for the file specified by path.\n         * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.\n         * URL support is _experimental_.\n         */\n        function __promisify__(path: PathLike, mode?: number): Promise<void>;\n    }\n    /**\n     * Synchronously tests a user's permissions for the file or directory specified\n     * by `path`. The `mode` argument is an optional integer that specifies the\n     * accessibility checks to be performed. `mode` should be either the value `fs.constants.F_OK` or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, `fs.constants.W_OK`, and\n     * `fs.constants.X_OK` (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for\n     * possible values of `mode`.\n     *\n     * If any of the accessibility checks fail, an `Error` will be thrown. Otherwise,\n     * the method will return `undefined`.\n     *\n     * ```js\n     * import { accessSync, constants } from 'node:fs';\n     *\n     * try {\n     *   accessSync('etc/passwd', constants.R_OK | constants.W_OK);\n     *   console.log('can read/write');\n     * } catch (err) {\n     *   console.error('no access!');\n     * }\n     * ```\n     * @since v0.11.15\n     * @param [mode=fs.constants.F_OK]\n     */\n    export function accessSync(path: PathLike, mode?: number): void;\n    interface StreamOptions {\n        flags?: string | undefined;\n        encoding?: BufferEncoding | undefined;\n        fd?: number | promises.FileHandle | undefined;\n        mode?: number | undefined;\n        autoClose?: boolean | undefined;\n        emitClose?: boolean | undefined;\n        start?: number | undefined;\n        signal?: AbortSignal | null | undefined;\n        highWaterMark?: number | undefined;\n    }\n    interface FSImplementation {\n        open?: (...args: any[]) => any;\n        close?: (...args: any[]) => any;\n    }\n    interface CreateReadStreamFSImplementation extends FSImplementation {\n        read: (...args: any[]) => any;\n    }\n    interface CreateWriteStreamFSImplementation extends FSImplementation {\n        write: (...args: any[]) => any;\n        writev?: (...args: any[]) => any;\n    }\n    interface ReadStreamOptions extends StreamOptions {\n        fs?: CreateReadStreamFSImplementation | null | undefined;\n        end?: number | undefined;\n    }\n    interface WriteStreamOptions extends StreamOptions {\n        fs?: CreateWriteStreamFSImplementation | null | undefined;\n        flush?: boolean | undefined;\n    }\n    /**\n     * `options` can include `start` and `end` values to read a range of bytes from\n     * the file instead of the entire file. Both `start` and `end` are inclusive and\n     * start counting at 0, allowed values are in the\n     * \\[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\\] range. If `fd` is specified and `start` is\n     * omitted or `undefined`, `fs.createReadStream()` reads sequentially from the\n     * current file position. The `encoding` can be any one of those accepted by `Buffer`.\n     *\n     * If `fd` is specified, `ReadStream` will ignore the `path` argument and will use\n     * the specified file descriptor. This means that no `'open'` event will be\n     * emitted. `fd` should be blocking; non-blocking `fd`s should be passed to `net.Socket`.\n     *\n     * If `fd` points to a character device that only supports blocking reads\n     * (such as keyboard or sound card), read operations do not finish until data is\n     * available. This can prevent the process from exiting and the stream from\n     * closing naturally.\n     *\n     * By default, the stream will emit a `'close'` event after it has been\n     * destroyed.  Set the `emitClose` option to `false` to change this behavior.\n     *\n     * By providing the `fs` option, it is possible to override the corresponding `fs` implementations for `open`, `read`, and `close`. When providing the `fs` option,\n     * an override for `read` is required. If no `fd` is provided, an override for `open` is also required. If `autoClose` is `true`, an override for `close` is\n     * also required.\n     *\n     * ```js\n     * import { createReadStream } from 'node:fs';\n     *\n     * // Create a stream from some character device.\n     * const stream = createReadStream('/dev/input/event0');\n     * setTimeout(() => {\n     *   stream.close(); // This may not close the stream.\n     *   // Artificially marking end-of-stream, as if the underlying resource had\n     *   // indicated end-of-file by itself, allows the stream to close.\n     *   // This does not cancel pending read operations, and if there is such an\n     *   // operation, the process may still not be able to exit successfully\n     *   // until it finishes.\n     *   stream.push(null);\n     *   stream.read(0);\n     * }, 100);\n     * ```\n     *\n     * If `autoClose` is false, then the file descriptor won't be closed, even if\n     * there's an error. It is the application's responsibility to close it and make\n     * sure there's no file descriptor leak. If `autoClose` is set to true (default\n     * behavior), on `'error'` or `'end'` the file descriptor will be closed\n     * automatically.\n     *\n     * `mode` sets the file mode (permission and sticky bits), but only if the\n     * file was created.\n     *\n     * An example to read the last 10 bytes of a file which is 100 bytes long:\n     *\n     * ```js\n     * import { createReadStream } from 'node:fs';\n     *\n     * createReadStream('sample.txt', { start: 90, end: 99 });\n     * ```\n     *\n     * If `options` is a string, then it specifies the encoding.\n     * @since v0.1.31\n     */\n    export function createReadStream(path: PathLike, options?: BufferEncoding | ReadStreamOptions): ReadStream;\n    /**\n     * `options` may also include a `start` option to allow writing data at some\n     * position past the beginning of the file, allowed values are in the\n     * \\[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\\] range. Modifying a file rather than\n     * replacing it may require the `flags` option to be set to `r+` rather than the\n     * default `w`. The `encoding` can be any one of those accepted by `Buffer`.\n     *\n     * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'` the file descriptor will be closed automatically. If `autoClose` is false,\n     * then the file descriptor won't be closed, even if there's an error.\n     * It is the application's responsibility to close it and make sure there's no\n     * file descriptor leak.\n     *\n     * By default, the stream will emit a `'close'` event after it has been\n     * destroyed.  Set the `emitClose` option to `false` to change this behavior.\n     *\n     * By providing the `fs` option it is possible to override the corresponding `fs` implementations for `open`, `write`, `writev`, and `close`. Overriding `write()` without `writev()` can reduce\n     * performance as some optimizations (`_writev()`)\n     * will be disabled. When providing the `fs` option, overrides for at least one of `write` and `writev` are required. If no `fd` option is supplied, an override\n     * for `open` is also required. If `autoClose` is `true`, an override for `close` is also required.\n     *\n     * Like `fs.ReadStream`, if `fd` is specified, `fs.WriteStream` will ignore the `path` argument and will use the specified file descriptor. This means that no `'open'` event will be\n     * emitted. `fd` should be blocking; non-blocking `fd`s\n     * should be passed to `net.Socket`.\n     *\n     * If `options` is a string, then it specifies the encoding.\n     * @since v0.1.31\n     */\n    export function createWriteStream(path: PathLike, options?: BufferEncoding | WriteStreamOptions): WriteStream;\n    /**\n     * Forces all currently queued I/O operations associated with the file to the\n     * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. No arguments other\n     * than a possible\n     * exception are given to the completion callback.\n     * @since v0.1.96\n     */\n    export function fdatasync(fd: number, callback: NoParamCallback): void;\n    export namespace fdatasync {\n        /**\n         * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.\n         * @param fd A file descriptor.\n         */\n        function __promisify__(fd: number): Promise<void>;\n    }\n    /**\n     * Forces all currently queued I/O operations associated with the file to the\n     * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`.\n     * @since v0.1.96\n     */\n    export function fdatasyncSync(fd: number): void;\n    /**\n     * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it\n     * already exists. No arguments other than a possible exception are given to the\n     * callback function. Node.js makes no guarantees about the atomicity of the copy\n     * operation. If an error occurs after the destination file has been opened for\n     * writing, Node.js will attempt to remove the destination.\n     *\n     * `mode` is an optional integer that specifies the behavior\n     * of the copy operation. It is possible to create a mask consisting of the bitwise\n     * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).\n     *\n     * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already\n     * exists.\n     * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a\n     * copy-on-write reflink. If the platform does not support copy-on-write, then a\n     * fallback copy mechanism is used.\n     * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to\n     * create a copy-on-write reflink. If the platform does not support\n     * copy-on-write, then the operation will fail.\n     *\n     * ```js\n     * import { copyFile, constants } from 'node:fs';\n     *\n     * function callback(err) {\n     *   if (err) throw err;\n     *   console.log('source.txt was copied to destination.txt');\n     * }\n     *\n     * // destination.txt will be created or overwritten by default.\n     * copyFile('source.txt', 'destination.txt', callback);\n     *\n     * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.\n     * copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);\n     * ```\n     * @since v8.5.0\n     * @param src source filename to copy\n     * @param dest destination filename of the copy operation\n     * @param [mode=0] modifiers for copy operation.\n     */\n    export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void;\n    export function copyFile(src: PathLike, dest: PathLike, mode: number, callback: NoParamCallback): void;\n    export namespace copyFile {\n        function __promisify__(src: PathLike, dst: PathLike, mode?: number): Promise<void>;\n    }\n    /**\n     * Synchronously copies `src` to `dest`. By default, `dest` is overwritten if it\n     * already exists. Returns `undefined`. Node.js makes no guarantees about the\n     * atomicity of the copy operation. If an error occurs after the destination file\n     * has been opened for writing, Node.js will attempt to remove the destination.\n     *\n     * `mode` is an optional integer that specifies the behavior\n     * of the copy operation. It is possible to create a mask consisting of the bitwise\n     * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).\n     *\n     * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already\n     * exists.\n     * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a\n     * copy-on-write reflink. If the platform does not support copy-on-write, then a\n     * fallback copy mechanism is used.\n     * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to\n     * create a copy-on-write reflink. If the platform does not support\n     * copy-on-write, then the operation will fail.\n     *\n     * ```js\n     * import { copyFileSync, constants } from 'node:fs';\n     *\n     * // destination.txt will be created or overwritten by default.\n     * copyFileSync('source.txt', 'destination.txt');\n     * console.log('source.txt was copied to destination.txt');\n     *\n     * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.\n     * copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);\n     * ```\n     * @since v8.5.0\n     * @param src source filename to copy\n     * @param dest destination filename of the copy operation\n     * @param [mode=0] modifiers for copy operation.\n     */\n    export function copyFileSync(src: PathLike, dest: PathLike, mode?: number): void;\n    /**\n     * Write an array of `ArrayBufferView`s to the file specified by `fd` using `writev()`.\n     *\n     * `position` is the offset from the beginning of the file where this data\n     * should be written. If `typeof position !== 'number'`, the data will be written\n     * at the current position.\n     *\n     * The callback will be given three arguments: `err`, `bytesWritten`, and `buffers`. `bytesWritten` is how many bytes were written from `buffers`.\n     *\n     * If this method is `util.promisify()` ed, it returns a promise for an `Object` with `bytesWritten` and `buffers` properties.\n     *\n     * It is unsafe to use `fs.writev()` multiple times on the same file without\n     * waiting for the callback. For this scenario, use {@link createWriteStream}.\n     *\n     * On Linux, positional writes don't work when the file is opened in append mode.\n     * The kernel ignores the position argument and always appends the data to\n     * the end of the file.\n     * @since v12.9.0\n     * @param [position='null']\n     */\n    export function writev(\n        fd: number,\n        buffers: readonly NodeJS.ArrayBufferView[],\n        cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,\n    ): void;\n    export function writev(\n        fd: number,\n        buffers: readonly NodeJS.ArrayBufferView[],\n        position: number | null,\n        cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,\n    ): void;\n    export interface WriteVResult {\n        bytesWritten: number;\n        buffers: NodeJS.ArrayBufferView[];\n    }\n    export namespace writev {\n        function __promisify__(\n            fd: number,\n            buffers: readonly NodeJS.ArrayBufferView[],\n            position?: number,\n        ): Promise<WriteVResult>;\n    }\n    /**\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link writev}.\n     * @since v12.9.0\n     * @param [position='null']\n     * @return The number of bytes written.\n     */\n    export function writevSync(fd: number, buffers: readonly NodeJS.ArrayBufferView[], position?: number): number;\n    /**\n     * Read from a file specified by `fd` and write to an array of `ArrayBufferView`s\n     * using `readv()`.\n     *\n     * `position` is the offset from the beginning of the file from where data\n     * should be read. If `typeof position !== 'number'`, the data will be read\n     * from the current position.\n     *\n     * The callback will be given three arguments: `err`, `bytesRead`, and `buffers`. `bytesRead` is how many bytes were read from the file.\n     *\n     * If this method is invoked as its `util.promisify()` ed version, it returns\n     * a promise for an `Object` with `bytesRead` and `buffers` properties.\n     * @since v13.13.0, v12.17.0\n     * @param [position='null']\n     */\n    export function readv(\n        fd: number,\n        buffers: readonly NodeJS.ArrayBufferView[],\n        cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,\n    ): void;\n    export function readv(\n        fd: number,\n        buffers: readonly NodeJS.ArrayBufferView[],\n        position: number | null,\n        cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,\n    ): void;\n    export interface ReadVResult {\n        bytesRead: number;\n        buffers: NodeJS.ArrayBufferView[];\n    }\n    export namespace readv {\n        function __promisify__(\n            fd: number,\n            buffers: readonly NodeJS.ArrayBufferView[],\n            position?: number,\n        ): Promise<ReadVResult>;\n    }\n    /**\n     * For detailed information, see the documentation of the asynchronous version of\n     * this API: {@link readv}.\n     * @since v13.13.0, v12.17.0\n     * @param [position='null']\n     * @return The number of bytes read.\n     */\n    export function readvSync(fd: number, buffers: readonly NodeJS.ArrayBufferView[], position?: number): number;\n\n    export interface OpenAsBlobOptions {\n        /**\n         * An optional mime type for the blob.\n         *\n         * @default 'undefined'\n         */\n        type?: string | undefined;\n    }\n\n    /**\n     * Returns a `Blob` whose data is backed by the given file.\n     *\n     * The file must not be modified after the `Blob` is created. Any modifications\n     * will cause reading the `Blob` data to fail with a `DOMException` error.\n     * Synchronous stat operations on the file when the `Blob` is created, and before\n     * each read in order to detect whether the file data has been modified on disk.\n     *\n     * ```js\n     * import { openAsBlob } from 'node:fs';\n     *\n     * const blob = await openAsBlob('the.file.txt');\n     * const ab = await blob.arrayBuffer();\n     * blob.stream();\n     * ```\n     * @since v19.8.0\n     * @experimental\n     */\n    export function openAsBlob(path: PathLike, options?: OpenAsBlobOptions): Promise<Blob>;\n\n    export interface OpenDirOptions {\n        /**\n         * @default 'utf8'\n         */\n        encoding?: BufferEncoding | undefined;\n        /**\n         * Number of directory entries that are buffered\n         * internally when reading from the directory. Higher values lead to better\n         * performance but higher memory usage.\n         * @default 32\n         */\n        bufferSize?: number | undefined;\n        /**\n         * @default false\n         */\n        recursive?: boolean;\n    }\n    /**\n     * Synchronously open a directory. See [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html).\n     *\n     * Creates an `fs.Dir`, which contains all further functions for reading from\n     * and cleaning up the directory.\n     *\n     * The `encoding` option sets the encoding for the `path` while opening the\n     * directory and subsequent read operations.\n     * @since v12.12.0\n     */\n    export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir;\n    /**\n     * Asynchronously open a directory. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for\n     * more details.\n     *\n     * Creates an `fs.Dir`, which contains all further functions for reading from\n     * and cleaning up the directory.\n     *\n     * The `encoding` option sets the encoding for the `path` while opening the\n     * directory and subsequent read operations.\n     * @since v12.12.0\n     */\n    export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;\n    export function opendir(\n        path: PathLike,\n        options: OpenDirOptions,\n        cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void,\n    ): void;\n    export namespace opendir {\n        function __promisify__(path: PathLike, options?: OpenDirOptions): Promise<Dir>;\n    }\n    export interface BigIntStats extends StatsBase<bigint> {\n        atimeNs: bigint;\n        mtimeNs: bigint;\n        ctimeNs: bigint;\n        birthtimeNs: bigint;\n    }\n    export interface BigIntOptions {\n        bigint: true;\n    }\n    export interface StatOptions {\n        bigint?: boolean | undefined;\n    }\n    export interface StatSyncOptions extends StatOptions {\n        throwIfNoEntry?: boolean | undefined;\n    }\n    interface CopyOptionsBase {\n        /**\n         * Dereference symlinks\n         * @default false\n         */\n        dereference?: boolean;\n        /**\n         * When `force` is `false`, and the destination\n         * exists, throw an error.\n         * @default false\n         */\n        errorOnExist?: boolean;\n        /**\n         * Overwrite existing file or directory. _The copy\n         * operation will ignore errors if you set this to false and the destination\n         * exists. Use the `errorOnExist` option to change this behavior.\n         * @default true\n         */\n        force?: boolean;\n        /**\n         * Modifiers for copy operation. See `mode` flag of {@link copyFileSync()}\n         */\n        mode?: number;\n        /**\n         * When `true` timestamps from `src` will\n         * be preserved.\n         * @default false\n         */\n        preserveTimestamps?: boolean;\n        /**\n         * Copy directories recursively.\n         * @default false\n         */\n        recursive?: boolean;\n        /**\n         * When true, path resolution for symlinks will be skipped\n         * @default false\n         */\n        verbatimSymlinks?: boolean;\n    }\n    export interface CopyOptions extends CopyOptionsBase {\n        /**\n         * Function to filter copied files/directories. Return\n         * `true` to copy the item, `false` to ignore it.\n         */\n        filter?(source: string, destination: string): boolean | Promise<boolean>;\n    }\n    export interface CopySyncOptions extends CopyOptionsBase {\n        /**\n         * Function to filter copied files/directories. Return\n         * `true` to copy the item, `false` to ignore it.\n         */\n        filter?(source: string, destination: string): boolean;\n    }\n    /**\n     * Asynchronously copies the entire directory structure from `src` to `dest`,\n     * including subdirectories and files.\n     *\n     * When copying a directory to another directory, globs are not supported and\n     * behavior is similar to `cp dir1/ dir2/`.\n     * @since v16.7.0\n     * @experimental\n     * @param src source path to copy.\n     * @param dest destination path to copy to.\n     */\n    export function cp(\n        source: string | URL,\n        destination: string | URL,\n        callback: (err: NodeJS.ErrnoException | null) => void,\n    ): void;\n    export function cp(\n        source: string | URL,\n        destination: string | URL,\n        opts: CopyOptions,\n        callback: (err: NodeJS.ErrnoException | null) => void,\n    ): void;\n    /**\n     * Synchronously copies the entire directory structure from `src` to `dest`,\n     * including subdirectories and files.\n     *\n     * When copying a directory to another directory, globs are not supported and\n     * behavior is similar to `cp dir1/ dir2/`.\n     * @since v16.7.0\n     * @experimental\n     * @param src source path to copy.\n     * @param dest destination path to copy to.\n     */\n    export function cpSync(source: string | URL, destination: string | URL, opts?: CopySyncOptions): void;\n\n    interface _GlobOptions<T extends Dirent | string> {\n        /**\n         * Current working directory.\n         * @default process.cwd()\n         */\n        cwd?: string | undefined;\n        /**\n         * `true` if the glob should return paths as `Dirent`s, `false` otherwise.\n         * @default false\n         * @since v22.2.0\n         */\n        withFileTypes?: boolean | undefined;\n        /**\n         * Function to filter out files/directories or a\n         * list of glob patterns to be excluded. If a function is provided, return\n         * `true` to exclude the item, `false` to include it.\n         * @default undefined\n         */\n        exclude?: ((fileName: T) => boolean) | readonly string[] | undefined;\n    }\n    export interface GlobOptions extends _GlobOptions<Dirent | string> {}\n    export interface GlobOptionsWithFileTypes extends _GlobOptions<Dirent> {\n        withFileTypes: true;\n    }\n    export interface GlobOptionsWithoutFileTypes extends _GlobOptions<string> {\n        withFileTypes?: false | undefined;\n    }\n\n    /**\n     * Retrieves the files matching the specified pattern.\n     */\n    export function glob(\n        pattern: string | string[],\n        callback: (err: NodeJS.ErrnoException | null, matches: string[]) => void,\n    ): void;\n    export function glob(\n        pattern: string | string[],\n        options: GlobOptionsWithFileTypes,\n        callback: (\n            err: NodeJS.ErrnoException | null,\n            matches: Dirent[],\n        ) => void,\n    ): void;\n    export function glob(\n        pattern: string | string[],\n        options: GlobOptionsWithoutFileTypes,\n        callback: (\n            err: NodeJS.ErrnoException | null,\n            matches: string[],\n        ) => void,\n    ): void;\n    export function glob(\n        pattern: string | string[],\n        options: GlobOptions,\n        callback: (\n            err: NodeJS.ErrnoException | null,\n            matches: Dirent[] | string[],\n        ) => void,\n    ): void;\n    /**\n     * Retrieves the files matching the specified pattern.\n     */\n    export function globSync(pattern: string | string[]): string[];\n    export function globSync(\n        pattern: string | string[],\n        options: GlobOptionsWithFileTypes,\n    ): Dirent[];\n    export function globSync(\n        pattern: string | string[],\n        options: GlobOptionsWithoutFileTypes,\n    ): string[];\n    export function globSync(\n        pattern: string | string[],\n        options: GlobOptions,\n    ): Dirent[] | string[];\n}\ndeclare module \"node:fs\" {\n    export * from \"fs\";\n}\n",
    "node_modules/@types/node/globals.d.ts": "export {}; // Make this a module\n\n// #region Fetch and friends\n// Conditional type aliases, used at the end of this file.\n// Will either be empty if lib.dom (or lib.webworker) is included, or the undici version otherwise.\ntype _Request = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").Request;\ntype _Response = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").Response;\ntype _FormData = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").FormData;\ntype _Headers = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").Headers;\ntype _MessageEvent = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").MessageEvent;\ntype _RequestInit = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"undici-types\").RequestInit;\ntype _ResponseInit = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"undici-types\").ResponseInit;\ntype _WebSocket = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").WebSocket;\ntype _EventSource = typeof globalThis extends { onmessage: any } ? {} : import(\"undici-types\").EventSource;\n// #endregion Fetch and friends\n\n// Conditional type definitions for webstorage interface, which conflicts with lib.dom otherwise.\ntype _Storage = typeof globalThis extends { onabort: any } ? {} : {\n    readonly length: number;\n    clear(): void;\n    getItem(key: string): string | null;\n    key(index: number): string | null;\n    removeItem(key: string): void;\n    setItem(key: string, value: string): void;\n    [key: string]: any;\n};\n\n// #region DOMException\ntype _DOMException = typeof globalThis extends { onmessage: any } ? {} : NodeDOMException;\ninterface NodeDOMException extends Error {\n    readonly code: number;\n    readonly message: string;\n    readonly name: string;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n}\ninterface NodeDOMExceptionConstructor {\n    prototype: DOMException;\n    new(message?: string, nameOrOptions?: string | { name?: string; cause?: unknown }): DOMException;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n}\n// #endregion DOMException\n\ndeclare global {\n    var global: typeof globalThis;\n\n    var process: NodeJS.Process;\n    var console: Console;\n\n    interface ErrorConstructor {\n        /**\n         * Creates a `.stack` property on `targetObject`, which when accessed returns\n         * a string representing the location in the code at which\n         * `Error.captureStackTrace()` was called.\n         *\n         * ```js\n         * const myObject = {};\n         * Error.captureStackTrace(myObject);\n         * myObject.stack;  // Similar to `new Error().stack`\n         * ```\n         *\n         * The first line of the trace will be prefixed with\n         * `${myObject.name}: ${myObject.message}`.\n         *\n         * The optional `constructorOpt` argument accepts a function. If given, all frames\n         * above `constructorOpt`, including `constructorOpt`, will be omitted from the\n         * generated stack trace.\n         *\n         * The `constructorOpt` argument is useful for hiding implementation\n         * details of error generation from the user. For instance:\n         *\n         * ```js\n         * function a() {\n         *   b();\n         * }\n         *\n         * function b() {\n         *   c();\n         * }\n         *\n         * function c() {\n         *   // Create an error without stack trace to avoid calculating the stack trace twice.\n         *   const { stackTraceLimit } = Error;\n         *   Error.stackTraceLimit = 0;\n         *   const error = new Error();\n         *   Error.stackTraceLimit = stackTraceLimit;\n         *\n         *   // Capture the stack trace above function b\n         *   Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace\n         *   throw error;\n         * }\n         *\n         * a();\n         * ```\n         */\n        captureStackTrace(targetObject: object, constructorOpt?: Function): void;\n        /**\n         * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces\n         */\n        prepareStackTrace(err: Error, stackTraces: NodeJS.CallSite[]): any;\n        /**\n         * The `Error.stackTraceLimit` property specifies the number of stack frames\n         * collected by a stack trace (whether generated by `new Error().stack` or\n         * `Error.captureStackTrace(obj)`).\n         *\n         * The default value is `10` but may be set to any valid JavaScript number. Changes\n         * will affect any stack trace captured _after_ the value has been changed.\n         *\n         * If set to a non-number value, or set to a negative number, stack traces will\n         * not capture any frames.\n         */\n        stackTraceLimit: number;\n    }\n\n    /**\n     * Enable this API with the `--expose-gc` CLI flag.\n     */\n    var gc: NodeJS.GCFunction | undefined;\n\n    namespace NodeJS {\n        interface CallSite {\n            getColumnNumber(): number | null;\n            getEnclosingColumnNumber(): number | null;\n            getEnclosingLineNumber(): number | null;\n            getEvalOrigin(): string | undefined;\n            getFileName(): string | null;\n            getFunction(): Function | undefined;\n            getFunctionName(): string | null;\n            getLineNumber(): number | null;\n            getMethodName(): string | null;\n            getPosition(): number;\n            getPromiseIndex(): number | null;\n            getScriptHash(): string;\n            getScriptNameOrSourceURL(): string | null;\n            getThis(): unknown;\n            getTypeName(): string | null;\n            isAsync(): boolean;\n            isConstructor(): boolean;\n            isEval(): boolean;\n            isNative(): boolean;\n            isPromiseAll(): boolean;\n            isToplevel(): boolean;\n        }\n\n        interface ErrnoException extends Error {\n            errno?: number | undefined;\n            code?: string | undefined;\n            path?: string | undefined;\n            syscall?: string | undefined;\n        }\n\n        interface ReadableStream extends EventEmitter {\n            readable: boolean;\n            read(size?: number): string | Buffer;\n            setEncoding(encoding: BufferEncoding): this;\n            pause(): this;\n            resume(): this;\n            isPaused(): boolean;\n            pipe<T extends WritableStream>(destination: T, options?: { end?: boolean | undefined }): T;\n            unpipe(destination?: WritableStream): this;\n            unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void;\n            wrap(oldStream: ReadableStream): this;\n            [Symbol.asyncIterator](): AsyncIterableIterator<string | Buffer>;\n        }\n\n        interface WritableStream extends EventEmitter {\n            writable: boolean;\n            write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;\n            write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;\n            end(cb?: () => void): this;\n            end(data: string | Uint8Array, cb?: () => void): this;\n            end(str: string, encoding?: BufferEncoding, cb?: () => void): this;\n        }\n\n        interface ReadWriteStream extends ReadableStream, WritableStream {}\n\n        interface RefCounted {\n            ref(): this;\n            unref(): this;\n        }\n\n        interface Dict<T> {\n            [key: string]: T | undefined;\n        }\n\n        interface ReadOnlyDict<T> {\n            readonly [key: string]: T | undefined;\n        }\n\n        interface GCFunction {\n            (minor?: boolean): void;\n            (options: NodeJS.GCOptions & { execution: \"async\" }): Promise<void>;\n            (options: NodeJS.GCOptions): void;\n        }\n\n        interface GCOptions {\n            execution?: \"sync\" | \"async\" | undefined;\n            flavor?: \"regular\" | \"last-resort\" | undefined;\n            type?: \"major-snapshot\" | \"major\" | \"minor\" | undefined;\n            filename?: string | undefined;\n        }\n\n        /** An iterable iterator returned by the Node.js API. */\n        // Default TReturn/TNext in v22 is `any`, for compatibility with the previously-used IterableIterator.\n        interface Iterator<T, TReturn = any, TNext = any> extends IteratorObject<T, TReturn, TNext> {\n            [Symbol.iterator](): NodeJS.Iterator<T, TReturn, TNext>;\n        }\n\n        /** An async iterable iterator returned by the Node.js API. */\n        // Default TReturn/TNext in v22 is `any`, for compatibility with the previously-used AsyncIterableIterator.\n        interface AsyncIterator<T, TReturn = any, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> {\n            [Symbol.asyncIterator](): NodeJS.AsyncIterator<T, TReturn, TNext>;\n        }\n    }\n\n    // Global DOM types\n\n    interface DOMException extends _DOMException {}\n    var DOMException: typeof globalThis extends { onmessage: any; DOMException: infer T } ? T\n        : NodeDOMExceptionConstructor;\n\n    // #region AbortController\n    interface AbortController {\n        readonly signal: AbortSignal;\n        abort(reason?: any): void;\n    }\n    var AbortController: typeof globalThis extends { onmessage: any; AbortController: infer T } ? T\n        : {\n            prototype: AbortController;\n            new(): AbortController;\n        };\n\n    interface AbortSignal extends EventTarget {\n        readonly aborted: boolean;\n        onabort: ((this: AbortSignal, ev: Event) => any) | null;\n        readonly reason: any;\n        throwIfAborted(): void;\n    }\n    var AbortSignal: typeof globalThis extends { onmessage: any; AbortSignal: infer T } ? T\n        : {\n            prototype: AbortSignal;\n            new(): AbortSignal;\n            abort(reason?: any): AbortSignal;\n            any(signals: AbortSignal[]): AbortSignal;\n            timeout(milliseconds: number): AbortSignal;\n        };\n    // #endregion AbortController\n\n    // #region Storage\n    interface Storage extends _Storage {}\n    // Conditional on `onabort` rather than `onmessage`, in order to exclude lib.webworker\n    var Storage: typeof globalThis extends { onabort: any; Storage: infer T } ? T\n        : {\n            prototype: Storage;\n            new(): Storage;\n        };\n\n    var localStorage: Storage;\n    var sessionStorage: Storage;\n    // #endregion Storage\n\n    // #region fetch\n    interface RequestInit extends _RequestInit {}\n\n    function fetch(\n        input: string | URL | globalThis.Request,\n        init?: RequestInit,\n    ): Promise<Response>;\n\n    interface Request extends _Request {}\n    var Request: typeof globalThis extends {\n        onmessage: any;\n        Request: infer T;\n    } ? T\n        : typeof import(\"undici-types\").Request;\n\n    interface ResponseInit extends _ResponseInit {}\n\n    interface Response extends _Response {}\n    var Response: typeof globalThis extends {\n        onmessage: any;\n        Response: infer T;\n    } ? T\n        : typeof import(\"undici-types\").Response;\n\n    interface FormData extends _FormData {}\n    var FormData: typeof globalThis extends {\n        onmessage: any;\n        FormData: infer T;\n    } ? T\n        : typeof import(\"undici-types\").FormData;\n\n    interface Headers extends _Headers {}\n    var Headers: typeof globalThis extends {\n        onmessage: any;\n        Headers: infer T;\n    } ? T\n        : typeof import(\"undici-types\").Headers;\n\n    interface MessageEvent extends _MessageEvent {}\n    var MessageEvent: typeof globalThis extends {\n        onmessage: any;\n        MessageEvent: infer T;\n    } ? T\n        : typeof import(\"undici-types\").MessageEvent;\n\n    interface WebSocket extends _WebSocket {}\n    var WebSocket: typeof globalThis extends { onmessage: any; WebSocket: infer T } ? T\n        : typeof import(\"undici-types\").WebSocket;\n\n    interface EventSource extends _EventSource {}\n    var EventSource: typeof globalThis extends { onmessage: any; EventSource: infer T } ? T\n        : typeof import(\"undici-types\").EventSource;\n    // #endregion fetch\n}\n",
    "node_modules/@types/node/globals.typedarray.d.ts": "export {}; // Make this a module\n\ndeclare global {\n    namespace NodeJS {\n        type TypedArray<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> =\n            | Uint8Array<TArrayBuffer>\n            | Uint8ClampedArray<TArrayBuffer>\n            | Uint16Array<TArrayBuffer>\n            | Uint32Array<TArrayBuffer>\n            | Int8Array<TArrayBuffer>\n            | Int16Array<TArrayBuffer>\n            | Int32Array<TArrayBuffer>\n            | BigUint64Array<TArrayBuffer>\n            | BigInt64Array<TArrayBuffer>\n            | Float32Array<TArrayBuffer>\n            | Float64Array<TArrayBuffer>;\n        type ArrayBufferView<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> =\n            | TypedArray<TArrayBuffer>\n            | DataView<TArrayBuffer>;\n    }\n}\n",
    "node_modules/@types/node/http.d.ts": "/**\n * To use the HTTP server and client one must import the `node:http` module.\n *\n * The HTTP interfaces in Node.js are designed to support many features\n * of the protocol which have been traditionally difficult to use.\n * In particular, large, possibly chunk-encoded, messages. The interface is\n * careful to never buffer entire requests or responses, so the\n * user is able to stream data.\n *\n * HTTP message headers are represented by an object like this:\n *\n * ```json\n * { \"content-length\": \"123\",\n *   \"content-type\": \"text/plain\",\n *   \"connection\": \"keep-alive\",\n *   \"host\": \"example.com\",\n *   \"accept\": \"*\" }\n * ```\n *\n * Keys are lowercased. Values are not modified.\n *\n * In order to support the full spectrum of possible HTTP applications, the Node.js\n * HTTP API is very low-level. It deals with stream handling and message\n * parsing only. It parses a message into headers and body but it does not\n * parse the actual headers or the body.\n *\n * See `message.headers` for details on how duplicate headers are handled.\n *\n * The raw headers as they were received are retained in the `rawHeaders` property, which is an array of `[key, value, key2, value2, ...]`. For\n * example, the previous message header object might have a `rawHeaders` list like the following:\n *\n * ```js\n * [ 'ConTent-Length', '123456',\n *   'content-LENGTH', '123',\n *   'content-type', 'text/plain',\n *   'CONNECTION', 'keep-alive',\n *   'Host', 'example.com',\n *   'accepT', '*' ]\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/http.js)\n */\ndeclare module \"http\" {\n    import * as stream from \"node:stream\";\n    import { URL } from \"node:url\";\n    import { LookupOptions } from \"node:dns\";\n    import { EventEmitter } from \"node:events\";\n    import { LookupFunction, NetConnectOpts, Server as NetServer, Socket, TcpSocketConnectOpts } from \"node:net\";\n    // incoming headers will never contain number\n    interface IncomingHttpHeaders extends NodeJS.Dict<string | string[]> {\n        accept?: string | undefined;\n        \"accept-encoding\"?: string | undefined;\n        \"accept-language\"?: string | undefined;\n        \"accept-patch\"?: string | undefined;\n        \"accept-ranges\"?: string | undefined;\n        \"access-control-allow-credentials\"?: string | undefined;\n        \"access-control-allow-headers\"?: string | undefined;\n        \"access-control-allow-methods\"?: string | undefined;\n        \"access-control-allow-origin\"?: string | undefined;\n        \"access-control-expose-headers\"?: string | undefined;\n        \"access-control-max-age\"?: string | undefined;\n        \"access-control-request-headers\"?: string | undefined;\n        \"access-control-request-method\"?: string | undefined;\n        age?: string | undefined;\n        allow?: string | undefined;\n        \"alt-svc\"?: string | undefined;\n        authorization?: string | undefined;\n        \"cache-control\"?: string | undefined;\n        connection?: string | undefined;\n        \"content-disposition\"?: string | undefined;\n        \"content-encoding\"?: string | undefined;\n        \"content-language\"?: string | undefined;\n        \"content-length\"?: string | undefined;\n        \"content-location\"?: string | undefined;\n        \"content-range\"?: string | undefined;\n        \"content-type\"?: string | undefined;\n        cookie?: string | undefined;\n        date?: string | undefined;\n        etag?: string | undefined;\n        expect?: string | undefined;\n        expires?: string | undefined;\n        forwarded?: string | undefined;\n        from?: string | undefined;\n        host?: string | undefined;\n        \"if-match\"?: string | undefined;\n        \"if-modified-since\"?: string | undefined;\n        \"if-none-match\"?: string | undefined;\n        \"if-unmodified-since\"?: string | undefined;\n        \"last-modified\"?: string | undefined;\n        location?: string | undefined;\n        origin?: string | undefined;\n        pragma?: string | undefined;\n        \"proxy-authenticate\"?: string | undefined;\n        \"proxy-authorization\"?: string | undefined;\n        \"public-key-pins\"?: string | undefined;\n        range?: string | undefined;\n        referer?: string | undefined;\n        \"retry-after\"?: string | undefined;\n        \"sec-fetch-site\"?: string | undefined;\n        \"sec-fetch-mode\"?: string | undefined;\n        \"sec-fetch-user\"?: string | undefined;\n        \"sec-fetch-dest\"?: string | undefined;\n        \"sec-websocket-accept\"?: string | undefined;\n        \"sec-websocket-extensions\"?: string | undefined;\n        \"sec-websocket-key\"?: string | undefined;\n        \"sec-websocket-protocol\"?: string | undefined;\n        \"sec-websocket-version\"?: string | undefined;\n        \"set-cookie\"?: string[] | undefined;\n        \"strict-transport-security\"?: string | undefined;\n        tk?: string | undefined;\n        trailer?: string | undefined;\n        \"transfer-encoding\"?: string | undefined;\n        upgrade?: string | undefined;\n        \"user-agent\"?: string | undefined;\n        vary?: string | undefined;\n        via?: string | undefined;\n        warning?: string | undefined;\n        \"www-authenticate\"?: string | undefined;\n    }\n    // outgoing headers allows numbers (as they are converted internally to strings)\n    type OutgoingHttpHeader = number | string | string[];\n    interface OutgoingHttpHeaders extends NodeJS.Dict<OutgoingHttpHeader> {\n        accept?: string | string[] | undefined;\n        \"accept-charset\"?: string | string[] | undefined;\n        \"accept-encoding\"?: string | string[] | undefined;\n        \"accept-language\"?: string | string[] | undefined;\n        \"accept-ranges\"?: string | undefined;\n        \"access-control-allow-credentials\"?: string | undefined;\n        \"access-control-allow-headers\"?: string | undefined;\n        \"access-control-allow-methods\"?: string | undefined;\n        \"access-control-allow-origin\"?: string | undefined;\n        \"access-control-expose-headers\"?: string | undefined;\n        \"access-control-max-age\"?: string | undefined;\n        \"access-control-request-headers\"?: string | undefined;\n        \"access-control-request-method\"?: string | undefined;\n        age?: string | undefined;\n        allow?: string | undefined;\n        authorization?: string | undefined;\n        \"cache-control\"?: string | undefined;\n        \"cdn-cache-control\"?: string | undefined;\n        connection?: string | string[] | undefined;\n        \"content-disposition\"?: string | undefined;\n        \"content-encoding\"?: string | undefined;\n        \"content-language\"?: string | undefined;\n        \"content-length\"?: string | number | undefined;\n        \"content-location\"?: string | undefined;\n        \"content-range\"?: string | undefined;\n        \"content-security-policy\"?: string | undefined;\n        \"content-security-policy-report-only\"?: string | undefined;\n        \"content-type\"?: string | undefined;\n        cookie?: string | string[] | undefined;\n        dav?: string | string[] | undefined;\n        dnt?: string | undefined;\n        date?: string | undefined;\n        etag?: string | undefined;\n        expect?: string | undefined;\n        expires?: string | undefined;\n        forwarded?: string | undefined;\n        from?: string | undefined;\n        host?: string | undefined;\n        \"if-match\"?: string | undefined;\n        \"if-modified-since\"?: string | undefined;\n        \"if-none-match\"?: string | undefined;\n        \"if-range\"?: string | undefined;\n        \"if-unmodified-since\"?: string | undefined;\n        \"last-modified\"?: string | undefined;\n        link?: string | string[] | undefined;\n        location?: string | undefined;\n        \"max-forwards\"?: string | undefined;\n        origin?: string | undefined;\n        pragma?: string | string[] | undefined;\n        \"proxy-authenticate\"?: string | string[] | undefined;\n        \"proxy-authorization\"?: string | undefined;\n        \"public-key-pins\"?: string | undefined;\n        \"public-key-pins-report-only\"?: string | undefined;\n        range?: string | undefined;\n        referer?: string | undefined;\n        \"referrer-policy\"?: string | undefined;\n        refresh?: string | undefined;\n        \"retry-after\"?: string | undefined;\n        \"sec-websocket-accept\"?: string | undefined;\n        \"sec-websocket-extensions\"?: string | string[] | undefined;\n        \"sec-websocket-key\"?: string | undefined;\n        \"sec-websocket-protocol\"?: string | string[] | undefined;\n        \"sec-websocket-version\"?: string | undefined;\n        server?: string | undefined;\n        \"set-cookie\"?: string | string[] | undefined;\n        \"strict-transport-security\"?: string | undefined;\n        te?: string | undefined;\n        trailer?: string | undefined;\n        \"transfer-encoding\"?: string | undefined;\n        \"user-agent\"?: string | undefined;\n        upgrade?: string | undefined;\n        \"upgrade-insecure-requests\"?: string | undefined;\n        vary?: string | undefined;\n        via?: string | string[] | undefined;\n        warning?: string | undefined;\n        \"www-authenticate\"?: string | string[] | undefined;\n        \"x-content-type-options\"?: string | undefined;\n        \"x-dns-prefetch-control\"?: string | undefined;\n        \"x-frame-options\"?: string | undefined;\n        \"x-xss-protection\"?: string | undefined;\n    }\n    interface ClientRequestArgs {\n        _defaultAgent?: Agent | undefined;\n        agent?: Agent | boolean | undefined;\n        auth?: string | null | undefined;\n        createConnection?:\n            | ((\n                options: ClientRequestArgs,\n                oncreate: (err: Error | null, socket: stream.Duplex) => void,\n            ) => stream.Duplex | null | undefined)\n            | undefined;\n        defaultPort?: number | string | undefined;\n        family?: number | undefined;\n        headers?: OutgoingHttpHeaders | readonly string[] | undefined;\n        hints?: LookupOptions[\"hints\"];\n        host?: string | null | undefined;\n        hostname?: string | null | undefined;\n        insecureHTTPParser?: boolean | undefined;\n        localAddress?: string | undefined;\n        localPort?: number | undefined;\n        lookup?: LookupFunction | undefined;\n        /**\n         * @default 16384\n         */\n        maxHeaderSize?: number | undefined;\n        method?: string | undefined;\n        path?: string | null | undefined;\n        port?: number | string | null | undefined;\n        protocol?: string | null | undefined;\n        setDefaultHeaders?: boolean | undefined;\n        setHost?: boolean | undefined;\n        signal?: AbortSignal | undefined;\n        socketPath?: string | undefined;\n        timeout?: number | undefined;\n        uniqueHeaders?: Array<string | string[]> | undefined;\n        joinDuplicateHeaders?: boolean;\n    }\n    interface ServerOptions<\n        Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse,\n    > {\n        /**\n         * Specifies the `IncomingMessage` class to be used. Useful for extending the original `IncomingMessage`.\n         */\n        IncomingMessage?: Request | undefined;\n        /**\n         * Specifies the `ServerResponse` class to be used. Useful for extending the original `ServerResponse`.\n         */\n        ServerResponse?: Response | undefined;\n        /**\n         * Sets the timeout value in milliseconds for receiving the entire request from the client.\n         * @see Server.requestTimeout for more information.\n         * @default 300000\n         * @since v18.0.0\n         */\n        requestTimeout?: number | undefined;\n        /**\n         * It joins the field line values of multiple headers in a request with `, ` instead of discarding the duplicates.\n         * @default false\n         * @since v18.14.0\n         */\n        joinDuplicateHeaders?: boolean;\n        /**\n         * The number of milliseconds of inactivity a server needs to wait for additional incoming data,\n         * after it has finished writing the last response, before a socket will be destroyed.\n         * @see Server.keepAliveTimeout for more information.\n         * @default 5000\n         * @since v18.0.0\n         */\n        keepAliveTimeout?: number | undefined;\n        /**\n         * Sets the interval value in milliseconds to check for request and headers timeout in incomplete requests.\n         * @default 30000\n         */\n        connectionsCheckingInterval?: number | undefined;\n        /**\n         * Sets the timeout value in milliseconds for receiving the complete HTTP headers from the client.\n         * See {@link Server.headersTimeout} for more information.\n         * @default 60000\n         * @since 18.0.0\n         */\n        headersTimeout?: number | undefined;\n        /**\n         * Optionally overrides all `socket`s' `readableHighWaterMark` and `writableHighWaterMark`.\n         * This affects `highWaterMark` property of both `IncomingMessage` and `ServerResponse`.\n         * Default: @see stream.getDefaultHighWaterMark().\n         * @since v20.1.0\n         */\n        highWaterMark?: number | undefined;\n        /**\n         * Use an insecure HTTP parser that accepts invalid HTTP headers when `true`.\n         * Using the insecure parser should be avoided.\n         * See --insecure-http-parser for more information.\n         * @default false\n         */\n        insecureHTTPParser?: boolean | undefined;\n        /**\n         * Optionally overrides the value of `--max-http-header-size` for requests received by\n         * this server, i.e. the maximum length of request headers in bytes.\n         * @default 16384\n         * @since v13.3.0\n         */\n        maxHeaderSize?: number | undefined;\n        /**\n         * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.\n         * @default true\n         * @since v16.5.0\n         */\n        noDelay?: boolean | undefined;\n        /**\n         * If set to `true`, it forces the server to respond with a 400 (Bad Request) status code\n         * to any HTTP/1.1 request message that lacks a Host header (as mandated by the specification).\n         * @default true\n         * @since 20.0.0\n         */\n        requireHostHeader?: boolean | undefined;\n        /**\n         * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received,\n         * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`.\n         * @default false\n         * @since v16.5.0\n         */\n        keepAlive?: boolean | undefined;\n        /**\n         * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.\n         * @default 0\n         * @since v16.5.0\n         */\n        keepAliveInitialDelay?: number | undefined;\n        /**\n         * A list of response headers that should be sent only once.\n         * If the header's value is an array, the items will be joined using `; `.\n         */\n        uniqueHeaders?: Array<string | string[]> | undefined;\n        /**\n         * If set to `true`, an error is thrown when writing to an HTTP response which does not have a body.\n         * @default false\n         * @since v18.17.0, v20.2.0\n         */\n        rejectNonStandardBodyWrites?: boolean | undefined;\n    }\n    type RequestListener<\n        Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse,\n    > = (req: InstanceType<Request>, res: InstanceType<Response> & { req: InstanceType<Request> }) => void;\n    /**\n     * @since v0.1.17\n     */\n    class Server<\n        Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse,\n    > extends NetServer {\n        constructor(requestListener?: RequestListener<Request, Response>);\n        constructor(options: ServerOptions<Request, Response>, requestListener?: RequestListener<Request, Response>);\n        /**\n         * Sets the timeout value for sockets, and emits a `'timeout'` event on\n         * the Server object, passing the socket as an argument, if a timeout\n         * occurs.\n         *\n         * If there is a `'timeout'` event listener on the Server object, then it\n         * will be called with the timed-out socket as an argument.\n         *\n         * By default, the Server does not timeout sockets. However, if a callback\n         * is assigned to the Server's `'timeout'` event, timeouts must be handled\n         * explicitly.\n         * @since v0.9.12\n         * @param [msecs=0 (no timeout)]\n         */\n        setTimeout(msecs?: number, callback?: (socket: Socket) => void): this;\n        setTimeout(callback: (socket: Socket) => void): this;\n        /**\n         * Limits maximum incoming headers count. If set to 0, no limit will be applied.\n         * @since v0.7.0\n         */\n        maxHeadersCount: number | null;\n        /**\n         * The maximum number of requests socket can handle\n         * before closing keep alive connection.\n         *\n         * A value of `0` will disable the limit.\n         *\n         * When the limit is reached it will set the `Connection` header value to `close`,\n         * but will not actually close the connection, subsequent requests sent\n         * after the limit is reached will get `503 Service Unavailable` as a response.\n         * @since v16.10.0\n         */\n        maxRequestsPerSocket: number | null;\n        /**\n         * The number of milliseconds of inactivity before a socket is presumed\n         * to have timed out.\n         *\n         * A value of `0` will disable the timeout behavior on incoming connections.\n         *\n         * The socket timeout logic is set up on connection, so changing this\n         * value only affects new connections to the server, not any existing connections.\n         * @since v0.9.12\n         */\n        timeout: number;\n        /**\n         * Limit the amount of time the parser will wait to receive the complete HTTP\n         * headers.\n         *\n         * If the timeout expires, the server responds with status 408 without\n         * forwarding the request to the request listener and then closes the connection.\n         *\n         * It must be set to a non-zero value (e.g. 120 seconds) to protect against\n         * potential Denial-of-Service attacks in case the server is deployed without a\n         * reverse proxy in front.\n         * @since v11.3.0, v10.14.0\n         */\n        headersTimeout: number;\n        /**\n         * The number of milliseconds of inactivity a server needs to wait for additional\n         * incoming data, after it has finished writing the last response, before a socket\n         * will be destroyed. If the server receives new data before the keep-alive\n         * timeout has fired, it will reset the regular inactivity timeout, i.e., `server.timeout`.\n         *\n         * A value of `0` will disable the keep-alive timeout behavior on incoming\n         * connections.\n         * A value of `0` makes the http server behave similarly to Node.js versions prior\n         * to 8.0.0, which did not have a keep-alive timeout.\n         *\n         * The socket timeout logic is set up on connection, so changing this value only\n         * affects new connections to the server, not any existing connections.\n         * @since v8.0.0\n         */\n        keepAliveTimeout: number;\n        /**\n         * Sets the timeout value in milliseconds for receiving the entire request from\n         * the client.\n         *\n         * If the timeout expires, the server responds with status 408 without\n         * forwarding the request to the request listener and then closes the connection.\n         *\n         * It must be set to a non-zero value (e.g. 120 seconds) to protect against\n         * potential Denial-of-Service attacks in case the server is deployed without a\n         * reverse proxy in front.\n         * @since v14.11.0\n         */\n        requestTimeout: number;\n        /**\n         * Closes all connections connected to this server.\n         * @since v18.2.0\n         */\n        closeAllConnections(): void;\n        /**\n         * Closes all connections connected to this server which are not sending a request\n         * or waiting for a response.\n         * @since v18.2.0\n         */\n        closeIdleConnections(): void;\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"listening\", listener: () => void): this;\n        addListener(event: \"checkContinue\", listener: RequestListener<Request, Response>): this;\n        addListener(event: \"checkExpectation\", listener: RequestListener<Request, Response>): this;\n        addListener(event: \"clientError\", listener: (err: Error, socket: stream.Duplex) => void): this;\n        addListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        addListener(event: \"dropRequest\", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;\n        addListener(event: \"request\", listener: RequestListener<Request, Response>): this;\n        addListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        emit(event: string, ...args: any[]): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"connection\", socket: Socket): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"listening\"): boolean;\n        emit(\n            event: \"checkContinue\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response> & { req: InstanceType<Request> },\n        ): boolean;\n        emit(\n            event: \"checkExpectation\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response> & { req: InstanceType<Request> },\n        ): boolean;\n        emit(event: \"clientError\", err: Error, socket: stream.Duplex): boolean;\n        emit(event: \"connect\", req: InstanceType<Request>, socket: stream.Duplex, head: Buffer): boolean;\n        emit(event: \"dropRequest\", req: InstanceType<Request>, socket: stream.Duplex): boolean;\n        emit(\n            event: \"request\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response> & { req: InstanceType<Request> },\n        ): boolean;\n        emit(event: \"upgrade\", req: InstanceType<Request>, socket: stream.Duplex, head: Buffer): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"connection\", listener: (socket: Socket) => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"listening\", listener: () => void): this;\n        on(event: \"checkContinue\", listener: RequestListener<Request, Response>): this;\n        on(event: \"checkExpectation\", listener: RequestListener<Request, Response>): this;\n        on(event: \"clientError\", listener: (err: Error, socket: stream.Duplex) => void): this;\n        on(event: \"connect\", listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void): this;\n        on(event: \"dropRequest\", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;\n        on(event: \"request\", listener: RequestListener<Request, Response>): this;\n        on(event: \"upgrade\", listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"connection\", listener: (socket: Socket) => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"listening\", listener: () => void): this;\n        once(event: \"checkContinue\", listener: RequestListener<Request, Response>): this;\n        once(event: \"checkExpectation\", listener: RequestListener<Request, Response>): this;\n        once(event: \"clientError\", listener: (err: Error, socket: stream.Duplex) => void): this;\n        once(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        once(event: \"dropRequest\", listener: (req: InstanceType<Request>, socket: stream.Duplex) => void): this;\n        once(event: \"request\", listener: RequestListener<Request, Response>): this;\n        once(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"listening\", listener: () => void): this;\n        prependListener(event: \"checkContinue\", listener: RequestListener<Request, Response>): this;\n        prependListener(event: \"checkExpectation\", listener: RequestListener<Request, Response>): this;\n        prependListener(event: \"clientError\", listener: (err: Error, socket: stream.Duplex) => void): this;\n        prependListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        prependListener(\n            event: \"dropRequest\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex) => void,\n        ): this;\n        prependListener(event: \"request\", listener: RequestListener<Request, Response>): this;\n        prependListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"listening\", listener: () => void): this;\n        prependOnceListener(event: \"checkContinue\", listener: RequestListener<Request, Response>): this;\n        prependOnceListener(event: \"checkExpectation\", listener: RequestListener<Request, Response>): this;\n        prependOnceListener(event: \"clientError\", listener: (err: Error, socket: stream.Duplex) => void): this;\n        prependOnceListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n        prependOnceListener(\n            event: \"dropRequest\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex) => void,\n        ): this;\n        prependOnceListener(event: \"request\", listener: RequestListener<Request, Response>): this;\n        prependOnceListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: stream.Duplex, head: Buffer) => void,\n        ): this;\n    }\n    /**\n     * This class serves as the parent class of {@link ClientRequest} and {@link ServerResponse}. It is an abstract outgoing message from\n     * the perspective of the participants of an HTTP transaction.\n     * @since v0.1.17\n     */\n    class OutgoingMessage<Request extends IncomingMessage = IncomingMessage> extends stream.Writable {\n        readonly req: Request;\n        chunkedEncoding: boolean;\n        shouldKeepAlive: boolean;\n        useChunkedEncodingByDefault: boolean;\n        sendDate: boolean;\n        /**\n         * @deprecated Use `writableEnded` instead.\n         */\n        finished: boolean;\n        /**\n         * Read-only. `true` if the headers were sent, otherwise `false`.\n         * @since v0.9.3\n         */\n        readonly headersSent: boolean;\n        /**\n         * Alias of `outgoingMessage.socket`.\n         * @since v0.3.0\n         * @deprecated Since v15.12.0,v14.17.1 - Use `socket` instead.\n         */\n        readonly connection: Socket | null;\n        /**\n         * Reference to the underlying socket. Usually, users will not want to access\n         * this property.\n         *\n         * After calling `outgoingMessage.end()`, this property will be nulled.\n         * @since v0.3.0\n         */\n        readonly socket: Socket | null;\n        constructor();\n        /**\n         * Once a socket is associated with the message and is connected, `socket.setTimeout()` will be called with `msecs` as the first parameter.\n         * @since v0.9.12\n         * @param callback Optional function to be called when a timeout occurs. Same as binding to the `timeout` event.\n         */\n        setTimeout(msecs: number, callback?: () => void): this;\n        /**\n         * Sets a single header value. If the header already exists in the to-be-sent\n         * headers, its value will be replaced. Use an array of strings to send multiple\n         * headers with the same name.\n         * @since v0.4.0\n         * @param name Header name\n         * @param value Header value\n         */\n        setHeader(name: string, value: number | string | readonly string[]): this;\n        /**\n         * Sets multiple header values for implicit headers. headers must be an instance of\n         * `Headers` or `Map`, if a header already exists in the to-be-sent headers, its\n         * value will be replaced.\n         *\n         * ```js\n         * const headers = new Headers({ foo: 'bar' });\n         * outgoingMessage.setHeaders(headers);\n         * ```\n         *\n         * or\n         *\n         * ```js\n         * const headers = new Map([['foo', 'bar']]);\n         * outgoingMessage.setHeaders(headers);\n         * ```\n         *\n         * When headers have been set with `outgoingMessage.setHeaders()`, they will be\n         * merged with any headers passed to `response.writeHead()`, with the headers passed\n         * to `response.writeHead()` given precedence.\n         *\n         * ```js\n         * // Returns content-type = text/plain\n         * const server = http.createServer((req, res) => {\n         *   const headers = new Headers({ 'Content-Type': 'text/html' });\n         *   res.setHeaders(headers);\n         *   res.writeHead(200, { 'Content-Type': 'text/plain' });\n         *   res.end('ok');\n         * });\n         * ```\n         *\n         * @since v19.6.0, v18.15.0\n         * @param name Header name\n         * @param value Header value\n         */\n        setHeaders(headers: Headers | Map<string, number | string | readonly string[]>): this;\n        /**\n         * Append a single header value to the header object.\n         *\n         * If the value is an array, this is equivalent to calling this method multiple\n         * times.\n         *\n         * If there were no previous values for the header, this is equivalent to calling `outgoingMessage.setHeader(name, value)`.\n         *\n         * Depending of the value of `options.uniqueHeaders` when the client request or the\n         * server were created, this will end up in the header being sent multiple times or\n         * a single time with values joined using `; `.\n         * @since v18.3.0, v16.17.0\n         * @param name Header name\n         * @param value Header value\n         */\n        appendHeader(name: string, value: string | readonly string[]): this;\n        /**\n         * Gets the value of the HTTP header with the given name. If that header is not\n         * set, the returned value will be `undefined`.\n         * @since v0.4.0\n         * @param name Name of header\n         */\n        getHeader(name: string): number | string | string[] | undefined;\n        /**\n         * Returns a shallow copy of the current outgoing headers. Since a shallow\n         * copy is used, array values may be mutated without additional calls to\n         * various header-related HTTP module methods. The keys of the returned\n         * object are the header names and the values are the respective header\n         * values. All header names are lowercase.\n         *\n         * The object returned by the `outgoingMessage.getHeaders()` method does\n         * not prototypically inherit from the JavaScript `Object`. This means that\n         * typical `Object` methods such as `obj.toString()`, `obj.hasOwnProperty()`,\n         * and others are not defined and will not work.\n         *\n         * ```js\n         * outgoingMessage.setHeader('Foo', 'bar');\n         * outgoingMessage.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);\n         *\n         * const headers = outgoingMessage.getHeaders();\n         * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] }\n         * ```\n         * @since v7.7.0\n         */\n        getHeaders(): OutgoingHttpHeaders;\n        /**\n         * Returns an array containing the unique names of the current outgoing headers.\n         * All names are lowercase.\n         * @since v7.7.0\n         */\n        getHeaderNames(): string[];\n        /**\n         * Returns `true` if the header identified by `name` is currently set in the\n         * outgoing headers. The header name is case-insensitive.\n         *\n         * ```js\n         * const hasContentType = outgoingMessage.hasHeader('content-type');\n         * ```\n         * @since v7.7.0\n         */\n        hasHeader(name: string): boolean;\n        /**\n         * Removes a header that is queued for implicit sending.\n         *\n         * ```js\n         * outgoingMessage.removeHeader('Content-Encoding');\n         * ```\n         * @since v0.4.0\n         * @param name Header name\n         */\n        removeHeader(name: string): void;\n        /**\n         * Adds HTTP trailers (headers but at the end of the message) to the message.\n         *\n         * Trailers will **only** be emitted if the message is chunked encoded. If not,\n         * the trailers will be silently discarded.\n         *\n         * HTTP requires the `Trailer` header to be sent to emit trailers,\n         * with a list of header field names in its value, e.g.\n         *\n         * ```js\n         * message.writeHead(200, { 'Content-Type': 'text/plain',\n         *                          'Trailer': 'Content-MD5' });\n         * message.write(fileData);\n         * message.addTrailers({ 'Content-MD5': '7895bf4b8828b55ceaf47747b4bca667' });\n         * message.end();\n         * ```\n         *\n         * Attempting to set a header field name or value that contains invalid characters\n         * will result in a `TypeError` being thrown.\n         * @since v0.3.0\n         */\n        addTrailers(headers: OutgoingHttpHeaders | ReadonlyArray<[string, string]>): void;\n        /**\n         * Flushes the message headers.\n         *\n         * For efficiency reason, Node.js normally buffers the message headers\n         * until `outgoingMessage.end()` is called or the first chunk of message data\n         * is written. It then tries to pack the headers and data into a single TCP\n         * packet.\n         *\n         * It is usually desired (it saves a TCP round-trip), but not when the first\n         * data is not sent until possibly much later. `outgoingMessage.flushHeaders()` bypasses the optimization and kickstarts the message.\n         * @since v1.6.0\n         */\n        flushHeaders(): void;\n    }\n    /**\n     * This object is created internally by an HTTP server, not by the user. It is\n     * passed as the second parameter to the `'request'` event.\n     * @since v0.1.17\n     */\n    class ServerResponse<Request extends IncomingMessage = IncomingMessage> extends OutgoingMessage<Request> {\n        /**\n         * When using implicit headers (not calling `response.writeHead()` explicitly),\n         * this property controls the status code that will be sent to the client when\n         * the headers get flushed.\n         *\n         * ```js\n         * response.statusCode = 404;\n         * ```\n         *\n         * After response header was sent to the client, this property indicates the\n         * status code which was sent out.\n         * @since v0.4.0\n         */\n        statusCode: number;\n        /**\n         * When using implicit headers (not calling `response.writeHead()` explicitly),\n         * this property controls the status message that will be sent to the client when\n         * the headers get flushed. If this is left as `undefined` then the standard\n         * message for the status code will be used.\n         *\n         * ```js\n         * response.statusMessage = 'Not found';\n         * ```\n         *\n         * After response header was sent to the client, this property indicates the\n         * status message which was sent out.\n         * @since v0.11.8\n         */\n        statusMessage: string;\n        /**\n         * If set to `true`, Node.js will check whether the `Content-Length` header value and the size of the body, in bytes, are equal.\n         * Mismatching the `Content-Length` header value will result\n         * in an `Error` being thrown, identified by `code:``'ERR_HTTP_CONTENT_LENGTH_MISMATCH'`.\n         * @since v18.10.0, v16.18.0\n         */\n        strictContentLength: boolean;\n        constructor(req: Request);\n        assignSocket(socket: Socket): void;\n        detachSocket(socket: Socket): void;\n        /**\n         * Sends an HTTP/1.1 100 Continue message to the client, indicating that\n         * the request body should be sent. See the `'checkContinue'` event on `Server`.\n         * @since v0.3.0\n         */\n        writeContinue(callback?: () => void): void;\n        /**\n         * Sends an HTTP/1.1 103 Early Hints message to the client with a Link header,\n         * indicating that the user agent can preload/preconnect the linked resources.\n         * The `hints` is an object containing the values of headers to be sent with\n         * early hints message. The optional `callback` argument will be called when\n         * the response message has been written.\n         *\n         * **Example**\n         *\n         * ```js\n         * const earlyHintsLink = '</styles.css>; rel=preload; as=style';\n         * response.writeEarlyHints({\n         *   'link': earlyHintsLink,\n         * });\n         *\n         * const earlyHintsLinks = [\n         *   '</styles.css>; rel=preload; as=style',\n         *   '</scripts.js>; rel=preload; as=script',\n         * ];\n         * response.writeEarlyHints({\n         *   'link': earlyHintsLinks,\n         *   'x-trace-id': 'id for diagnostics',\n         * });\n         *\n         * const earlyHintsCallback = () => console.log('early hints message sent');\n         * response.writeEarlyHints({\n         *   'link': earlyHintsLinks,\n         * }, earlyHintsCallback);\n         * ```\n         * @since v18.11.0\n         * @param hints An object containing the values of headers\n         * @param callback Will be called when the response message has been written\n         */\n        writeEarlyHints(hints: Record<string, string | string[]>, callback?: () => void): void;\n        /**\n         * Sends a response header to the request. The status code is a 3-digit HTTP\n         * status code, like `404`. The last argument, `headers`, are the response headers.\n         * Optionally one can give a human-readable `statusMessage` as the second\n         * argument.\n         *\n         * `headers` may be an `Array` where the keys and values are in the same list.\n         * It is _not_ a list of tuples. So, the even-numbered offsets are key values,\n         * and the odd-numbered offsets are the associated values. The array is in the same\n         * format as `request.rawHeaders`.\n         *\n         * Returns a reference to the `ServerResponse`, so that calls can be chained.\n         *\n         * ```js\n         * const body = 'hello world';\n         * response\n         *   .writeHead(200, {\n         *     'Content-Length': Buffer.byteLength(body),\n         *     'Content-Type': 'text/plain',\n         *   })\n         *   .end(body);\n         * ```\n         *\n         * This method must only be called once on a message and it must\n         * be called before `response.end()` is called.\n         *\n         * If `response.write()` or `response.end()` are called before calling\n         * this, the implicit/mutable headers will be calculated and call this function.\n         *\n         * When headers have been set with `response.setHeader()`, they will be merged\n         * with any headers passed to `response.writeHead()`, with the headers passed\n         * to `response.writeHead()` given precedence.\n         *\n         * If this method is called and `response.setHeader()` has not been called,\n         * it will directly write the supplied header values onto the network channel\n         * without caching internally, and the `response.getHeader()` on the header\n         * will not yield the expected result. If progressive population of headers is\n         * desired with potential future retrieval and modification, use `response.setHeader()` instead.\n         *\n         * ```js\n         * // Returns content-type = text/plain\n         * const server = http.createServer((req, res) => {\n         *   res.setHeader('Content-Type', 'text/html');\n         *   res.setHeader('X-Foo', 'bar');\n         *   res.writeHead(200, { 'Content-Type': 'text/plain' });\n         *   res.end('ok');\n         * });\n         * ```\n         *\n         * `Content-Length` is read in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes. Node.js\n         * will check whether `Content-Length` and the length of the body which has\n         * been transmitted are equal or not.\n         *\n         * Attempting to set a header field name or value that contains invalid characters\n         * will result in a \\[`Error`\\]\\[\\] being thrown.\n         * @since v0.1.30\n         */\n        writeHead(\n            statusCode: number,\n            statusMessage?: string,\n            headers?: OutgoingHttpHeaders | OutgoingHttpHeader[],\n        ): this;\n        writeHead(statusCode: number, headers?: OutgoingHttpHeaders | OutgoingHttpHeader[]): this;\n        /**\n         * Sends a HTTP/1.1 102 Processing message to the client, indicating that\n         * the request body should be sent.\n         * @since v10.0.0\n         */\n        writeProcessing(): void;\n    }\n    interface InformationEvent {\n        statusCode: number;\n        statusMessage: string;\n        httpVersion: string;\n        httpVersionMajor: number;\n        httpVersionMinor: number;\n        headers: IncomingHttpHeaders;\n        rawHeaders: string[];\n    }\n    /**\n     * This object is created internally and returned from {@link request}. It\n     * represents an _in-progress_ request whose header has already been queued. The\n     * header is still mutable using the `setHeader(name, value)`, `getHeader(name)`, `removeHeader(name)` API. The actual header will\n     * be sent along with the first data chunk or when calling `request.end()`.\n     *\n     * To get the response, add a listener for `'response'` to the request object. `'response'` will be emitted from the request object when the response\n     * headers have been received. The `'response'` event is executed with one\n     * argument which is an instance of {@link IncomingMessage}.\n     *\n     * During the `'response'` event, one can add listeners to the\n     * response object; particularly to listen for the `'data'` event.\n     *\n     * If no `'response'` handler is added, then the response will be\n     * entirely discarded. However, if a `'response'` event handler is added,\n     * then the data from the response object **must** be consumed, either by\n     * calling `response.read()` whenever there is a `'readable'` event, or\n     * by adding a `'data'` handler, or by calling the `.resume()` method.\n     * Until the data is consumed, the `'end'` event will not fire. Also, until\n     * the data is read it will consume memory that can eventually lead to a\n     * 'process out of memory' error.\n     *\n     * For backward compatibility, `res` will only emit `'error'` if there is an `'error'` listener registered.\n     *\n     * Set `Content-Length` header to limit the response body size.\n     * If `response.strictContentLength` is set to `true`, mismatching the `Content-Length` header value will result in an `Error` being thrown,\n     * identified by `code:``'ERR_HTTP_CONTENT_LENGTH_MISMATCH'`.\n     *\n     * `Content-Length` value should be in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes.\n     * @since v0.1.17\n     */\n    class ClientRequest extends OutgoingMessage {\n        /**\n         * The `request.aborted` property will be `true` if the request has\n         * been aborted.\n         * @since v0.11.14\n         * @deprecated Since v17.0.0, v16.12.0 - Check `destroyed` instead.\n         */\n        aborted: boolean;\n        /**\n         * The request host.\n         * @since v14.5.0, v12.19.0\n         */\n        host: string;\n        /**\n         * The request protocol.\n         * @since v14.5.0, v12.19.0\n         */\n        protocol: string;\n        /**\n         * When sending request through a keep-alive enabled agent, the underlying socket\n         * might be reused. But if server closes connection at unfortunate time, client\n         * may run into a 'ECONNRESET' error.\n         *\n         * ```js\n         * import http from 'node:http';\n         *\n         * // Server has a 5 seconds keep-alive timeout by default\n         * http\n         *   .createServer((req, res) => {\n         *     res.write('hello\\n');\n         *     res.end();\n         *   })\n         *   .listen(3000);\n         *\n         * setInterval(() => {\n         *   // Adapting a keep-alive agent\n         *   http.get('http://localhost:3000', { agent }, (res) => {\n         *     res.on('data', (data) => {\n         *       // Do nothing\n         *     });\n         *   });\n         * }, 5000); // Sending request on 5s interval so it's easy to hit idle timeout\n         * ```\n         *\n         * By marking a request whether it reused socket or not, we can do\n         * automatic error retry base on it.\n         *\n         * ```js\n         * import http from 'node:http';\n         * const agent = new http.Agent({ keepAlive: true });\n         *\n         * function retriableRequest() {\n         *   const req = http\n         *     .get('http://localhost:3000', { agent }, (res) => {\n         *       // ...\n         *     })\n         *     .on('error', (err) => {\n         *       // Check if retry is needed\n         *       if (req.reusedSocket &#x26;&#x26; err.code === 'ECONNRESET') {\n         *         retriableRequest();\n         *       }\n         *     });\n         * }\n         *\n         * retriableRequest();\n         * ```\n         * @since v13.0.0, v12.16.0\n         */\n        reusedSocket: boolean;\n        /**\n         * Limits maximum response headers count. If set to 0, no limit will be applied.\n         */\n        maxHeadersCount: number;\n        constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void);\n        /**\n         * The request method.\n         * @since v0.1.97\n         */\n        method: string;\n        /**\n         * The request path.\n         * @since v0.4.0\n         */\n        path: string;\n        /**\n         * Marks the request as aborting. Calling this will cause remaining data\n         * in the response to be dropped and the socket to be destroyed.\n         * @since v0.3.8\n         * @deprecated Since v14.1.0,v13.14.0 - Use `destroy` instead.\n         */\n        abort(): void;\n        onSocket(socket: Socket): void;\n        /**\n         * Once a socket is assigned to this request and is connected `socket.setTimeout()` will be called.\n         * @since v0.5.9\n         * @param timeout Milliseconds before a request times out.\n         * @param callback Optional function to be called when a timeout occurs. Same as binding to the `'timeout'` event.\n         */\n        setTimeout(timeout: number, callback?: () => void): this;\n        /**\n         * Once a socket is assigned to this request and is connected `socket.setNoDelay()` will be called.\n         * @since v0.5.9\n         */\n        setNoDelay(noDelay?: boolean): void;\n        /**\n         * Once a socket is assigned to this request and is connected `socket.setKeepAlive()` will be called.\n         * @since v0.5.9\n         */\n        setSocketKeepAlive(enable?: boolean, initialDelay?: number): void;\n        /**\n         * Returns an array containing the unique names of the current outgoing raw\n         * headers. Header names are returned with their exact casing being set.\n         *\n         * ```js\n         * request.setHeader('Foo', 'bar');\n         * request.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);\n         *\n         * const headerNames = request.getRawHeaderNames();\n         * // headerNames === ['Foo', 'Set-Cookie']\n         * ```\n         * @since v15.13.0, v14.17.0\n         */\n        getRawHeaderNames(): string[];\n        /**\n         * @deprecated\n         */\n        addListener(event: \"abort\", listener: () => void): this;\n        addListener(\n            event: \"connect\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        addListener(event: \"continue\", listener: () => void): this;\n        addListener(event: \"information\", listener: (info: InformationEvent) => void): this;\n        addListener(event: \"response\", listener: (response: IncomingMessage) => void): this;\n        addListener(event: \"socket\", listener: (socket: Socket) => void): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        addListener(\n            event: \"upgrade\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"drain\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"finish\", listener: () => void): this;\n        addListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        /**\n         * @deprecated\n         */\n        on(event: \"abort\", listener: () => void): this;\n        on(event: \"connect\", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;\n        on(event: \"continue\", listener: () => void): this;\n        on(event: \"information\", listener: (info: InformationEvent) => void): this;\n        on(event: \"response\", listener: (response: IncomingMessage) => void): this;\n        on(event: \"socket\", listener: (socket: Socket) => void): this;\n        on(event: \"timeout\", listener: () => void): this;\n        on(event: \"upgrade\", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"drain\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"finish\", listener: () => void): this;\n        on(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        on(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        /**\n         * @deprecated\n         */\n        once(event: \"abort\", listener: () => void): this;\n        once(event: \"connect\", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;\n        once(event: \"continue\", listener: () => void): this;\n        once(event: \"information\", listener: (info: InformationEvent) => void): this;\n        once(event: \"response\", listener: (response: IncomingMessage) => void): this;\n        once(event: \"socket\", listener: (socket: Socket) => void): this;\n        once(event: \"timeout\", listener: () => void): this;\n        once(event: \"upgrade\", listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"drain\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"finish\", listener: () => void): this;\n        once(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        once(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        /**\n         * @deprecated\n         */\n        prependListener(event: \"abort\", listener: () => void): this;\n        prependListener(\n            event: \"connect\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        prependListener(event: \"continue\", listener: () => void): this;\n        prependListener(event: \"information\", listener: (info: InformationEvent) => void): this;\n        prependListener(event: \"response\", listener: (response: IncomingMessage) => void): this;\n        prependListener(event: \"socket\", listener: (socket: Socket) => void): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependListener(\n            event: \"upgrade\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"drain\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"finish\", listener: () => void): this;\n        prependListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        /**\n         * @deprecated\n         */\n        prependOnceListener(event: \"abort\", listener: () => void): this;\n        prependOnceListener(\n            event: \"connect\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        prependOnceListener(event: \"continue\", listener: () => void): this;\n        prependOnceListener(event: \"information\", listener: (info: InformationEvent) => void): this;\n        prependOnceListener(event: \"response\", listener: (response: IncomingMessage) => void): this;\n        prependOnceListener(event: \"socket\", listener: (socket: Socket) => void): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(\n            event: \"upgrade\",\n            listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void,\n        ): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"drain\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"finish\", listener: () => void): this;\n        prependOnceListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    /**\n     * An `IncomingMessage` object is created by {@link Server} or {@link ClientRequest} and passed as the first argument to the `'request'` and `'response'` event respectively. It may be used to\n     * access response\n     * status, headers, and data.\n     *\n     * Different from its `socket` value which is a subclass of `stream.Duplex`, the `IncomingMessage` itself extends `stream.Readable` and is created separately to\n     * parse and emit the incoming HTTP headers and payload, as the underlying socket\n     * may be reused multiple times in case of keep-alive.\n     * @since v0.1.17\n     */\n    class IncomingMessage extends stream.Readable {\n        constructor(socket: Socket);\n        /**\n         * The `message.aborted` property will be `true` if the request has\n         * been aborted.\n         * @since v10.1.0\n         * @deprecated Since v17.0.0,v16.12.0 - Check `message.destroyed` from <a href=\"stream.html#class-streamreadable\" class=\"type\">stream.Readable</a>.\n         */\n        aborted: boolean;\n        /**\n         * In case of server request, the HTTP version sent by the client. In the case of\n         * client response, the HTTP version of the connected-to server.\n         * Probably either `'1.1'` or `'1.0'`.\n         *\n         * Also `message.httpVersionMajor` is the first integer and `message.httpVersionMinor` is the second.\n         * @since v0.1.1\n         */\n        httpVersion: string;\n        httpVersionMajor: number;\n        httpVersionMinor: number;\n        /**\n         * The `message.complete` property will be `true` if a complete HTTP message has\n         * been received and successfully parsed.\n         *\n         * This property is particularly useful as a means of determining if a client or\n         * server fully transmitted a message before a connection was terminated:\n         *\n         * ```js\n         * const req = http.request({\n         *   host: '127.0.0.1',\n         *   port: 8080,\n         *   method: 'POST',\n         * }, (res) => {\n         *   res.resume();\n         *   res.on('end', () => {\n         *     if (!res.complete)\n         *       console.error(\n         *         'The connection was terminated while the message was still being sent');\n         *   });\n         * });\n         * ```\n         * @since v0.3.0\n         */\n        complete: boolean;\n        /**\n         * Alias for `message.socket`.\n         * @since v0.1.90\n         * @deprecated Since v16.0.0 - Use `socket`.\n         */\n        connection: Socket;\n        /**\n         * The `net.Socket` object associated with the connection.\n         *\n         * With HTTPS support, use `request.socket.getPeerCertificate()` to obtain the\n         * client's authentication details.\n         *\n         * This property is guaranteed to be an instance of the `net.Socket` class,\n         * a subclass of `stream.Duplex`, unless the user specified a socket\n         * type other than `net.Socket` or internally nulled.\n         * @since v0.3.0\n         */\n        socket: Socket;\n        /**\n         * The request/response headers object.\n         *\n         * Key-value pairs of header names and values. Header names are lower-cased.\n         *\n         * ```js\n         * // Prints something like:\n         * //\n         * // { 'user-agent': 'curl/7.22.0',\n         * //   host: '127.0.0.1:8000',\n         * //   accept: '*' }\n         * console.log(request.headers);\n         * ```\n         *\n         * Duplicates in raw headers are handled in the following ways, depending on the\n         * header name:\n         *\n         * * Duplicates of `age`, `authorization`, `content-length`, `content-type`, `etag`, `expires`, `from`, `host`, `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,\n         * `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`, or `user-agent` are discarded.\n         * To allow duplicate values of the headers listed above to be joined,\n         * use the option `joinDuplicateHeaders` in {@link request} and {@link createServer}. See RFC 9110 Section 5.3 for more\n         * information.\n         * * `set-cookie` is always an array. Duplicates are added to the array.\n         * * For duplicate `cookie` headers, the values are joined together with `; `.\n         * * For all other headers, the values are joined together with `, `.\n         * @since v0.1.5\n         */\n        headers: IncomingHttpHeaders;\n        /**\n         * Similar to `message.headers`, but there is no join logic and the values are\n         * always arrays of strings, even for headers received just once.\n         *\n         * ```js\n         * // Prints something like:\n         * //\n         * // { 'user-agent': ['curl/7.22.0'],\n         * //   host: ['127.0.0.1:8000'],\n         * //   accept: ['*'] }\n         * console.log(request.headersDistinct);\n         * ```\n         * @since v18.3.0, v16.17.0\n         */\n        headersDistinct: NodeJS.Dict<string[]>;\n        /**\n         * The raw request/response headers list exactly as they were received.\n         *\n         * The keys and values are in the same list. It is _not_ a\n         * list of tuples. So, the even-numbered offsets are key values, and the\n         * odd-numbered offsets are the associated values.\n         *\n         * Header names are not lowercased, and duplicates are not merged.\n         *\n         * ```js\n         * // Prints something like:\n         * //\n         * // [ 'user-agent',\n         * //   'this is invalid because there can be only one',\n         * //   'User-Agent',\n         * //   'curl/7.22.0',\n         * //   'Host',\n         * //   '127.0.0.1:8000',\n         * //   'ACCEPT',\n         * //   '*' ]\n         * console.log(request.rawHeaders);\n         * ```\n         * @since v0.11.6\n         */\n        rawHeaders: string[];\n        /**\n         * The request/response trailers object. Only populated at the `'end'` event.\n         * @since v0.3.0\n         */\n        trailers: NodeJS.Dict<string>;\n        /**\n         * Similar to `message.trailers`, but there is no join logic and the values are\n         * always arrays of strings, even for headers received just once.\n         * Only populated at the `'end'` event.\n         * @since v18.3.0, v16.17.0\n         */\n        trailersDistinct: NodeJS.Dict<string[]>;\n        /**\n         * The raw request/response trailer keys and values exactly as they were\n         * received. Only populated at the `'end'` event.\n         * @since v0.11.6\n         */\n        rawTrailers: string[];\n        /**\n         * Calls `message.socket.setTimeout(msecs, callback)`.\n         * @since v0.5.9\n         */\n        setTimeout(msecs: number, callback?: () => void): this;\n        /**\n         * **Only valid for request obtained from {@link Server}.**\n         *\n         * The request method as a string. Read only. Examples: `'GET'`, `'DELETE'`.\n         * @since v0.1.1\n         */\n        method?: string | undefined;\n        /**\n         * **Only valid for request obtained from {@link Server}.**\n         *\n         * Request URL string. This contains only the URL that is present in the actual\n         * HTTP request. Take the following request:\n         *\n         * ```http\n         * GET /status?name=ryan HTTP/1.1\n         * Accept: text/plain\n         * ```\n         *\n         * To parse the URL into its parts:\n         *\n         * ```js\n         * new URL(`http://${process.env.HOST ?? 'localhost'}${request.url}`);\n         * ```\n         *\n         * When `request.url` is `'/status?name=ryan'` and `process.env.HOST` is undefined:\n         *\n         * ```console\n         * $ node\n         * > new URL(`http://${process.env.HOST ?? 'localhost'}${request.url}`);\n         * URL {\n         *   href: 'http://localhost/status?name=ryan',\n         *   origin: 'http://localhost',\n         *   protocol: 'http:',\n         *   username: '',\n         *   password: '',\n         *   host: 'localhost',\n         *   hostname: 'localhost',\n         *   port: '',\n         *   pathname: '/status',\n         *   search: '?name=ryan',\n         *   searchParams: URLSearchParams { 'name' => 'ryan' },\n         *   hash: ''\n         * }\n         * ```\n         *\n         * Ensure that you set `process.env.HOST` to the server's host name, or consider replacing this part entirely. If using `req.headers.host`, ensure proper\n         * validation is used, as clients may specify a custom `Host` header.\n         * @since v0.1.90\n         */\n        url?: string | undefined;\n        /**\n         * **Only valid for response obtained from {@link ClientRequest}.**\n         *\n         * The 3-digit HTTP response status code. E.G. `404`.\n         * @since v0.1.1\n         */\n        statusCode?: number | undefined;\n        /**\n         * **Only valid for response obtained from {@link ClientRequest}.**\n         *\n         * The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`.\n         * @since v0.11.10\n         */\n        statusMessage?: string | undefined;\n        /**\n         * Calls `destroy()` on the socket that received the `IncomingMessage`. If `error` is provided, an `'error'` event is emitted on the socket and `error` is passed\n         * as an argument to any listeners on the event.\n         * @since v0.3.0\n         */\n        destroy(error?: Error): this;\n    }\n    interface AgentOptions extends Partial<TcpSocketConnectOpts> {\n        /**\n         * Keep sockets around in a pool to be used by other requests in the future. Default = false\n         */\n        keepAlive?: boolean | undefined;\n        /**\n         * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000.\n         * Only relevant if keepAlive is set to true.\n         */\n        keepAliveMsecs?: number | undefined;\n        /**\n         * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity\n         */\n        maxSockets?: number | undefined;\n        /**\n         * Maximum number of sockets allowed for all hosts in total. Each request will use a new socket until the maximum is reached. Default: Infinity.\n         */\n        maxTotalSockets?: number | undefined;\n        /**\n         * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256.\n         */\n        maxFreeSockets?: number | undefined;\n        /**\n         * Socket timeout in milliseconds. This will set the timeout after the socket is connected.\n         */\n        timeout?: number | undefined;\n        /**\n         * Scheduling strategy to apply when picking the next free socket to use.\n         * @default `lifo`\n         */\n        scheduling?: \"fifo\" | \"lifo\" | undefined;\n    }\n    interface AgentGetNameOptions {\n        /**\n         * A domain name or IP address of the server to issue the request to\n         */\n        host?: string | undefined;\n        /**\n         * Port of remote server\n         */\n        port?: number | undefined;\n        /**\n         * Local interface to bind for network connections when issuing the request\n         */\n        localAddress?: string | undefined;\n        family?: 4 | 6 | undefined;\n    }\n    /**\n     * An `Agent` is responsible for managing connection persistence\n     * and reuse for HTTP clients. It maintains a queue of pending requests\n     * for a given host and port, reusing a single socket connection for each\n     * until the queue is empty, at which time the socket is either destroyed\n     * or put into a pool where it is kept to be used again for requests to the\n     * same host and port. Whether it is destroyed or pooled depends on the `keepAlive` `option`.\n     *\n     * Pooled connections have TCP Keep-Alive enabled for them, but servers may\n     * still close idle connections, in which case they will be removed from the\n     * pool and a new connection will be made when a new HTTP request is made for\n     * that host and port. Servers may also refuse to allow multiple requests\n     * over the same connection, in which case the connection will have to be\n     * remade for every request and cannot be pooled. The `Agent` will still make\n     * the requests to that server, but each one will occur over a new connection.\n     *\n     * When a connection is closed by the client or the server, it is removed\n     * from the pool. Any unused sockets in the pool will be unrefed so as not\n     * to keep the Node.js process running when there are no outstanding requests.\n     * (see `socket.unref()`).\n     *\n     * It is good practice, to `destroy()` an `Agent` instance when it is no\n     * longer in use, because unused sockets consume OS resources.\n     *\n     * Sockets are removed from an agent when the socket emits either\n     * a `'close'` event or an `'agentRemove'` event. When intending to keep one\n     * HTTP request open for a long time without keeping it in the agent, something\n     * like the following may be done:\n     *\n     * ```js\n     * http.get(options, (res) => {\n     *   // Do stuff\n     * }).on('socket', (socket) => {\n     *   socket.emit('agentRemove');\n     * });\n     * ```\n     *\n     * An agent may also be used for an individual request. By providing `{agent: false}` as an option to the `http.get()` or `http.request()` functions, a one-time use `Agent` with default options\n     * will be used\n     * for the client connection.\n     *\n     * `agent:false`:\n     *\n     * ```js\n     * http.get({\n     *   hostname: 'localhost',\n     *   port: 80,\n     *   path: '/',\n     *   agent: false,  // Create a new agent just for this one request\n     * }, (res) => {\n     *   // Do stuff with response\n     * });\n     * ```\n     *\n     * `options` in [`socket.connect()`](https://nodejs.org/docs/latest-v22.x/api/net.html#socketconnectoptions-connectlistener) are also supported.\n     *\n     * To configure any of them, a custom {@link Agent} instance must be created.\n     *\n     * ```js\n     * import http from 'node:http';\n     * const keepAliveAgent = new http.Agent({ keepAlive: true });\n     * options.agent = keepAliveAgent;\n     * http.request(options, onResponseCallback)\n     * ```\n     * @since v0.3.4\n     */\n    class Agent extends EventEmitter {\n        /**\n         * By default set to 256. For agents with `keepAlive` enabled, this\n         * sets the maximum number of sockets that will be left open in the free\n         * state.\n         * @since v0.11.7\n         */\n        maxFreeSockets: number;\n        /**\n         * By default set to `Infinity`. Determines how many concurrent sockets the agent\n         * can have open per origin. Origin is the returned value of `agent.getName()`.\n         * @since v0.3.6\n         */\n        maxSockets: number;\n        /**\n         * By default set to `Infinity`. Determines how many concurrent sockets the agent\n         * can have open. Unlike `maxSockets`, this parameter applies across all origins.\n         * @since v14.5.0, v12.19.0\n         */\n        maxTotalSockets: number;\n        /**\n         * An object which contains arrays of sockets currently awaiting use by\n         * the agent when `keepAlive` is enabled. Do not modify.\n         *\n         * Sockets in the `freeSockets` list will be automatically destroyed and\n         * removed from the array on `'timeout'`.\n         * @since v0.11.4\n         */\n        readonly freeSockets: NodeJS.ReadOnlyDict<Socket[]>;\n        /**\n         * An object which contains arrays of sockets currently in use by the\n         * agent. Do not modify.\n         * @since v0.3.6\n         */\n        readonly sockets: NodeJS.ReadOnlyDict<Socket[]>;\n        /**\n         * An object which contains queues of requests that have not yet been assigned to\n         * sockets. Do not modify.\n         * @since v0.5.9\n         */\n        readonly requests: NodeJS.ReadOnlyDict<IncomingMessage[]>;\n        constructor(opts?: AgentOptions);\n        /**\n         * Destroy any sockets that are currently in use by the agent.\n         *\n         * It is usually not necessary to do this. However, if using an\n         * agent with `keepAlive` enabled, then it is best to explicitly shut down\n         * the agent when it is no longer needed. Otherwise,\n         * sockets might stay open for quite a long time before the server\n         * terminates them.\n         * @since v0.11.4\n         */\n        destroy(): void;\n        /**\n         * Produces a socket/stream to be used for HTTP requests.\n         *\n         * By default, this function is the same as `net.createConnection()`. However,\n         * custom agents may override this method in case greater flexibility is desired.\n         *\n         * A socket/stream can be supplied in one of two ways: by returning the\n         * socket/stream from this function, or by passing the socket/stream to `callback`.\n         *\n         * This method is guaranteed to return an instance of the `net.Socket` class,\n         * a subclass of `stream.Duplex`, unless the user specifies a socket\n         * type other than `net.Socket`.\n         *\n         * `callback` has a signature of `(err, stream)`.\n         * @since v0.11.4\n         * @param options Options containing connection details. Check `createConnection` for the format of the options\n         * @param callback Callback function that receives the created socket\n         */\n        createConnection(\n            options: NetConnectOpts,\n            callback?: (err: Error | null, stream: stream.Duplex) => void,\n        ): stream.Duplex;\n        /**\n         * Called when `socket` is detached from a request and could be persisted by the`Agent`. Default behavior is to:\n         *\n         * ```js\n         * socket.setKeepAlive(true, this.keepAliveMsecs);\n         * socket.unref();\n         * return true;\n         * ```\n         *\n         * This method can be overridden by a particular `Agent` subclass. If this\n         * method returns a falsy value, the socket will be destroyed instead of persisting\n         * it for use with the next request.\n         *\n         * The `socket` argument can be an instance of `net.Socket`, a subclass of `stream.Duplex`.\n         * @since v8.1.0\n         */\n        keepSocketAlive(socket: stream.Duplex): void;\n        /**\n         * Called when `socket` is attached to `request` after being persisted because of\n         * the keep-alive options. Default behavior is to:\n         *\n         * ```js\n         * socket.ref();\n         * ```\n         *\n         * This method can be overridden by a particular `Agent` subclass.\n         *\n         * The `socket` argument can be an instance of `net.Socket`, a subclass of `stream.Duplex`.\n         * @since v8.1.0\n         */\n        reuseSocket(socket: stream.Duplex, request: ClientRequest): void;\n        /**\n         * Get a unique name for a set of request options, to determine whether a\n         * connection can be reused. For an HTTP agent, this returns`host:port:localAddress` or `host:port:localAddress:family`. For an HTTPS agent,\n         * the name includes the CA, cert, ciphers, and other HTTPS/TLS-specific options\n         * that determine socket reusability.\n         * @since v0.11.4\n         * @param options A set of options providing information for name generation\n         */\n        getName(options?: AgentGetNameOptions): string;\n    }\n    const METHODS: string[];\n    const STATUS_CODES: {\n        [errorCode: number]: string | undefined;\n        [errorCode: string]: string | undefined;\n    };\n    /**\n     * Returns a new instance of {@link Server}.\n     *\n     * The `requestListener` is a function which is automatically\n     * added to the `'request'` event.\n     *\n     * ```js\n     * import http from 'node:http';\n     *\n     * // Create a local server to receive data from\n     * const server = http.createServer((req, res) => {\n     *   res.writeHead(200, { 'Content-Type': 'application/json' });\n     *   res.end(JSON.stringify({\n     *     data: 'Hello World!',\n     *   }));\n     * });\n     *\n     * server.listen(8000);\n     * ```\n     *\n     * ```js\n     * import http from 'node:http';\n     *\n     * // Create a local server to receive data from\n     * const server = http.createServer();\n     *\n     * // Listen to the request event\n     * server.on('request', (request, res) => {\n     *   res.writeHead(200, { 'Content-Type': 'application/json' });\n     *   res.end(JSON.stringify({\n     *     data: 'Hello World!',\n     *   }));\n     * });\n     *\n     * server.listen(8000);\n     * ```\n     * @since v0.1.13\n     */\n    function createServer<\n        Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse,\n    >(requestListener?: RequestListener<Request, Response>): Server<Request, Response>;\n    function createServer<\n        Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Response extends typeof ServerResponse<InstanceType<Request>> = typeof ServerResponse,\n    >(\n        options: ServerOptions<Request, Response>,\n        requestListener?: RequestListener<Request, Response>,\n    ): Server<Request, Response>;\n    // although RequestOptions are passed as ClientRequestArgs to ClientRequest directly,\n    // create interface RequestOptions would make the naming more clear to developers\n    interface RequestOptions extends ClientRequestArgs {}\n    /**\n     * `options` in `socket.connect()` are also supported.\n     *\n     * Node.js maintains several connections per server to make HTTP requests.\n     * This function allows one to transparently issue requests.\n     *\n     * `url` can be a string or a `URL` object. If `url` is a\n     * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.\n     *\n     * If both `url` and `options` are specified, the objects are merged, with the `options` properties taking precedence.\n     *\n     * The optional `callback` parameter will be added as a one-time listener for\n     * the `'response'` event.\n     *\n     * `http.request()` returns an instance of the {@link ClientRequest} class. The `ClientRequest` instance is a writable stream. If one needs to\n     * upload a file with a POST request, then write to the `ClientRequest` object.\n     *\n     * ```js\n     * import http from 'node:http';\n     * import { Buffer } from 'node:buffer';\n     *\n     * const postData = JSON.stringify({\n     *   'msg': 'Hello World!',\n     * });\n     *\n     * const options = {\n     *   hostname: 'www.google.com',\n     *   port: 80,\n     *   path: '/upload',\n     *   method: 'POST',\n     *   headers: {\n     *     'Content-Type': 'application/json',\n     *     'Content-Length': Buffer.byteLength(postData),\n     *   },\n     * };\n     *\n     * const req = http.request(options, (res) => {\n     *   console.log(`STATUS: ${res.statusCode}`);\n     *   console.log(`HEADERS: ${JSON.stringify(res.headers)}`);\n     *   res.setEncoding('utf8');\n     *   res.on('data', (chunk) => {\n     *     console.log(`BODY: ${chunk}`);\n     *   });\n     *   res.on('end', () => {\n     *     console.log('No more data in response.');\n     *   });\n     * });\n     *\n     * req.on('error', (e) => {\n     *   console.error(`problem with request: ${e.message}`);\n     * });\n     *\n     * // Write data to request body\n     * req.write(postData);\n     * req.end();\n     * ```\n     *\n     * In the example `req.end()` was called. With `http.request()` one\n     * must always call `req.end()` to signify the end of the request -\n     * even if there is no data being written to the request body.\n     *\n     * If any error is encountered during the request (be that with DNS resolution,\n     * TCP level errors, or actual HTTP parse errors) an `'error'` event is emitted\n     * on the returned request object. As with all `'error'` events, if no listeners\n     * are registered the error will be thrown.\n     *\n     * There are a few special headers that should be noted.\n     *\n     * * Sending a 'Connection: keep-alive' will notify Node.js that the connection to\n     * the server should be persisted until the next request.\n     * * Sending a 'Content-Length' header will disable the default chunked encoding.\n     * * Sending an 'Expect' header will immediately send the request headers.\n     * Usually, when sending 'Expect: 100-continue', both a timeout and a listener\n     * for the `'continue'` event should be set. See RFC 2616 Section 8.2.3 for more\n     * information.\n     * * Sending an Authorization header will override using the `auth` option\n     * to compute basic authentication.\n     *\n     * Example using a `URL` as `options`:\n     *\n     * ```js\n     * const options = new URL('http://abc:xyz@example.com');\n     *\n     * const req = http.request(options, (res) => {\n     *   // ...\n     * });\n     * ```\n     *\n     * In a successful request, the following events will be emitted in the following\n     * order:\n     *\n     * * `'socket'`\n     * * `'response'`\n     *    * `'data'` any number of times, on the `res` object\n     *    (`'data'` will not be emitted at all if the response body is empty, for\n     *    instance, in most redirects)\n     *    * `'end'` on the `res` object\n     * * `'close'`\n     *\n     * In the case of a connection error, the following events will be emitted:\n     *\n     * * `'socket'`\n     * * `'error'`\n     * * `'close'`\n     *\n     * In the case of a premature connection close before the response is received,\n     * the following events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`\n     * * `'close'`\n     *\n     * In the case of a premature connection close after the response is received,\n     * the following events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * `'response'`\n     *    * `'data'` any number of times, on the `res` object\n     * * (connection closed here)\n     * * `'aborted'` on the `res` object\n     * * `'close'`\n     * * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`\n     * * `'close'` on the `res` object\n     *\n     * If `req.destroy()` is called before a socket is assigned, the following\n     * events will be emitted in the following order:\n     *\n     * * (`req.destroy()` called here)\n     * * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called\n     * * `'close'`\n     *\n     * If `req.destroy()` is called before the connection succeeds, the following\n     * events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * (`req.destroy()` called here)\n     * * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called\n     * * `'close'`\n     *\n     * If `req.destroy()` is called after the response is received, the following\n     * events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * `'response'`\n     *    * `'data'` any number of times, on the `res` object\n     * * (`req.destroy()` called here)\n     * * `'aborted'` on the `res` object\n     * * `'close'`\n     * * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`, or the error with which `req.destroy()` was called\n     * * `'close'` on the `res` object\n     *\n     * If `req.abort()` is called before a socket is assigned, the following\n     * events will be emitted in the following order:\n     *\n     * * (`req.abort()` called here)\n     * * `'abort'`\n     * * `'close'`\n     *\n     * If `req.abort()` is called before the connection succeeds, the following\n     * events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * (`req.abort()` called here)\n     * * `'abort'`\n     * * `'error'` with an error with message `'Error: socket hang up'` and code `'ECONNRESET'`\n     * * `'close'`\n     *\n     * If `req.abort()` is called after the response is received, the following\n     * events will be emitted in the following order:\n     *\n     * * `'socket'`\n     * * `'response'`\n     *    * `'data'` any number of times, on the `res` object\n     * * (`req.abort()` called here)\n     * * `'abort'`\n     * * `'aborted'` on the `res` object\n     * * `'error'` on the `res` object with an error with message `'Error: aborted'` and code `'ECONNRESET'`.\n     * * `'close'`\n     * * `'close'` on the `res` object\n     *\n     * Setting the `timeout` option or using the `setTimeout()` function will\n     * not abort the request or do anything besides add a `'timeout'` event.\n     *\n     * Passing an `AbortSignal` and then calling `abort()` on the corresponding `AbortController` will behave the same way as calling `.destroy()` on the\n     * request. Specifically, the `'error'` event will be emitted with an error with\n     * the message `'AbortError: The operation was aborted'`, the code `'ABORT_ERR'` and the `cause`, if one was provided.\n     * @since v0.3.6\n     */\n    function request(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest;\n    function request(\n        url: string | URL,\n        options: RequestOptions,\n        callback?: (res: IncomingMessage) => void,\n    ): ClientRequest;\n    /**\n     * Since most requests are GET requests without bodies, Node.js provides this\n     * convenience method. The only difference between this method and {@link request} is that it sets the method to GET by default and calls `req.end()` automatically. The callback must take care to\n     * consume the response\n     * data for reasons stated in {@link ClientRequest} section.\n     *\n     * The `callback` is invoked with a single argument that is an instance of {@link IncomingMessage}.\n     *\n     * JSON fetching example:\n     *\n     * ```js\n     * http.get('http://localhost:8000/', (res) => {\n     *   const { statusCode } = res;\n     *   const contentType = res.headers['content-type'];\n     *\n     *   let error;\n     *   // Any 2xx status code signals a successful response but\n     *   // here we're only checking for 200.\n     *   if (statusCode !== 200) {\n     *     error = new Error('Request Failed.\\n' +\n     *                       `Status Code: ${statusCode}`);\n     *   } else if (!/^application\\/json/.test(contentType)) {\n     *     error = new Error('Invalid content-type.\\n' +\n     *                       `Expected application/json but received ${contentType}`);\n     *   }\n     *   if (error) {\n     *     console.error(error.message);\n     *     // Consume response data to free up memory\n     *     res.resume();\n     *     return;\n     *   }\n     *\n     *   res.setEncoding('utf8');\n     *   let rawData = '';\n     *   res.on('data', (chunk) => { rawData += chunk; });\n     *   res.on('end', () => {\n     *     try {\n     *       const parsedData = JSON.parse(rawData);\n     *       console.log(parsedData);\n     *     } catch (e) {\n     *       console.error(e.message);\n     *     }\n     *   });\n     * }).on('error', (e) => {\n     *   console.error(`Got error: ${e.message}`);\n     * });\n     *\n     * // Create a local server to receive data from\n     * const server = http.createServer((req, res) => {\n     *   res.writeHead(200, { 'Content-Type': 'application/json' });\n     *   res.end(JSON.stringify({\n     *     data: 'Hello World!',\n     *   }));\n     * });\n     *\n     * server.listen(8000);\n     * ```\n     * @since v0.3.6\n     * @param options Accepts the same `options` as {@link request}, with the method set to GET by default.\n     */\n    function get(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest;\n    function get(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest;\n    /**\n     * Performs the low-level validations on the provided `name` that are done when `res.setHeader(name, value)` is called.\n     *\n     * Passing illegal value as `name` will result in a `TypeError` being thrown,\n     * identified by `code: 'ERR_INVALID_HTTP_TOKEN'`.\n     *\n     * It is not necessary to use this method before passing headers to an HTTP request\n     * or response. The HTTP module will automatically validate such headers.\n     *\n     * Example:\n     *\n     * ```js\n     * import { validateHeaderName } from 'node:http';\n     *\n     * try {\n     *   validateHeaderName('');\n     * } catch (err) {\n     *   console.error(err instanceof TypeError); // --> true\n     *   console.error(err.code); // --> 'ERR_INVALID_HTTP_TOKEN'\n     *   console.error(err.message); // --> 'Header name must be a valid HTTP token [\"\"]'\n     * }\n     * ```\n     * @since v14.3.0\n     * @param [label='Header name'] Label for error message.\n     */\n    function validateHeaderName(name: string): void;\n    /**\n     * Performs the low-level validations on the provided `value` that are done when `res.setHeader(name, value)` is called.\n     *\n     * Passing illegal value as `value` will result in a `TypeError` being thrown.\n     *\n     * * Undefined value error is identified by `code: 'ERR_HTTP_INVALID_HEADER_VALUE'`.\n     * * Invalid value character error is identified by `code: 'ERR_INVALID_CHAR'`.\n     *\n     * It is not necessary to use this method before passing headers to an HTTP request\n     * or response. The HTTP module will automatically validate such headers.\n     *\n     * Examples:\n     *\n     * ```js\n     * import { validateHeaderValue } from 'node:http';\n     *\n     * try {\n     *   validateHeaderValue('x-my-header', undefined);\n     * } catch (err) {\n     *   console.error(err instanceof TypeError); // --> true\n     *   console.error(err.code === 'ERR_HTTP_INVALID_HEADER_VALUE'); // --> true\n     *   console.error(err.message); // --> 'Invalid value \"undefined\" for header \"x-my-header\"'\n     * }\n     *\n     * try {\n     *   validateHeaderValue('x-my-header', 'oʊmɪɡə');\n     * } catch (err) {\n     *   console.error(err instanceof TypeError); // --> true\n     *   console.error(err.code === 'ERR_INVALID_CHAR'); // --> true\n     *   console.error(err.message); // --> 'Invalid character in header content [\"x-my-header\"]'\n     * }\n     * ```\n     * @since v14.3.0\n     * @param name Header name\n     * @param value Header value\n     */\n    function validateHeaderValue(name: string, value: string): void;\n    /**\n     * Set the maximum number of idle HTTP parsers.\n     * @since v18.8.0, v16.18.0\n     * @param [max=1000]\n     */\n    function setMaxIdleHTTPParsers(max: number): void;\n    /**\n     * Global instance of `Agent` which is used as the default for all HTTP client\n     * requests. Diverges from a default `Agent` configuration by having `keepAlive`\n     * enabled and a `timeout` of 5 seconds.\n     * @since v0.5.9\n     */\n    let globalAgent: Agent;\n    /**\n     * Read-only property specifying the maximum allowed size of HTTP headers in bytes.\n     * Defaults to 16KB. Configurable using the `--max-http-header-size` CLI option.\n     */\n    const maxHeaderSize: number;\n    /**\n     * A browser-compatible implementation of [WebSocket](https://nodejs.org/docs/latest/api/http.html#websocket).\n     * @since v22.5.0\n     */\n    const WebSocket: import(\"undici-types\").WebSocket;\n    /**\n     * @since v22.5.0\n     */\n    const CloseEvent: import(\"undici-types\").CloseEvent;\n    /**\n     * @since v22.5.0\n     */\n    const MessageEvent: import(\"undici-types\").MessageEvent;\n}\ndeclare module \"node:http\" {\n    export * from \"http\";\n}\n",
    "node_modules/@types/node/http2.d.ts": "/**\n * The `node:http2` module provides an implementation of the [HTTP/2](https://tools.ietf.org/html/rfc7540) protocol.\n * It can be accessed using:\n *\n * ```js\n * import http2 from 'node:http2';\n * ```\n * @since v8.4.0\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/http2.js)\n */\ndeclare module \"http2\" {\n    import EventEmitter = require(\"node:events\");\n    import * as fs from \"node:fs\";\n    import * as net from \"node:net\";\n    import * as stream from \"node:stream\";\n    import * as tls from \"node:tls\";\n    import * as url from \"node:url\";\n    import {\n        IncomingHttpHeaders as Http1IncomingHttpHeaders,\n        IncomingMessage,\n        OutgoingHttpHeaders,\n        ServerResponse,\n    } from \"node:http\";\n    export { OutgoingHttpHeaders } from \"node:http\";\n    export interface IncomingHttpStatusHeader {\n        \":status\"?: number | undefined;\n    }\n    export interface IncomingHttpHeaders extends Http1IncomingHttpHeaders {\n        \":path\"?: string | undefined;\n        \":method\"?: string | undefined;\n        \":authority\"?: string | undefined;\n        \":scheme\"?: string | undefined;\n    }\n    // Http2Stream\n    export interface StreamPriorityOptions {\n        exclusive?: boolean | undefined;\n        parent?: number | undefined;\n        weight?: number | undefined;\n        silent?: boolean | undefined;\n    }\n    export interface StreamState {\n        localWindowSize?: number | undefined;\n        state?: number | undefined;\n        localClose?: number | undefined;\n        remoteClose?: number | undefined;\n        sumDependencyWeight?: number | undefined;\n        weight?: number | undefined;\n    }\n    export interface ServerStreamResponseOptions {\n        endStream?: boolean | undefined;\n        waitForTrailers?: boolean | undefined;\n    }\n    export interface StatOptions {\n        offset: number;\n        length: number;\n    }\n    export interface ServerStreamFileResponseOptions {\n        // eslint-disable-next-line @typescript-eslint/no-invalid-void-type\n        statCheck?(stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions): void | boolean;\n        waitForTrailers?: boolean | undefined;\n        offset?: number | undefined;\n        length?: number | undefined;\n    }\n    export interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions {\n        onError?(err: NodeJS.ErrnoException): void;\n    }\n    export interface Http2Stream extends stream.Duplex {\n        /**\n         * Set to `true` if the `Http2Stream` instance was aborted abnormally. When set,\n         * the `'aborted'` event will have been emitted.\n         * @since v8.4.0\n         */\n        readonly aborted: boolean;\n        /**\n         * This property shows the number of characters currently buffered to be written.\n         * See `net.Socket.bufferSize` for details.\n         * @since v11.2.0, v10.16.0\n         */\n        readonly bufferSize: number;\n        /**\n         * Set to `true` if the `Http2Stream` instance has been closed.\n         * @since v9.4.0\n         */\n        readonly closed: boolean;\n        /**\n         * Set to `true` if the `Http2Stream` instance has been destroyed and is no longer\n         * usable.\n         * @since v8.4.0\n         */\n        readonly destroyed: boolean;\n        /**\n         * Set to `true` if the `END_STREAM` flag was set in the request or response\n         * HEADERS frame received, indicating that no additional data should be received\n         * and the readable side of the `Http2Stream` will be closed.\n         * @since v10.11.0\n         */\n        readonly endAfterHeaders: boolean;\n        /**\n         * The numeric stream identifier of this `Http2Stream` instance. Set to `undefined` if the stream identifier has not yet been assigned.\n         * @since v8.4.0\n         */\n        readonly id?: number | undefined;\n        /**\n         * Set to `true` if the `Http2Stream` instance has not yet been assigned a\n         * numeric stream identifier.\n         * @since v9.4.0\n         */\n        readonly pending: boolean;\n        /**\n         * Set to the `RST_STREAM` `error code` reported when the `Http2Stream` is\n         * destroyed after either receiving an `RST_STREAM` frame from the connected peer,\n         * calling `http2stream.close()`, or `http2stream.destroy()`. Will be `undefined` if the `Http2Stream` has not been closed.\n         * @since v8.4.0\n         */\n        readonly rstCode: number;\n        /**\n         * An object containing the outbound headers sent for this `Http2Stream`.\n         * @since v9.5.0\n         */\n        readonly sentHeaders: OutgoingHttpHeaders;\n        /**\n         * An array of objects containing the outbound informational (additional) headers\n         * sent for this `Http2Stream`.\n         * @since v9.5.0\n         */\n        readonly sentInfoHeaders?: OutgoingHttpHeaders[] | undefined;\n        /**\n         * An object containing the outbound trailers sent for this `HttpStream`.\n         * @since v9.5.0\n         */\n        readonly sentTrailers?: OutgoingHttpHeaders | undefined;\n        /**\n         * A reference to the `Http2Session` instance that owns this `Http2Stream`. The\n         * value will be `undefined` after the `Http2Stream` instance is destroyed.\n         * @since v8.4.0\n         */\n        readonly session: Http2Session | undefined;\n        /**\n         * Provides miscellaneous information about the current state of the `Http2Stream`.\n         *\n         * A current state of this `Http2Stream`.\n         * @since v8.4.0\n         */\n        readonly state: StreamState;\n        /**\n         * Closes the `Http2Stream` instance by sending an `RST_STREAM` frame to the\n         * connected HTTP/2 peer.\n         * @since v8.4.0\n         * @param [code=http2.constants.NGHTTP2_NO_ERROR] Unsigned 32-bit integer identifying the error code.\n         * @param callback An optional function registered to listen for the `'close'` event.\n         */\n        close(code?: number, callback?: () => void): void;\n        /**\n         * Updates the priority for this `Http2Stream` instance.\n         * @since v8.4.0\n         */\n        priority(options: StreamPriorityOptions): void;\n        /**\n         * ```js\n         * import http2 from 'node:http2';\n         * const client = http2.connect('http://example.org:8000');\n         * const { NGHTTP2_CANCEL } = http2.constants;\n         * const req = client.request({ ':path': '/' });\n         *\n         * // Cancel the stream if there's no activity after 5 seconds\n         * req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL));\n         * ```\n         * @since v8.4.0\n         */\n        setTimeout(msecs: number, callback?: () => void): void;\n        /**\n         * Sends a trailing `HEADERS` frame to the connected HTTP/2 peer. This method\n         * will cause the `Http2Stream` to be immediately closed and must only be\n         * called after the `'wantTrailers'` event has been emitted. When sending a\n         * request or sending a response, the `options.waitForTrailers` option must be set\n         * in order to keep the `Http2Stream` open after the final `DATA` frame so that\n         * trailers can be sent.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   stream.respond(undefined, { waitForTrailers: true });\n         *   stream.on('wantTrailers', () => {\n         *     stream.sendTrailers({ xyz: 'abc' });\n         *   });\n         *   stream.end('Hello World');\n         * });\n         * ```\n         *\n         * The HTTP/1 specification forbids trailers from containing HTTP/2 pseudo-header\n         * fields (e.g. `':method'`, `':path'`, etc).\n         * @since v10.0.0\n         */\n        sendTrailers(headers: OutgoingHttpHeaders): void;\n        addListener(event: \"aborted\", listener: () => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        addListener(event: \"drain\", listener: () => void): this;\n        addListener(event: \"end\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"finish\", listener: () => void): this;\n        addListener(event: \"frameError\", listener: (frameType: number, errorCode: number) => void): this;\n        addListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: \"streamClosed\", listener: (code: number) => void): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        addListener(event: \"trailers\", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;\n        addListener(event: \"wantTrailers\", listener: () => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"aborted\"): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"data\", chunk: Buffer | string): boolean;\n        emit(event: \"drain\"): boolean;\n        emit(event: \"end\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"finish\"): boolean;\n        emit(event: \"frameError\", frameType: number, errorCode: number): boolean;\n        emit(event: \"pipe\", src: stream.Readable): boolean;\n        emit(event: \"unpipe\", src: stream.Readable): boolean;\n        emit(event: \"streamClosed\", code: number): boolean;\n        emit(event: \"timeout\"): boolean;\n        emit(event: \"trailers\", trailers: IncomingHttpHeaders, flags: number): boolean;\n        emit(event: \"wantTrailers\"): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"aborted\", listener: () => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        on(event: \"drain\", listener: () => void): this;\n        on(event: \"end\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"finish\", listener: () => void): this;\n        on(event: \"frameError\", listener: (frameType: number, errorCode: number) => void): this;\n        on(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        on(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        on(event: \"streamClosed\", listener: (code: number) => void): this;\n        on(event: \"timeout\", listener: () => void): this;\n        on(event: \"trailers\", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;\n        on(event: \"wantTrailers\", listener: () => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"aborted\", listener: () => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        once(event: \"drain\", listener: () => void): this;\n        once(event: \"end\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"finish\", listener: () => void): this;\n        once(event: \"frameError\", listener: (frameType: number, errorCode: number) => void): this;\n        once(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        once(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        once(event: \"streamClosed\", listener: (code: number) => void): this;\n        once(event: \"timeout\", listener: () => void): this;\n        once(event: \"trailers\", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;\n        once(event: \"wantTrailers\", listener: () => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"aborted\", listener: () => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        prependListener(event: \"drain\", listener: () => void): this;\n        prependListener(event: \"end\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"finish\", listener: () => void): this;\n        prependListener(event: \"frameError\", listener: (frameType: number, errorCode: number) => void): this;\n        prependListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: \"streamClosed\", listener: (code: number) => void): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependListener(event: \"trailers\", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;\n        prependListener(event: \"wantTrailers\", listener: () => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"aborted\", listener: () => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        prependOnceListener(event: \"drain\", listener: () => void): this;\n        prependOnceListener(event: \"end\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"finish\", listener: () => void): this;\n        prependOnceListener(event: \"frameError\", listener: (frameType: number, errorCode: number) => void): this;\n        prependOnceListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: \"streamClosed\", listener: (code: number) => void): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(event: \"trailers\", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;\n        prependOnceListener(event: \"wantTrailers\", listener: () => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export interface ClientHttp2Stream extends Http2Stream {\n        addListener(event: \"continue\", listener: () => {}): this;\n        addListener(\n            event: \"headers\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        addListener(event: \"push\", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;\n        addListener(\n            event: \"response\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"continue\"): boolean;\n        emit(event: \"headers\", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean;\n        emit(event: \"push\", headers: IncomingHttpHeaders, flags: number): boolean;\n        emit(event: \"response\", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"continue\", listener: () => {}): this;\n        on(\n            event: \"headers\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        on(event: \"push\", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;\n        on(\n            event: \"response\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"continue\", listener: () => {}): this;\n        once(\n            event: \"headers\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        once(event: \"push\", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;\n        once(\n            event: \"response\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"continue\", listener: () => {}): this;\n        prependListener(\n            event: \"headers\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        prependListener(event: \"push\", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;\n        prependListener(\n            event: \"response\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"continue\", listener: () => {}): this;\n        prependOnceListener(\n            event: \"headers\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        prependOnceListener(event: \"push\", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;\n        prependOnceListener(\n            event: \"response\",\n            listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,\n        ): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export interface ServerHttp2Stream extends Http2Stream {\n        /**\n         * True if headers were sent, false otherwise (read-only).\n         * @since v8.4.0\n         */\n        readonly headersSent: boolean;\n        /**\n         * Read-only property mapped to the `SETTINGS_ENABLE_PUSH` flag of the remote\n         * client's most recent `SETTINGS` frame. Will be `true` if the remote peer\n         * accepts push streams, `false` otherwise. Settings are the same for every `Http2Stream` in the same `Http2Session`.\n         * @since v8.4.0\n         */\n        readonly pushAllowed: boolean;\n        /**\n         * Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer.\n         * @since v8.4.0\n         */\n        additionalHeaders(headers: OutgoingHttpHeaders): void;\n        /**\n         * Initiates a push stream. The callback is invoked with the new `Http2Stream` instance created for the push stream passed as the second argument, or an `Error` passed as the first argument.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   stream.respond({ ':status': 200 });\n         *   stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => {\n         *     if (err) throw err;\n         *     pushStream.respond({ ':status': 200 });\n         *     pushStream.end('some pushed data');\n         *   });\n         *   stream.end('some data');\n         * });\n         * ```\n         *\n         * Setting the weight of a push stream is not allowed in the `HEADERS` frame. Pass\n         * a `weight` value to `http2stream.priority` with the `silent` option set to `true` to enable server-side bandwidth balancing between concurrent streams.\n         *\n         * Calling `http2stream.pushStream()` from within a pushed stream is not permitted\n         * and will throw an error.\n         * @since v8.4.0\n         * @param callback Callback that is called once the push stream has been initiated.\n         */\n        pushStream(\n            headers: OutgoingHttpHeaders,\n            callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,\n        ): void;\n        pushStream(\n            headers: OutgoingHttpHeaders,\n            options?: StreamPriorityOptions,\n            callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,\n        ): void;\n        /**\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   stream.respond({ ':status': 200 });\n         *   stream.end('some data');\n         * });\n         * ```\n         *\n         * Initiates a response. When the `options.waitForTrailers` option is set, the `'wantTrailers'` event\n         * will be emitted immediately after queuing the last chunk of payload data to be sent.\n         * The `http2stream.sendTrailers()` method can then be used to send trailing header fields to the peer.\n         *\n         * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically\n         * close when the final `DATA` frame is transmitted. User code must call either `http2stream.sendTrailers()` or `http2stream.close()` to close the `Http2Stream`.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   stream.respond({ ':status': 200 }, { waitForTrailers: true });\n         *   stream.on('wantTrailers', () => {\n         *     stream.sendTrailers({ ABC: 'some value to send' });\n         *   });\n         *   stream.end('some data');\n         * });\n         * ```\n         * @since v8.4.0\n         */\n        respond(headers?: OutgoingHttpHeaders, options?: ServerStreamResponseOptions): void;\n        /**\n         * Initiates a response whose data is read from the given file descriptor. No\n         * validation is performed on the given file descriptor. If an error occurs while\n         * attempting to read data using the file descriptor, the `Http2Stream` will be\n         * closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.\n         *\n         * When used, the `Http2Stream` object's `Duplex` interface will be closed\n         * automatically.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * import fs from 'node:fs';\n         *\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   const fd = fs.openSync('/some/file', 'r');\n         *\n         *   const stat = fs.fstatSync(fd);\n         *   const headers = {\n         *     'content-length': stat.size,\n         *     'last-modified': stat.mtime.toUTCString(),\n         *     'content-type': 'text/plain; charset=utf-8',\n         *   };\n         *   stream.respondWithFD(fd, headers);\n         *   stream.on('close', () => fs.closeSync(fd));\n         * });\n         * ```\n         *\n         * The optional `options.statCheck` function may be specified to give user code\n         * an opportunity to set additional content headers based on the `fs.Stat` details\n         * of the given fd. If the `statCheck` function is provided, the `http2stream.respondWithFD()` method will\n         * perform an `fs.fstat()` call to collect details on the provided file descriptor.\n         *\n         * The `offset` and `length` options may be used to limit the response to a\n         * specific range subset. This can be used, for instance, to support HTTP Range\n         * requests.\n         *\n         * The file descriptor or `FileHandle` is not closed when the stream is closed,\n         * so it will need to be closed manually once it is no longer needed.\n         * Using the same file descriptor concurrently for multiple streams\n         * is not supported and may result in data loss. Re-using a file descriptor\n         * after a stream has finished is supported.\n         *\n         * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event\n         * will be emitted immediately after queuing the last chunk of payload data to be\n         * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing\n         * header fields to the peer.\n         *\n         * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically\n         * close when the final `DATA` frame is transmitted. User code _must_ call either `http2stream.sendTrailers()`\n         * or `http2stream.close()` to close the `Http2Stream`.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * import fs from 'node:fs';\n         *\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   const fd = fs.openSync('/some/file', 'r');\n         *\n         *   const stat = fs.fstatSync(fd);\n         *   const headers = {\n         *     'content-length': stat.size,\n         *     'last-modified': stat.mtime.toUTCString(),\n         *     'content-type': 'text/plain; charset=utf-8',\n         *   };\n         *   stream.respondWithFD(fd, headers, { waitForTrailers: true });\n         *   stream.on('wantTrailers', () => {\n         *     stream.sendTrailers({ ABC: 'some value to send' });\n         *   });\n         *\n         *   stream.on('close', () => fs.closeSync(fd));\n         * });\n         * ```\n         * @since v8.4.0\n         * @param fd A readable file descriptor.\n         */\n        respondWithFD(\n            fd: number | fs.promises.FileHandle,\n            headers?: OutgoingHttpHeaders,\n            options?: ServerStreamFileResponseOptions,\n        ): void;\n        /**\n         * Sends a regular file as the response. The `path` must specify a regular file\n         * or an `'error'` event will be emitted on the `Http2Stream` object.\n         *\n         * When used, the `Http2Stream` object's `Duplex` interface will be closed\n         * automatically.\n         *\n         * The optional `options.statCheck` function may be specified to give user code\n         * an opportunity to set additional content headers based on the `fs.Stat` details\n         * of the given file:\n         *\n         * If an error occurs while attempting to read the file data, the `Http2Stream` will be closed using an\n         * `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.\n         * If the `onError` callback is defined, then it will be called. Otherwise, the stream will be destroyed.\n         *\n         * Example using a file path:\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   function statCheck(stat, headers) {\n         *     headers['last-modified'] = stat.mtime.toUTCString();\n         *   }\n         *\n         *   function onError(err) {\n         *     // stream.respond() can throw if the stream has been destroyed by\n         *     // the other side.\n         *     try {\n         *       if (err.code === 'ENOENT') {\n         *         stream.respond({ ':status': 404 });\n         *       } else {\n         *         stream.respond({ ':status': 500 });\n         *       }\n         *     } catch (err) {\n         *       // Perform actual error handling.\n         *       console.error(err);\n         *     }\n         *     stream.end();\n         *   }\n         *\n         *   stream.respondWithFile('/some/file',\n         *                          { 'content-type': 'text/plain; charset=utf-8' },\n         *                          { statCheck, onError });\n         * });\n         * ```\n         *\n         * The `options.statCheck` function may also be used to cancel the send operation\n         * by returning `false`. For instance, a conditional request may check the stat\n         * results to determine if the file has been modified to return an appropriate `304` response:\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   function statCheck(stat, headers) {\n         *     // Check the stat here...\n         *     stream.respond({ ':status': 304 });\n         *     return false; // Cancel the send operation\n         *   }\n         *   stream.respondWithFile('/some/file',\n         *                          { 'content-type': 'text/plain; charset=utf-8' },\n         *                          { statCheck });\n         * });\n         * ```\n         *\n         * The `content-length` header field will be automatically set.\n         *\n         * The `offset` and `length` options may be used to limit the response to a\n         * specific range subset. This can be used, for instance, to support HTTP Range\n         * requests.\n         *\n         * The `options.onError` function may also be used to handle all the errors\n         * that could happen before the delivery of the file is initiated. The\n         * default behavior is to destroy the stream.\n         *\n         * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event\n         * will be emitted immediately after queuing the last chunk of payload data to be\n         * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing\n         * header fields to the peer.\n         *\n         * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically\n         * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer();\n         * server.on('stream', (stream) => {\n         *   stream.respondWithFile('/some/file',\n         *                          { 'content-type': 'text/plain; charset=utf-8' },\n         *                          { waitForTrailers: true });\n         *   stream.on('wantTrailers', () => {\n         *     stream.sendTrailers({ ABC: 'some value to send' });\n         *   });\n         * });\n         * ```\n         * @since v8.4.0\n         */\n        respondWithFile(\n            path: string,\n            headers?: OutgoingHttpHeaders,\n            options?: ServerStreamFileResponseOptionsWithError,\n        ): void;\n    }\n    // Http2Session\n    export interface Settings {\n        headerTableSize?: number | undefined;\n        enablePush?: boolean | undefined;\n        initialWindowSize?: number | undefined;\n        maxFrameSize?: number | undefined;\n        maxConcurrentStreams?: number | undefined;\n        maxHeaderListSize?: number | undefined;\n        enableConnectProtocol?: boolean | undefined;\n    }\n    export interface ClientSessionRequestOptions {\n        endStream?: boolean | undefined;\n        exclusive?: boolean | undefined;\n        parent?: number | undefined;\n        weight?: number | undefined;\n        waitForTrailers?: boolean | undefined;\n        signal?: AbortSignal | undefined;\n    }\n    export interface SessionState {\n        effectiveLocalWindowSize?: number | undefined;\n        effectiveRecvDataLength?: number | undefined;\n        nextStreamID?: number | undefined;\n        localWindowSize?: number | undefined;\n        lastProcStreamID?: number | undefined;\n        remoteWindowSize?: number | undefined;\n        outboundQueueSize?: number | undefined;\n        deflateDynamicTableSize?: number | undefined;\n        inflateDynamicTableSize?: number | undefined;\n    }\n    export interface Http2Session extends EventEmitter {\n        /**\n         * Value will be `undefined` if the `Http2Session` is not yet connected to a\n         * socket, `h2c` if the `Http2Session` is not connected to a `TLSSocket`, or\n         * will return the value of the connected `TLSSocket`'s own `alpnProtocol` property.\n         * @since v9.4.0\n         */\n        readonly alpnProtocol?: string | undefined;\n        /**\n         * Will be `true` if this `Http2Session` instance has been closed, otherwise `false`.\n         * @since v9.4.0\n         */\n        readonly closed: boolean;\n        /**\n         * Will be `true` if this `Http2Session` instance is still connecting, will be set\n         * to `false` before emitting `connect` event and/or calling the `http2.connect` callback.\n         * @since v10.0.0\n         */\n        readonly connecting: boolean;\n        /**\n         * Will be `true` if this `Http2Session` instance has been destroyed and must no\n         * longer be used, otherwise `false`.\n         * @since v8.4.0\n         */\n        readonly destroyed: boolean;\n        /**\n         * Value is `undefined` if the `Http2Session` session socket has not yet been\n         * connected, `true` if the `Http2Session` is connected with a `TLSSocket`,\n         * and `false` if the `Http2Session` is connected to any other kind of socket\n         * or stream.\n         * @since v9.4.0\n         */\n        readonly encrypted?: boolean | undefined;\n        /**\n         * A prototype-less object describing the current local settings of this `Http2Session`.\n         * The local settings are local to _this_`Http2Session` instance.\n         * @since v8.4.0\n         */\n        readonly localSettings: Settings;\n        /**\n         * If the `Http2Session` is connected to a `TLSSocket`, the `originSet` property\n         * will return an `Array` of origins for which the `Http2Session` may be\n         * considered authoritative.\n         *\n         * The `originSet` property is only available when using a secure TLS connection.\n         * @since v9.4.0\n         */\n        readonly originSet?: string[] | undefined;\n        /**\n         * Indicates whether the `Http2Session` is currently waiting for acknowledgment of\n         * a sent `SETTINGS` frame. Will be `true` after calling the `http2session.settings()` method.\n         * Will be `false` once all sent `SETTINGS` frames have been acknowledged.\n         * @since v8.4.0\n         */\n        readonly pendingSettingsAck: boolean;\n        /**\n         * A prototype-less object describing the current remote settings of this`Http2Session`.\n         * The remote settings are set by the _connected_ HTTP/2 peer.\n         * @since v8.4.0\n         */\n        readonly remoteSettings: Settings;\n        /**\n         * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but\n         * limits available methods to ones safe to use with HTTP/2.\n         *\n         * `destroy`, `emit`, `end`, `pause`, `read`, `resume`, and `write` will throw\n         * an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for more information.\n         *\n         * `setTimeout` method will be called on this `Http2Session`.\n         *\n         * All other interactions will be routed directly to the socket.\n         * @since v8.4.0\n         */\n        readonly socket: net.Socket | tls.TLSSocket;\n        /**\n         * Provides miscellaneous information about the current state of the`Http2Session`.\n         *\n         * An object describing the current status of this `Http2Session`.\n         * @since v8.4.0\n         */\n        readonly state: SessionState;\n        /**\n         * The `http2session.type` will be equal to `http2.constants.NGHTTP2_SESSION_SERVER` if this `Http2Session` instance is a\n         * server, and `http2.constants.NGHTTP2_SESSION_CLIENT` if the instance is a\n         * client.\n         * @since v8.4.0\n         */\n        readonly type: number;\n        /**\n         * Gracefully closes the `Http2Session`, allowing any existing streams to\n         * complete on their own and preventing new `Http2Stream` instances from being\n         * created. Once closed, `http2session.destroy()`_might_ be called if there\n         * are no open `Http2Stream` instances.\n         *\n         * If specified, the `callback` function is registered as a handler for the`'close'` event.\n         * @since v9.4.0\n         */\n        close(callback?: () => void): void;\n        /**\n         * Immediately terminates the `Http2Session` and the associated `net.Socket` or `tls.TLSSocket`.\n         *\n         * Once destroyed, the `Http2Session` will emit the `'close'` event. If `error` is not undefined, an `'error'` event will be emitted immediately before the `'close'` event.\n         *\n         * If there are any remaining open `Http2Streams` associated with the `Http2Session`, those will also be destroyed.\n         * @since v8.4.0\n         * @param error An `Error` object if the `Http2Session` is being destroyed due to an error.\n         * @param code The HTTP/2 error code to send in the final `GOAWAY` frame. If unspecified, and `error` is not undefined, the default is `INTERNAL_ERROR`, otherwise defaults to `NO_ERROR`.\n         */\n        destroy(error?: Error, code?: number): void;\n        /**\n         * Transmits a `GOAWAY` frame to the connected peer _without_ shutting down the`Http2Session`.\n         * @since v9.4.0\n         * @param code An HTTP/2 error code\n         * @param lastStreamID The numeric ID of the last processed `Http2Stream`\n         * @param opaqueData A `TypedArray` or `DataView` instance containing additional data to be carried within the `GOAWAY` frame.\n         */\n        goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void;\n        /**\n         * Sends a `PING` frame to the connected HTTP/2 peer. A `callback` function must\n         * be provided. The method will return `true` if the `PING` was sent, `false` otherwise.\n         *\n         * The maximum number of outstanding (unacknowledged) pings is determined by the `maxOutstandingPings` configuration option. The default maximum is 10.\n         *\n         * If provided, the `payload` must be a `Buffer`, `TypedArray`, or `DataView` containing 8 bytes of data that will be transmitted with the `PING` and\n         * returned with the ping acknowledgment.\n         *\n         * The callback will be invoked with three arguments: an error argument that will\n         * be `null` if the `PING` was successfully acknowledged, a `duration` argument\n         * that reports the number of milliseconds elapsed since the ping was sent and the\n         * acknowledgment was received, and a `Buffer` containing the 8-byte `PING` payload.\n         *\n         * ```js\n         * session.ping(Buffer.from('abcdefgh'), (err, duration, payload) => {\n         *   if (!err) {\n         *     console.log(`Ping acknowledged in ${duration} milliseconds`);\n         *     console.log(`With payload '${payload.toString()}'`);\n         *   }\n         * });\n         * ```\n         *\n         * If the `payload` argument is not specified, the default payload will be the\n         * 64-bit timestamp (little endian) marking the start of the `PING` duration.\n         * @since v8.9.3\n         * @param payload Optional ping payload.\n         */\n        ping(callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean;\n        ping(\n            payload: NodeJS.ArrayBufferView,\n            callback: (err: Error | null, duration: number, payload: Buffer) => void,\n        ): boolean;\n        /**\n         * Calls `ref()` on this `Http2Session` instance's underlying `net.Socket`.\n         * @since v9.4.0\n         */\n        ref(): void;\n        /**\n         * Sets the local endpoint's window size.\n         * The `windowSize` is the total window size to set, not\n         * the delta.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         *\n         * const server = http2.createServer();\n         * const expectedWindowSize = 2 ** 20;\n         * server.on('connect', (session) => {\n         *\n         *   // Set local window size to be 2 ** 20\n         *   session.setLocalWindowSize(expectedWindowSize);\n         * });\n         * ```\n         * @since v15.3.0, v14.18.0\n         */\n        setLocalWindowSize(windowSize: number): void;\n        /**\n         * Used to set a callback function that is called when there is no activity on\n         * the `Http2Session` after `msecs` milliseconds. The given `callback` is\n         * registered as a listener on the `'timeout'` event.\n         * @since v8.4.0\n         */\n        setTimeout(msecs: number, callback?: () => void): void;\n        /**\n         * Updates the current local settings for this `Http2Session` and sends a new `SETTINGS` frame to the connected HTTP/2 peer.\n         *\n         * Once called, the `http2session.pendingSettingsAck` property will be `true` while the session is waiting for the remote peer to acknowledge the new\n         * settings.\n         *\n         * The new settings will not become effective until the `SETTINGS` acknowledgment\n         * is received and the `'localSettings'` event is emitted. It is possible to send\n         * multiple `SETTINGS` frames while acknowledgment is still pending.\n         * @since v8.4.0\n         * @param callback Callback that is called once the session is connected or right away if the session is already connected.\n         */\n        settings(\n            settings: Settings,\n            callback?: (err: Error | null, settings: Settings, duration: number) => void,\n        ): void;\n        /**\n         * Calls `unref()` on this `Http2Session`instance's underlying `net.Socket`.\n         * @since v9.4.0\n         */\n        unref(): void;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(\n            event: \"frameError\",\n            listener: (frameType: number, errorCode: number, streamID: number) => void,\n        ): this;\n        addListener(\n            event: \"goaway\",\n            listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,\n        ): this;\n        addListener(event: \"localSettings\", listener: (settings: Settings) => void): this;\n        addListener(event: \"ping\", listener: () => void): this;\n        addListener(event: \"remoteSettings\", listener: (settings: Settings) => void): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"close\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"frameError\", frameType: number, errorCode: number, streamID: number): boolean;\n        emit(event: \"goaway\", errorCode: number, lastStreamID: number, opaqueData?: Buffer): boolean;\n        emit(event: \"localSettings\", settings: Settings): boolean;\n        emit(event: \"ping\"): boolean;\n        emit(event: \"remoteSettings\", settings: Settings): boolean;\n        emit(event: \"timeout\"): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"frameError\", listener: (frameType: number, errorCode: number, streamID: number) => void): this;\n        on(event: \"goaway\", listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void): this;\n        on(event: \"localSettings\", listener: (settings: Settings) => void): this;\n        on(event: \"ping\", listener: () => void): this;\n        on(event: \"remoteSettings\", listener: (settings: Settings) => void): this;\n        on(event: \"timeout\", listener: () => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"frameError\", listener: (frameType: number, errorCode: number, streamID: number) => void): this;\n        once(event: \"goaway\", listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void): this;\n        once(event: \"localSettings\", listener: (settings: Settings) => void): this;\n        once(event: \"ping\", listener: () => void): this;\n        once(event: \"remoteSettings\", listener: (settings: Settings) => void): this;\n        once(event: \"timeout\", listener: () => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(\n            event: \"frameError\",\n            listener: (frameType: number, errorCode: number, streamID: number) => void,\n        ): this;\n        prependListener(\n            event: \"goaway\",\n            listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,\n        ): this;\n        prependListener(event: \"localSettings\", listener: (settings: Settings) => void): this;\n        prependListener(event: \"ping\", listener: () => void): this;\n        prependListener(event: \"remoteSettings\", listener: (settings: Settings) => void): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(\n            event: \"frameError\",\n            listener: (frameType: number, errorCode: number, streamID: number) => void,\n        ): this;\n        prependOnceListener(\n            event: \"goaway\",\n            listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,\n        ): this;\n        prependOnceListener(event: \"localSettings\", listener: (settings: Settings) => void): this;\n        prependOnceListener(event: \"ping\", listener: () => void): this;\n        prependOnceListener(event: \"remoteSettings\", listener: (settings: Settings) => void): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export interface ClientHttp2Session extends Http2Session {\n        /**\n         * For HTTP/2 Client `Http2Session` instances only, the `http2session.request()` creates and returns an `Http2Stream` instance that can be used to send an\n         * HTTP/2 request to the connected server.\n         *\n         * When a `ClientHttp2Session` is first created, the socket may not yet be\n         * connected. if `clienthttp2session.request()` is called during this time, the\n         * actual request will be deferred until the socket is ready to go.\n         * If the `session` is closed before the actual request be executed, an `ERR_HTTP2_GOAWAY_SESSION` is thrown.\n         *\n         * This method is only available if `http2session.type` is equal to `http2.constants.NGHTTP2_SESSION_CLIENT`.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const clientSession = http2.connect('https://localhost:1234');\n         * const {\n         *   HTTP2_HEADER_PATH,\n         *   HTTP2_HEADER_STATUS,\n         * } = http2.constants;\n         *\n         * const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' });\n         * req.on('response', (headers) => {\n         *   console.log(headers[HTTP2_HEADER_STATUS]);\n         *   req.on('data', (chunk) => { // ..  });\n         *   req.on('end', () => { // ..  });\n         * });\n         * ```\n         *\n         * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event\n         * is emitted immediately after queuing the last chunk of payload data to be sent.\n         * The `http2stream.sendTrailers()` method can then be called to send trailing\n         * headers to the peer.\n         *\n         * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically\n         * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.\n         *\n         * When `options.signal` is set with an `AbortSignal` and then `abort` on the\n         * corresponding `AbortController` is called, the request will emit an `'error'`event with an `AbortError` error.\n         *\n         * The `:method` and `:path` pseudo-headers are not specified within `headers`,\n         * they respectively default to:\n         *\n         * * `:method` \\= `'GET'`\n         * * `:path` \\= `/`\n         * @since v8.4.0\n         */\n        request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream;\n        addListener(event: \"altsvc\", listener: (alt: string, origin: string, stream: number) => void): this;\n        addListener(event: \"origin\", listener: (origins: string[]) => void): this;\n        addListener(\n            event: \"connect\",\n            listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n        ): this;\n        addListener(\n            event: \"stream\",\n            listener: (\n                stream: ClientHttp2Stream,\n                headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n                flags: number,\n            ) => void,\n        ): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"altsvc\", alt: string, origin: string, stream: number): boolean;\n        emit(event: \"origin\", origins: readonly string[]): boolean;\n        emit(event: \"connect\", session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket): boolean;\n        emit(\n            event: \"stream\",\n            stream: ClientHttp2Stream,\n            headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n            flags: number,\n        ): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"altsvc\", listener: (alt: string, origin: string, stream: number) => void): this;\n        on(event: \"origin\", listener: (origins: string[]) => void): this;\n        on(event: \"connect\", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this;\n        on(\n            event: \"stream\",\n            listener: (\n                stream: ClientHttp2Stream,\n                headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n                flags: number,\n            ) => void,\n        ): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"altsvc\", listener: (alt: string, origin: string, stream: number) => void): this;\n        once(event: \"origin\", listener: (origins: string[]) => void): this;\n        once(\n            event: \"connect\",\n            listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n        ): this;\n        once(\n            event: \"stream\",\n            listener: (\n                stream: ClientHttp2Stream,\n                headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n                flags: number,\n            ) => void,\n        ): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"altsvc\", listener: (alt: string, origin: string, stream: number) => void): this;\n        prependListener(event: \"origin\", listener: (origins: string[]) => void): this;\n        prependListener(\n            event: \"connect\",\n            listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n        ): this;\n        prependListener(\n            event: \"stream\",\n            listener: (\n                stream: ClientHttp2Stream,\n                headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n                flags: number,\n            ) => void,\n        ): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"altsvc\", listener: (alt: string, origin: string, stream: number) => void): this;\n        prependOnceListener(event: \"origin\", listener: (origins: string[]) => void): this;\n        prependOnceListener(\n            event: \"connect\",\n            listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n        ): this;\n        prependOnceListener(\n            event: \"stream\",\n            listener: (\n                stream: ClientHttp2Stream,\n                headers: IncomingHttpHeaders & IncomingHttpStatusHeader,\n                flags: number,\n            ) => void,\n        ): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export interface AlternativeServiceOptions {\n        origin: number | string | url.URL;\n    }\n    export interface ServerHttp2Session<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends Http2Session {\n        readonly server:\n            | Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>\n            | Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;\n        /**\n         * Submits an `ALTSVC` frame (as defined by [RFC 7838](https://tools.ietf.org/html/rfc7838)) to the connected client.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         *\n         * const server = http2.createServer();\n         * server.on('session', (session) => {\n         *   // Set altsvc for origin https://example.org:80\n         *   session.altsvc('h2=\":8000\"', 'https://example.org:80');\n         * });\n         *\n         * server.on('stream', (stream) => {\n         *   // Set altsvc for a specific stream\n         *   stream.session.altsvc('h2=\":8000\"', stream.id);\n         * });\n         * ```\n         *\n         * Sending an `ALTSVC` frame with a specific stream ID indicates that the alternate\n         * service is associated with the origin of the given `Http2Stream`.\n         *\n         * The `alt` and origin string _must_ contain only ASCII bytes and are\n         * strictly interpreted as a sequence of ASCII bytes. The special value `'clear'`may be passed to clear any previously set alternative service for a given\n         * domain.\n         *\n         * When a string is passed for the `originOrStream` argument, it will be parsed as\n         * a URL and the origin will be derived. For instance, the origin for the\n         * HTTP URL `'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given string\n         * cannot be parsed as a URL or if a valid origin cannot be derived.\n         *\n         * A `URL` object, or any object with an `origin` property, may be passed as`originOrStream`, in which case the value of the `origin` property will be\n         * used. The value of the `origin` property _must_ be a properly serialized\n         * ASCII origin.\n         * @since v9.4.0\n         * @param alt A description of the alternative service configuration as defined by `RFC 7838`.\n         * @param originOrStream Either a URL string specifying the origin (or an `Object` with an `origin` property) or the numeric identifier of an active `Http2Stream` as given by the\n         * `http2stream.id` property.\n         */\n        altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void;\n        /**\n         * Submits an `ORIGIN` frame (as defined by [RFC 8336](https://tools.ietf.org/html/rfc8336)) to the connected client\n         * to advertise the set of origins for which the server is capable of providing\n         * authoritative responses.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const options = getSecureOptionsSomehow();\n         * const server = http2.createSecureServer(options);\n         * server.on('stream', (stream) => {\n         *   stream.respond();\n         *   stream.end('ok');\n         * });\n         * server.on('session', (session) => {\n         *   session.origin('https://example.com', 'https://example.org');\n         * });\n         * ```\n         *\n         * When a string is passed as an `origin`, it will be parsed as a URL and the\n         * origin will be derived. For instance, the origin for the HTTP URL `'https://example.org/foo/bar'` is the ASCII string` 'https://example.org'`. An error will be thrown if either the given\n         * string\n         * cannot be parsed as a URL or if a valid origin cannot be derived.\n         *\n         * A `URL` object, or any object with an `origin` property, may be passed as\n         * an `origin`, in which case the value of the `origin` property will be\n         * used. The value of the `origin` property _must_ be a properly serialized\n         * ASCII origin.\n         *\n         * Alternatively, the `origins` option may be used when creating a new HTTP/2\n         * server using the `http2.createSecureServer()` method:\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const options = getSecureOptionsSomehow();\n         * options.origins = ['https://example.com', 'https://example.org'];\n         * const server = http2.createSecureServer(options);\n         * server.on('stream', (stream) => {\n         *   stream.respond();\n         *   stream.end('ok');\n         * });\n         * ```\n         * @since v10.12.0\n         * @param origins One or more URL Strings passed as separate arguments.\n         */\n        origin(\n            ...origins: Array<\n                | string\n                | url.URL\n                | {\n                    origin: string;\n                }\n            >\n        ): void;\n        addListener(\n            event: \"connect\",\n            listener: (\n                session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n                socket: net.Socket | tls.TLSSocket,\n            ) => void,\n        ): this;\n        addListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(\n            event: \"connect\",\n            session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n            socket: net.Socket | tls.TLSSocket,\n        ): boolean;\n        emit(event: \"stream\", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(\n            event: \"connect\",\n            listener: (\n                session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n                socket: net.Socket | tls.TLSSocket,\n            ) => void,\n        ): this;\n        on(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(\n            event: \"connect\",\n            listener: (\n                session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n                socket: net.Socket | tls.TLSSocket,\n            ) => void,\n        ): this;\n        once(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(\n            event: \"connect\",\n            listener: (\n                session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n                socket: net.Socket | tls.TLSSocket,\n            ) => void,\n        ): this;\n        prependListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(\n            event: \"connect\",\n            listener: (\n                session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n                socket: net.Socket | tls.TLSSocket,\n            ) => void,\n        ): this;\n        prependOnceListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    // Http2Server\n    export interface SessionOptions {\n        /**\n         * Sets the maximum dynamic table size for deflating header fields.\n         * @default 4Kib\n         */\n        maxDeflateDynamicTableSize?: number | undefined;\n        /**\n         * Sets the maximum number of settings entries per `SETTINGS` frame.\n         * The minimum value allowed is `1`.\n         * @default 32\n         */\n        maxSettings?: number | undefined;\n        /**\n         * Sets the maximum memory that the `Http2Session` is permitted to use.\n         * The value is expressed in terms of number of megabytes, e.g. `1` equal 1 megabyte.\n         * The minimum value allowed is `1`.\n         * This is a credit based limit, existing `Http2Stream`s may cause this limit to be exceeded,\n         * but new `Http2Stream` instances will be rejected while this limit is exceeded.\n         * The current number of `Http2Stream` sessions, the current memory use of the header compression tables,\n         * current data queued to be sent, and unacknowledged `PING` and `SETTINGS` frames are all counted towards the current limit.\n         * @default 10\n         */\n        maxSessionMemory?: number | undefined;\n        /**\n         * Sets the maximum number of header entries.\n         * This is similar to `server.maxHeadersCount` or `request.maxHeadersCount` in the `node:http` module.\n         * The minimum value is `1`.\n         * @default 128\n         */\n        maxHeaderListPairs?: number | undefined;\n        /**\n         * Sets the maximum number of outstanding, unacknowledged pings.\n         * @default 10\n         */\n        maxOutstandingPings?: number | undefined;\n        /**\n         * Sets the maximum allowed size for a serialized, compressed block of headers.\n         * Attempts to send headers that exceed this limit will result in\n         * a `'frameError'` event being emitted and the stream being closed and destroyed.\n         */\n        maxSendHeaderBlockLength?: number | undefined;\n        /**\n         * Strategy used for determining the amount of padding to use for `HEADERS` and `DATA` frames.\n         * @default http2.constants.PADDING_STRATEGY_NONE\n         */\n        paddingStrategy?: number | undefined;\n        /**\n         * Sets the maximum number of concurrent streams for the remote peer as if a `SETTINGS` frame had been received.\n         * Will be overridden if the remote peer sets its own value for `maxConcurrentStreams`.\n         * @default 100\n         */\n        peerMaxConcurrentStreams?: number | undefined;\n        /**\n         * The initial settings to send to the remote peer upon connection.\n         */\n        settings?: Settings | undefined;\n        /**\n         * The array of integer values determines the settings types,\n         * which are included in the `CustomSettings`-property of the received remoteSettings.\n         * Please see the `CustomSettings`-property of the `Http2Settings` object for more information, on the allowed setting types.\n         */\n        remoteCustomSettings?: number[] | undefined;\n        /**\n         * Specifies a timeout in milliseconds that\n         * a server should wait when an [`'unknownProtocol'`][] is emitted. If the\n         * socket has not been destroyed by that time the server will destroy it.\n         * @default 100000\n         */\n        unknownProtocolTimeout?: number | undefined;\n    }\n    export interface ClientSessionOptions extends SessionOptions {\n        /**\n         * Sets the maximum number of reserved push streams the client will accept at any given time.\n         * Once the current number of currently reserved push streams exceeds reaches this limit,\n         * new push streams sent by the server will be automatically rejected.\n         * The minimum allowed value is 0. The maximum allowed value is 2<sup>32</sup>-1.\n         * A negative value sets this option to the maximum allowed value.\n         * @default 200\n         */\n        maxReservedRemoteStreams?: number | undefined;\n        /**\n         * An optional callback that receives the `URL` instance passed to `connect` and the `options` object,\n         * and returns any `Duplex` stream that is to be used as the connection for this session.\n         */\n        createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined;\n        /**\n         * The protocol to connect with, if not set in the `authority`.\n         * Value may be either `'http:'` or `'https:'`.\n         * @default 'https:'\n         */\n        protocol?: \"http:\" | \"https:\" | undefined;\n    }\n    export interface ServerSessionOptions<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends SessionOptions {\n        streamResetBurst?: number | undefined;\n        streamResetRate?: number | undefined;\n        Http1IncomingMessage?: Http1Request | undefined;\n        Http1ServerResponse?: Http1Response | undefined;\n        Http2ServerRequest?: Http2Request | undefined;\n        Http2ServerResponse?: Http2Response | undefined;\n    }\n    export interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions {}\n    export interface SecureServerSessionOptions<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {}\n    export interface ServerOptions<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {}\n    export interface SecureServerOptions<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends SecureServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {\n        allowHTTP1?: boolean | undefined;\n        origins?: string[] | undefined;\n    }\n    interface HTTP2ServerCommon {\n        setTimeout(msec?: number, callback?: () => void): this;\n        /**\n         * Throws ERR_HTTP2_INVALID_SETTING_VALUE for invalid settings values.\n         * Throws ERR_INVALID_ARG_TYPE for invalid settings argument.\n         */\n        updateSettings(settings: Settings): void;\n    }\n    export interface Http2Server<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends net.Server, HTTP2ServerCommon {\n        addListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        addListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        addListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        addListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        addListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(\n            event: \"checkContinue\",\n            request: InstanceType<Http2Request>,\n            response: InstanceType<Http2Response>,\n        ): boolean;\n        emit(event: \"request\", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean;\n        emit(\n            event: \"session\",\n            session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n        ): boolean;\n        emit(event: \"sessionError\", err: Error): boolean;\n        emit(event: \"stream\", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;\n        emit(event: \"timeout\"): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        on(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        on(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        on(event: \"sessionError\", listener: (err: Error) => void): this;\n        on(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        on(event: \"timeout\", listener: () => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        once(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        once(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        once(event: \"sessionError\", listener: (err: Error) => void): this;\n        once(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        once(event: \"timeout\", listener: () => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        prependListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        prependListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependOnceListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependOnceListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        prependOnceListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        prependOnceListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export interface Http2SecureServer<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    > extends tls.Server, HTTP2ServerCommon {\n        addListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        addListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        addListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        addListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        addListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        addListener(event: \"unknownProtocol\", listener: (socket: tls.TLSSocket) => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(\n            event: \"checkContinue\",\n            request: InstanceType<Http2Request>,\n            response: InstanceType<Http2Response>,\n        ): boolean;\n        emit(event: \"request\", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean;\n        emit(\n            event: \"session\",\n            session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,\n        ): boolean;\n        emit(event: \"sessionError\", err: Error): boolean;\n        emit(event: \"stream\", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;\n        emit(event: \"timeout\"): boolean;\n        emit(event: \"unknownProtocol\", socket: tls.TLSSocket): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        on(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        on(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        on(event: \"sessionError\", listener: (err: Error) => void): this;\n        on(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        on(event: \"timeout\", listener: () => void): this;\n        on(event: \"unknownProtocol\", listener: (socket: tls.TLSSocket) => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        once(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        once(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        once(event: \"sessionError\", listener: (err: Error) => void): this;\n        once(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        once(event: \"timeout\", listener: () => void): this;\n        once(event: \"unknownProtocol\", listener: (socket: tls.TLSSocket) => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        prependListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        prependListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependListener(event: \"unknownProtocol\", listener: (socket: tls.TLSSocket) => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(\n            event: \"checkContinue\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependOnceListener(\n            event: \"request\",\n            listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n        ): this;\n        prependOnceListener(\n            event: \"session\",\n            listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,\n        ): this;\n        prependOnceListener(event: \"sessionError\", listener: (err: Error) => void): this;\n        prependOnceListener(\n            event: \"stream\",\n            listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,\n        ): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(event: \"unknownProtocol\", listener: (socket: tls.TLSSocket) => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    /**\n     * A `Http2ServerRequest` object is created by {@link Server} or {@link SecureServer} and passed as the first argument to the `'request'` event. It may be used to access a request status,\n     * headers, and\n     * data.\n     * @since v8.4.0\n     */\n    export class Http2ServerRequest extends stream.Readable {\n        constructor(\n            stream: ServerHttp2Stream,\n            headers: IncomingHttpHeaders,\n            options: stream.ReadableOptions,\n            rawHeaders: readonly string[],\n        );\n        /**\n         * The `request.aborted` property will be `true` if the request has\n         * been aborted.\n         * @since v10.1.0\n         */\n        readonly aborted: boolean;\n        /**\n         * The request authority pseudo header field. Because HTTP/2 allows requests\n         * to set either `:authority` or `host`, this value is derived from `req.headers[':authority']` if present. Otherwise, it is derived from `req.headers['host']`.\n         * @since v8.4.0\n         */\n        readonly authority: string;\n        /**\n         * See `request.socket`.\n         * @since v8.4.0\n         * @deprecated Since v13.0.0 - Use `socket`.\n         */\n        readonly connection: net.Socket | tls.TLSSocket;\n        /**\n         * The `request.complete` property will be `true` if the request has\n         * been completed, aborted, or destroyed.\n         * @since v12.10.0\n         */\n        readonly complete: boolean;\n        /**\n         * The request/response headers object.\n         *\n         * Key-value pairs of header names and values. Header names are lower-cased.\n         *\n         * ```js\n         * // Prints something like:\n         * //\n         * // { 'user-agent': 'curl/7.22.0',\n         * //   host: '127.0.0.1:8000',\n         * //   accept: '*' }\n         * console.log(request.headers);\n         * ```\n         *\n         * See `HTTP/2 Headers Object`.\n         *\n         * In HTTP/2, the request path, host name, protocol, and method are represented as\n         * special headers prefixed with the `:` character (e.g. `':path'`). These special\n         * headers will be included in the `request.headers` object. Care must be taken not\n         * to inadvertently modify these special headers or errors may occur. For instance,\n         * removing all headers from the request will cause errors to occur:\n         *\n         * ```js\n         * removeAllHeaders(request.headers);\n         * assert(request.url);   // Fails because the :path header has been removed\n         * ```\n         * @since v8.4.0\n         */\n        readonly headers: IncomingHttpHeaders;\n        /**\n         * In case of server request, the HTTP version sent by the client. In the case of\n         * client response, the HTTP version of the connected-to server. Returns `'2.0'`.\n         *\n         * Also `message.httpVersionMajor` is the first integer and `message.httpVersionMinor` is the second.\n         * @since v8.4.0\n         */\n        readonly httpVersion: string;\n        readonly httpVersionMinor: number;\n        readonly httpVersionMajor: number;\n        /**\n         * The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`.\n         * @since v8.4.0\n         */\n        readonly method: string;\n        /**\n         * The raw request/response headers list exactly as they were received.\n         *\n         * The keys and values are in the same list. It is _not_ a\n         * list of tuples. So, the even-numbered offsets are key values, and the\n         * odd-numbered offsets are the associated values.\n         *\n         * Header names are not lowercased, and duplicates are not merged.\n         *\n         * ```js\n         * // Prints something like:\n         * //\n         * // [ 'user-agent',\n         * //   'this is invalid because there can be only one',\n         * //   'User-Agent',\n         * //   'curl/7.22.0',\n         * //   'Host',\n         * //   '127.0.0.1:8000',\n         * //   'ACCEPT',\n         * //   '*' ]\n         * console.log(request.rawHeaders);\n         * ```\n         * @since v8.4.0\n         */\n        readonly rawHeaders: string[];\n        /**\n         * The raw request/response trailer keys and values exactly as they were\n         * received. Only populated at the `'end'` event.\n         * @since v8.4.0\n         */\n        readonly rawTrailers: string[];\n        /**\n         * The request scheme pseudo header field indicating the scheme\n         * portion of the target URL.\n         * @since v8.4.0\n         */\n        readonly scheme: string;\n        /**\n         * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but\n         * applies getters, setters, and methods based on HTTP/2 logic.\n         *\n         * `destroyed`, `readable`, and `writable` properties will be retrieved from and\n         * set on `request.stream`.\n         *\n         * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `request.stream`.\n         *\n         * `setTimeout` method will be called on `request.stream.session`.\n         *\n         * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for\n         * more information.\n         *\n         * All other interactions will be routed directly to the socket. With TLS support,\n         * use `request.socket.getPeerCertificate()` to obtain the client's\n         * authentication details.\n         * @since v8.4.0\n         */\n        readonly socket: net.Socket | tls.TLSSocket;\n        /**\n         * The `Http2Stream` object backing the request.\n         * @since v8.4.0\n         */\n        readonly stream: ServerHttp2Stream;\n        /**\n         * The request/response trailers object. Only populated at the `'end'` event.\n         * @since v8.4.0\n         */\n        readonly trailers: IncomingHttpHeaders;\n        /**\n         * Request URL string. This contains only the URL that is present in the actual\n         * HTTP request. If the request is:\n         *\n         * ```http\n         * GET /status?name=ryan HTTP/1.1\n         * Accept: text/plain\n         * ```\n         *\n         * Then `request.url` will be:\n         *\n         * ```js\n         * '/status?name=ryan'\n         * ```\n         *\n         * To parse the url into its parts, `new URL()` can be used:\n         *\n         * ```console\n         * $ node\n         * > new URL('/status?name=ryan', 'http://example.com')\n         * URL {\n         *   href: 'http://example.com/status?name=ryan',\n         *   origin: 'http://example.com',\n         *   protocol: 'http:',\n         *   username: '',\n         *   password: '',\n         *   host: 'example.com',\n         *   hostname: 'example.com',\n         *   port: '',\n         *   pathname: '/status',\n         *   search: '?name=ryan',\n         *   searchParams: URLSearchParams { 'name' => 'ryan' },\n         *   hash: ''\n         * }\n         * ```\n         * @since v8.4.0\n         */\n        url: string;\n        /**\n         * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is\n         * provided, then it is added as a listener on the `'timeout'` event on\n         * the response object.\n         *\n         * If no `'timeout'` listener is added to the request, the response, or\n         * the server, then `Http2Stream`s are destroyed when they time out. If a\n         * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly.\n         * @since v8.4.0\n         */\n        setTimeout(msecs: number, callback?: () => void): void;\n        read(size?: number): Buffer | string | null;\n        addListener(event: \"aborted\", listener: (hadError: boolean, code: number) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        addListener(event: \"end\", listener: () => void): this;\n        addListener(event: \"readable\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"aborted\", hadError: boolean, code: number): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"data\", chunk: Buffer | string): boolean;\n        emit(event: \"end\"): boolean;\n        emit(event: \"readable\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"aborted\", listener: (hadError: boolean, code: number) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        on(event: \"end\", listener: () => void): this;\n        on(event: \"readable\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"aborted\", listener: (hadError: boolean, code: number) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        once(event: \"end\", listener: () => void): this;\n        once(event: \"readable\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"aborted\", listener: (hadError: boolean, code: number) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        prependListener(event: \"end\", listener: () => void): this;\n        prependListener(event: \"readable\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"aborted\", listener: (hadError: boolean, code: number) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"data\", listener: (chunk: Buffer | string) => void): this;\n        prependOnceListener(event: \"end\", listener: () => void): this;\n        prependOnceListener(event: \"readable\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    /**\n     * This object is created internally by an HTTP server, not by the user. It is\n     * passed as the second parameter to the `'request'` event.\n     * @since v8.4.0\n     */\n    export class Http2ServerResponse<Request extends Http2ServerRequest = Http2ServerRequest> extends stream.Writable {\n        constructor(stream: ServerHttp2Stream);\n        /**\n         * See `response.socket`.\n         * @since v8.4.0\n         * @deprecated Since v13.0.0 - Use `socket`.\n         */\n        readonly connection: net.Socket | tls.TLSSocket;\n        /**\n         * Append a single header value to the header object.\n         *\n         * If the value is an array, this is equivalent to calling this method multiple times.\n         *\n         * If there were no previous values for the header, this is equivalent to calling {@link setHeader}.\n         *\n         * Attempting to set a header field name or value that contains invalid characters will result in a\n         * [TypeError](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-typeerror) being thrown.\n         *\n         * ```js\n         * // Returns headers including \"set-cookie: a\" and \"set-cookie: b\"\n         * const server = http2.createServer((req, res) => {\n         *   res.setHeader('set-cookie', 'a');\n         *   res.appendHeader('set-cookie', 'b');\n         *   res.writeHead(200);\n         *   res.end('ok');\n         * });\n         * ```\n         * @since v20.12.0\n         */\n        appendHeader(name: string, value: string | string[]): void;\n        /**\n         * Boolean value that indicates whether the response has completed. Starts\n         * as `false`. After `response.end()` executes, the value will be `true`.\n         * @since v8.4.0\n         * @deprecated Since v13.4.0,v12.16.0 - Use `writableEnded`.\n         */\n        readonly finished: boolean;\n        /**\n         * True if headers were sent, false otherwise (read-only).\n         * @since v8.4.0\n         */\n        readonly headersSent: boolean;\n        /**\n         * A reference to the original HTTP2 `request` object.\n         * @since v15.7.0\n         */\n        readonly req: Request;\n        /**\n         * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but\n         * applies getters, setters, and methods based on HTTP/2 logic.\n         *\n         * `destroyed`, `readable`, and `writable` properties will be retrieved from and\n         * set on `response.stream`.\n         *\n         * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `response.stream`.\n         *\n         * `setTimeout` method will be called on `response.stream.session`.\n         *\n         * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for\n         * more information.\n         *\n         * All other interactions will be routed directly to the socket.\n         *\n         * ```js\n         * import http2 from 'node:http2';\n         * const server = http2.createServer((req, res) => {\n         *   const ip = req.socket.remoteAddress;\n         *   const port = req.socket.remotePort;\n         *   res.end(`Your IP address is ${ip} and your source port is ${port}.`);\n         * }).listen(3000);\n         * ```\n         * @since v8.4.0\n         */\n        readonly socket: net.Socket | tls.TLSSocket;\n        /**\n         * The `Http2Stream` object backing the response.\n         * @since v8.4.0\n         */\n        readonly stream: ServerHttp2Stream;\n        /**\n         * When true, the Date header will be automatically generated and sent in\n         * the response if it is not already present in the headers. Defaults to true.\n         *\n         * This should only be disabled for testing; HTTP requires the Date header\n         * in responses.\n         * @since v8.4.0\n         */\n        sendDate: boolean;\n        /**\n         * When using implicit headers (not calling `response.writeHead()` explicitly),\n         * this property controls the status code that will be sent to the client when\n         * the headers get flushed.\n         *\n         * ```js\n         * response.statusCode = 404;\n         * ```\n         *\n         * After response header was sent to the client, this property indicates the\n         * status code which was sent out.\n         * @since v8.4.0\n         */\n        statusCode: number;\n        /**\n         * Status message is not supported by HTTP/2 (RFC 7540 8.1.2.4). It returns\n         * an empty string.\n         * @since v8.4.0\n         */\n        statusMessage: \"\";\n        /**\n         * This method adds HTTP trailing headers (a header but at the end of the\n         * message) to the response.\n         *\n         * Attempting to set a header field name or value that contains invalid characters\n         * will result in a `TypeError` being thrown.\n         * @since v8.4.0\n         */\n        addTrailers(trailers: OutgoingHttpHeaders): void;\n        /**\n         * This method signals to the server that all of the response headers and body\n         * have been sent; that server should consider this message complete.\n         * The method, `response.end()`, MUST be called on each response.\n         *\n         * If `data` is specified, it is equivalent to calling `response.write(data, encoding)` followed by `response.end(callback)`.\n         *\n         * If `callback` is specified, it will be called when the response stream\n         * is finished.\n         * @since v8.4.0\n         */\n        end(callback?: () => void): this;\n        end(data: string | Uint8Array, callback?: () => void): this;\n        end(data: string | Uint8Array, encoding: BufferEncoding, callback?: () => void): this;\n        /**\n         * Reads out a header that has already been queued but not sent to the client.\n         * The name is case-insensitive.\n         *\n         * ```js\n         * const contentType = response.getHeader('content-type');\n         * ```\n         * @since v8.4.0\n         */\n        getHeader(name: string): string;\n        /**\n         * Returns an array containing the unique names of the current outgoing headers.\n         * All header names are lowercase.\n         *\n         * ```js\n         * response.setHeader('Foo', 'bar');\n         * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);\n         *\n         * const headerNames = response.getHeaderNames();\n         * // headerNames === ['foo', 'set-cookie']\n         * ```\n         * @since v8.4.0\n         */\n        getHeaderNames(): string[];\n        /**\n         * Returns a shallow copy of the current outgoing headers. Since a shallow copy\n         * is used, array values may be mutated without additional calls to various\n         * header-related http module methods. The keys of the returned object are the\n         * header names and the values are the respective header values. All header names\n         * are lowercase.\n         *\n         * The object returned by the `response.getHeaders()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`,\n         * `obj.hasOwnProperty()`, and others\n         * are not defined and _will not work_.\n         *\n         * ```js\n         * response.setHeader('Foo', 'bar');\n         * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);\n         *\n         * const headers = response.getHeaders();\n         * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] }\n         * ```\n         * @since v8.4.0\n         */\n        getHeaders(): OutgoingHttpHeaders;\n        /**\n         * Returns `true` if the header identified by `name` is currently set in the\n         * outgoing headers. The header name matching is case-insensitive.\n         *\n         * ```js\n         * const hasContentType = response.hasHeader('content-type');\n         * ```\n         * @since v8.4.0\n         */\n        hasHeader(name: string): boolean;\n        /**\n         * Removes a header that has been queued for implicit sending.\n         *\n         * ```js\n         * response.removeHeader('Content-Encoding');\n         * ```\n         * @since v8.4.0\n         */\n        removeHeader(name: string): void;\n        /**\n         * Sets a single header value for implicit headers. If this header already exists\n         * in the to-be-sent headers, its value will be replaced. Use an array of strings\n         * here to send multiple headers with the same name.\n         *\n         * ```js\n         * response.setHeader('Content-Type', 'text/html; charset=utf-8');\n         * ```\n         *\n         * or\n         *\n         * ```js\n         * response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']);\n         * ```\n         *\n         * Attempting to set a header field name or value that contains invalid characters\n         * will result in a `TypeError` being thrown.\n         *\n         * When headers have been set with `response.setHeader()`, they will be merged\n         * with any headers passed to `response.writeHead()`, with the headers passed\n         * to `response.writeHead()` given precedence.\n         *\n         * ```js\n         * // Returns content-type = text/plain\n         * const server = http2.createServer((req, res) => {\n         *   res.setHeader('Content-Type', 'text/html; charset=utf-8');\n         *   res.setHeader('X-Foo', 'bar');\n         *   res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });\n         *   res.end('ok');\n         * });\n         * ```\n         * @since v8.4.0\n         */\n        setHeader(name: string, value: number | string | readonly string[]): void;\n        /**\n         * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is\n         * provided, then it is added as a listener on the `'timeout'` event on\n         * the response object.\n         *\n         * If no `'timeout'` listener is added to the request, the response, or\n         * the server, then `Http2Stream` s are destroyed when they time out. If a\n         * handler is assigned to the request, the response, or the server's `'timeout'` events, timed out sockets must be handled explicitly.\n         * @since v8.4.0\n         */\n        setTimeout(msecs: number, callback?: () => void): void;\n        /**\n         * If this method is called and `response.writeHead()` has not been called,\n         * it will switch to implicit header mode and flush the implicit headers.\n         *\n         * This sends a chunk of the response body. This method may\n         * be called multiple times to provide successive parts of the body.\n         *\n         * In the `node:http` module, the response body is omitted when the\n         * request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body.\n         *\n         * `chunk` can be a string or a buffer. If `chunk` is a string,\n         * the second parameter specifies how to encode it into a byte stream.\n         * By default the `encoding` is `'utf8'`. `callback` will be called when this chunk\n         * of data is flushed.\n         *\n         * This is the raw HTTP body and has nothing to do with higher-level multi-part\n         * body encodings that may be used.\n         *\n         * The first time `response.write()` is called, it will send the buffered\n         * header information and the first chunk of the body to the client. The second\n         * time `response.write()` is called, Node.js assumes data will be streamed,\n         * and sends the new data separately. That is, the response is buffered up to the\n         * first chunk of the body.\n         *\n         * Returns `true` if the entire data was flushed successfully to the kernel\n         * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is free again.\n         * @since v8.4.0\n         */\n        write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean;\n        write(chunk: string | Uint8Array, encoding: BufferEncoding, callback?: (err: Error) => void): boolean;\n        /**\n         * Sends a status `100 Continue` to the client, indicating that the request body\n         * should be sent. See the `'checkContinue'` event on `Http2Server` and `Http2SecureServer`.\n         * @since v8.4.0\n         */\n        writeContinue(): void;\n        /**\n         * Sends a status `103 Early Hints` to the client with a Link header,\n         * indicating that the user agent can preload/preconnect the linked resources.\n         * The `hints` is an object containing the values of headers to be sent with\n         * early hints message.\n         *\n         * **Example**\n         *\n         * ```js\n         * const earlyHintsLink = '</styles.css>; rel=preload; as=style';\n         * response.writeEarlyHints({\n         *   'link': earlyHintsLink,\n         * });\n         *\n         * const earlyHintsLinks = [\n         *   '</styles.css>; rel=preload; as=style',\n         *   '</scripts.js>; rel=preload; as=script',\n         * ];\n         * response.writeEarlyHints({\n         *   'link': earlyHintsLinks,\n         * });\n         * ```\n         * @since v18.11.0\n         */\n        writeEarlyHints(hints: Record<string, string | string[]>): void;\n        /**\n         * Sends a response header to the request. The status code is a 3-digit HTTP\n         * status code, like `404`. The last argument, `headers`, are the response headers.\n         *\n         * Returns a reference to the `Http2ServerResponse`, so that calls can be chained.\n         *\n         * For compatibility with `HTTP/1`, a human-readable `statusMessage` may be\n         * passed as the second argument. However, because the `statusMessage` has no\n         * meaning within HTTP/2, the argument will have no effect and a process warning\n         * will be emitted.\n         *\n         * ```js\n         * const body = 'hello world';\n         * response.writeHead(200, {\n         *   'Content-Length': Buffer.byteLength(body),\n         *   'Content-Type': 'text/plain; charset=utf-8',\n         * });\n         * ```\n         *\n         * `Content-Length` is given in bytes not characters. The`Buffer.byteLength()` API may be used to determine the number of bytes in a\n         * given encoding. On outbound messages, Node.js does not check if Content-Length\n         * and the length of the body being transmitted are equal or not. However, when\n         * receiving messages, Node.js will automatically reject messages when the `Content-Length` does not match the actual payload size.\n         *\n         * This method may be called at most one time on a message before `response.end()` is called.\n         *\n         * If `response.write()` or `response.end()` are called before calling\n         * this, the implicit/mutable headers will be calculated and call this function.\n         *\n         * When headers have been set with `response.setHeader()`, they will be merged\n         * with any headers passed to `response.writeHead()`, with the headers passed\n         * to `response.writeHead()` given precedence.\n         *\n         * ```js\n         * // Returns content-type = text/plain\n         * const server = http2.createServer((req, res) => {\n         *   res.setHeader('Content-Type', 'text/html; charset=utf-8');\n         *   res.setHeader('X-Foo', 'bar');\n         *   res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });\n         *   res.end('ok');\n         * });\n         * ```\n         *\n         * Attempting to set a header field name or value that contains invalid characters\n         * will result in a `TypeError` being thrown.\n         * @since v8.4.0\n         */\n        writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this;\n        writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders): this;\n        /**\n         * Call `http2stream.pushStream()` with the given headers, and wrap the\n         * given `Http2Stream` on a newly created `Http2ServerResponse` as the callback\n         * parameter if successful. When `Http2ServerRequest` is closed, the callback is\n         * called with an error `ERR_HTTP2_INVALID_STREAM`.\n         * @since v8.4.0\n         * @param headers An object describing the headers\n         * @param callback Called once `http2stream.pushStream()` is finished, or either when the attempt to create the pushed `Http2Stream` has failed or has been rejected, or the state of\n         * `Http2ServerRequest` is closed prior to calling the `http2stream.pushStream()` method\n         */\n        createPushResponse(\n            headers: OutgoingHttpHeaders,\n            callback: (err: Error | null, res: Http2ServerResponse) => void,\n        ): void;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"drain\", listener: () => void): this;\n        addListener(event: \"error\", listener: (error: Error) => void): this;\n        addListener(event: \"finish\", listener: () => void): this;\n        addListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"close\"): boolean;\n        emit(event: \"drain\"): boolean;\n        emit(event: \"error\", error: Error): boolean;\n        emit(event: \"finish\"): boolean;\n        emit(event: \"pipe\", src: stream.Readable): boolean;\n        emit(event: \"unpipe\", src: stream.Readable): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"drain\", listener: () => void): this;\n        on(event: \"error\", listener: (error: Error) => void): this;\n        on(event: \"finish\", listener: () => void): this;\n        on(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        on(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"drain\", listener: () => void): this;\n        once(event: \"error\", listener: (error: Error) => void): this;\n        once(event: \"finish\", listener: () => void): this;\n        once(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        once(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"drain\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (error: Error) => void): this;\n        prependListener(event: \"finish\", listener: () => void): this;\n        prependListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"drain\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (error: Error) => void): this;\n        prependOnceListener(event: \"finish\", listener: () => void): this;\n        prependOnceListener(event: \"pipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: \"unpipe\", listener: (src: stream.Readable) => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    export namespace constants {\n        const NGHTTP2_SESSION_SERVER: number;\n        const NGHTTP2_SESSION_CLIENT: number;\n        const NGHTTP2_STREAM_STATE_IDLE: number;\n        const NGHTTP2_STREAM_STATE_OPEN: number;\n        const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number;\n        const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number;\n        const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number;\n        const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number;\n        const NGHTTP2_STREAM_STATE_CLOSED: number;\n        const NGHTTP2_NO_ERROR: number;\n        const NGHTTP2_PROTOCOL_ERROR: number;\n        const NGHTTP2_INTERNAL_ERROR: number;\n        const NGHTTP2_FLOW_CONTROL_ERROR: number;\n        const NGHTTP2_SETTINGS_TIMEOUT: number;\n        const NGHTTP2_STREAM_CLOSED: number;\n        const NGHTTP2_FRAME_SIZE_ERROR: number;\n        const NGHTTP2_REFUSED_STREAM: number;\n        const NGHTTP2_CANCEL: number;\n        const NGHTTP2_COMPRESSION_ERROR: number;\n        const NGHTTP2_CONNECT_ERROR: number;\n        const NGHTTP2_ENHANCE_YOUR_CALM: number;\n        const NGHTTP2_INADEQUATE_SECURITY: number;\n        const NGHTTP2_HTTP_1_1_REQUIRED: number;\n        const NGHTTP2_ERR_FRAME_SIZE_ERROR: number;\n        const NGHTTP2_FLAG_NONE: number;\n        const NGHTTP2_FLAG_END_STREAM: number;\n        const NGHTTP2_FLAG_END_HEADERS: number;\n        const NGHTTP2_FLAG_ACK: number;\n        const NGHTTP2_FLAG_PADDED: number;\n        const NGHTTP2_FLAG_PRIORITY: number;\n        const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number;\n        const DEFAULT_SETTINGS_ENABLE_PUSH: number;\n        const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number;\n        const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number;\n        const MAX_MAX_FRAME_SIZE: number;\n        const MIN_MAX_FRAME_SIZE: number;\n        const MAX_INITIAL_WINDOW_SIZE: number;\n        const NGHTTP2_DEFAULT_WEIGHT: number;\n        const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number;\n        const NGHTTP2_SETTINGS_ENABLE_PUSH: number;\n        const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number;\n        const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number;\n        const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number;\n        const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number;\n        const PADDING_STRATEGY_NONE: number;\n        const PADDING_STRATEGY_MAX: number;\n        const PADDING_STRATEGY_CALLBACK: number;\n        const HTTP2_HEADER_STATUS: string;\n        const HTTP2_HEADER_METHOD: string;\n        const HTTP2_HEADER_AUTHORITY: string;\n        const HTTP2_HEADER_SCHEME: string;\n        const HTTP2_HEADER_PATH: string;\n        const HTTP2_HEADER_ACCEPT_CHARSET: string;\n        const HTTP2_HEADER_ACCEPT_ENCODING: string;\n        const HTTP2_HEADER_ACCEPT_LANGUAGE: string;\n        const HTTP2_HEADER_ACCEPT_RANGES: string;\n        const HTTP2_HEADER_ACCEPT: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_CREDENTIALS: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_HEADERS: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_METHODS: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_EXPOSE_HEADERS: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_HEADERS: string;\n        const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_METHOD: string;\n        const HTTP2_HEADER_AGE: string;\n        const HTTP2_HEADER_ALLOW: string;\n        const HTTP2_HEADER_AUTHORIZATION: string;\n        const HTTP2_HEADER_CACHE_CONTROL: string;\n        const HTTP2_HEADER_CONNECTION: string;\n        const HTTP2_HEADER_CONTENT_DISPOSITION: string;\n        const HTTP2_HEADER_CONTENT_ENCODING: string;\n        const HTTP2_HEADER_CONTENT_LANGUAGE: string;\n        const HTTP2_HEADER_CONTENT_LENGTH: string;\n        const HTTP2_HEADER_CONTENT_LOCATION: string;\n        const HTTP2_HEADER_CONTENT_MD5: string;\n        const HTTP2_HEADER_CONTENT_RANGE: string;\n        const HTTP2_HEADER_CONTENT_TYPE: string;\n        const HTTP2_HEADER_COOKIE: string;\n        const HTTP2_HEADER_DATE: string;\n        const HTTP2_HEADER_ETAG: string;\n        const HTTP2_HEADER_EXPECT: string;\n        const HTTP2_HEADER_EXPIRES: string;\n        const HTTP2_HEADER_FROM: string;\n        const HTTP2_HEADER_HOST: string;\n        const HTTP2_HEADER_IF_MATCH: string;\n        const HTTP2_HEADER_IF_MODIFIED_SINCE: string;\n        const HTTP2_HEADER_IF_NONE_MATCH: string;\n        const HTTP2_HEADER_IF_RANGE: string;\n        const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string;\n        const HTTP2_HEADER_LAST_MODIFIED: string;\n        const HTTP2_HEADER_LINK: string;\n        const HTTP2_HEADER_LOCATION: string;\n        const HTTP2_HEADER_MAX_FORWARDS: string;\n        const HTTP2_HEADER_PREFER: string;\n        const HTTP2_HEADER_PROXY_AUTHENTICATE: string;\n        const HTTP2_HEADER_PROXY_AUTHORIZATION: string;\n        const HTTP2_HEADER_RANGE: string;\n        const HTTP2_HEADER_REFERER: string;\n        const HTTP2_HEADER_REFRESH: string;\n        const HTTP2_HEADER_RETRY_AFTER: string;\n        const HTTP2_HEADER_SERVER: string;\n        const HTTP2_HEADER_SET_COOKIE: string;\n        const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string;\n        const HTTP2_HEADER_TRANSFER_ENCODING: string;\n        const HTTP2_HEADER_TE: string;\n        const HTTP2_HEADER_UPGRADE: string;\n        const HTTP2_HEADER_USER_AGENT: string;\n        const HTTP2_HEADER_VARY: string;\n        const HTTP2_HEADER_VIA: string;\n        const HTTP2_HEADER_WWW_AUTHENTICATE: string;\n        const HTTP2_HEADER_HTTP2_SETTINGS: string;\n        const HTTP2_HEADER_KEEP_ALIVE: string;\n        const HTTP2_HEADER_PROXY_CONNECTION: string;\n        const HTTP2_METHOD_ACL: string;\n        const HTTP2_METHOD_BASELINE_CONTROL: string;\n        const HTTP2_METHOD_BIND: string;\n        const HTTP2_METHOD_CHECKIN: string;\n        const HTTP2_METHOD_CHECKOUT: string;\n        const HTTP2_METHOD_CONNECT: string;\n        const HTTP2_METHOD_COPY: string;\n        const HTTP2_METHOD_DELETE: string;\n        const HTTP2_METHOD_GET: string;\n        const HTTP2_METHOD_HEAD: string;\n        const HTTP2_METHOD_LABEL: string;\n        const HTTP2_METHOD_LINK: string;\n        const HTTP2_METHOD_LOCK: string;\n        const HTTP2_METHOD_MERGE: string;\n        const HTTP2_METHOD_MKACTIVITY: string;\n        const HTTP2_METHOD_MKCALENDAR: string;\n        const HTTP2_METHOD_MKCOL: string;\n        const HTTP2_METHOD_MKREDIRECTREF: string;\n        const HTTP2_METHOD_MKWORKSPACE: string;\n        const HTTP2_METHOD_MOVE: string;\n        const HTTP2_METHOD_OPTIONS: string;\n        const HTTP2_METHOD_ORDERPATCH: string;\n        const HTTP2_METHOD_PATCH: string;\n        const HTTP2_METHOD_POST: string;\n        const HTTP2_METHOD_PRI: string;\n        const HTTP2_METHOD_PROPFIND: string;\n        const HTTP2_METHOD_PROPPATCH: string;\n        const HTTP2_METHOD_PUT: string;\n        const HTTP2_METHOD_REBIND: string;\n        const HTTP2_METHOD_REPORT: string;\n        const HTTP2_METHOD_SEARCH: string;\n        const HTTP2_METHOD_TRACE: string;\n        const HTTP2_METHOD_UNBIND: string;\n        const HTTP2_METHOD_UNCHECKOUT: string;\n        const HTTP2_METHOD_UNLINK: string;\n        const HTTP2_METHOD_UNLOCK: string;\n        const HTTP2_METHOD_UPDATE: string;\n        const HTTP2_METHOD_UPDATEREDIRECTREF: string;\n        const HTTP2_METHOD_VERSION_CONTROL: string;\n        const HTTP_STATUS_CONTINUE: number;\n        const HTTP_STATUS_SWITCHING_PROTOCOLS: number;\n        const HTTP_STATUS_PROCESSING: number;\n        const HTTP_STATUS_OK: number;\n        const HTTP_STATUS_CREATED: number;\n        const HTTP_STATUS_ACCEPTED: number;\n        const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number;\n        const HTTP_STATUS_NO_CONTENT: number;\n        const HTTP_STATUS_RESET_CONTENT: number;\n        const HTTP_STATUS_PARTIAL_CONTENT: number;\n        const HTTP_STATUS_MULTI_STATUS: number;\n        const HTTP_STATUS_ALREADY_REPORTED: number;\n        const HTTP_STATUS_IM_USED: number;\n        const HTTP_STATUS_MULTIPLE_CHOICES: number;\n        const HTTP_STATUS_MOVED_PERMANENTLY: number;\n        const HTTP_STATUS_FOUND: number;\n        const HTTP_STATUS_SEE_OTHER: number;\n        const HTTP_STATUS_NOT_MODIFIED: number;\n        const HTTP_STATUS_USE_PROXY: number;\n        const HTTP_STATUS_TEMPORARY_REDIRECT: number;\n        const HTTP_STATUS_PERMANENT_REDIRECT: number;\n        const HTTP_STATUS_BAD_REQUEST: number;\n        const HTTP_STATUS_UNAUTHORIZED: number;\n        const HTTP_STATUS_PAYMENT_REQUIRED: number;\n        const HTTP_STATUS_FORBIDDEN: number;\n        const HTTP_STATUS_NOT_FOUND: number;\n        const HTTP_STATUS_METHOD_NOT_ALLOWED: number;\n        const HTTP_STATUS_NOT_ACCEPTABLE: number;\n        const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number;\n        const HTTP_STATUS_REQUEST_TIMEOUT: number;\n        const HTTP_STATUS_CONFLICT: number;\n        const HTTP_STATUS_GONE: number;\n        const HTTP_STATUS_LENGTH_REQUIRED: number;\n        const HTTP_STATUS_PRECONDITION_FAILED: number;\n        const HTTP_STATUS_PAYLOAD_TOO_LARGE: number;\n        const HTTP_STATUS_URI_TOO_LONG: number;\n        const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number;\n        const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number;\n        const HTTP_STATUS_EXPECTATION_FAILED: number;\n        const HTTP_STATUS_TEAPOT: number;\n        const HTTP_STATUS_MISDIRECTED_REQUEST: number;\n        const HTTP_STATUS_UNPROCESSABLE_ENTITY: number;\n        const HTTP_STATUS_LOCKED: number;\n        const HTTP_STATUS_FAILED_DEPENDENCY: number;\n        const HTTP_STATUS_UNORDERED_COLLECTION: number;\n        const HTTP_STATUS_UPGRADE_REQUIRED: number;\n        const HTTP_STATUS_PRECONDITION_REQUIRED: number;\n        const HTTP_STATUS_TOO_MANY_REQUESTS: number;\n        const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number;\n        const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number;\n        const HTTP_STATUS_INTERNAL_SERVER_ERROR: number;\n        const HTTP_STATUS_NOT_IMPLEMENTED: number;\n        const HTTP_STATUS_BAD_GATEWAY: number;\n        const HTTP_STATUS_SERVICE_UNAVAILABLE: number;\n        const HTTP_STATUS_GATEWAY_TIMEOUT: number;\n        const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number;\n        const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number;\n        const HTTP_STATUS_INSUFFICIENT_STORAGE: number;\n        const HTTP_STATUS_LOOP_DETECTED: number;\n        const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number;\n        const HTTP_STATUS_NOT_EXTENDED: number;\n        const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number;\n    }\n    /**\n     * This symbol can be set as a property on the HTTP/2 headers object with\n     * an array value in order to provide a list of headers considered sensitive.\n     */\n    export const sensitiveHeaders: symbol;\n    /**\n     * Returns an object containing the default settings for an `Http2Session` instance. This method returns a new object instance every time it is called\n     * so instances returned may be safely modified for use.\n     * @since v8.4.0\n     */\n    export function getDefaultSettings(): Settings;\n    /**\n     * Returns a `Buffer` instance containing serialized representation of the given\n     * HTTP/2 settings as specified in the [HTTP/2](https://tools.ietf.org/html/rfc7540) specification. This is intended\n     * for use with the `HTTP2-Settings` header field.\n     *\n     * ```js\n     * import http2 from 'node:http2';\n     *\n     * const packed = http2.getPackedSettings({ enablePush: false });\n     *\n     * console.log(packed.toString('base64'));\n     * // Prints: AAIAAAAA\n     * ```\n     * @since v8.4.0\n     */\n    export function getPackedSettings(settings: Settings): Buffer;\n    /**\n     * Returns a `HTTP/2 Settings Object` containing the deserialized settings from\n     * the given `Buffer` as generated by `http2.getPackedSettings()`.\n     * @since v8.4.0\n     * @param buf The packed settings.\n     */\n    export function getUnpackedSettings(buf: Uint8Array): Settings;\n    /**\n     * Returns a `net.Server` instance that creates and manages `Http2Session` instances.\n     *\n     * Since there are no browsers known that support [unencrypted HTTP/2](https://http2.github.io/faq/#does-http2-require-encryption), the use of {@link createSecureServer} is necessary when\n     * communicating\n     * with browser clients.\n     *\n     * ```js\n     * import http2 from 'node:http2';\n     *\n     * // Create an unencrypted HTTP/2 server.\n     * // Since there are no browsers known that support\n     * // unencrypted HTTP/2, the use of `http2.createSecureServer()`\n     * // is necessary when communicating with browser clients.\n     * const server = http2.createServer();\n     *\n     * server.on('stream', (stream, headers) => {\n     *   stream.respond({\n     *     'content-type': 'text/html; charset=utf-8',\n     *     ':status': 200,\n     *   });\n     *   stream.end('<h1>Hello World</h1>');\n     * });\n     *\n     * server.listen(8000);\n     * ```\n     * @since v8.4.0\n     * @param onRequestHandler See `Compatibility API`\n     */\n    export function createServer(\n        onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,\n    ): Http2Server;\n    export function createServer<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    >(\n        options: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,\n        onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n    ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>;\n    /**\n     * Returns a `tls.Server` instance that creates and manages `Http2Session` instances.\n     *\n     * ```js\n     * import http2 from 'node:http2';\n     * import fs from 'node:fs';\n     *\n     * const options = {\n     *   key: fs.readFileSync('server-key.pem'),\n     *   cert: fs.readFileSync('server-cert.pem'),\n     * };\n     *\n     * // Create a secure HTTP/2 server\n     * const server = http2.createSecureServer(options);\n     *\n     * server.on('stream', (stream, headers) => {\n     *   stream.respond({\n     *     'content-type': 'text/html; charset=utf-8',\n     *     ':status': 200,\n     *   });\n     *   stream.end('<h1>Hello World</h1>');\n     * });\n     *\n     * server.listen(8443);\n     * ```\n     * @since v8.4.0\n     * @param onRequestHandler See `Compatibility API`\n     */\n    export function createSecureServer(\n        onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,\n    ): Http2SecureServer;\n    export function createSecureServer<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    >(\n        options: SecureServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,\n        onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,\n    ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;\n    /**\n     * Returns a `ClientHttp2Session` instance.\n     *\n     * ```js\n     * import http2 from 'node:http2';\n     * const client = http2.connect('https://localhost:1234');\n     *\n     * // Use the client\n     *\n     * client.close();\n     * ```\n     * @since v8.4.0\n     * @param authority The remote HTTP/2 server to connect to. This must be in the form of a minimal, valid URL with the `http://` or `https://` prefix, host name, and IP port (if a non-default port\n     * is used). Userinfo (user ID and password), path, querystring, and fragment details in the URL will be ignored.\n     * @param listener Will be registered as a one-time listener of the {@link 'connect'} event.\n     */\n    export function connect(\n        authority: string | url.URL,\n        listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n    ): ClientHttp2Session;\n    export function connect(\n        authority: string | url.URL,\n        options?: ClientSessionOptions | SecureClientSessionOptions,\n        listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,\n    ): ClientHttp2Session;\n    /**\n     * Create an HTTP/2 server session from an existing socket.\n     * @param socket A Duplex Stream\n     * @param options Any `{@link createServer}` options can be provided.\n     * @since v20.12.0\n     */\n    export function performServerHandshake<\n        Http1Request extends typeof IncomingMessage = typeof IncomingMessage,\n        Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,\n        Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,\n        Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,\n    >(\n        socket: stream.Duplex,\n        options?: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,\n    ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>;\n}\ndeclare module \"node:http2\" {\n    export * from \"http2\";\n}\n",
    "node_modules/@types/node/https.d.ts": "/**\n * HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a\n * separate module.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/https.js)\n */\ndeclare module \"https\" {\n    import { Duplex } from \"node:stream\";\n    import * as tls from \"node:tls\";\n    import * as http from \"node:http\";\n    import { URL } from \"node:url\";\n    type ServerOptions<\n        Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,\n        Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,\n    > = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions<Request, Response>;\n    type RequestOptions =\n        & http.RequestOptions\n        & tls.SecureContextOptions\n        & {\n            checkServerIdentity?:\n                | ((hostname: string, cert: tls.DetailedPeerCertificate) => Error | undefined)\n                | undefined;\n            rejectUnauthorized?: boolean | undefined; // Defaults to true\n            servername?: string | undefined; // SNI TLS Extension\n        };\n    interface AgentOptions extends http.AgentOptions, tls.ConnectionOptions {\n        maxCachedSessions?: number | undefined;\n    }\n    /**\n     * An `Agent` object for HTTPS similar to `http.Agent`. See {@link request} for more information.\n     * @since v0.4.5\n     */\n    class Agent extends http.Agent {\n        constructor(options?: AgentOptions);\n        options: AgentOptions;\n    }\n    interface Server<\n        Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,\n        Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,\n    > extends http.Server<Request, Response> {}\n    /**\n     * See `http.Server` for more information.\n     * @since v0.3.4\n     */\n    class Server<\n        Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,\n        Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,\n    > extends tls.Server {\n        constructor(requestListener?: http.RequestListener<Request, Response>);\n        constructor(\n            options: ServerOptions<Request, Response>,\n            requestListener?: http.RequestListener<Request, Response>,\n        );\n        /**\n         * Closes all connections connected to this server.\n         * @since v18.2.0\n         */\n        closeAllConnections(): void;\n        /**\n         * Closes all connections connected to this server which are not sending a request or waiting for a response.\n         * @since v18.2.0\n         */\n        closeIdleConnections(): void;\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;\n        addListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void,\n        ): this;\n        addListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        addListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void,\n        ): this;\n        addListener(event: \"secureConnection\", listener: (tlsSocket: tls.TLSSocket) => void): this;\n        addListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"connection\", listener: (socket: Duplex) => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"listening\", listener: () => void): this;\n        addListener(event: \"checkContinue\", listener: http.RequestListener<Request, Response>): this;\n        addListener(event: \"checkExpectation\", listener: http.RequestListener<Request, Response>): this;\n        addListener(event: \"clientError\", listener: (err: Error, socket: Duplex) => void): this;\n        addListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n        addListener(event: \"request\", listener: http.RequestListener<Request, Response>): this;\n        addListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n        emit(event: string, ...args: any[]): boolean;\n        emit(event: \"keylog\", line: Buffer, tlsSocket: tls.TLSSocket): boolean;\n        emit(\n            event: \"newSession\",\n            sessionId: Buffer,\n            sessionData: Buffer,\n            callback: (err: Error, resp: Buffer) => void,\n        ): boolean;\n        emit(\n            event: \"OCSPRequest\",\n            certificate: Buffer,\n            issuer: Buffer,\n            callback: (err: Error | null, resp: Buffer) => void,\n        ): boolean;\n        emit(event: \"resumeSession\", sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void): boolean;\n        emit(event: \"secureConnection\", tlsSocket: tls.TLSSocket): boolean;\n        emit(event: \"tlsClientError\", err: Error, tlsSocket: tls.TLSSocket): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"connection\", socket: Duplex): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"listening\"): boolean;\n        emit(\n            event: \"checkContinue\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response>,\n        ): boolean;\n        emit(\n            event: \"checkExpectation\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response>,\n        ): boolean;\n        emit(event: \"clientError\", err: Error, socket: Duplex): boolean;\n        emit(event: \"connect\", req: InstanceType<Request>, socket: Duplex, head: Buffer): boolean;\n        emit(\n            event: \"request\",\n            req: InstanceType<Request>,\n            res: InstanceType<Response>,\n        ): boolean;\n        emit(event: \"upgrade\", req: InstanceType<Request>, socket: Duplex, head: Buffer): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"keylog\", listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;\n        on(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void,\n        ): this;\n        on(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        on(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void,\n        ): this;\n        on(event: \"secureConnection\", listener: (tlsSocket: tls.TLSSocket) => void): this;\n        on(event: \"tlsClientError\", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"connection\", listener: (socket: Duplex) => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"listening\", listener: () => void): this;\n        on(event: \"checkContinue\", listener: http.RequestListener<Request, Response>): this;\n        on(event: \"checkExpectation\", listener: http.RequestListener<Request, Response>): this;\n        on(event: \"clientError\", listener: (err: Error, socket: Duplex) => void): this;\n        on(event: \"connect\", listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void): this;\n        on(event: \"request\", listener: http.RequestListener<Request, Response>): this;\n        on(event: \"upgrade\", listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"keylog\", listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;\n        once(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void,\n        ): this;\n        once(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        once(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void,\n        ): this;\n        once(event: \"secureConnection\", listener: (tlsSocket: tls.TLSSocket) => void): this;\n        once(event: \"tlsClientError\", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"connection\", listener: (socket: Duplex) => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"listening\", listener: () => void): this;\n        once(event: \"checkContinue\", listener: http.RequestListener<Request, Response>): this;\n        once(event: \"checkExpectation\", listener: http.RequestListener<Request, Response>): this;\n        once(event: \"clientError\", listener: (err: Error, socket: Duplex) => void): this;\n        once(event: \"connect\", listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void): this;\n        once(event: \"request\", listener: http.RequestListener<Request, Response>): this;\n        once(event: \"upgrade\", listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;\n        prependListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void,\n        ): this;\n        prependListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        prependListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void,\n        ): this;\n        prependListener(event: \"secureConnection\", listener: (tlsSocket: tls.TLSSocket) => void): this;\n        prependListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"connection\", listener: (socket: Duplex) => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"listening\", listener: () => void): this;\n        prependListener(event: \"checkContinue\", listener: http.RequestListener<Request, Response>): this;\n        prependListener(event: \"checkExpectation\", listener: http.RequestListener<Request, Response>): this;\n        prependListener(event: \"clientError\", listener: (err: Error, socket: Duplex) => void): this;\n        prependListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n        prependListener(event: \"request\", listener: http.RequestListener<Request, Response>): this;\n        prependListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;\n        prependOnceListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void,\n        ): this;\n        prependOnceListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        prependOnceListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void,\n        ): this;\n        prependOnceListener(event: \"secureConnection\", listener: (tlsSocket: tls.TLSSocket) => void): this;\n        prependOnceListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"connection\", listener: (socket: Duplex) => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"listening\", listener: () => void): this;\n        prependOnceListener(event: \"checkContinue\", listener: http.RequestListener<Request, Response>): this;\n        prependOnceListener(event: \"checkExpectation\", listener: http.RequestListener<Request, Response>): this;\n        prependOnceListener(event: \"clientError\", listener: (err: Error, socket: Duplex) => void): this;\n        prependOnceListener(\n            event: \"connect\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n        prependOnceListener(event: \"request\", listener: http.RequestListener<Request, Response>): this;\n        prependOnceListener(\n            event: \"upgrade\",\n            listener: (req: InstanceType<Request>, socket: Duplex, head: Buffer) => void,\n        ): this;\n    }\n    /**\n     * ```js\n     * // curl -k https://localhost:8000/\n     * import https from 'node:https';\n     * import fs from 'node:fs';\n     *\n     * const options = {\n     *   key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),\n     *   cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),\n     * };\n     *\n     * https.createServer(options, (req, res) => {\n     *   res.writeHead(200);\n     *   res.end('hello world\\n');\n     * }).listen(8000);\n     * ```\n     *\n     * Or\n     *\n     * ```js\n     * import https from 'node:https';\n     * import fs from 'node:fs';\n     *\n     * const options = {\n     *   pfx: fs.readFileSync('test/fixtures/test_cert.pfx'),\n     *   passphrase: 'sample',\n     * };\n     *\n     * https.createServer(options, (req, res) => {\n     *   res.writeHead(200);\n     *   res.end('hello world\\n');\n     * }).listen(8000);\n     * ```\n     * @since v0.3.4\n     * @param options Accepts `options` from `createServer`, `createSecureContext` and `createServer`.\n     * @param requestListener A listener to be added to the `'request'` event.\n     */\n    function createServer<\n        Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,\n        Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,\n    >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>;\n    function createServer<\n        Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,\n        Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,\n    >(\n        options: ServerOptions<Request, Response>,\n        requestListener?: http.RequestListener<Request, Response>,\n    ): Server<Request, Response>;\n    /**\n     * Makes a request to a secure web server.\n     *\n     * The following additional `options` from `tls.connect()` are also accepted: `ca`, `cert`, `ciphers`, `clientCertEngine`, `crl`, `dhparam`, `ecdhCurve`, `honorCipherOrder`, `key`, `passphrase`,\n     * `pfx`, `rejectUnauthorized`, `secureOptions`, `secureProtocol`, `servername`, `sessionIdContext`, `highWaterMark`.\n     *\n     * `options` can be an object, a string, or a `URL` object. If `options` is a\n     * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.\n     *\n     * `https.request()` returns an instance of the `http.ClientRequest` class. The `ClientRequest` instance is a writable stream. If one needs to\n     * upload a file with a POST request, then write to the `ClientRequest` object.\n     *\n     * ```js\n     * import https from 'node:https';\n     *\n     * const options = {\n     *   hostname: 'encrypted.google.com',\n     *   port: 443,\n     *   path: '/',\n     *   method: 'GET',\n     * };\n     *\n     * const req = https.request(options, (res) => {\n     *   console.log('statusCode:', res.statusCode);\n     *   console.log('headers:', res.headers);\n     *\n     *   res.on('data', (d) => {\n     *     process.stdout.write(d);\n     *   });\n     * });\n     *\n     * req.on('error', (e) => {\n     *   console.error(e);\n     * });\n     * req.end();\n     * ```\n     *\n     * Example using options from `tls.connect()`:\n     *\n     * ```js\n     * const options = {\n     *   hostname: 'encrypted.google.com',\n     *   port: 443,\n     *   path: '/',\n     *   method: 'GET',\n     *   key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),\n     *   cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),\n     * };\n     * options.agent = new https.Agent(options);\n     *\n     * const req = https.request(options, (res) => {\n     *   // ...\n     * });\n     * ```\n     *\n     * Alternatively, opt out of connection pooling by not using an `Agent`.\n     *\n     * ```js\n     * const options = {\n     *   hostname: 'encrypted.google.com',\n     *   port: 443,\n     *   path: '/',\n     *   method: 'GET',\n     *   key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),\n     *   cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),\n     *   agent: false,\n     * };\n     *\n     * const req = https.request(options, (res) => {\n     *   // ...\n     * });\n     * ```\n     *\n     * Example using a `URL` as `options`:\n     *\n     * ```js\n     * const options = new URL('https://abc:xyz@example.com');\n     *\n     * const req = https.request(options, (res) => {\n     *   // ...\n     * });\n     * ```\n     *\n     * Example pinning on certificate fingerprint, or the public key (similar to`pin-sha256`):\n     *\n     * ```js\n     * import tls from 'node:tls';\n     * import https from 'node:https';\n     * import crypto from 'node:crypto';\n     *\n     * function sha256(s) {\n     *   return crypto.createHash('sha256').update(s).digest('base64');\n     * }\n     * const options = {\n     *   hostname: 'github.com',\n     *   port: 443,\n     *   path: '/',\n     *   method: 'GET',\n     *   checkServerIdentity: function(host, cert) {\n     *     // Make sure the certificate is issued to the host we are connected to\n     *     const err = tls.checkServerIdentity(host, cert);\n     *     if (err) {\n     *       return err;\n     *     }\n     *\n     *     // Pin the public key, similar to HPKP pin-sha256 pinning\n     *     const pubkey256 = 'pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU=';\n     *     if (sha256(cert.pubkey) !== pubkey256) {\n     *       const msg = 'Certificate verification error: ' +\n     *         `The public key of '${cert.subject.CN}' ` +\n     *         'does not match our pinned fingerprint';\n     *       return new Error(msg);\n     *     }\n     *\n     *     // Pin the exact certificate, rather than the pub key\n     *     const cert256 = '25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:' +\n     *       'D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16';\n     *     if (cert.fingerprint256 !== cert256) {\n     *       const msg = 'Certificate verification error: ' +\n     *         `The certificate of '${cert.subject.CN}' ` +\n     *         'does not match our pinned fingerprint';\n     *       return new Error(msg);\n     *     }\n     *\n     *     // This loop is informational only.\n     *     // Print the certificate and public key fingerprints of all certs in the\n     *     // chain. Its common to pin the public key of the issuer on the public\n     *     // internet, while pinning the public key of the service in sensitive\n     *     // environments.\n     *     do {\n     *       console.log('Subject Common Name:', cert.subject.CN);\n     *       console.log('  Certificate SHA256 fingerprint:', cert.fingerprint256);\n     *\n     *       hash = crypto.createHash('sha256');\n     *       console.log('  Public key ping-sha256:', sha256(cert.pubkey));\n     *\n     *       lastprint256 = cert.fingerprint256;\n     *       cert = cert.issuerCertificate;\n     *     } while (cert.fingerprint256 !== lastprint256);\n     *\n     *   },\n     * };\n     *\n     * options.agent = new https.Agent(options);\n     * const req = https.request(options, (res) => {\n     *   console.log('All OK. Server matched our pinned cert or public key');\n     *   console.log('statusCode:', res.statusCode);\n     *   // Print the HPKP values\n     *   console.log('headers:', res.headers['public-key-pins']);\n     *\n     *   res.on('data', (d) => {});\n     * });\n     *\n     * req.on('error', (e) => {\n     *   console.error(e.message);\n     * });\n     * req.end();\n     * ```\n     *\n     * Outputs for example:\n     *\n     * ```text\n     * Subject Common Name: github.com\n     *   Certificate SHA256 fingerprint: 25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16\n     *   Public key ping-sha256: pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU=\n     * Subject Common Name: DigiCert SHA2 Extended Validation Server CA\n     *   Certificate SHA256 fingerprint: 40:3E:06:2A:26:53:05:91:13:28:5B:AF:80:A0:D4:AE:42:2C:84:8C:9F:78:FA:D0:1F:C9:4B:C5:B8:7F:EF:1A\n     *   Public key ping-sha256: RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=\n     * Subject Common Name: DigiCert High Assurance EV Root CA\n     *   Certificate SHA256 fingerprint: 74:31:E5:F4:C3:C1:CE:46:90:77:4F:0B:61:E0:54:40:88:3B:A9:A0:1E:D0:0B:A6:AB:D7:80:6E:D3:B1:18:CF\n     *   Public key ping-sha256: WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=\n     * All OK. Server matched our pinned cert or public key\n     * statusCode: 200\n     * headers: max-age=0; pin-sha256=\"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=\"; pin-sha256=\"RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=\";\n     * pin-sha256=\"k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws=\"; pin-sha256=\"K87oWBWM9UZfyddvDfoxL+8lpNyoUB2ptGtn0fv6G2Q=\"; pin-sha256=\"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=\";\n     * pin-sha256=\"iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0=\"; pin-sha256=\"LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A=\"; includeSubDomains\n     * ```\n     * @since v0.3.6\n     * @param options Accepts all `options` from `request`, with some differences in default values:\n     */\n    function request(\n        options: RequestOptions | string | URL,\n        callback?: (res: http.IncomingMessage) => void,\n    ): http.ClientRequest;\n    function request(\n        url: string | URL,\n        options: RequestOptions,\n        callback?: (res: http.IncomingMessage) => void,\n    ): http.ClientRequest;\n    /**\n     * Like `http.get()` but for HTTPS.\n     *\n     * `options` can be an object, a string, or a `URL` object. If `options` is a\n     * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.\n     *\n     * ```js\n     * import https from 'node:https';\n     *\n     * https.get('https://encrypted.google.com/', (res) => {\n     *   console.log('statusCode:', res.statusCode);\n     *   console.log('headers:', res.headers);\n     *\n     *   res.on('data', (d) => {\n     *     process.stdout.write(d);\n     *   });\n     *\n     * }).on('error', (e) => {\n     *   console.error(e);\n     * });\n     * ```\n     * @since v0.3.6\n     * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`.\n     */\n    function get(\n        options: RequestOptions | string | URL,\n        callback?: (res: http.IncomingMessage) => void,\n    ): http.ClientRequest;\n    function get(\n        url: string | URL,\n        options: RequestOptions,\n        callback?: (res: http.IncomingMessage) => void,\n    ): http.ClientRequest;\n    let globalAgent: Agent;\n}\ndeclare module \"node:https\" {\n    export * from \"https\";\n}\n",
    "node_modules/@types/node/index.d.ts": "/**\n * License for programmatically and manually incorporated\n * documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc\n *\n * Copyright Node.js contributors. All rights reserved.\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n// NOTE: These definitions support Node.js and TypeScript 5.7+.\n\n// Reference required TypeScript libs:\n/// <reference lib=\"es2020\" />\n\n// TypeScript backwards-compatibility definitions:\n/// <reference path=\"compatibility/index.d.ts\" />\n\n// Definitions specific to TypeScript 5.7+:\n/// <reference path=\"globals.typedarray.d.ts\" />\n/// <reference path=\"buffer.buffer.d.ts\" />\n\n// Definitions for Node.js modules that are not specific to any version of TypeScript:\n/// <reference path=\"globals.d.ts\" />\n/// <reference path=\"assert.d.ts\" />\n/// <reference path=\"assert/strict.d.ts\" />\n/// <reference path=\"async_hooks.d.ts\" />\n/// <reference path=\"buffer.d.ts\" />\n/// <reference path=\"child_process.d.ts\" />\n/// <reference path=\"cluster.d.ts\" />\n/// <reference path=\"console.d.ts\" />\n/// <reference path=\"constants.d.ts\" />\n/// <reference path=\"crypto.d.ts\" />\n/// <reference path=\"dgram.d.ts\" />\n/// <reference path=\"diagnostics_channel.d.ts\" />\n/// <reference path=\"dns.d.ts\" />\n/// <reference path=\"dns/promises.d.ts\" />\n/// <reference path=\"dns/promises.d.ts\" />\n/// <reference path=\"domain.d.ts\" />\n/// <reference path=\"dom-events.d.ts\" />\n/// <reference path=\"events.d.ts\" />\n/// <reference path=\"fs.d.ts\" />\n/// <reference path=\"fs/promises.d.ts\" />\n/// <reference path=\"http.d.ts\" />\n/// <reference path=\"http2.d.ts\" />\n/// <reference path=\"https.d.ts\" />\n/// <reference path=\"inspector.d.ts\" />\n/// <reference path=\"module.d.ts\" />\n/// <reference path=\"net.d.ts\" />\n/// <reference path=\"os.d.ts\" />\n/// <reference path=\"path.d.ts\" />\n/// <reference path=\"perf_hooks.d.ts\" />\n/// <reference path=\"process.d.ts\" />\n/// <reference path=\"punycode.d.ts\" />\n/// <reference path=\"querystring.d.ts\" />\n/// <reference path=\"readline.d.ts\" />\n/// <reference path=\"readline/promises.d.ts\" />\n/// <reference path=\"repl.d.ts\" />\n/// <reference path=\"sea.d.ts\" />\n/// <reference path=\"sqlite.d.ts\" />\n/// <reference path=\"stream.d.ts\" />\n/// <reference path=\"stream/promises.d.ts\" />\n/// <reference path=\"stream/consumers.d.ts\" />\n/// <reference path=\"stream/web.d.ts\" />\n/// <reference path=\"string_decoder.d.ts\" />\n/// <reference path=\"test.d.ts\" />\n/// <reference path=\"timers.d.ts\" />\n/// <reference path=\"timers/promises.d.ts\" />\n/// <reference path=\"tls.d.ts\" />\n/// <reference path=\"trace_events.d.ts\" />\n/// <reference path=\"tty.d.ts\" />\n/// <reference path=\"url.d.ts\" />\n/// <reference path=\"util.d.ts\" />\n/// <reference path=\"v8.d.ts\" />\n/// <reference path=\"vm.d.ts\" />\n/// <reference path=\"wasi.d.ts\" />\n/// <reference path=\"worker_threads.d.ts\" />\n/// <reference path=\"zlib.d.ts\" />\n",
    "node_modules/@types/node/inspector.d.ts": "// These definitions are automatically generated by the generate-inspector script.\n// Do not edit this file directly.\n// See scripts/generate-inspector/README.md for information on how to update the protocol definitions.\n// Changes to the module itself should be added to the generator template (scripts/generate-inspector/inspector.d.ts.template).\n\n/**\n * The `node:inspector` module provides an API for interacting with the V8\n * inspector.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/inspector.js)\n */\ndeclare module 'inspector' {\n    import EventEmitter = require('node:events');\n\n    interface InspectorNotification<T> {\n        method: string;\n        params: T;\n    }\n\n    namespace Schema {\n        /**\n         * Description of the protocol domain.\n         */\n        interface Domain {\n            /**\n             * Domain name.\n             */\n            name: string;\n            /**\n             * Domain version.\n             */\n            version: string;\n        }\n        interface GetDomainsReturnType {\n            /**\n             * List of supported domains.\n             */\n            domains: Domain[];\n        }\n    }\n    namespace Runtime {\n        /**\n         * Unique script identifier.\n         */\n        type ScriptId = string;\n        /**\n         * Unique object identifier.\n         */\n        type RemoteObjectId = string;\n        /**\n         * Primitive value which cannot be JSON-stringified.\n         */\n        type UnserializableValue = string;\n        /**\n         * Mirror object referencing original JavaScript object.\n         */\n        interface RemoteObject {\n            /**\n             * Object type.\n             */\n            type: string;\n            /**\n             * Object subtype hint. Specified for <code>object</code> type values only.\n             */\n            subtype?: string | undefined;\n            /**\n             * Object class (constructor) name. Specified for <code>object</code> type values only.\n             */\n            className?: string | undefined;\n            /**\n             * Remote object value in case of primitive values or JSON values (if it was requested).\n             */\n            value?: any;\n            /**\n             * Primitive value which can not be JSON-stringified does not have <code>value</code>, but gets this property.\n             */\n            unserializableValue?: UnserializableValue | undefined;\n            /**\n             * String representation of the object.\n             */\n            description?: string | undefined;\n            /**\n             * Unique object identifier (for non-primitive values).\n             */\n            objectId?: RemoteObjectId | undefined;\n            /**\n             * Preview containing abbreviated property values. Specified for <code>object</code> type values only.\n             * @experimental\n             */\n            preview?: ObjectPreview | undefined;\n            /**\n             * @experimental\n             */\n            customPreview?: CustomPreview | undefined;\n        }\n        /**\n         * @experimental\n         */\n        interface CustomPreview {\n            header: string;\n            hasBody: boolean;\n            formatterObjectId: RemoteObjectId;\n            bindRemoteObjectFunctionId: RemoteObjectId;\n            configObjectId?: RemoteObjectId | undefined;\n        }\n        /**\n         * Object containing abbreviated remote object value.\n         * @experimental\n         */\n        interface ObjectPreview {\n            /**\n             * Object type.\n             */\n            type: string;\n            /**\n             * Object subtype hint. Specified for <code>object</code> type values only.\n             */\n            subtype?: string | undefined;\n            /**\n             * String representation of the object.\n             */\n            description?: string | undefined;\n            /**\n             * True iff some of the properties or entries of the original object did not fit.\n             */\n            overflow: boolean;\n            /**\n             * List of the properties.\n             */\n            properties: PropertyPreview[];\n            /**\n             * List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only.\n             */\n            entries?: EntryPreview[] | undefined;\n        }\n        /**\n         * @experimental\n         */\n        interface PropertyPreview {\n            /**\n             * Property name.\n             */\n            name: string;\n            /**\n             * Object type. Accessor means that the property itself is an accessor property.\n             */\n            type: string;\n            /**\n             * User-friendly property value string.\n             */\n            value?: string | undefined;\n            /**\n             * Nested value preview.\n             */\n            valuePreview?: ObjectPreview | undefined;\n            /**\n             * Object subtype hint. Specified for <code>object</code> type values only.\n             */\n            subtype?: string | undefined;\n        }\n        /**\n         * @experimental\n         */\n        interface EntryPreview {\n            /**\n             * Preview of the key. Specified for map-like collection entries.\n             */\n            key?: ObjectPreview | undefined;\n            /**\n             * Preview of the value.\n             */\n            value: ObjectPreview;\n        }\n        /**\n         * Object property descriptor.\n         */\n        interface PropertyDescriptor {\n            /**\n             * Property name or symbol description.\n             */\n            name: string;\n            /**\n             * The value associated with the property.\n             */\n            value?: RemoteObject | undefined;\n            /**\n             * True if the value associated with the property may be changed (data descriptors only).\n             */\n            writable?: boolean | undefined;\n            /**\n             * A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).\n             */\n            get?: RemoteObject | undefined;\n            /**\n             * A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).\n             */\n            set?: RemoteObject | undefined;\n            /**\n             * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.\n             */\n            configurable: boolean;\n            /**\n             * True if this property shows up during enumeration of the properties on the corresponding object.\n             */\n            enumerable: boolean;\n            /**\n             * True if the result was thrown during the evaluation.\n             */\n            wasThrown?: boolean | undefined;\n            /**\n             * True if the property is owned for the object.\n             */\n            isOwn?: boolean | undefined;\n            /**\n             * Property symbol object, if the property is of the <code>symbol</code> type.\n             */\n            symbol?: RemoteObject | undefined;\n        }\n        /**\n         * Object internal property descriptor. This property isn't normally visible in JavaScript code.\n         */\n        interface InternalPropertyDescriptor {\n            /**\n             * Conventional property name.\n             */\n            name: string;\n            /**\n             * The value associated with the property.\n             */\n            value?: RemoteObject | undefined;\n        }\n        /**\n         * Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified.\n         */\n        interface CallArgument {\n            /**\n             * Primitive value or serializable javascript object.\n             */\n            value?: any;\n            /**\n             * Primitive value which can not be JSON-stringified.\n             */\n            unserializableValue?: UnserializableValue | undefined;\n            /**\n             * Remote object handle.\n             */\n            objectId?: RemoteObjectId | undefined;\n        }\n        /**\n         * Id of an execution context.\n         */\n        type ExecutionContextId = number;\n        /**\n         * Description of an isolated world.\n         */\n        interface ExecutionContextDescription {\n            /**\n             * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed.\n             */\n            id: ExecutionContextId;\n            /**\n             * Execution context origin.\n             */\n            origin: string;\n            /**\n             * Human readable name describing given context.\n             */\n            name: string;\n            /**\n             * Embedder-specific auxiliary data.\n             */\n            auxData?: {} | undefined;\n        }\n        /**\n         * Detailed information about exception (or error) that was thrown during script compilation or execution.\n         */\n        interface ExceptionDetails {\n            /**\n             * Exception id.\n             */\n            exceptionId: number;\n            /**\n             * Exception text, which should be used together with exception object when available.\n             */\n            text: string;\n            /**\n             * Line number of the exception location (0-based).\n             */\n            lineNumber: number;\n            /**\n             * Column number of the exception location (0-based).\n             */\n            columnNumber: number;\n            /**\n             * Script ID of the exception location.\n             */\n            scriptId?: ScriptId | undefined;\n            /**\n             * URL of the exception location, to be used when the script was not reported.\n             */\n            url?: string | undefined;\n            /**\n             * JavaScript stack trace if available.\n             */\n            stackTrace?: StackTrace | undefined;\n            /**\n             * Exception object if available.\n             */\n            exception?: RemoteObject | undefined;\n            /**\n             * Identifier of the context where exception happened.\n             */\n            executionContextId?: ExecutionContextId | undefined;\n        }\n        /**\n         * Number of milliseconds since epoch.\n         */\n        type Timestamp = number;\n        /**\n         * Stack entry for runtime errors and assertions.\n         */\n        interface CallFrame {\n            /**\n             * JavaScript function name.\n             */\n            functionName: string;\n            /**\n             * JavaScript script id.\n             */\n            scriptId: ScriptId;\n            /**\n             * JavaScript script name or url.\n             */\n            url: string;\n            /**\n             * JavaScript script line number (0-based).\n             */\n            lineNumber: number;\n            /**\n             * JavaScript script column number (0-based).\n             */\n            columnNumber: number;\n        }\n        /**\n         * Call frames for assertions or error messages.\n         */\n        interface StackTrace {\n            /**\n             * String label of this stack trace. For async traces this may be a name of the function that initiated the async call.\n             */\n            description?: string | undefined;\n            /**\n             * JavaScript function name.\n             */\n            callFrames: CallFrame[];\n            /**\n             * Asynchronous JavaScript stack trace that preceded this stack, if available.\n             */\n            parent?: StackTrace | undefined;\n            /**\n             * Asynchronous JavaScript stack trace that preceded this stack, if available.\n             * @experimental\n             */\n            parentId?: StackTraceId | undefined;\n        }\n        /**\n         * Unique identifier of current debugger.\n         * @experimental\n         */\n        type UniqueDebuggerId = string;\n        /**\n         * If <code>debuggerId</code> is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See <code>Runtime.StackTrace</code> and <code>Debugger.paused</code> for usages.\n         * @experimental\n         */\n        interface StackTraceId {\n            id: string;\n            debuggerId?: UniqueDebuggerId | undefined;\n        }\n        interface EvaluateParameterType {\n            /**\n             * Expression to evaluate.\n             */\n            expression: string;\n            /**\n             * Symbolic group name that can be used to release multiple objects.\n             */\n            objectGroup?: string | undefined;\n            /**\n             * Determines whether Command Line API should be available during the evaluation.\n             */\n            includeCommandLineAPI?: boolean | undefined;\n            /**\n             * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.\n             */\n            silent?: boolean | undefined;\n            /**\n             * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.\n             */\n            contextId?: ExecutionContextId | undefined;\n            /**\n             * Whether the result is expected to be a JSON object that should be sent by value.\n             */\n            returnByValue?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the result.\n             * @experimental\n             */\n            generatePreview?: boolean | undefined;\n            /**\n             * Whether execution should be treated as initiated by user in the UI.\n             */\n            userGesture?: boolean | undefined;\n            /**\n             * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.\n             */\n            awaitPromise?: boolean | undefined;\n        }\n        interface AwaitPromiseParameterType {\n            /**\n             * Identifier of the promise.\n             */\n            promiseObjectId: RemoteObjectId;\n            /**\n             * Whether the result is expected to be a JSON object that should be sent by value.\n             */\n            returnByValue?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the result.\n             */\n            generatePreview?: boolean | undefined;\n        }\n        interface CallFunctionOnParameterType {\n            /**\n             * Declaration of the function to call.\n             */\n            functionDeclaration: string;\n            /**\n             * Identifier of the object to call function on. Either objectId or executionContextId should be specified.\n             */\n            objectId?: RemoteObjectId | undefined;\n            /**\n             * Call arguments. All call arguments must belong to the same JavaScript world as the target object.\n             */\n            arguments?: CallArgument[] | undefined;\n            /**\n             * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.\n             */\n            silent?: boolean | undefined;\n            /**\n             * Whether the result is expected to be a JSON object which should be sent by value.\n             */\n            returnByValue?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the result.\n             * @experimental\n             */\n            generatePreview?: boolean | undefined;\n            /**\n             * Whether execution should be treated as initiated by user in the UI.\n             */\n            userGesture?: boolean | undefined;\n            /**\n             * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.\n             */\n            awaitPromise?: boolean | undefined;\n            /**\n             * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.\n             */\n            executionContextId?: ExecutionContextId | undefined;\n            /**\n             * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.\n             */\n            objectGroup?: string | undefined;\n        }\n        interface GetPropertiesParameterType {\n            /**\n             * Identifier of the object to return properties for.\n             */\n            objectId: RemoteObjectId;\n            /**\n             * If true, returns properties belonging only to the element itself, not to its prototype chain.\n             */\n            ownProperties?: boolean | undefined;\n            /**\n             * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.\n             * @experimental\n             */\n            accessorPropertiesOnly?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the results.\n             * @experimental\n             */\n            generatePreview?: boolean | undefined;\n        }\n        interface ReleaseObjectParameterType {\n            /**\n             * Identifier of the object to release.\n             */\n            objectId: RemoteObjectId;\n        }\n        interface ReleaseObjectGroupParameterType {\n            /**\n             * Symbolic object group name.\n             */\n            objectGroup: string;\n        }\n        interface SetCustomObjectFormatterEnabledParameterType {\n            enabled: boolean;\n        }\n        interface CompileScriptParameterType {\n            /**\n             * Expression to compile.\n             */\n            expression: string;\n            /**\n             * Source url to be set for the script.\n             */\n            sourceURL: string;\n            /**\n             * Specifies whether the compiled script should be persisted.\n             */\n            persistScript: boolean;\n            /**\n             * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.\n             */\n            executionContextId?: ExecutionContextId | undefined;\n        }\n        interface RunScriptParameterType {\n            /**\n             * Id of the script to run.\n             */\n            scriptId: ScriptId;\n            /**\n             * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.\n             */\n            executionContextId?: ExecutionContextId | undefined;\n            /**\n             * Symbolic group name that can be used to release multiple objects.\n             */\n            objectGroup?: string | undefined;\n            /**\n             * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.\n             */\n            silent?: boolean | undefined;\n            /**\n             * Determines whether Command Line API should be available during the evaluation.\n             */\n            includeCommandLineAPI?: boolean | undefined;\n            /**\n             * Whether the result is expected to be a JSON object which should be sent by value.\n             */\n            returnByValue?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the result.\n             */\n            generatePreview?: boolean | undefined;\n            /**\n             * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.\n             */\n            awaitPromise?: boolean | undefined;\n        }\n        interface QueryObjectsParameterType {\n            /**\n             * Identifier of the prototype to return objects for.\n             */\n            prototypeObjectId: RemoteObjectId;\n        }\n        interface GlobalLexicalScopeNamesParameterType {\n            /**\n             * Specifies in which execution context to lookup global scope variables.\n             */\n            executionContextId?: ExecutionContextId | undefined;\n        }\n        interface EvaluateReturnType {\n            /**\n             * Evaluation result.\n             */\n            result: RemoteObject;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface AwaitPromiseReturnType {\n            /**\n             * Promise result. Will contain rejected value if promise was rejected.\n             */\n            result: RemoteObject;\n            /**\n             * Exception details if stack strace is available.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface CallFunctionOnReturnType {\n            /**\n             * Call result.\n             */\n            result: RemoteObject;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface GetPropertiesReturnType {\n            /**\n             * Object properties.\n             */\n            result: PropertyDescriptor[];\n            /**\n             * Internal object properties (only of the element itself).\n             */\n            internalProperties?: InternalPropertyDescriptor[] | undefined;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface CompileScriptReturnType {\n            /**\n             * Id of the script.\n             */\n            scriptId?: ScriptId | undefined;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface RunScriptReturnType {\n            /**\n             * Run result.\n             */\n            result: RemoteObject;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: ExceptionDetails | undefined;\n        }\n        interface QueryObjectsReturnType {\n            /**\n             * Array with objects.\n             */\n            objects: RemoteObject;\n        }\n        interface GlobalLexicalScopeNamesReturnType {\n            names: string[];\n        }\n        interface ExecutionContextCreatedEventDataType {\n            /**\n             * A newly created execution context.\n             */\n            context: ExecutionContextDescription;\n        }\n        interface ExecutionContextDestroyedEventDataType {\n            /**\n             * Id of the destroyed context\n             */\n            executionContextId: ExecutionContextId;\n        }\n        interface ExceptionThrownEventDataType {\n            /**\n             * Timestamp of the exception.\n             */\n            timestamp: Timestamp;\n            exceptionDetails: ExceptionDetails;\n        }\n        interface ExceptionRevokedEventDataType {\n            /**\n             * Reason describing why exception was revoked.\n             */\n            reason: string;\n            /**\n             * The id of revoked exception, as reported in <code>exceptionThrown</code>.\n             */\n            exceptionId: number;\n        }\n        interface ConsoleAPICalledEventDataType {\n            /**\n             * Type of the call.\n             */\n            type: string;\n            /**\n             * Call arguments.\n             */\n            args: RemoteObject[];\n            /**\n             * Identifier of the context where the call was made.\n             */\n            executionContextId: ExecutionContextId;\n            /**\n             * Call timestamp.\n             */\n            timestamp: Timestamp;\n            /**\n             * Stack trace captured when the call was made.\n             */\n            stackTrace?: StackTrace | undefined;\n            /**\n             * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context.\n             * @experimental\n             */\n            context?: string | undefined;\n        }\n        interface InspectRequestedEventDataType {\n            object: RemoteObject;\n            hints: {};\n        }\n    }\n    namespace Debugger {\n        /**\n         * Breakpoint identifier.\n         */\n        type BreakpointId = string;\n        /**\n         * Call frame identifier.\n         */\n        type CallFrameId = string;\n        /**\n         * Location in the source code.\n         */\n        interface Location {\n            /**\n             * Script identifier as reported in the <code>Debugger.scriptParsed</code>.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * Line number in the script (0-based).\n             */\n            lineNumber: number;\n            /**\n             * Column number in the script (0-based).\n             */\n            columnNumber?: number | undefined;\n        }\n        /**\n         * Location in the source code.\n         * @experimental\n         */\n        interface ScriptPosition {\n            lineNumber: number;\n            columnNumber: number;\n        }\n        /**\n         * JavaScript call frame. Array of call frames form the call stack.\n         */\n        interface CallFrame {\n            /**\n             * Call frame identifier. This identifier is only valid while the virtual machine is paused.\n             */\n            callFrameId: CallFrameId;\n            /**\n             * Name of the JavaScript function called on this call frame.\n             */\n            functionName: string;\n            /**\n             * Location in the source code.\n             */\n            functionLocation?: Location | undefined;\n            /**\n             * Location in the source code.\n             */\n            location: Location;\n            /**\n             * JavaScript script name or url.\n             */\n            url: string;\n            /**\n             * Scope chain for this call frame.\n             */\n            scopeChain: Scope[];\n            /**\n             * <code>this</code> object for this call frame.\n             */\n            this: Runtime.RemoteObject;\n            /**\n             * The value being returned, if the function is at return point.\n             */\n            returnValue?: Runtime.RemoteObject | undefined;\n        }\n        /**\n         * Scope description.\n         */\n        interface Scope {\n            /**\n             * Scope type.\n             */\n            type: string;\n            /**\n             * Object representing the scope. For <code>global</code> and <code>with</code> scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.\n             */\n            object: Runtime.RemoteObject;\n            name?: string | undefined;\n            /**\n             * Location in the source code where scope starts\n             */\n            startLocation?: Location | undefined;\n            /**\n             * Location in the source code where scope ends\n             */\n            endLocation?: Location | undefined;\n        }\n        /**\n         * Search match for resource.\n         */\n        interface SearchMatch {\n            /**\n             * Line number in resource content.\n             */\n            lineNumber: number;\n            /**\n             * Line with match content.\n             */\n            lineContent: string;\n        }\n        interface BreakLocation {\n            /**\n             * Script identifier as reported in the <code>Debugger.scriptParsed</code>.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * Line number in the script (0-based).\n             */\n            lineNumber: number;\n            /**\n             * Column number in the script (0-based).\n             */\n            columnNumber?: number | undefined;\n            type?: string | undefined;\n        }\n        interface SetBreakpointsActiveParameterType {\n            /**\n             * New value for breakpoints active state.\n             */\n            active: boolean;\n        }\n        interface SetSkipAllPausesParameterType {\n            /**\n             * New value for skip pauses state.\n             */\n            skip: boolean;\n        }\n        interface SetBreakpointByUrlParameterType {\n            /**\n             * Line number to set breakpoint at.\n             */\n            lineNumber: number;\n            /**\n             * URL of the resources to set breakpoint on.\n             */\n            url?: string | undefined;\n            /**\n             * Regex pattern for the URLs of the resources to set breakpoints on. Either <code>url</code> or <code>urlRegex</code> must be specified.\n             */\n            urlRegex?: string | undefined;\n            /**\n             * Script hash of the resources to set breakpoint on.\n             */\n            scriptHash?: string | undefined;\n            /**\n             * Offset in the line to set breakpoint at.\n             */\n            columnNumber?: number | undefined;\n            /**\n             * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.\n             */\n            condition?: string | undefined;\n        }\n        interface SetBreakpointParameterType {\n            /**\n             * Location to set breakpoint in.\n             */\n            location: Location;\n            /**\n             * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.\n             */\n            condition?: string | undefined;\n        }\n        interface RemoveBreakpointParameterType {\n            breakpointId: BreakpointId;\n        }\n        interface GetPossibleBreakpointsParameterType {\n            /**\n             * Start of range to search possible breakpoint locations in.\n             */\n            start: Location;\n            /**\n             * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.\n             */\n            end?: Location | undefined;\n            /**\n             * Only consider locations which are in the same (non-nested) function as start.\n             */\n            restrictToFunction?: boolean | undefined;\n        }\n        interface ContinueToLocationParameterType {\n            /**\n             * Location to continue to.\n             */\n            location: Location;\n            targetCallFrames?: string | undefined;\n        }\n        interface PauseOnAsyncCallParameterType {\n            /**\n             * Debugger will pause when async call with given stack trace is started.\n             */\n            parentStackTraceId: Runtime.StackTraceId;\n        }\n        interface StepIntoParameterType {\n            /**\n             * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause.\n             * @experimental\n             */\n            breakOnAsyncCall?: boolean | undefined;\n        }\n        interface GetStackTraceParameterType {\n            stackTraceId: Runtime.StackTraceId;\n        }\n        interface SearchInContentParameterType {\n            /**\n             * Id of the script to search in.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * String to search for.\n             */\n            query: string;\n            /**\n             * If true, search is case sensitive.\n             */\n            caseSensitive?: boolean | undefined;\n            /**\n             * If true, treats string parameter as regex.\n             */\n            isRegex?: boolean | undefined;\n        }\n        interface SetScriptSourceParameterType {\n            /**\n             * Id of the script to edit.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * New content of the script.\n             */\n            scriptSource: string;\n            /**\n             *  If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code.\n             */\n            dryRun?: boolean | undefined;\n        }\n        interface RestartFrameParameterType {\n            /**\n             * Call frame identifier to evaluate on.\n             */\n            callFrameId: CallFrameId;\n        }\n        interface GetScriptSourceParameterType {\n            /**\n             * Id of the script to get source for.\n             */\n            scriptId: Runtime.ScriptId;\n        }\n        interface SetPauseOnExceptionsParameterType {\n            /**\n             * Pause on exceptions mode.\n             */\n            state: string;\n        }\n        interface EvaluateOnCallFrameParameterType {\n            /**\n             * Call frame identifier to evaluate on.\n             */\n            callFrameId: CallFrameId;\n            /**\n             * Expression to evaluate.\n             */\n            expression: string;\n            /**\n             * String object group name to put result into (allows rapid releasing resulting object handles using <code>releaseObjectGroup</code>).\n             */\n            objectGroup?: string | undefined;\n            /**\n             * Specifies whether command line API should be available to the evaluated expression, defaults to false.\n             */\n            includeCommandLineAPI?: boolean | undefined;\n            /**\n             * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.\n             */\n            silent?: boolean | undefined;\n            /**\n             * Whether the result is expected to be a JSON object that should be sent by value.\n             */\n            returnByValue?: boolean | undefined;\n            /**\n             * Whether preview should be generated for the result.\n             * @experimental\n             */\n            generatePreview?: boolean | undefined;\n            /**\n             * Whether to throw an exception if side effect cannot be ruled out during evaluation.\n             */\n            throwOnSideEffect?: boolean | undefined;\n        }\n        interface SetVariableValueParameterType {\n            /**\n             * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.\n             */\n            scopeNumber: number;\n            /**\n             * Variable name.\n             */\n            variableName: string;\n            /**\n             * New variable value.\n             */\n            newValue: Runtime.CallArgument;\n            /**\n             * Id of callframe that holds variable.\n             */\n            callFrameId: CallFrameId;\n        }\n        interface SetReturnValueParameterType {\n            /**\n             * New return value.\n             */\n            newValue: Runtime.CallArgument;\n        }\n        interface SetAsyncCallStackDepthParameterType {\n            /**\n             * Maximum depth of async call stacks. Setting to <code>0</code> will effectively disable collecting async call stacks (default).\n             */\n            maxDepth: number;\n        }\n        interface SetBlackboxPatternsParameterType {\n            /**\n             * Array of regexps that will be used to check script url for blackbox state.\n             */\n            patterns: string[];\n        }\n        interface SetBlackboxedRangesParameterType {\n            /**\n             * Id of the script.\n             */\n            scriptId: Runtime.ScriptId;\n            positions: ScriptPosition[];\n        }\n        interface EnableReturnType {\n            /**\n             * Unique identifier of the debugger.\n             * @experimental\n             */\n            debuggerId: Runtime.UniqueDebuggerId;\n        }\n        interface SetBreakpointByUrlReturnType {\n            /**\n             * Id of the created breakpoint for further reference.\n             */\n            breakpointId: BreakpointId;\n            /**\n             * List of the locations this breakpoint resolved into upon addition.\n             */\n            locations: Location[];\n        }\n        interface SetBreakpointReturnType {\n            /**\n             * Id of the created breakpoint for further reference.\n             */\n            breakpointId: BreakpointId;\n            /**\n             * Location this breakpoint resolved into.\n             */\n            actualLocation: Location;\n        }\n        interface GetPossibleBreakpointsReturnType {\n            /**\n             * List of the possible breakpoint locations.\n             */\n            locations: BreakLocation[];\n        }\n        interface GetStackTraceReturnType {\n            stackTrace: Runtime.StackTrace;\n        }\n        interface SearchInContentReturnType {\n            /**\n             * List of search matches.\n             */\n            result: SearchMatch[];\n        }\n        interface SetScriptSourceReturnType {\n            /**\n             * New stack trace in case editing has happened while VM was stopped.\n             */\n            callFrames?: CallFrame[] | undefined;\n            /**\n             * Whether current call stack  was modified after applying the changes.\n             */\n            stackChanged?: boolean | undefined;\n            /**\n             * Async stack trace, if any.\n             */\n            asyncStackTrace?: Runtime.StackTrace | undefined;\n            /**\n             * Async stack trace, if any.\n             * @experimental\n             */\n            asyncStackTraceId?: Runtime.StackTraceId | undefined;\n            /**\n             * Exception details if any.\n             */\n            exceptionDetails?: Runtime.ExceptionDetails | undefined;\n        }\n        interface RestartFrameReturnType {\n            /**\n             * New stack trace.\n             */\n            callFrames: CallFrame[];\n            /**\n             * Async stack trace, if any.\n             */\n            asyncStackTrace?: Runtime.StackTrace | undefined;\n            /**\n             * Async stack trace, if any.\n             * @experimental\n             */\n            asyncStackTraceId?: Runtime.StackTraceId | undefined;\n        }\n        interface GetScriptSourceReturnType {\n            /**\n             * Script source.\n             */\n            scriptSource: string;\n        }\n        interface EvaluateOnCallFrameReturnType {\n            /**\n             * Object wrapper for the evaluation result.\n             */\n            result: Runtime.RemoteObject;\n            /**\n             * Exception details.\n             */\n            exceptionDetails?: Runtime.ExceptionDetails | undefined;\n        }\n        interface ScriptParsedEventDataType {\n            /**\n             * Identifier of the script parsed.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * URL or name of the script parsed (if any).\n             */\n            url: string;\n            /**\n             * Line offset of the script within the resource with given URL (for script tags).\n             */\n            startLine: number;\n            /**\n             * Column offset of the script within the resource with given URL.\n             */\n            startColumn: number;\n            /**\n             * Last line of the script.\n             */\n            endLine: number;\n            /**\n             * Length of the last line of the script.\n             */\n            endColumn: number;\n            /**\n             * Specifies script creation context.\n             */\n            executionContextId: Runtime.ExecutionContextId;\n            /**\n             * Content hash of the script.\n             */\n            hash: string;\n            /**\n             * Embedder-specific auxiliary data.\n             */\n            executionContextAuxData?: {} | undefined;\n            /**\n             * True, if this script is generated as a result of the live edit operation.\n             * @experimental\n             */\n            isLiveEdit?: boolean | undefined;\n            /**\n             * URL of source map associated with script (if any).\n             */\n            sourceMapURL?: string | undefined;\n            /**\n             * True, if this script has sourceURL.\n             */\n            hasSourceURL?: boolean | undefined;\n            /**\n             * True, if this script is ES6 module.\n             */\n            isModule?: boolean | undefined;\n            /**\n             * This script length.\n             */\n            length?: number | undefined;\n            /**\n             * JavaScript top stack frame of where the script parsed event was triggered if available.\n             * @experimental\n             */\n            stackTrace?: Runtime.StackTrace | undefined;\n        }\n        interface ScriptFailedToParseEventDataType {\n            /**\n             * Identifier of the script parsed.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * URL or name of the script parsed (if any).\n             */\n            url: string;\n            /**\n             * Line offset of the script within the resource with given URL (for script tags).\n             */\n            startLine: number;\n            /**\n             * Column offset of the script within the resource with given URL.\n             */\n            startColumn: number;\n            /**\n             * Last line of the script.\n             */\n            endLine: number;\n            /**\n             * Length of the last line of the script.\n             */\n            endColumn: number;\n            /**\n             * Specifies script creation context.\n             */\n            executionContextId: Runtime.ExecutionContextId;\n            /**\n             * Content hash of the script.\n             */\n            hash: string;\n            /**\n             * Embedder-specific auxiliary data.\n             */\n            executionContextAuxData?: {} | undefined;\n            /**\n             * URL of source map associated with script (if any).\n             */\n            sourceMapURL?: string | undefined;\n            /**\n             * True, if this script has sourceURL.\n             */\n            hasSourceURL?: boolean | undefined;\n            /**\n             * True, if this script is ES6 module.\n             */\n            isModule?: boolean | undefined;\n            /**\n             * This script length.\n             */\n            length?: number | undefined;\n            /**\n             * JavaScript top stack frame of where the script parsed event was triggered if available.\n             * @experimental\n             */\n            stackTrace?: Runtime.StackTrace | undefined;\n        }\n        interface BreakpointResolvedEventDataType {\n            /**\n             * Breakpoint unique identifier.\n             */\n            breakpointId: BreakpointId;\n            /**\n             * Actual breakpoint location.\n             */\n            location: Location;\n        }\n        interface PausedEventDataType {\n            /**\n             * Call stack the virtual machine stopped on.\n             */\n            callFrames: CallFrame[];\n            /**\n             * Pause reason.\n             */\n            reason: string;\n            /**\n             * Object containing break-specific auxiliary properties.\n             */\n            data?: {} | undefined;\n            /**\n             * Hit breakpoints IDs\n             */\n            hitBreakpoints?: string[] | undefined;\n            /**\n             * Async stack trace, if any.\n             */\n            asyncStackTrace?: Runtime.StackTrace | undefined;\n            /**\n             * Async stack trace, if any.\n             * @experimental\n             */\n            asyncStackTraceId?: Runtime.StackTraceId | undefined;\n            /**\n             * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after <code>Debugger.stepInto</code> call with <code>breakOnAsynCall</code> flag.\n             * @experimental\n             */\n            asyncCallStackTraceId?: Runtime.StackTraceId | undefined;\n        }\n    }\n    namespace Console {\n        /**\n         * Console message.\n         */\n        interface ConsoleMessage {\n            /**\n             * Message source.\n             */\n            source: string;\n            /**\n             * Message severity.\n             */\n            level: string;\n            /**\n             * Message text.\n             */\n            text: string;\n            /**\n             * URL of the message origin.\n             */\n            url?: string | undefined;\n            /**\n             * Line number in the resource that generated this message (1-based).\n             */\n            line?: number | undefined;\n            /**\n             * Column number in the resource that generated this message (1-based).\n             */\n            column?: number | undefined;\n        }\n        interface MessageAddedEventDataType {\n            /**\n             * Console message that has been added.\n             */\n            message: ConsoleMessage;\n        }\n    }\n    namespace Profiler {\n        /**\n         * Profile node. Holds callsite information, execution statistics and child nodes.\n         */\n        interface ProfileNode {\n            /**\n             * Unique id of the node.\n             */\n            id: number;\n            /**\n             * Function location.\n             */\n            callFrame: Runtime.CallFrame;\n            /**\n             * Number of samples where this node was on top of the call stack.\n             */\n            hitCount?: number | undefined;\n            /**\n             * Child node ids.\n             */\n            children?: number[] | undefined;\n            /**\n             * The reason of being not optimized. The function may be deoptimized or marked as don't optimize.\n             */\n            deoptReason?: string | undefined;\n            /**\n             * An array of source position ticks.\n             */\n            positionTicks?: PositionTickInfo[] | undefined;\n        }\n        /**\n         * Profile.\n         */\n        interface Profile {\n            /**\n             * The list of profile nodes. First item is the root node.\n             */\n            nodes: ProfileNode[];\n            /**\n             * Profiling start timestamp in microseconds.\n             */\n            startTime: number;\n            /**\n             * Profiling end timestamp in microseconds.\n             */\n            endTime: number;\n            /**\n             * Ids of samples top nodes.\n             */\n            samples?: number[] | undefined;\n            /**\n             * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.\n             */\n            timeDeltas?: number[] | undefined;\n        }\n        /**\n         * Specifies a number of samples attributed to a certain source position.\n         */\n        interface PositionTickInfo {\n            /**\n             * Source line number (1-based).\n             */\n            line: number;\n            /**\n             * Number of samples attributed to the source line.\n             */\n            ticks: number;\n        }\n        /**\n         * Coverage data for a source range.\n         */\n        interface CoverageRange {\n            /**\n             * JavaScript script source offset for the range start.\n             */\n            startOffset: number;\n            /**\n             * JavaScript script source offset for the range end.\n             */\n            endOffset: number;\n            /**\n             * Collected execution count of the source range.\n             */\n            count: number;\n        }\n        /**\n         * Coverage data for a JavaScript function.\n         */\n        interface FunctionCoverage {\n            /**\n             * JavaScript function name.\n             */\n            functionName: string;\n            /**\n             * Source ranges inside the function with coverage data.\n             */\n            ranges: CoverageRange[];\n            /**\n             * Whether coverage data for this function has block granularity.\n             */\n            isBlockCoverage: boolean;\n        }\n        /**\n         * Coverage data for a JavaScript script.\n         */\n        interface ScriptCoverage {\n            /**\n             * JavaScript script id.\n             */\n            scriptId: Runtime.ScriptId;\n            /**\n             * JavaScript script name or url.\n             */\n            url: string;\n            /**\n             * Functions contained in the script that has coverage data.\n             */\n            functions: FunctionCoverage[];\n        }\n        interface SetSamplingIntervalParameterType {\n            /**\n             * New sampling interval in microseconds.\n             */\n            interval: number;\n        }\n        interface StartPreciseCoverageParameterType {\n            /**\n             * Collect accurate call counts beyond simple 'covered' or 'not covered'.\n             */\n            callCount?: boolean | undefined;\n            /**\n             * Collect block-based coverage.\n             */\n            detailed?: boolean | undefined;\n        }\n        interface StopReturnType {\n            /**\n             * Recorded profile.\n             */\n            profile: Profile;\n        }\n        interface TakePreciseCoverageReturnType {\n            /**\n             * Coverage data for the current isolate.\n             */\n            result: ScriptCoverage[];\n        }\n        interface GetBestEffortCoverageReturnType {\n            /**\n             * Coverage data for the current isolate.\n             */\n            result: ScriptCoverage[];\n        }\n        interface ConsoleProfileStartedEventDataType {\n            id: string;\n            /**\n             * Location of console.profile().\n             */\n            location: Debugger.Location;\n            /**\n             * Profile title passed as an argument to console.profile().\n             */\n            title?: string | undefined;\n        }\n        interface ConsoleProfileFinishedEventDataType {\n            id: string;\n            /**\n             * Location of console.profileEnd().\n             */\n            location: Debugger.Location;\n            profile: Profile;\n            /**\n             * Profile title passed as an argument to console.profile().\n             */\n            title?: string | undefined;\n        }\n    }\n    namespace HeapProfiler {\n        /**\n         * Heap snapshot object id.\n         */\n        type HeapSnapshotObjectId = string;\n        /**\n         * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.\n         */\n        interface SamplingHeapProfileNode {\n            /**\n             * Function location.\n             */\n            callFrame: Runtime.CallFrame;\n            /**\n             * Allocations size in bytes for the node excluding children.\n             */\n            selfSize: number;\n            /**\n             * Child nodes.\n             */\n            children: SamplingHeapProfileNode[];\n        }\n        /**\n         * Profile.\n         */\n        interface SamplingHeapProfile {\n            head: SamplingHeapProfileNode;\n        }\n        interface StartTrackingHeapObjectsParameterType {\n            trackAllocations?: boolean | undefined;\n        }\n        interface StopTrackingHeapObjectsParameterType {\n            /**\n             * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped.\n             */\n            reportProgress?: boolean | undefined;\n        }\n        interface TakeHeapSnapshotParameterType {\n            /**\n             * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken.\n             */\n            reportProgress?: boolean | undefined;\n        }\n        interface GetObjectByHeapObjectIdParameterType {\n            objectId: HeapSnapshotObjectId;\n            /**\n             * Symbolic group name that can be used to release multiple objects.\n             */\n            objectGroup?: string | undefined;\n        }\n        interface AddInspectedHeapObjectParameterType {\n            /**\n             * Heap snapshot object id to be accessible by means of $x command line API.\n             */\n            heapObjectId: HeapSnapshotObjectId;\n        }\n        interface GetHeapObjectIdParameterType {\n            /**\n             * Identifier of the object to get heap object id for.\n             */\n            objectId: Runtime.RemoteObjectId;\n        }\n        interface StartSamplingParameterType {\n            /**\n             * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes.\n             */\n            samplingInterval?: number | undefined;\n        }\n        interface GetObjectByHeapObjectIdReturnType {\n            /**\n             * Evaluation result.\n             */\n            result: Runtime.RemoteObject;\n        }\n        interface GetHeapObjectIdReturnType {\n            /**\n             * Id of the heap snapshot object corresponding to the passed remote object id.\n             */\n            heapSnapshotObjectId: HeapSnapshotObjectId;\n        }\n        interface StopSamplingReturnType {\n            /**\n             * Recorded sampling heap profile.\n             */\n            profile: SamplingHeapProfile;\n        }\n        interface GetSamplingProfileReturnType {\n            /**\n             * Return the sampling profile being collected.\n             */\n            profile: SamplingHeapProfile;\n        }\n        interface AddHeapSnapshotChunkEventDataType {\n            chunk: string;\n        }\n        interface ReportHeapSnapshotProgressEventDataType {\n            done: number;\n            total: number;\n            finished?: boolean | undefined;\n        }\n        interface LastSeenObjectIdEventDataType {\n            lastSeenObjectId: number;\n            timestamp: number;\n        }\n        interface HeapStatsUpdateEventDataType {\n            /**\n             * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.\n             */\n            statsUpdate: number[];\n        }\n    }\n    namespace NodeTracing {\n        interface TraceConfig {\n            /**\n             * Controls how the trace buffer stores data.\n             */\n            recordMode?: string | undefined;\n            /**\n             * Included category filters.\n             */\n            includedCategories: string[];\n        }\n        interface StartParameterType {\n            traceConfig: TraceConfig;\n        }\n        interface GetCategoriesReturnType {\n            /**\n             * A list of supported tracing categories.\n             */\n            categories: string[];\n        }\n        interface DataCollectedEventDataType {\n            value: Array<{}>;\n        }\n    }\n    namespace NodeWorker {\n        type WorkerID = string;\n        /**\n         * Unique identifier of attached debugging session.\n         */\n        type SessionID = string;\n        interface WorkerInfo {\n            workerId: WorkerID;\n            type: string;\n            title: string;\n            url: string;\n        }\n        interface SendMessageToWorkerParameterType {\n            message: string;\n            /**\n             * Identifier of the session.\n             */\n            sessionId: SessionID;\n        }\n        interface EnableParameterType {\n            /**\n             * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger`\n             * message to run them.\n             */\n            waitForDebuggerOnStart: boolean;\n        }\n        interface DetachParameterType {\n            sessionId: SessionID;\n        }\n        interface AttachedToWorkerEventDataType {\n            /**\n             * Identifier assigned to the session used to send/receive messages.\n             */\n            sessionId: SessionID;\n            workerInfo: WorkerInfo;\n            waitingForDebugger: boolean;\n        }\n        interface DetachedFromWorkerEventDataType {\n            /**\n             * Detached session identifier.\n             */\n            sessionId: SessionID;\n        }\n        interface ReceivedMessageFromWorkerEventDataType {\n            /**\n             * Identifier of a session which sends a message.\n             */\n            sessionId: SessionID;\n            message: string;\n        }\n    }\n    namespace Network {\n        /**\n         * Resource type as it was perceived by the rendering engine.\n         */\n        type ResourceType = string;\n        /**\n         * Unique request identifier.\n         */\n        type RequestId = string;\n        /**\n         * UTC time in seconds, counted from January 1, 1970.\n         */\n        type TimeSinceEpoch = number;\n        /**\n         * Monotonically increasing time in seconds since an arbitrary point in the past.\n         */\n        type MonotonicTime = number;\n        /**\n         * Information about the request initiator.\n         */\n        interface Initiator {\n            /**\n             * Type of this initiator.\n             */\n            type: string;\n            /**\n             * Initiator JavaScript stack trace, set for Script only.\n             * Requires the Debugger domain to be enabled.\n             */\n            stack?: Runtime.StackTrace | undefined;\n            /**\n             * Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.\n             */\n            url?: string | undefined;\n            /**\n             * Initiator line number, set for Parser type or for Script type (when script is importing\n             * module) (0-based).\n             */\n            lineNumber?: number | undefined;\n            /**\n             * Initiator column number, set for Parser type or for Script type (when script is importing\n             * module) (0-based).\n             */\n            columnNumber?: number | undefined;\n            /**\n             * Set if another request triggered this request (e.g. preflight).\n             */\n            requestId?: RequestId | undefined;\n        }\n        /**\n         * HTTP request data.\n         */\n        interface Request {\n            url: string;\n            method: string;\n            headers: Headers;\n        }\n        /**\n         * HTTP response data.\n         */\n        interface Response {\n            url: string;\n            status: number;\n            statusText: string;\n            headers: Headers;\n        }\n        /**\n         * Request / response headers as keys / values of JSON object.\n         */\n        interface Headers {\n        }\n        interface RequestWillBeSentEventDataType {\n            /**\n             * Request identifier.\n             */\n            requestId: RequestId;\n            /**\n             * Request data.\n             */\n            request: Request;\n            /**\n             * Request initiator.\n             */\n            initiator: Initiator;\n            /**\n             * Timestamp.\n             */\n            timestamp: MonotonicTime;\n            /**\n             * Timestamp.\n             */\n            wallTime: TimeSinceEpoch;\n        }\n        interface ResponseReceivedEventDataType {\n            /**\n             * Request identifier.\n             */\n            requestId: RequestId;\n            /**\n             * Timestamp.\n             */\n            timestamp: MonotonicTime;\n            /**\n             * Resource type.\n             */\n            type: ResourceType;\n            /**\n             * Response data.\n             */\n            response: Response;\n        }\n        interface LoadingFailedEventDataType {\n            /**\n             * Request identifier.\n             */\n            requestId: RequestId;\n            /**\n             * Timestamp.\n             */\n            timestamp: MonotonicTime;\n            /**\n             * Resource type.\n             */\n            type: ResourceType;\n            /**\n             * Error message.\n             */\n            errorText: string;\n        }\n        interface LoadingFinishedEventDataType {\n            /**\n             * Request identifier.\n             */\n            requestId: RequestId;\n            /**\n             * Timestamp.\n             */\n            timestamp: MonotonicTime;\n        }\n    }\n    namespace NodeRuntime {\n        interface NotifyWhenWaitingForDisconnectParameterType {\n            enabled: boolean;\n        }\n    }\n\n    /**\n     * The `inspector.Session` is used for dispatching messages to the V8 inspector\n     * back-end and receiving message responses and notifications.\n     */\n    class Session extends EventEmitter {\n        /**\n         * Create a new instance of the inspector.Session class.\n         * The inspector session needs to be connected through `session.connect()` before the messages can be dispatched to the inspector backend.\n         */\n        constructor();\n\n        /**\n         * Connects a session to the inspector back-end.\n         */\n        connect(): void;\n\n        /**\n         * Connects a session to the inspector back-end.\n         * An exception will be thrown if this API was not called on a Worker thread.\n         * @since v12.11.0\n         */\n        connectToMainThread(): void;\n\n        /**\n         * Immediately close the session. All pending message callbacks will be called with an error.\n         * `session.connect()` will need to be called to be able to send messages again.\n         * Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints.\n         */\n        disconnect(): void;\n\n        /**\n         * Posts a message to the inspector back-end. `callback` will be notified when\n         * a response is received. `callback` is a function that accepts two optional\n         * arguments: error and message-specific result.\n         *\n         * ```js\n         * session.post('Runtime.evaluate', { expression: '2 + 2' },\n         *              (error, { result }) => console.log(result));\n         * // Output: { type: 'number', value: 4, description: '4' }\n         * ```\n         *\n         * The latest version of the V8 inspector protocol is published on the\n         * [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/).\n         *\n         * Node.js inspector supports all the Chrome DevTools Protocol domains declared\n         * by V8. Chrome DevTools Protocol domain provides an interface for interacting\n         * with one of the runtime agents used to inspect the application state and listen\n         * to the run-time events.\n         */\n        post(method: string, callback?: (err: Error | null, params?: object) => void): void;\n        post(method: string, params?: object, callback?: (err: Error | null, params?: object) => void): void;\n        /**\n         * Returns supported domains.\n         */\n        post(method: 'Schema.getDomains', callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void;\n        /**\n         * Evaluates expression on global object.\n         */\n        post(method: 'Runtime.evaluate', params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;\n        post(method: 'Runtime.evaluate', callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;\n        /**\n         * Add handler to promise with given promise object id.\n         */\n        post(method: 'Runtime.awaitPromise', params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;\n        post(method: 'Runtime.awaitPromise', callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;\n        /**\n         * Calls function with given declaration on the given object. Object group of the result is inherited from the target object.\n         */\n        post(method: 'Runtime.callFunctionOn', params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;\n        post(method: 'Runtime.callFunctionOn', callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;\n        /**\n         * Returns properties of a given object. Object group of the result is inherited from the target object.\n         */\n        post(method: 'Runtime.getProperties', params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;\n        post(method: 'Runtime.getProperties', callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;\n        /**\n         * Releases remote object with given id.\n         */\n        post(method: 'Runtime.releaseObject', params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Runtime.releaseObject', callback?: (err: Error | null) => void): void;\n        /**\n         * Releases all remote objects that belong to a given group.\n         */\n        post(method: 'Runtime.releaseObjectGroup', params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Runtime.releaseObjectGroup', callback?: (err: Error | null) => void): void;\n        /**\n         * Tells inspected instance to run if it was waiting for debugger to attach.\n         */\n        post(method: 'Runtime.runIfWaitingForDebugger', callback?: (err: Error | null) => void): void;\n        /**\n         * Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.\n         */\n        post(method: 'Runtime.enable', callback?: (err: Error | null) => void): void;\n        /**\n         * Disables reporting of execution contexts creation.\n         */\n        post(method: 'Runtime.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Discards collected exceptions and console API calls.\n         */\n        post(method: 'Runtime.discardConsoleEntries', callback?: (err: Error | null) => void): void;\n        /**\n         * @experimental\n         */\n        post(method: 'Runtime.setCustomObjectFormatterEnabled', params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Runtime.setCustomObjectFormatterEnabled', callback?: (err: Error | null) => void): void;\n        /**\n         * Compiles expression.\n         */\n        post(method: 'Runtime.compileScript', params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;\n        post(method: 'Runtime.compileScript', callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;\n        /**\n         * Runs script with given id in a given context.\n         */\n        post(method: 'Runtime.runScript', params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;\n        post(method: 'Runtime.runScript', callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;\n        post(method: 'Runtime.queryObjects', params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;\n        post(method: 'Runtime.queryObjects', callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;\n        /**\n         * Returns all let, const and class variables from global scope.\n         */\n        post(\n            method: 'Runtime.globalLexicalScopeNames',\n            params?: Runtime.GlobalLexicalScopeNamesParameterType,\n            callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void\n        ): void;\n        post(method: 'Runtime.globalLexicalScopeNames', callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void;\n        /**\n         * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.\n         */\n        post(method: 'Debugger.enable', callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void;\n        /**\n         * Disables debugger for given page.\n         */\n        post(method: 'Debugger.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Activates / deactivates all breakpoints on the page.\n         */\n        post(method: 'Debugger.setBreakpointsActive', params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setBreakpointsActive', callback?: (err: Error | null) => void): void;\n        /**\n         * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).\n         */\n        post(method: 'Debugger.setSkipAllPauses', params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setSkipAllPauses', callback?: (err: Error | null) => void): void;\n        /**\n         * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.\n         */\n        post(method: 'Debugger.setBreakpointByUrl', params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;\n        post(method: 'Debugger.setBreakpointByUrl', callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;\n        /**\n         * Sets JavaScript breakpoint at a given location.\n         */\n        post(method: 'Debugger.setBreakpoint', params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;\n        post(method: 'Debugger.setBreakpoint', callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;\n        /**\n         * Removes JavaScript breakpoint.\n         */\n        post(method: 'Debugger.removeBreakpoint', params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.removeBreakpoint', callback?: (err: Error | null) => void): void;\n        /**\n         * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.\n         */\n        post(\n            method: 'Debugger.getPossibleBreakpoints',\n            params?: Debugger.GetPossibleBreakpointsParameterType,\n            callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void\n        ): void;\n        post(method: 'Debugger.getPossibleBreakpoints', callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void;\n        /**\n         * Continues execution until specific location is reached.\n         */\n        post(method: 'Debugger.continueToLocation', params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.continueToLocation', callback?: (err: Error | null) => void): void;\n        /**\n         * @experimental\n         */\n        post(method: 'Debugger.pauseOnAsyncCall', params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.pauseOnAsyncCall', callback?: (err: Error | null) => void): void;\n        /**\n         * Steps over the statement.\n         */\n        post(method: 'Debugger.stepOver', callback?: (err: Error | null) => void): void;\n        /**\n         * Steps into the function call.\n         */\n        post(method: 'Debugger.stepInto', params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.stepInto', callback?: (err: Error | null) => void): void;\n        /**\n         * Steps out of the function call.\n         */\n        post(method: 'Debugger.stepOut', callback?: (err: Error | null) => void): void;\n        /**\n         * Stops on the next JavaScript statement.\n         */\n        post(method: 'Debugger.pause', callback?: (err: Error | null) => void): void;\n        /**\n         * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.\n         * @experimental\n         */\n        post(method: 'Debugger.scheduleStepIntoAsync', callback?: (err: Error | null) => void): void;\n        /**\n         * Resumes JavaScript execution.\n         */\n        post(method: 'Debugger.resume', callback?: (err: Error | null) => void): void;\n        /**\n         * Returns stack trace with given <code>stackTraceId</code>.\n         * @experimental\n         */\n        post(method: 'Debugger.getStackTrace', params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;\n        post(method: 'Debugger.getStackTrace', callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;\n        /**\n         * Searches for given string in script content.\n         */\n        post(method: 'Debugger.searchInContent', params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;\n        post(method: 'Debugger.searchInContent', callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;\n        /**\n         * Edits JavaScript source live.\n         */\n        post(method: 'Debugger.setScriptSource', params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;\n        post(method: 'Debugger.setScriptSource', callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;\n        /**\n         * Restarts particular call frame from the beginning.\n         */\n        post(method: 'Debugger.restartFrame', params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;\n        post(method: 'Debugger.restartFrame', callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;\n        /**\n         * Returns source for the script with given id.\n         */\n        post(method: 'Debugger.getScriptSource', params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;\n        post(method: 'Debugger.getScriptSource', callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;\n        /**\n         * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.\n         */\n        post(method: 'Debugger.setPauseOnExceptions', params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setPauseOnExceptions', callback?: (err: Error | null) => void): void;\n        /**\n         * Evaluates expression on a given call frame.\n         */\n        post(method: 'Debugger.evaluateOnCallFrame', params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;\n        post(method: 'Debugger.evaluateOnCallFrame', callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;\n        /**\n         * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.\n         */\n        post(method: 'Debugger.setVariableValue', params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setVariableValue', callback?: (err: Error | null) => void): void;\n        /**\n         * Changes return value in top frame. Available only at return break position.\n         * @experimental\n         */\n        post(method: 'Debugger.setReturnValue', params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setReturnValue', callback?: (err: Error | null) => void): void;\n        /**\n         * Enables or disables async call stacks tracking.\n         */\n        post(method: 'Debugger.setAsyncCallStackDepth', params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setAsyncCallStackDepth', callback?: (err: Error | null) => void): void;\n        /**\n         * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.\n         * @experimental\n         */\n        post(method: 'Debugger.setBlackboxPatterns', params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setBlackboxPatterns', callback?: (err: Error | null) => void): void;\n        /**\n         * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.\n         * @experimental\n         */\n        post(method: 'Debugger.setBlackboxedRanges', params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Debugger.setBlackboxedRanges', callback?: (err: Error | null) => void): void;\n        /**\n         * Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.\n         */\n        post(method: 'Console.enable', callback?: (err: Error | null) => void): void;\n        /**\n         * Disables console domain, prevents further console messages from being reported to the client.\n         */\n        post(method: 'Console.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Does nothing.\n         */\n        post(method: 'Console.clearMessages', callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.enable', callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.\n         */\n        post(method: 'Profiler.setSamplingInterval', params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.setSamplingInterval', callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.start', callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.stop', callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void;\n        /**\n         * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.\n         */\n        post(method: 'Profiler.startPreciseCoverage', params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'Profiler.startPreciseCoverage', callback?: (err: Error | null) => void): void;\n        /**\n         * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.\n         */\n        post(method: 'Profiler.stopPreciseCoverage', callback?: (err: Error | null) => void): void;\n        /**\n         * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.\n         */\n        post(method: 'Profiler.takePreciseCoverage', callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void;\n        /**\n         * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.\n         */\n        post(method: 'Profiler.getBestEffortCoverage', callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void;\n        post(method: 'HeapProfiler.enable', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.disable', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.startTrackingHeapObjects', params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.startTrackingHeapObjects', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.stopTrackingHeapObjects', params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.stopTrackingHeapObjects', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.takeHeapSnapshot', params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.takeHeapSnapshot', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.collectGarbage', callback?: (err: Error | null) => void): void;\n        post(\n            method: 'HeapProfiler.getObjectByHeapObjectId',\n            params?: HeapProfiler.GetObjectByHeapObjectIdParameterType,\n            callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void\n        ): void;\n        post(method: 'HeapProfiler.getObjectByHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void;\n        /**\n         * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).\n         */\n        post(method: 'HeapProfiler.addInspectedHeapObject', params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.addInspectedHeapObject', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.getHeapObjectId', params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;\n        post(method: 'HeapProfiler.getHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;\n        post(method: 'HeapProfiler.startSampling', params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.startSampling', callback?: (err: Error | null) => void): void;\n        post(method: 'HeapProfiler.stopSampling', callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void;\n        post(method: 'HeapProfiler.getSamplingProfile', callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void;\n        /**\n         * Gets supported tracing categories.\n         */\n        post(method: 'NodeTracing.getCategories', callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void;\n        /**\n         * Start trace events collection.\n         */\n        post(method: 'NodeTracing.start', params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'NodeTracing.start', callback?: (err: Error | null) => void): void;\n        /**\n         * Stop trace events collection. Remaining collected events will be sent as a sequence of\n         * dataCollected events followed by tracingComplete event.\n         */\n        post(method: 'NodeTracing.stop', callback?: (err: Error | null) => void): void;\n        /**\n         * Sends protocol message over session with given id.\n         */\n        post(method: 'NodeWorker.sendMessageToWorker', params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'NodeWorker.sendMessageToWorker', callback?: (err: Error | null) => void): void;\n        /**\n         * Instructs the inspector to attach to running workers. Will also attach to new workers\n         * as they start\n         */\n        post(method: 'NodeWorker.enable', params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'NodeWorker.enable', callback?: (err: Error | null) => void): void;\n        /**\n         * Detaches from all running workers and disables attaching to new workers as they are started.\n         */\n        post(method: 'NodeWorker.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Detached from the worker with given sessionId.\n         */\n        post(method: 'NodeWorker.detach', params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'NodeWorker.detach', callback?: (err: Error | null) => void): void;\n        /**\n         * Disables network tracking, prevents network events from being sent to the client.\n         */\n        post(method: 'Network.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Enables network tracking, network events will now be delivered to the client.\n         */\n        post(method: 'Network.enable', callback?: (err: Error | null) => void): void;\n        /**\n         * Enable the NodeRuntime events except by `NodeRuntime.waitingForDisconnect`.\n         */\n        post(method: 'NodeRuntime.enable', callback?: (err: Error | null) => void): void;\n        /**\n         * Disable NodeRuntime events\n         */\n        post(method: 'NodeRuntime.disable', callback?: (err: Error | null) => void): void;\n        /**\n         * Enable the `NodeRuntime.waitingForDisconnect`.\n         */\n        post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void;\n        post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', callback?: (err: Error | null) => void): void;\n\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        addListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        addListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        addListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        addListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        addListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        addListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        addListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        addListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        addListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        addListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        addListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        addListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        addListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        addListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        addListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        addListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        addListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        addListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        addListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        addListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        addListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        addListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        addListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        addListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        addListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        addListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        addListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        addListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        addListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        addListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        addListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        addListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: 'inspectorNotification', message: InspectorNotification<object>): boolean;\n        emit(event: 'Runtime.executionContextCreated', message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>): boolean;\n        emit(event: 'Runtime.executionContextDestroyed', message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>): boolean;\n        emit(event: 'Runtime.executionContextsCleared'): boolean;\n        emit(event: 'Runtime.exceptionThrown', message: InspectorNotification<Runtime.ExceptionThrownEventDataType>): boolean;\n        emit(event: 'Runtime.exceptionRevoked', message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>): boolean;\n        emit(event: 'Runtime.consoleAPICalled', message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>): boolean;\n        emit(event: 'Runtime.inspectRequested', message: InspectorNotification<Runtime.InspectRequestedEventDataType>): boolean;\n        emit(event: 'Debugger.scriptParsed', message: InspectorNotification<Debugger.ScriptParsedEventDataType>): boolean;\n        emit(event: 'Debugger.scriptFailedToParse', message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>): boolean;\n        emit(event: 'Debugger.breakpointResolved', message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>): boolean;\n        emit(event: 'Debugger.paused', message: InspectorNotification<Debugger.PausedEventDataType>): boolean;\n        emit(event: 'Debugger.resumed'): boolean;\n        emit(event: 'Console.messageAdded', message: InspectorNotification<Console.MessageAddedEventDataType>): boolean;\n        emit(event: 'Profiler.consoleProfileStarted', message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>): boolean;\n        emit(event: 'Profiler.consoleProfileFinished', message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>): boolean;\n        emit(event: 'HeapProfiler.addHeapSnapshotChunk', message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>): boolean;\n        emit(event: 'HeapProfiler.resetProfiles'): boolean;\n        emit(event: 'HeapProfiler.reportHeapSnapshotProgress', message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>): boolean;\n        emit(event: 'HeapProfiler.lastSeenObjectId', message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>): boolean;\n        emit(event: 'HeapProfiler.heapStatsUpdate', message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>): boolean;\n        emit(event: 'NodeTracing.dataCollected', message: InspectorNotification<NodeTracing.DataCollectedEventDataType>): boolean;\n        emit(event: 'NodeTracing.tracingComplete'): boolean;\n        emit(event: 'NodeWorker.attachedToWorker', message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>): boolean;\n        emit(event: 'NodeWorker.detachedFromWorker', message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>): boolean;\n        emit(event: 'NodeWorker.receivedMessageFromWorker', message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>): boolean;\n        emit(event: 'Network.requestWillBeSent', message: InspectorNotification<Network.RequestWillBeSentEventDataType>): boolean;\n        emit(event: 'Network.responseReceived', message: InspectorNotification<Network.ResponseReceivedEventDataType>): boolean;\n        emit(event: 'Network.loadingFailed', message: InspectorNotification<Network.LoadingFailedEventDataType>): boolean;\n        emit(event: 'Network.loadingFinished', message: InspectorNotification<Network.LoadingFinishedEventDataType>): boolean;\n        emit(event: 'NodeRuntime.waitingForDisconnect'): boolean;\n        emit(event: 'NodeRuntime.waitingForDebugger'): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        on(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        on(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        on(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        on(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        on(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        on(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        on(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        on(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        on(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        on(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        on(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        on(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        on(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        on(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        on(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        on(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        on(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        on(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        on(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        on(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        on(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        on(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        on(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        on(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        on(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        on(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        on(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        on(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        on(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        on(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        on(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        on(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        once(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        once(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        once(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        once(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        once(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        once(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        once(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        once(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        once(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        once(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        once(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        once(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        once(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        once(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        once(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        once(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        once(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        once(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        once(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        once(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        once(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        once(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        once(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        once(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        once(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        once(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        once(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        once(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        once(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        once(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        once(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        once(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        prependListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        prependListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        prependListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        prependListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        prependListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        prependListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        prependListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        prependListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        prependListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        prependListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        prependListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        prependListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        prependListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        prependListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        prependListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        prependListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        prependListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        prependListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        prependListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        prependListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        prependListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        prependListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        prependListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        prependListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        prependListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        prependListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        prependListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        prependListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        prependListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        prependListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        prependListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        prependListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        prependOnceListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        prependOnceListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        prependOnceListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        prependOnceListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        prependOnceListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        prependOnceListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        prependOnceListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        prependOnceListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        prependOnceListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        prependOnceListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        prependOnceListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        prependOnceListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        prependOnceListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        prependOnceListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        prependOnceListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        prependOnceListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        prependOnceListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        prependOnceListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        prependOnceListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        prependOnceListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        prependOnceListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        prependOnceListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        prependOnceListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        prependOnceListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        prependOnceListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        prependOnceListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        prependOnceListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        prependOnceListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        prependOnceListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        prependOnceListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        prependOnceListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        prependOnceListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n    }\n\n    /**\n     * Activate inspector on host and port. Equivalent to `node --inspect=[[host:]port]`, but can be done programmatically after node has\n     * started.\n     *\n     * If wait is `true`, will block until a client has connected to the inspect port\n     * and flow control has been passed to the debugger client.\n     *\n     * See the [security warning](https://nodejs.org/docs/latest-v22.x/api/cli.html#warning-binding-inspector-to-a-public-ipport-combination-is-insecure)\n     * regarding the `host` parameter usage.\n     * @param port Port to listen on for inspector connections. Defaults to what was specified on the CLI.\n     * @param host Host to listen on for inspector connections. Defaults to what was specified on the CLI.\n     * @param wait Block until a client has connected. Defaults to what was specified on the CLI.\n     * @returns Disposable that calls `inspector.close()`.\n     */\n    function open(port?: number, host?: string, wait?: boolean): Disposable;\n\n    /**\n     * Deactivate the inspector. Blocks until there are no active connections.\n     */\n    function close(): void;\n\n    /**\n     * Return the URL of the active inspector, or `undefined` if there is none.\n     *\n     * ```console\n     * $ node --inspect -p 'inspector.url()'\n     * Debugger listening on ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34\n     * For help, see: https://nodejs.org/en/docs/inspector\n     * ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34\n     *\n     * $ node --inspect=localhost:3000 -p 'inspector.url()'\n     * Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a\n     * For help, see: https://nodejs.org/en/docs/inspector\n     * ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a\n     *\n     * $ node -p 'inspector.url()'\n     * undefined\n     * ```\n     */\n    function url(): string | undefined;\n\n    /**\n     * Blocks until a client (existing or connected later) has sent `Runtime.runIfWaitingForDebugger` command.\n     *\n     * An exception will be thrown if there is no active inspector.\n     * @since v12.7.0\n     */\n    function waitForDebugger(): void;\n\n    // These methods are exposed by the V8 inspector console API (inspector/v8-console.h).\n    // The method signatures differ from those of the Node.js console, and are deliberately\n    // typed permissively.\n    interface InspectorConsole {\n        debug(...data: any[]): void;\n        error(...data: any[]): void;\n        info(...data: any[]): void;\n        log(...data: any[]): void;\n        warn(...data: any[]): void;\n        dir(...data: any[]): void;\n        dirxml(...data: any[]): void;\n        table(...data: any[]): void;\n        trace(...data: any[]): void;\n        group(...data: any[]): void;\n        groupCollapsed(...data: any[]): void;\n        groupEnd(...data: any[]): void;\n        clear(...data: any[]): void;\n        count(label?: any): void;\n        countReset(label?: any): void;\n        assert(value?: any, ...data: any[]): void;\n        profile(label?: any): void;\n        profileEnd(label?: any): void;\n        time(label?: any): void;\n        timeLog(label?: any): void;\n        timeStamp(label?: any): void;\n    }\n\n    /**\n     * An object to send messages to the remote inspector console.\n     * @since v11.0.0\n     */\n    const console: InspectorConsole;\n\n    // DevTools protocol event broadcast methods\n    namespace Network {\n        /**\n         * This feature is only available with the `--experimental-network-inspection` flag enabled.\n         *\n         * Broadcasts the `Network.requestWillBeSent` event to connected frontends. This event indicates that\n         * the application is about to send an HTTP request.\n         * @since v22.6.0\n         * @experimental\n         */\n        function requestWillBeSent(params: RequestWillBeSentEventDataType): void;\n        /**\n         * This feature is only available with the `--experimental-network-inspection` flag enabled.\n         *\n         * Broadcasts the `Network.responseReceived` event to connected frontends. This event indicates that\n         * HTTP response is available.\n         * @since v22.6.0\n         * @experimental\n         */\n        function responseReceived(params: ResponseReceivedEventDataType): void;\n        /**\n         * This feature is only available with the `--experimental-network-inspection` flag enabled.\n         *\n         * Broadcasts the `Network.loadingFinished` event to connected frontends. This event indicates that\n         * HTTP request has finished loading.\n         * @since v22.6.0\n         * @experimental\n         */\n        function loadingFinished(params: LoadingFinishedEventDataType): void;\n        /**\n         * This feature is only available with the `--experimental-network-inspection` flag enabled.\n         *\n         * Broadcasts the `Network.loadingFailed` event to connected frontends. This event indicates that\n         * HTTP request has failed to load.\n         * @since v22.7.0\n         * @experimental\n         */\n        function loadingFailed(params: LoadingFailedEventDataType): void;\n    }\n}\n\n/**\n * The `node:inspector` module provides an API for interacting with the V8\n * inspector.\n */\ndeclare module 'node:inspector' {\n    export * from 'inspector';\n}\n\n/**\n * The `node:inspector/promises` module provides an API for interacting with the V8\n * inspector.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/inspector/promises.js)\n * @since v19.0.0\n */\ndeclare module 'inspector/promises' {\n    import EventEmitter = require('node:events');\n    import {\n        open,\n        close,\n        url,\n        waitForDebugger,\n        console,\n        InspectorNotification,\n        Schema,\n        Runtime,\n        Debugger,\n        Console,\n        Profiler,\n        HeapProfiler,\n        NodeTracing,\n        NodeWorker,\n        Network,\n        NodeRuntime,\n    } from 'inspector';\n\n    /**\n     * The `inspector.Session` is used for dispatching messages to the V8 inspector\n     * back-end and receiving message responses and notifications.\n     * @since v19.0.0\n     */\n    class Session extends EventEmitter {\n        /**\n         * Create a new instance of the `inspector.Session` class.\n         * The inspector session needs to be connected through `session.connect()` before the messages can be dispatched to the inspector backend.\n         */\n        constructor();\n\n        /**\n         * Connects a session to the inspector back-end.\n         */\n        connect(): void;\n\n        /**\n         * Connects a session to the inspector back-end.\n         * An exception will be thrown if this API was not called on a Worker thread.\n         */\n        connectToMainThread(): void;\n\n        /**\n         * Immediately close the session. All pending message callbacks will be called with an error.\n         * `session.connect()` will need to be called to be able to send messages again.\n         * Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints.\n         */\n        disconnect(): void;\n\n        /**\n         * Posts a message to the inspector back-end.\n         *\n         * ```js\n         * import { Session } from 'node:inspector/promises';\n         * try {\n         *   const session = new Session();\n         *   session.connect();\n         *   const result = await session.post('Runtime.evaluate', { expression: '2 + 2' });\n         *   console.log(result);\n         * } catch (error) {\n         *   console.error(error);\n         * }\n         * // Output: { result: { type: 'number', value: 4, description: '4' } }\n         * ```\n         *\n         * The latest version of the V8 inspector protocol is published on the\n         * [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/).\n         *\n         * Node.js inspector supports all the Chrome DevTools Protocol domains declared\n         * by V8. Chrome DevTools Protocol domain provides an interface for interacting\n         * with one of the runtime agents used to inspect the application state and listen\n         * to the run-time events.\n         */\n        post(method: string, params?: object): Promise<void>;\n        /**\n         * Returns supported domains.\n         */\n        post(method: 'Schema.getDomains'): Promise<Schema.GetDomainsReturnType>;\n        /**\n         * Evaluates expression on global object.\n         */\n        post(method: 'Runtime.evaluate', params?: Runtime.EvaluateParameterType): Promise<Runtime.EvaluateReturnType>;\n        /**\n         * Add handler to promise with given promise object id.\n         */\n        post(method: 'Runtime.awaitPromise', params?: Runtime.AwaitPromiseParameterType): Promise<Runtime.AwaitPromiseReturnType>;\n        /**\n         * Calls function with given declaration on the given object. Object group of the result is inherited from the target object.\n         */\n        post(method: 'Runtime.callFunctionOn', params?: Runtime.CallFunctionOnParameterType): Promise<Runtime.CallFunctionOnReturnType>;\n        /**\n         * Returns properties of a given object. Object group of the result is inherited from the target object.\n         */\n        post(method: 'Runtime.getProperties', params?: Runtime.GetPropertiesParameterType): Promise<Runtime.GetPropertiesReturnType>;\n        /**\n         * Releases remote object with given id.\n         */\n        post(method: 'Runtime.releaseObject', params?: Runtime.ReleaseObjectParameterType): Promise<void>;\n        /**\n         * Releases all remote objects that belong to a given group.\n         */\n        post(method: 'Runtime.releaseObjectGroup', params?: Runtime.ReleaseObjectGroupParameterType): Promise<void>;\n        /**\n         * Tells inspected instance to run if it was waiting for debugger to attach.\n         */\n        post(method: 'Runtime.runIfWaitingForDebugger'): Promise<void>;\n        /**\n         * Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.\n         */\n        post(method: 'Runtime.enable'): Promise<void>;\n        /**\n         * Disables reporting of execution contexts creation.\n         */\n        post(method: 'Runtime.disable'): Promise<void>;\n        /**\n         * Discards collected exceptions and console API calls.\n         */\n        post(method: 'Runtime.discardConsoleEntries'): Promise<void>;\n        /**\n         * @experimental\n         */\n        post(method: 'Runtime.setCustomObjectFormatterEnabled', params?: Runtime.SetCustomObjectFormatterEnabledParameterType): Promise<void>;\n        /**\n         * Compiles expression.\n         */\n        post(method: 'Runtime.compileScript', params?: Runtime.CompileScriptParameterType): Promise<Runtime.CompileScriptReturnType>;\n        /**\n         * Runs script with given id in a given context.\n         */\n        post(method: 'Runtime.runScript', params?: Runtime.RunScriptParameterType): Promise<Runtime.RunScriptReturnType>;\n        post(method: 'Runtime.queryObjects', params?: Runtime.QueryObjectsParameterType): Promise<Runtime.QueryObjectsReturnType>;\n        /**\n         * Returns all let, const and class variables from global scope.\n         */\n        post(method: 'Runtime.globalLexicalScopeNames', params?: Runtime.GlobalLexicalScopeNamesParameterType): Promise<Runtime.GlobalLexicalScopeNamesReturnType>;\n        /**\n         * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.\n         */\n        post(method: 'Debugger.enable'): Promise<Debugger.EnableReturnType>;\n        /**\n         * Disables debugger for given page.\n         */\n        post(method: 'Debugger.disable'): Promise<void>;\n        /**\n         * Activates / deactivates all breakpoints on the page.\n         */\n        post(method: 'Debugger.setBreakpointsActive', params?: Debugger.SetBreakpointsActiveParameterType): Promise<void>;\n        /**\n         * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).\n         */\n        post(method: 'Debugger.setSkipAllPauses', params?: Debugger.SetSkipAllPausesParameterType): Promise<void>;\n        /**\n         * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.\n         */\n        post(method: 'Debugger.setBreakpointByUrl', params?: Debugger.SetBreakpointByUrlParameterType): Promise<Debugger.SetBreakpointByUrlReturnType>;\n        /**\n         * Sets JavaScript breakpoint at a given location.\n         */\n        post(method: 'Debugger.setBreakpoint', params?: Debugger.SetBreakpointParameterType): Promise<Debugger.SetBreakpointReturnType>;\n        /**\n         * Removes JavaScript breakpoint.\n         */\n        post(method: 'Debugger.removeBreakpoint', params?: Debugger.RemoveBreakpointParameterType): Promise<void>;\n        /**\n         * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.\n         */\n        post(method: 'Debugger.getPossibleBreakpoints', params?: Debugger.GetPossibleBreakpointsParameterType): Promise<Debugger.GetPossibleBreakpointsReturnType>;\n        /**\n         * Continues execution until specific location is reached.\n         */\n        post(method: 'Debugger.continueToLocation', params?: Debugger.ContinueToLocationParameterType): Promise<void>;\n        /**\n         * @experimental\n         */\n        post(method: 'Debugger.pauseOnAsyncCall', params?: Debugger.PauseOnAsyncCallParameterType): Promise<void>;\n        /**\n         * Steps over the statement.\n         */\n        post(method: 'Debugger.stepOver'): Promise<void>;\n        /**\n         * Steps into the function call.\n         */\n        post(method: 'Debugger.stepInto', params?: Debugger.StepIntoParameterType): Promise<void>;\n        /**\n         * Steps out of the function call.\n         */\n        post(method: 'Debugger.stepOut'): Promise<void>;\n        /**\n         * Stops on the next JavaScript statement.\n         */\n        post(method: 'Debugger.pause'): Promise<void>;\n        /**\n         * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.\n         * @experimental\n         */\n        post(method: 'Debugger.scheduleStepIntoAsync'): Promise<void>;\n        /**\n         * Resumes JavaScript execution.\n         */\n        post(method: 'Debugger.resume'): Promise<void>;\n        /**\n         * Returns stack trace with given <code>stackTraceId</code>.\n         * @experimental\n         */\n        post(method: 'Debugger.getStackTrace', params?: Debugger.GetStackTraceParameterType): Promise<Debugger.GetStackTraceReturnType>;\n        /**\n         * Searches for given string in script content.\n         */\n        post(method: 'Debugger.searchInContent', params?: Debugger.SearchInContentParameterType): Promise<Debugger.SearchInContentReturnType>;\n        /**\n         * Edits JavaScript source live.\n         */\n        post(method: 'Debugger.setScriptSource', params?: Debugger.SetScriptSourceParameterType): Promise<Debugger.SetScriptSourceReturnType>;\n        /**\n         * Restarts particular call frame from the beginning.\n         */\n        post(method: 'Debugger.restartFrame', params?: Debugger.RestartFrameParameterType): Promise<Debugger.RestartFrameReturnType>;\n        /**\n         * Returns source for the script with given id.\n         */\n        post(method: 'Debugger.getScriptSource', params?: Debugger.GetScriptSourceParameterType): Promise<Debugger.GetScriptSourceReturnType>;\n        /**\n         * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.\n         */\n        post(method: 'Debugger.setPauseOnExceptions', params?: Debugger.SetPauseOnExceptionsParameterType): Promise<void>;\n        /**\n         * Evaluates expression on a given call frame.\n         */\n        post(method: 'Debugger.evaluateOnCallFrame', params?: Debugger.EvaluateOnCallFrameParameterType): Promise<Debugger.EvaluateOnCallFrameReturnType>;\n        /**\n         * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.\n         */\n        post(method: 'Debugger.setVariableValue', params?: Debugger.SetVariableValueParameterType): Promise<void>;\n        /**\n         * Changes return value in top frame. Available only at return break position.\n         * @experimental\n         */\n        post(method: 'Debugger.setReturnValue', params?: Debugger.SetReturnValueParameterType): Promise<void>;\n        /**\n         * Enables or disables async call stacks tracking.\n         */\n        post(method: 'Debugger.setAsyncCallStackDepth', params?: Debugger.SetAsyncCallStackDepthParameterType): Promise<void>;\n        /**\n         * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.\n         * @experimental\n         */\n        post(method: 'Debugger.setBlackboxPatterns', params?: Debugger.SetBlackboxPatternsParameterType): Promise<void>;\n        /**\n         * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.\n         * @experimental\n         */\n        post(method: 'Debugger.setBlackboxedRanges', params?: Debugger.SetBlackboxedRangesParameterType): Promise<void>;\n        /**\n         * Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.\n         */\n        post(method: 'Console.enable'): Promise<void>;\n        /**\n         * Disables console domain, prevents further console messages from being reported to the client.\n         */\n        post(method: 'Console.disable'): Promise<void>;\n        /**\n         * Does nothing.\n         */\n        post(method: 'Console.clearMessages'): Promise<void>;\n        post(method: 'Profiler.enable'): Promise<void>;\n        post(method: 'Profiler.disable'): Promise<void>;\n        /**\n         * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.\n         */\n        post(method: 'Profiler.setSamplingInterval', params?: Profiler.SetSamplingIntervalParameterType): Promise<void>;\n        post(method: 'Profiler.start'): Promise<void>;\n        post(method: 'Profiler.stop'): Promise<Profiler.StopReturnType>;\n        /**\n         * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.\n         */\n        post(method: 'Profiler.startPreciseCoverage', params?: Profiler.StartPreciseCoverageParameterType): Promise<void>;\n        /**\n         * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.\n         */\n        post(method: 'Profiler.stopPreciseCoverage'): Promise<void>;\n        /**\n         * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.\n         */\n        post(method: 'Profiler.takePreciseCoverage'): Promise<Profiler.TakePreciseCoverageReturnType>;\n        /**\n         * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.\n         */\n        post(method: 'Profiler.getBestEffortCoverage'): Promise<Profiler.GetBestEffortCoverageReturnType>;\n        post(method: 'HeapProfiler.enable'): Promise<void>;\n        post(method: 'HeapProfiler.disable'): Promise<void>;\n        post(method: 'HeapProfiler.startTrackingHeapObjects', params?: HeapProfiler.StartTrackingHeapObjectsParameterType): Promise<void>;\n        post(method: 'HeapProfiler.stopTrackingHeapObjects', params?: HeapProfiler.StopTrackingHeapObjectsParameterType): Promise<void>;\n        post(method: 'HeapProfiler.takeHeapSnapshot', params?: HeapProfiler.TakeHeapSnapshotParameterType): Promise<void>;\n        post(method: 'HeapProfiler.collectGarbage'): Promise<void>;\n        post(method: 'HeapProfiler.getObjectByHeapObjectId', params?: HeapProfiler.GetObjectByHeapObjectIdParameterType): Promise<HeapProfiler.GetObjectByHeapObjectIdReturnType>;\n        /**\n         * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).\n         */\n        post(method: 'HeapProfiler.addInspectedHeapObject', params?: HeapProfiler.AddInspectedHeapObjectParameterType): Promise<void>;\n        post(method: 'HeapProfiler.getHeapObjectId', params?: HeapProfiler.GetHeapObjectIdParameterType): Promise<HeapProfiler.GetHeapObjectIdReturnType>;\n        post(method: 'HeapProfiler.startSampling', params?: HeapProfiler.StartSamplingParameterType): Promise<void>;\n        post(method: 'HeapProfiler.stopSampling'): Promise<HeapProfiler.StopSamplingReturnType>;\n        post(method: 'HeapProfiler.getSamplingProfile'): Promise<HeapProfiler.GetSamplingProfileReturnType>;\n        /**\n         * Gets supported tracing categories.\n         */\n        post(method: 'NodeTracing.getCategories'): Promise<NodeTracing.GetCategoriesReturnType>;\n        /**\n         * Start trace events collection.\n         */\n        post(method: 'NodeTracing.start', params?: NodeTracing.StartParameterType): Promise<void>;\n        /**\n         * Stop trace events collection. Remaining collected events will be sent as a sequence of\n         * dataCollected events followed by tracingComplete event.\n         */\n        post(method: 'NodeTracing.stop'): Promise<void>;\n        /**\n         * Sends protocol message over session with given id.\n         */\n        post(method: 'NodeWorker.sendMessageToWorker', params?: NodeWorker.SendMessageToWorkerParameterType): Promise<void>;\n        /**\n         * Instructs the inspector to attach to running workers. Will also attach to new workers\n         * as they start\n         */\n        post(method: 'NodeWorker.enable', params?: NodeWorker.EnableParameterType): Promise<void>;\n        /**\n         * Detaches from all running workers and disables attaching to new workers as they are started.\n         */\n        post(method: 'NodeWorker.disable'): Promise<void>;\n        /**\n         * Detached from the worker with given sessionId.\n         */\n        post(method: 'NodeWorker.detach', params?: NodeWorker.DetachParameterType): Promise<void>;\n        /**\n         * Disables network tracking, prevents network events from being sent to the client.\n         */\n        post(method: 'Network.disable'): Promise<void>;\n        /**\n         * Enables network tracking, network events will now be delivered to the client.\n         */\n        post(method: 'Network.enable'): Promise<void>;\n        /**\n         * Enable the NodeRuntime events except by `NodeRuntime.waitingForDisconnect`.\n         */\n        post(method: 'NodeRuntime.enable'): Promise<void>;\n        /**\n         * Disable NodeRuntime events\n         */\n        post(method: 'NodeRuntime.disable'): Promise<void>;\n        /**\n         * Enable the `NodeRuntime.waitingForDisconnect`.\n         */\n        post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType): Promise<void>;\n\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        addListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        addListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        addListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        addListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        addListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        addListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        addListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        addListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        addListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        addListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        addListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        addListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        addListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        addListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        addListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        addListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        addListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        addListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        addListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        addListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        addListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        addListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        addListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        addListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        addListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        addListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        addListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        addListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        addListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        addListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        addListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        addListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: 'inspectorNotification', message: InspectorNotification<object>): boolean;\n        emit(event: 'Runtime.executionContextCreated', message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>): boolean;\n        emit(event: 'Runtime.executionContextDestroyed', message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>): boolean;\n        emit(event: 'Runtime.executionContextsCleared'): boolean;\n        emit(event: 'Runtime.exceptionThrown', message: InspectorNotification<Runtime.ExceptionThrownEventDataType>): boolean;\n        emit(event: 'Runtime.exceptionRevoked', message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>): boolean;\n        emit(event: 'Runtime.consoleAPICalled', message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>): boolean;\n        emit(event: 'Runtime.inspectRequested', message: InspectorNotification<Runtime.InspectRequestedEventDataType>): boolean;\n        emit(event: 'Debugger.scriptParsed', message: InspectorNotification<Debugger.ScriptParsedEventDataType>): boolean;\n        emit(event: 'Debugger.scriptFailedToParse', message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>): boolean;\n        emit(event: 'Debugger.breakpointResolved', message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>): boolean;\n        emit(event: 'Debugger.paused', message: InspectorNotification<Debugger.PausedEventDataType>): boolean;\n        emit(event: 'Debugger.resumed'): boolean;\n        emit(event: 'Console.messageAdded', message: InspectorNotification<Console.MessageAddedEventDataType>): boolean;\n        emit(event: 'Profiler.consoleProfileStarted', message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>): boolean;\n        emit(event: 'Profiler.consoleProfileFinished', message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>): boolean;\n        emit(event: 'HeapProfiler.addHeapSnapshotChunk', message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>): boolean;\n        emit(event: 'HeapProfiler.resetProfiles'): boolean;\n        emit(event: 'HeapProfiler.reportHeapSnapshotProgress', message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>): boolean;\n        emit(event: 'HeapProfiler.lastSeenObjectId', message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>): boolean;\n        emit(event: 'HeapProfiler.heapStatsUpdate', message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>): boolean;\n        emit(event: 'NodeTracing.dataCollected', message: InspectorNotification<NodeTracing.DataCollectedEventDataType>): boolean;\n        emit(event: 'NodeTracing.tracingComplete'): boolean;\n        emit(event: 'NodeWorker.attachedToWorker', message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>): boolean;\n        emit(event: 'NodeWorker.detachedFromWorker', message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>): boolean;\n        emit(event: 'NodeWorker.receivedMessageFromWorker', message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>): boolean;\n        emit(event: 'Network.requestWillBeSent', message: InspectorNotification<Network.RequestWillBeSentEventDataType>): boolean;\n        emit(event: 'Network.responseReceived', message: InspectorNotification<Network.ResponseReceivedEventDataType>): boolean;\n        emit(event: 'Network.loadingFailed', message: InspectorNotification<Network.LoadingFailedEventDataType>): boolean;\n        emit(event: 'Network.loadingFinished', message: InspectorNotification<Network.LoadingFinishedEventDataType>): boolean;\n        emit(event: 'NodeRuntime.waitingForDisconnect'): boolean;\n        emit(event: 'NodeRuntime.waitingForDebugger'): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        on(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        on(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        on(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        on(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        on(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        on(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        on(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        on(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        on(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        on(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        on(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        on(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        on(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        on(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        on(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        on(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        on(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        on(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        on(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        on(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        on(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        on(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        on(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        on(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        on(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        on(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        on(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        on(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        on(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        on(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        on(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        on(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        once(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        once(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        once(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        once(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        once(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        once(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        once(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        once(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        once(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        once(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        once(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        once(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        once(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        once(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        once(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        once(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        once(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        once(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        once(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        once(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        once(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        once(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        once(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        once(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        once(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        once(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        once(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        once(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        once(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        once(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        once(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        once(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        prependListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        prependListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        prependListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        prependListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        prependListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        prependListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        prependListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        prependListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        prependListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        prependListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        prependListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        prependListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        prependListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        prependListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        prependListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        prependListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        prependListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        prependListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        prependListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        prependListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        prependListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        prependListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        prependListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        prependListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        prependListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        prependListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        prependListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        prependListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        prependListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        prependListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        prependListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        prependListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        /**\n         * Emitted when any notification from the V8 Inspector is received.\n         */\n        prependOnceListener(event: 'inspectorNotification', listener: (message: InspectorNotification<object>) => void): this;\n        /**\n         * Issued when new execution context is created.\n         */\n        prependOnceListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;\n        /**\n         * Issued when execution context is destroyed.\n         */\n        prependOnceListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;\n        /**\n         * Issued when all executionContexts were cleared in browser\n         */\n        prependOnceListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;\n        /**\n         * Issued when exception was thrown and unhandled.\n         */\n        prependOnceListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;\n        /**\n         * Issued when unhandled exception was revoked.\n         */\n        prependOnceListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;\n        /**\n         * Issued when console API was called.\n         */\n        prependOnceListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;\n        /**\n         * Issued when object should be inspected (for example, as a result of inspect() command line API call).\n         */\n        prependOnceListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.\n         */\n        prependOnceListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;\n        /**\n         * Fired when virtual machine fails to parse the script.\n         */\n        prependOnceListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;\n        /**\n         * Fired when breakpoint is resolved to an actual script and location.\n         */\n        prependOnceListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.\n         */\n        prependOnceListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;\n        /**\n         * Fired when the virtual machine resumed execution.\n         */\n        prependOnceListener(event: 'Debugger.resumed', listener: () => void): this;\n        /**\n         * Issued when new console message is added.\n         */\n        prependOnceListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;\n        /**\n         * Sent when new profile recording is started using console.profile() call.\n         */\n        prependOnceListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;\n        prependOnceListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;\n        prependOnceListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;\n        prependOnceListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;\n        prependOnceListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.\n         */\n        prependOnceListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;\n        /**\n         * If heap objects tracking has been started then backend may send update for one or more fragments\n         */\n        prependOnceListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;\n        /**\n         * Contains an bucket of collected trace events.\n         */\n        prependOnceListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;\n        /**\n         * Signals that tracing is stopped and there is no trace buffers pending flush, all data were\n         * delivered via dataCollected events.\n         */\n        prependOnceListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;\n        /**\n         * Issued when attached to a worker.\n         */\n        prependOnceListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;\n        /**\n         * Issued when detached from the worker.\n         */\n        prependOnceListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;\n        /**\n         * Notifies about a new protocol message received from the session\n         * (session ID is provided in attachedToWorker notification).\n         */\n        prependOnceListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;\n        /**\n         * Fired when page is about to send HTTP request.\n         */\n        prependOnceListener(event: 'Network.requestWillBeSent', listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;\n        /**\n         * Fired when HTTP response is available.\n         */\n        prependOnceListener(event: 'Network.responseReceived', listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;\n        prependOnceListener(event: 'Network.loadingFailed', listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;\n        prependOnceListener(event: 'Network.loadingFinished', listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;\n        /**\n         * This event is fired instead of `Runtime.executionContextDestroyed` when\n         * enabled.\n         * It is fired when the Node process finished all code execution and is\n         * waiting for all frontends to disconnect.\n         */\n        prependOnceListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;\n        /**\n         * This event is fired when the runtime is waiting for the debugger. For\n         * example, when inspector.waitingForDebugger is called\n         */\n        prependOnceListener(event: 'NodeRuntime.waitingForDebugger', listener: () => void): this;\n    }\n\n    export {\n        Session,\n        open,\n        close,\n        url,\n        waitForDebugger,\n        console,\n        InspectorNotification,\n        Schema,\n        Runtime,\n        Debugger,\n        Console,\n        Profiler,\n        HeapProfiler,\n        NodeTracing,\n        NodeWorker,\n        Network,\n        NodeRuntime,\n    };\n}\n\n/**\n * The `node:inspector/promises` module provides an API for interacting with the V8\n * inspector.\n * @since v19.0.0\n */\ndeclare module 'node:inspector/promises' {\n    export * from 'inspector/promises';\n}\n",
    "node_modules/@types/node/module.d.ts": "/**\n * @since v0.3.7\n */\ndeclare module \"module\" {\n    import { URL } from \"node:url\";\n    class Module {\n        constructor(id: string, parent?: Module);\n    }\n    interface Module extends NodeJS.Module {}\n    namespace Module {\n        export { Module };\n    }\n    namespace Module {\n        /**\n         * A list of the names of all modules provided by Node.js. Can be used to verify\n         * if a module is maintained by a third party or not.\n         *\n         * Note: the list doesn't contain prefix-only modules like `node:test`.\n         * @since v9.3.0, v8.10.0, v6.13.0\n         */\n        const builtinModules: readonly string[];\n        /**\n         * @since v12.2.0\n         * @param path Filename to be used to construct the require\n         * function. Must be a file URL object, file URL string, or absolute path\n         * string.\n         */\n        function createRequire(path: string | URL): NodeJS.Require;\n        namespace constants {\n            /**\n             * The following constants are returned as the `status` field in the object returned by\n             * {@link enableCompileCache} to indicate the result of the attempt to enable the\n             * [module compile cache](https://nodejs.org/docs/latest-v22.x/api/module.html#module-compile-cache).\n             * @since v22.8.0\n             */\n            namespace compileCacheStatus {\n                /**\n                 * Node.js has enabled the compile cache successfully. The directory used to store the\n                 * compile cache will be returned in the `directory` field in the\n                 * returned object.\n                 */\n                const ENABLED: number;\n                /**\n                 * The compile cache has already been enabled before, either by a previous call to\n                 * {@link enableCompileCache}, or by the `NODE_COMPILE_CACHE=dir`\n                 * environment variable. The directory used to store the\n                 * compile cache will be returned in the `directory` field in the\n                 * returned object.\n                 */\n                const ALREADY_ENABLED: number;\n                /**\n                 * Node.js fails to enable the compile cache. This can be caused by the lack of\n                 * permission to use the specified directory, or various kinds of file system errors.\n                 * The detail of the failure will be returned in the `message` field in the\n                 * returned object.\n                 */\n                const FAILED: number;\n                /**\n                 * Node.js cannot enable the compile cache because the environment variable\n                 * `NODE_DISABLE_COMPILE_CACHE=1` has been set.\n                 */\n                const DISABLED: number;\n            }\n        }\n        interface EnableCompileCacheResult {\n            /**\n             * One of the {@link constants.compileCacheStatus}\n             */\n            status: number;\n            /**\n             * If Node.js cannot enable the compile cache, this contains\n             * the error message. Only set if `status` is `module.constants.compileCacheStatus.FAILED`.\n             */\n            message?: string;\n            /**\n             * If the compile cache is enabled, this contains the directory\n             * where the compile cache is stored. Only set if  `status` is\n             * `module.constants.compileCacheStatus.ENABLED` or\n             * `module.constants.compileCacheStatus.ALREADY_ENABLED`.\n             */\n            directory?: string;\n        }\n        /**\n         * Enable [module compile cache](https://nodejs.org/docs/latest-v22.x/api/module.html#module-compile-cache)\n         * in the current Node.js instance.\n         *\n         * If `cacheDir` is not specified, Node.js will either use the directory specified by the\n         * `NODE_COMPILE_CACHE=dir` environment variable if it's set, or use\n         * `path.join(os.tmpdir(), 'node-compile-cache')` otherwise. For general use cases, it's\n         * recommended to call `module.enableCompileCache()` without specifying the `cacheDir`,\n         * so that the directory can be overridden by the `NODE_COMPILE_CACHE` environment\n         * variable when necessary.\n         *\n         * Since compile cache is supposed to be a quiet optimization that is not required for the\n         * application to be functional, this method is designed to not throw any exception when the\n         * compile cache cannot be enabled. Instead, it will return an object containing an error\n         * message in the `message` field to aid debugging.\n         * If compile cache is enabled successfully, the `directory` field in the returned object\n         * contains the path to the directory where the compile cache is stored. The `status`\n         * field in the returned object would be one of the `module.constants.compileCacheStatus`\n         * values to indicate the result of the attempt to enable the\n         * [module compile cache](https://nodejs.org/docs/latest-v22.x/api/module.html#module-compile-cache).\n         *\n         * This method only affects the current Node.js instance. To enable it in child worker threads,\n         * either call this method in child worker threads too, or set the\n         * `process.env.NODE_COMPILE_CACHE` value to compile cache directory so the behavior can\n         * be inherited into the child workers. The directory can be obtained either from the\n         * `directory` field returned by this method, or with {@link getCompileCacheDir}.\n         * @since v22.8.0\n         * @param cacheDir Optional path to specify the directory where the compile cache\n         * will be stored/retrieved.\n         */\n        function enableCompileCache(cacheDir?: string): EnableCompileCacheResult;\n        /**\n         * Flush the [module compile cache](https://nodejs.org/docs/latest-v22.x/api/module.html#module-compile-cache)\n         * accumulated from modules already loaded\n         * in the current Node.js instance to disk. This returns after all the flushing\n         * file system operations come to an end, no matter they succeed or not. If there\n         * are any errors, this will fail silently, since compile cache misses should not\n         * interfere with the actual operation of the application.\n         * @since v22.10.0\n         */\n        function flushCompileCache(): void;\n        /**\n         * @since v22.8.0\n         * @return Path to the [module compile cache](https://nodejs.org/docs/latest-v22.x/api/module.html#module-compile-cache)\n         * directory if it is enabled, or `undefined` otherwise.\n         */\n        function getCompileCacheDir(): string | undefined;\n        /**\n         * ```text\n         * /path/to/project\n         *   ├ packages/\n         *     ├ bar/\n         *       ├ bar.js\n         *       └ package.json // name = '@foo/bar'\n         *     └ qux/\n         *       ├ node_modules/\n         *         └ some-package/\n         *           └ package.json // name = 'some-package'\n         *       ├ qux.js\n         *       └ package.json // name = '@foo/qux'\n         *   ├ main.js\n         *   └ package.json // name = '@foo'\n         * ```\n         * ```js\n         * // /path/to/project/packages/bar/bar.js\n         * import { findPackageJSON } from 'node:module';\n         *\n         * findPackageJSON('..', import.meta.url);\n         * // '/path/to/project/package.json'\n         * // Same result when passing an absolute specifier instead:\n         * findPackageJSON(new URL('../', import.meta.url));\n         * findPackageJSON(import.meta.resolve('../'));\n         *\n         * findPackageJSON('some-package', import.meta.url);\n         * // '/path/to/project/packages/bar/node_modules/some-package/package.json'\n         * // When passing an absolute specifier, you might get a different result if the\n         * // resolved module is inside a subfolder that has nested `package.json`.\n         * findPackageJSON(import.meta.resolve('some-package'));\n         * // '/path/to/project/packages/bar/node_modules/some-package/some-subfolder/package.json'\n         *\n         * findPackageJSON('@foo/qux', import.meta.url);\n         * // '/path/to/project/packages/qux/package.json'\n         * ```\n         * @since v22.14.0\n         * @param specifier The specifier for the module whose `package.json` to\n         * retrieve. When passing a _bare specifier_, the `package.json` at the root of\n         * the package is returned. When passing a _relative specifier_ or an _absolute specifier_,\n         * the closest parent `package.json` is returned.\n         * @param base The absolute location (`file:` URL string or FS path) of the\n         * containing  module. For CJS, use `__filename` (not `__dirname`!); for ESM, use\n         * `import.meta.url`. You do not need to pass it if `specifier` is an _absolute specifier_.\n         * @returns A path if the `package.json` is found. When `startLocation`\n         * is a package, the package's root `package.json`; when a relative or unresolved, the closest\n         * `package.json` to the `startLocation`.\n         */\n        function findPackageJSON(specifier: string | URL, base?: string | URL): string | undefined;\n        /**\n         * @since v18.6.0, v16.17.0\n         */\n        function isBuiltin(moduleName: string): boolean;\n        interface RegisterOptions<Data> {\n            /**\n             * If you want to resolve `specifier` relative to a\n             * base URL, such as `import.meta.url`, you can pass that URL here. This\n             * property is ignored if the `parentURL` is supplied as the second argument.\n             * @default 'data:'\n             */\n            parentURL?: string | URL | undefined;\n            /**\n             * Any arbitrary, cloneable JavaScript value to pass into the\n             * {@link initialize} hook.\n             */\n            data?: Data | undefined;\n            /**\n             * [Transferable objects](https://nodejs.org/docs/latest-v22.x/api/worker_threads.html#portpostmessagevalue-transferlist)\n             * to be passed into the `initialize` hook.\n             */\n            transferList?: any[] | undefined;\n        }\n        /* eslint-disable @definitelytyped/no-unnecessary-generics */\n        /**\n         * Register a module that exports hooks that customize Node.js module\n         * resolution and loading behavior. See\n         * [Customization hooks](https://nodejs.org/docs/latest-v22.x/api/module.html#customization-hooks).\n         *\n         * This feature requires `--allow-worker` if used with the\n         * [Permission Model](https://nodejs.org/docs/latest-v22.x/api/permissions.html#permission-model).\n         * @since v20.6.0, v18.19.0\n         * @param specifier Customization hooks to be registered; this should be\n         * the same string that would be passed to `import()`, except that if it is\n         * relative, it is resolved relative to `parentURL`.\n         * @param parentURL f you want to resolve `specifier` relative to a base\n         * URL, such as `import.meta.url`, you can pass that URL here.\n         */\n        function register<Data = any>(\n            specifier: string | URL,\n            parentURL?: string | URL,\n            options?: RegisterOptions<Data>,\n        ): void;\n        function register<Data = any>(specifier: string | URL, options?: RegisterOptions<Data>): void;\n        interface RegisterHooksOptions {\n            /**\n             * See [load hook](https://nodejs.org/docs/latest-v22.x/api/module.html#loadurl-context-nextload).\n             * @default undefined\n             */\n            load?: LoadHookSync | undefined;\n            /**\n             * See [resolve hook](https://nodejs.org/docs/latest-v22.x/api/module.html#resolvespecifier-context-nextresolve).\n             * @default undefined\n             */\n            resolve?: ResolveHookSync | undefined;\n        }\n        interface ModuleHooks {\n            /**\n             * Deregister the hook instance.\n             */\n            deregister(): void;\n        }\n        /**\n         * Register [hooks](https://nodejs.org/docs/latest-v22.x/api/module.html#customization-hooks)\n         * that customize Node.js module resolution and loading behavior.\n         * @since v22.15.0\n         * @experimental\n         */\n        function registerHooks(options: RegisterHooksOptions): ModuleHooks;\n        interface StripTypeScriptTypesOptions {\n            /**\n             * Possible values are:\n             * * `'strip'` Only strip type annotations without performing the transformation of TypeScript features.\n             * * `'transform'` Strip type annotations and transform TypeScript features to JavaScript.\n             * @default 'strip'\n             */\n            mode?: \"strip\" | \"transform\" | undefined;\n            /**\n             * Only when `mode` is `'transform'`, if `true`, a source map\n             * will be generated for the transformed code.\n             * @default false\n             */\n            sourceMap?: boolean | undefined;\n            /**\n             * Specifies the source url used in the source map.\n             */\n            sourceUrl?: string | undefined;\n        }\n        /**\n         * `module.stripTypeScriptTypes()` removes type annotations from TypeScript code. It\n         * can be used to strip type annotations from TypeScript code before running it\n         * with `vm.runInContext()` or `vm.compileFunction()`.\n         * By default, it will throw an error if the code contains TypeScript features\n         * that require transformation such as `Enums`,\n         * see [type-stripping](https://nodejs.org/docs/latest-v22.x/api/typescript.md#type-stripping) for more information.\n         * When mode is `'transform'`, it also transforms TypeScript features to JavaScript,\n         * see [transform TypeScript features](https://nodejs.org/docs/latest-v22.x/api/typescript.md#typescript-features) for more information.\n         * When mode is `'strip'`, source maps are not generated, because locations are preserved.\n         * If `sourceMap` is provided, when mode is `'strip'`, an error will be thrown.\n         *\n         * _WARNING_: The output of this function should not be considered stable across Node.js versions,\n         * due to changes in the TypeScript parser.\n         *\n         * ```js\n         * import { stripTypeScriptTypes } from 'node:module';\n         * const code = 'const a: number = 1;';\n         * const strippedCode = stripTypeScriptTypes(code);\n         * console.log(strippedCode);\n         * // Prints: const a         = 1;\n         * ```\n         *\n         * If `sourceUrl` is provided, it will be used appended as a comment at the end of the output:\n         *\n         * ```js\n         * import { stripTypeScriptTypes } from 'node:module';\n         * const code = 'const a: number = 1;';\n         * const strippedCode = stripTypeScriptTypes(code, { mode: 'strip', sourceUrl: 'source.ts' });\n         * console.log(strippedCode);\n         * // Prints: const a         = 1\\n\\n//# sourceURL=source.ts;\n         * ```\n         *\n         * When `mode` is `'transform'`, the code is transformed to JavaScript:\n         *\n         * ```js\n         * import { stripTypeScriptTypes } from 'node:module';\n         * const code = `\n         *   namespace MathUtil {\n         *     export const add = (a: number, b: number) => a + b;\n         *   }`;\n         * const strippedCode = stripTypeScriptTypes(code, { mode: 'transform', sourceMap: true });\n         * console.log(strippedCode);\n         * // Prints:\n         * // var MathUtil;\n         * // (function(MathUtil) {\n         * //     MathUtil.add = (a, b)=>a + b;\n         * // })(MathUtil || (MathUtil = {}));\n         * // # sourceMappingURL=data:application/json;base64, ...\n         * ```\n         * @since v22.13.0\n         * @param code The code to strip type annotations from.\n         * @returns The code with type annotations stripped.\n         */\n        function stripTypeScriptTypes(code: string, options?: StripTypeScriptTypesOptions): string;\n        /* eslint-enable @definitelytyped/no-unnecessary-generics */\n        /**\n         * The `module.syncBuiltinESMExports()` method updates all the live bindings for\n         * builtin `ES Modules` to match the properties of the `CommonJS` exports. It\n         * does not add or remove exported names from the `ES Modules`.\n         *\n         * ```js\n         * import fs from 'node:fs';\n         * import assert from 'node:assert';\n         * import { syncBuiltinESMExports } from 'node:module';\n         *\n         * fs.readFile = newAPI;\n         *\n         * delete fs.readFileSync;\n         *\n         * function newAPI() {\n         *   // ...\n         * }\n         *\n         * fs.newAPI = newAPI;\n         *\n         * syncBuiltinESMExports();\n         *\n         * import('node:fs').then((esmFS) => {\n         *   // It syncs the existing readFile property with the new value\n         *   assert.strictEqual(esmFS.readFile, newAPI);\n         *   // readFileSync has been deleted from the required fs\n         *   assert.strictEqual('readFileSync' in fs, false);\n         *   // syncBuiltinESMExports() does not remove readFileSync from esmFS\n         *   assert.strictEqual('readFileSync' in esmFS, true);\n         *   // syncBuiltinESMExports() does not add names\n         *   assert.strictEqual(esmFS.newAPI, undefined);\n         * });\n         * ```\n         * @since v12.12.0\n         */\n        function syncBuiltinESMExports(): void;\n        interface ImportAttributes extends NodeJS.Dict<string> {\n            type?: string | undefined;\n        }\n        type ModuleFormat =\n            | \"builtin\"\n            | \"commonjs\"\n            | \"commonjs-typescript\"\n            | \"json\"\n            | \"module\"\n            | \"module-typescript\"\n            | \"wasm\";\n        type ModuleSource = string | ArrayBuffer | NodeJS.TypedArray;\n        /**\n         * The `initialize` hook provides a way to define a custom function that runs in\n         * the hooks thread when the hooks module is initialized. Initialization happens\n         * when the hooks module is registered via {@link register}.\n         *\n         * This hook can receive data from a {@link register} invocation, including\n         * ports and other transferable objects. The return value of `initialize` can be a\n         * `Promise`, in which case it will be awaited before the main application thread\n         * execution resumes.\n         */\n        type InitializeHook<Data = any> = (data: Data) => void | Promise<void>;\n        interface ResolveHookContext {\n            /**\n             * Export conditions of the relevant `package.json`\n             */\n            conditions: string[];\n            /**\n             *  An object whose key-value pairs represent the assertions for the module to import\n             */\n            importAttributes: ImportAttributes;\n            /**\n             * The module importing this one, or undefined if this is the Node.js entry point\n             */\n            parentURL: string | undefined;\n        }\n        interface ResolveFnOutput {\n            /**\n             * A hint to the load hook (it might be ignored); can be an intermediary value.\n             */\n            format?: string | null | undefined;\n            /**\n             * The import attributes to use when caching the module (optional; if excluded the input will be used)\n             */\n            importAttributes?: ImportAttributes | undefined;\n            /**\n             * A signal that this hook intends to terminate the chain of `resolve` hooks.\n             * @default false\n             */\n            shortCircuit?: boolean | undefined;\n            /**\n             * The absolute URL to which this input resolves\n             */\n            url: string;\n        }\n        /**\n         * The `resolve` hook chain is responsible for telling Node.js where to find and\n         * how to cache a given `import` statement or expression, or `require` call. It can\n         * optionally return a format (such as `'module'`) as a hint to the `load` hook. If\n         * a format is specified, the `load` hook is ultimately responsible for providing\n         * the final `format` value (and it is free to ignore the hint provided by\n         * `resolve`); if `resolve` provides a `format`, a custom `load` hook is required\n         * even if only to pass the value to the Node.js default `load` hook.\n         */\n        type ResolveHook = (\n            specifier: string,\n            context: ResolveHookContext,\n            nextResolve: (\n                specifier: string,\n                context?: Partial<ResolveHookContext>,\n            ) => ResolveFnOutput | Promise<ResolveFnOutput>,\n        ) => ResolveFnOutput | Promise<ResolveFnOutput>;\n        type ResolveHookSync = (\n            specifier: string,\n            context: ResolveHookContext,\n            nextResolve: (\n                specifier: string,\n                context?: Partial<ResolveHookContext>,\n            ) => ResolveFnOutput,\n        ) => ResolveFnOutput;\n        interface LoadHookContext {\n            /**\n             * Export conditions of the relevant `package.json`\n             */\n            conditions: string[];\n            /**\n             * The format optionally supplied by the `resolve` hook chain (can be an intermediary value).\n             */\n            format: string | null | undefined;\n            /**\n             *  An object whose key-value pairs represent the assertions for the module to import\n             */\n            importAttributes: ImportAttributes;\n        }\n        interface LoadFnOutput {\n            format: string | null | undefined;\n            /**\n             * A signal that this hook intends to terminate the chain of `resolve` hooks.\n             * @default false\n             */\n            shortCircuit?: boolean | undefined;\n            /**\n             * The source for Node.js to evaluate\n             */\n            source?: ModuleSource | undefined;\n        }\n        /**\n         * The `load` hook provides a way to define a custom method of determining how a\n         * URL should be interpreted, retrieved, and parsed. It is also in charge of\n         * validating the import attributes.\n         */\n        type LoadHook = (\n            url: string,\n            context: LoadHookContext,\n            nextLoad: (\n                url: string,\n                context?: Partial<LoadHookContext>,\n            ) => LoadFnOutput | Promise<LoadFnOutput>,\n        ) => LoadFnOutput | Promise<LoadFnOutput>;\n        type LoadHookSync = (\n            url: string,\n            context: LoadHookContext,\n            nextLoad: (\n                url: string,\n                context?: Partial<LoadHookContext>,\n            ) => LoadFnOutput,\n        ) => LoadFnOutput;\n        interface SourceMapsSupport {\n            /**\n             * If the source maps support is enabled\n             */\n            enabled: boolean;\n            /**\n             * If the support is enabled for files in `node_modules`.\n             */\n            nodeModules: boolean;\n            /**\n             * If the support is enabled for generated code from `eval` or `new Function`.\n             */\n            generatedCode: boolean;\n        }\n        /**\n         * This method returns whether the [Source Map v3](https://tc39.es/ecma426/) support for stack\n         * traces is enabled.\n         * @since v22.14.0\n         */\n        function getSourceMapsSupport(): SourceMapsSupport;\n        /**\n         * `path` is the resolved path for the file for which a corresponding source map\n         * should be fetched.\n         * @since v13.7.0, v12.17.0\n         * @return Returns `module.SourceMap` if a source map is found, `undefined` otherwise.\n         */\n        function findSourceMap(path: string): SourceMap | undefined;\n        interface SetSourceMapsSupportOptions {\n            /**\n             * If enabling the support for files in `node_modules`.\n             * @default false\n             */\n            nodeModules?: boolean | undefined;\n            /**\n             * If enabling the support for generated code from `eval` or `new Function`.\n             * @default false\n             */\n            generatedCode?: boolean | undefined;\n        }\n        /**\n         * This function enables or disables the [Source Map v3](https://tc39.es/ecma426/) support for\n         * stack traces.\n         *\n         * It provides same features as launching Node.js process with commandline options\n         * `--enable-source-maps`, with additional options to alter the support for files\n         * in `node_modules` or generated codes.\n         *\n         * Only source maps in JavaScript files that are loaded after source maps has been\n         * enabled will be parsed and loaded. Preferably, use the commandline options\n         * `--enable-source-maps` to avoid losing track of source maps of modules loaded\n         * before this API call.\n         * @since v22.14.0\n         */\n        function setSourceMapsSupport(enabled: boolean, options?: SetSourceMapsSupportOptions): void;\n        interface SourceMapConstructorOptions {\n            /**\n             * @since v21.0.0, v20.5.0\n             */\n            lineLengths?: readonly number[] | undefined;\n        }\n        interface SourceMapPayload {\n            file: string;\n            version: number;\n            sources: string[];\n            sourcesContent: string[];\n            names: string[];\n            mappings: string;\n            sourceRoot: string;\n        }\n        interface SourceMapping {\n            generatedLine: number;\n            generatedColumn: number;\n            originalSource: string;\n            originalLine: number;\n            originalColumn: number;\n        }\n        interface SourceOrigin {\n            /**\n             * The name of the range in the source map, if one was provided\n             */\n            name: string | undefined;\n            /**\n             * The file name of the original source, as reported in the SourceMap\n             */\n            fileName: string;\n            /**\n             * The 1-indexed lineNumber of the corresponding call site in the original source\n             */\n            lineNumber: number;\n            /**\n             * The 1-indexed columnNumber of the corresponding call site in the original source\n             */\n            columnNumber: number;\n        }\n        /**\n         * @since v13.7.0, v12.17.0\n         */\n        class SourceMap {\n            constructor(payload: SourceMapPayload, options?: SourceMapConstructorOptions);\n            /**\n             * Getter for the payload used to construct the `SourceMap` instance.\n             */\n            readonly payload: SourceMapPayload;\n            /**\n             * Given a line offset and column offset in the generated source\n             * file, returns an object representing the SourceMap range in the\n             * original file if found, or an empty object if not.\n             *\n             * The object returned contains the following keys:\n             *\n             * The returned value represents the raw range as it appears in the\n             * SourceMap, based on zero-indexed offsets, _not_ 1-indexed line and\n             * column numbers as they appear in Error messages and CallSite\n             * objects.\n             *\n             * To get the corresponding 1-indexed line and column numbers from a\n             * lineNumber and columnNumber as they are reported by Error stacks\n             * and CallSite objects, use `sourceMap.findOrigin(lineNumber, columnNumber)`\n             * @param lineOffset The zero-indexed line number offset in the generated source\n             * @param columnOffset The zero-indexed column number offset in the generated source\n             */\n            findEntry(lineOffset: number, columnOffset: number): SourceMapping | {};\n            /**\n             * Given a 1-indexed `lineNumber` and `columnNumber` from a call site in the generated source,\n             * find the corresponding call site location in the original source.\n             *\n             * If the `lineNumber` and `columnNumber` provided are not found in any source map,\n             * then an empty object is returned.\n             * @param lineNumber The 1-indexed line number of the call site in the generated source\n             * @param columnNumber The 1-indexed column number of the call site in the generated source\n             */\n            findOrigin(lineNumber: number, columnNumber: number): SourceOrigin | {};\n        }\n        function runMain(main?: string): void;\n        function wrap(script: string): string;\n    }\n    global {\n        interface ImportMeta {\n            /**\n             * The directory name of the current module. This is the same as the `path.dirname()` of the `import.meta.filename`.\n             * **Caveat:** only present on `file:` modules.\n             */\n            dirname: string;\n            /**\n             * The full absolute path and filename of the current module, with symlinks resolved.\n             * This is the same as the `url.fileURLToPath()` of the `import.meta.url`.\n             * **Caveat:** only local modules support this property. Modules not using the `file:` protocol will not provide it.\n             */\n            filename: string;\n            /**\n             * The absolute `file:` URL of the module.\n             */\n            url: string;\n            /**\n             * Provides a module-relative resolution function scoped to each module, returning\n             * the URL string.\n             *\n             * Second `parent` parameter is only used when the `--experimental-import-meta-resolve`\n             * command flag enabled.\n             *\n             * @since v20.6.0\n             *\n             * @param specifier The module specifier to resolve relative to `parent`.\n             * @param parent The absolute parent module URL to resolve from.\n             * @returns The absolute (`file:`) URL string for the resolved module.\n             */\n            resolve(specifier: string, parent?: string | URL | undefined): string;\n        }\n        namespace NodeJS {\n            interface Module {\n                /**\n                 * The module objects required for the first time by this one.\n                 * @since v0.1.16\n                 */\n                children: Module[];\n                /**\n                 * The `module.exports` object is created by the `Module` system. Sometimes this is\n                 * not acceptable; many want their module to be an instance of some class. To do\n                 * this, assign the desired export object to `module.exports`.\n                 * @since v0.1.16\n                 */\n                exports: any;\n                /**\n                 * The fully resolved filename of the module.\n                 * @since v0.1.16\n                 */\n                filename: string;\n                /**\n                 * The identifier for the module. Typically this is the fully resolved\n                 * filename.\n                 * @since v0.1.16\n                 */\n                id: string;\n                /**\n                 * `true` if the module is running during the Node.js preload\n                 * phase.\n                 * @since v15.4.0, v14.17.0\n                 */\n                isPreloading: boolean;\n                /**\n                 * Whether or not the module is done loading, or is in the process of\n                 * loading.\n                 * @since v0.1.16\n                 */\n                loaded: boolean;\n                /**\n                 * The module that first required this one, or `null` if the current module is the\n                 * entry point of the current process, or `undefined` if the module was loaded by\n                 * something that is not a CommonJS module (e.g. REPL or `import`).\n                 * @since v0.1.16\n                 * @deprecated Please use `require.main` and `module.children` instead.\n                 */\n                parent: Module | null | undefined;\n                /**\n                 * The directory name of the module. This is usually the same as the\n                 * `path.dirname()` of the `module.id`.\n                 * @since v11.14.0\n                 */\n                path: string;\n                /**\n                 * The search paths for the module.\n                 * @since v0.4.0\n                 */\n                paths: string[];\n                /**\n                 * The `module.require()` method provides a way to load a module as if\n                 * `require()` was called from the original module.\n                 * @since v0.5.1\n                 */\n                require(id: string): any;\n            }\n            interface Require {\n                /**\n                 * Used to import modules, `JSON`, and local files.\n                 * @since v0.1.13\n                 */\n                (id: string): any;\n                /**\n                 * Modules are cached in this object when they are required. By deleting a key\n                 * value from this object, the next `require` will reload the module.\n                 * This does not apply to\n                 * [native addons](https://nodejs.org/docs/latest-v22.x/api/addons.html),\n                 * for which reloading will result in an error.\n                 * @since v0.3.0\n                 */\n                cache: Dict<Module>;\n                /**\n                 * Instruct `require` on how to handle certain file extensions.\n                 * @since v0.3.0\n                 * @deprecated\n                 */\n                extensions: RequireExtensions;\n                /**\n                 * The `Module` object representing the entry script loaded when the Node.js\n                 * process launched, or `undefined` if the entry point of the program is not a\n                 * CommonJS module.\n                 * @since v0.1.17\n                 */\n                main: Module | undefined;\n                /**\n                 * @since v0.3.0\n                 */\n                resolve: RequireResolve;\n            }\n            /** @deprecated */\n            interface RequireExtensions extends Dict<(module: Module, filename: string) => any> {\n                \".js\": (module: Module, filename: string) => any;\n                \".json\": (module: Module, filename: string) => any;\n                \".node\": (module: Module, filename: string) => any;\n            }\n            interface RequireResolveOptions {\n                /**\n                 * Paths to resolve module location from. If present, these\n                 * paths are used instead of the default resolution paths, with the exception\n                 * of\n                 * [GLOBAL\\_FOLDERS](https://nodejs.org/docs/latest-v22.x/api/modules.html#loading-from-the-global-folders)\n                 * like `$HOME/.node_modules`, which are\n                 * always included. Each of these paths is used as a starting point for\n                 * the module resolution algorithm, meaning that the `node_modules` hierarchy\n                 * is checked from this location.\n                 * @since v8.9.0\n                 */\n                paths?: string[] | undefined;\n            }\n            interface RequireResolve {\n                /**\n                 * Use the internal `require()` machinery to look up the location of a module,\n                 * but rather than loading the module, just return the resolved filename.\n                 *\n                 * If the module can not be found, a `MODULE_NOT_FOUND` error is thrown.\n                 * @since v0.3.0\n                 * @param request The module path to resolve.\n                 */\n                (request: string, options?: RequireResolveOptions): string;\n                /**\n                 * Returns an array containing the paths searched during resolution of `request` or\n                 * `null` if the `request` string references a core module, for example `http` or\n                 * `fs`.\n                 * @since v8.9.0\n                 * @param request The module path whose lookup paths are being retrieved.\n                 */\n                paths(request: string): string[] | null;\n            }\n        }\n        /**\n         * The directory name of the current module. This is the same as the\n         * `path.dirname()` of the `__filename`.\n         * @since v0.1.27\n         */\n        var __dirname: string;\n        /**\n         * The file name of the current module. This is the current module file's absolute\n         * path with symlinks resolved.\n         *\n         * For a main program this is not necessarily the same as the file name used in the\n         * command line.\n         * @since v0.0.1\n         */\n        var __filename: string;\n        /**\n         * The `exports` variable is available within a module's file-level scope, and is\n         * assigned the value of `module.exports` before the module is evaluated.\n         * @since v0.1.16\n         */\n        var exports: NodeJS.Module[\"exports\"];\n        /**\n         * A reference to the current module.\n         * @since v0.1.16\n         */\n        var module: NodeJS.Module;\n        /**\n         * @since v0.1.13\n         */\n        var require: NodeJS.Require;\n        // Global-scope aliases for backwards compatibility with @types/node <13.0.x\n        /** @deprecated Use `NodeJS.Module` instead. */\n        interface NodeModule extends NodeJS.Module {}\n        /** @deprecated Use `NodeJS.Require` instead. */\n        interface NodeRequire extends NodeJS.Require {}\n        /** @deprecated Use `NodeJS.RequireResolve` instead. */\n        interface RequireResolve extends NodeJS.RequireResolve {}\n    }\n    export = Module;\n}\ndeclare module \"node:module\" {\n    import module = require(\"module\");\n    export = module;\n}\n",
    "node_modules/@types/node/net.d.ts": "/**\n * > Stability: 2 - Stable\n *\n * The `node:net` module provides an asynchronous network API for creating stream-based\n * TCP or `IPC` servers ({@link createServer}) and clients\n * ({@link createConnection}).\n *\n * It can be accessed using:\n *\n * ```js\n * import net from 'node:net';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/net.js)\n */\ndeclare module \"net\" {\n    import * as stream from \"node:stream\";\n    import { Abortable, EventEmitter } from \"node:events\";\n    import * as dns from \"node:dns\";\n    type LookupFunction = (\n        hostname: string,\n        options: dns.LookupOptions,\n        callback: (err: NodeJS.ErrnoException | null, address: string | dns.LookupAddress[], family?: number) => void,\n    ) => void;\n    interface AddressInfo {\n        address: string;\n        family: string;\n        port: number;\n    }\n    interface SocketConstructorOpts {\n        fd?: number | undefined;\n        allowHalfOpen?: boolean | undefined;\n        onread?: OnReadOpts | undefined;\n        readable?: boolean | undefined;\n        writable?: boolean | undefined;\n        signal?: AbortSignal;\n    }\n    interface OnReadOpts {\n        buffer: Uint8Array | (() => Uint8Array);\n        /**\n         * This function is called for every chunk of incoming data.\n         * Two arguments are passed to it: the number of bytes written to `buffer` and a reference to `buffer`.\n         * Return `false` from this function to implicitly `pause()` the socket.\n         */\n        callback(bytesWritten: number, buffer: Uint8Array): boolean;\n    }\n    // TODO: remove empty ConnectOpts placeholder at next major @types/node version.\n    /** @deprecated */\n    interface ConnectOpts {}\n    interface TcpSocketConnectOpts {\n        port: number;\n        host?: string | undefined;\n        localAddress?: string | undefined;\n        localPort?: number | undefined;\n        hints?: number | undefined;\n        family?: number | undefined;\n        lookup?: LookupFunction | undefined;\n        noDelay?: boolean | undefined;\n        keepAlive?: boolean | undefined;\n        keepAliveInitialDelay?: number | undefined;\n        /**\n         * @since v18.13.0\n         */\n        autoSelectFamily?: boolean | undefined;\n        /**\n         * @since v18.13.0\n         */\n        autoSelectFamilyAttemptTimeout?: number | undefined;\n        blockList?: BlockList | undefined;\n    }\n    interface IpcSocketConnectOpts {\n        path: string;\n    }\n    type SocketConnectOpts = TcpSocketConnectOpts | IpcSocketConnectOpts;\n    type SocketReadyState = \"opening\" | \"open\" | \"readOnly\" | \"writeOnly\" | \"closed\";\n    /**\n     * This class is an abstraction of a TCP socket or a streaming `IPC` endpoint\n     * (uses named pipes on Windows, and Unix domain sockets otherwise). It is also\n     * an `EventEmitter`.\n     *\n     * A `net.Socket` can be created by the user and used directly to interact with\n     * a server. For example, it is returned by {@link createConnection},\n     * so the user can use it to talk to the server.\n     *\n     * It can also be created by Node.js and passed to the user when a connection\n     * is received. For example, it is passed to the listeners of a `'connection'` event emitted on a {@link Server}, so the user can use\n     * it to interact with the client.\n     * @since v0.3.4\n     */\n    class Socket extends stream.Duplex {\n        constructor(options?: SocketConstructorOpts);\n        /**\n         * Destroys the socket after all data is written. If the `finish` event was already emitted the socket is destroyed immediately.\n         * If the socket is still writable it implicitly calls `socket.end()`.\n         * @since v0.3.4\n         */\n        destroySoon(): void;\n        /**\n         * Sends data on the socket. The second parameter specifies the encoding in the\n         * case of a string. It defaults to UTF8 encoding.\n         *\n         * Returns `true` if the entire data was flushed successfully to the kernel\n         * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is again free.\n         *\n         * The optional `callback` parameter will be executed when the data is finally\n         * written out, which may not be immediately.\n         *\n         * See `Writable` stream `write()` method for more\n         * information.\n         * @since v0.1.90\n         * @param [encoding='utf8'] Only used when data is `string`.\n         */\n        write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;\n        write(str: Uint8Array | string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;\n        /**\n         * Initiate a connection on a given socket.\n         *\n         * Possible signatures:\n         *\n         * * `socket.connect(options[, connectListener])`\n         * * `socket.connect(path[, connectListener])` for `IPC` connections.\n         * * `socket.connect(port[, host][, connectListener])` for TCP connections.\n         * * Returns: `net.Socket` The socket itself.\n         *\n         * This function is asynchronous. When the connection is established, the `'connect'` event will be emitted. If there is a problem connecting,\n         * instead of a `'connect'` event, an `'error'` event will be emitted with\n         * the error passed to the `'error'` listener.\n         * The last parameter `connectListener`, if supplied, will be added as a listener\n         * for the `'connect'` event **once**.\n         *\n         * This function should only be used for reconnecting a socket after`'close'` has been emitted or otherwise it may lead to undefined\n         * behavior.\n         */\n        connect(options: SocketConnectOpts, connectionListener?: () => void): this;\n        connect(port: number, host: string, connectionListener?: () => void): this;\n        connect(port: number, connectionListener?: () => void): this;\n        connect(path: string, connectionListener?: () => void): this;\n        /**\n         * Set the encoding for the socket as a `Readable Stream`. See `readable.setEncoding()` for more information.\n         * @since v0.1.90\n         * @return The socket itself.\n         */\n        setEncoding(encoding?: BufferEncoding): this;\n        /**\n         * Pauses the reading of data. That is, `'data'` events will not be emitted.\n         * Useful to throttle back an upload.\n         * @return The socket itself.\n         */\n        pause(): this;\n        /**\n         * Close the TCP connection by sending an RST packet and destroy the stream.\n         * If this TCP socket is in connecting status, it will send an RST packet and destroy this TCP socket once it is connected.\n         * Otherwise, it will call `socket.destroy` with an `ERR_SOCKET_CLOSED` Error.\n         * If this is not a TCP socket (for example, a pipe), calling this method will immediately throw an `ERR_INVALID_HANDLE_TYPE` Error.\n         * @since v18.3.0, v16.17.0\n         */\n        resetAndDestroy(): this;\n        /**\n         * Resumes reading after a call to `socket.pause()`.\n         * @return The socket itself.\n         */\n        resume(): this;\n        /**\n         * Sets the socket to timeout after `timeout` milliseconds of inactivity on\n         * the socket. By default `net.Socket` do not have a timeout.\n         *\n         * When an idle timeout is triggered the socket will receive a `'timeout'` event but the connection will not be severed. The user must manually call `socket.end()` or `socket.destroy()` to\n         * end the connection.\n         *\n         * ```js\n         * socket.setTimeout(3000);\n         * socket.on('timeout', () => {\n         *   console.log('socket timeout');\n         *   socket.end();\n         * });\n         * ```\n         *\n         * If `timeout` is 0, then the existing idle timeout is disabled.\n         *\n         * The optional `callback` parameter will be added as a one-time listener for the `'timeout'` event.\n         * @since v0.1.90\n         * @return The socket itself.\n         */\n        setTimeout(timeout: number, callback?: () => void): this;\n        /**\n         * Enable/disable the use of Nagle's algorithm.\n         *\n         * When a TCP connection is created, it will have Nagle's algorithm enabled.\n         *\n         * Nagle's algorithm delays data before it is sent via the network. It attempts\n         * to optimize throughput at the expense of latency.\n         *\n         * Passing `true` for `noDelay` or not passing an argument will disable Nagle's\n         * algorithm for the socket. Passing `false` for `noDelay` will enable Nagle's\n         * algorithm.\n         * @since v0.1.90\n         * @param [noDelay=true]\n         * @return The socket itself.\n         */\n        setNoDelay(noDelay?: boolean): this;\n        /**\n         * Enable/disable keep-alive functionality, and optionally set the initial\n         * delay before the first keepalive probe is sent on an idle socket.\n         *\n         * Set `initialDelay` (in milliseconds) to set the delay between the last\n         * data packet received and the first keepalive probe. Setting `0` for`initialDelay` will leave the value unchanged from the default\n         * (or previous) setting.\n         *\n         * Enabling the keep-alive functionality will set the following socket options:\n         *\n         * * `SO_KEEPALIVE=1`\n         * * `TCP_KEEPIDLE=initialDelay`\n         * * `TCP_KEEPCNT=10`\n         * * `TCP_KEEPINTVL=1`\n         * @since v0.1.92\n         * @param [enable=false]\n         * @param [initialDelay=0]\n         * @return The socket itself.\n         */\n        setKeepAlive(enable?: boolean, initialDelay?: number): this;\n        /**\n         * Returns the bound `address`, the address `family` name and `port` of the\n         * socket as reported by the operating system:`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`\n         * @since v0.1.90\n         */\n        address(): AddressInfo | {};\n        /**\n         * Calling `unref()` on a socket will allow the program to exit if this is the only\n         * active socket in the event system. If the socket is already `unref`ed calling`unref()` again will have no effect.\n         * @since v0.9.1\n         * @return The socket itself.\n         */\n        unref(): this;\n        /**\n         * Opposite of `unref()`, calling `ref()` on a previously `unref`ed socket will _not_ let the program exit if it's the only socket left (the default behavior).\n         * If the socket is `ref`ed calling `ref` again will have no effect.\n         * @since v0.9.1\n         * @return The socket itself.\n         */\n        ref(): this;\n        /**\n         * This property is only present if the family autoselection algorithm is enabled in `socket.connect(options)`\n         * and it is an array of the addresses that have been attempted.\n         *\n         * Each address is a string in the form of `$IP:$PORT`.\n         * If the connection was successful, then the last address is the one that the socket is currently connected to.\n         * @since v19.4.0\n         */\n        readonly autoSelectFamilyAttemptedAddresses: string[];\n        /**\n         * This property shows the number of characters buffered for writing. The buffer\n         * may contain strings whose length after encoding is not yet known. So this number\n         * is only an approximation of the number of bytes in the buffer.\n         *\n         * `net.Socket` has the property that `socket.write()` always works. This is to\n         * help users get up and running quickly. The computer cannot always keep up\n         * with the amount of data that is written to a socket. The network connection\n         * simply might be too slow. Node.js will internally queue up the data written to a\n         * socket and send it out over the wire when it is possible.\n         *\n         * The consequence of this internal buffering is that memory may grow.\n         * Users who experience large or growing `bufferSize` should attempt to\n         * \"throttle\" the data flows in their program with `socket.pause()` and `socket.resume()`.\n         * @since v0.3.8\n         * @deprecated Since v14.6.0 - Use `writableLength` instead.\n         */\n        readonly bufferSize: number;\n        /**\n         * The amount of received bytes.\n         * @since v0.5.3\n         */\n        readonly bytesRead: number;\n        /**\n         * The amount of bytes sent.\n         * @since v0.5.3\n         */\n        readonly bytesWritten: number;\n        /**\n         * If `true`, `socket.connect(options[, connectListener])` was\n         * called and has not yet finished. It will stay `true` until the socket becomes\n         * connected, then it is set to `false` and the `'connect'` event is emitted. Note\n         * that the `socket.connect(options[, connectListener])` callback is a listener for the `'connect'` event.\n         * @since v6.1.0\n         */\n        readonly connecting: boolean;\n        /**\n         * This is `true` if the socket is not connected yet, either because `.connect()`has not yet been called or because it is still in the process of connecting\n         * (see `socket.connecting`).\n         * @since v11.2.0, v10.16.0\n         */\n        readonly pending: boolean;\n        /**\n         * See `writable.destroyed` for further details.\n         */\n        readonly destroyed: boolean;\n        /**\n         * The string representation of the local IP address the remote client is\n         * connecting on. For example, in a server listening on `'0.0.0.0'`, if a client\n         * connects on `'192.168.1.1'`, the value of `socket.localAddress` would be`'192.168.1.1'`.\n         * @since v0.9.6\n         */\n        readonly localAddress?: string;\n        /**\n         * The numeric representation of the local port. For example, `80` or `21`.\n         * @since v0.9.6\n         */\n        readonly localPort?: number;\n        /**\n         * The string representation of the local IP family. `'IPv4'` or `'IPv6'`.\n         * @since v18.8.0, v16.18.0\n         */\n        readonly localFamily?: string;\n        /**\n         * This property represents the state of the connection as a string.\n         *\n         * * If the stream is connecting `socket.readyState` is `opening`.\n         * * If the stream is readable and writable, it is `open`.\n         * * If the stream is readable and not writable, it is `readOnly`.\n         * * If the stream is not readable and writable, it is `writeOnly`.\n         * @since v0.5.0\n         */\n        readonly readyState: SocketReadyState;\n        /**\n         * The string representation of the remote IP address. For example,`'74.125.127.100'` or `'2001:4860:a005::68'`. Value may be `undefined` if\n         * the socket is destroyed (for example, if the client disconnected).\n         * @since v0.5.10\n         */\n        readonly remoteAddress?: string | undefined;\n        /**\n         * The string representation of the remote IP family. `'IPv4'` or `'IPv6'`. Value may be `undefined` if\n         * the socket is destroyed (for example, if the client disconnected).\n         * @since v0.11.14\n         */\n        readonly remoteFamily?: string | undefined;\n        /**\n         * The numeric representation of the remote port. For example, `80` or `21`. Value may be `undefined` if\n         * the socket is destroyed (for example, if the client disconnected).\n         * @since v0.5.10\n         */\n        readonly remotePort?: number | undefined;\n        /**\n         * The socket timeout in milliseconds as set by `socket.setTimeout()`.\n         * It is `undefined` if a timeout has not been set.\n         * @since v10.7.0\n         */\n        readonly timeout?: number | undefined;\n        /**\n         * Half-closes the socket. i.e., it sends a FIN packet. It is possible the\n         * server will still send some data.\n         *\n         * See `writable.end()` for further details.\n         * @since v0.1.90\n         * @param [encoding='utf8'] Only used when data is `string`.\n         * @param callback Optional callback for when the socket is finished.\n         * @return The socket itself.\n         */\n        end(callback?: () => void): this;\n        end(buffer: Uint8Array | string, callback?: () => void): this;\n        end(str: Uint8Array | string, encoding?: BufferEncoding, callback?: () => void): this;\n        /**\n         * events.EventEmitter\n         *   1. close\n         *   2. connect\n         *   3. connectionAttempt\n         *   4. connectionAttemptFailed\n         *   5. connectionAttemptTimeout\n         *   6. data\n         *   7. drain\n         *   8. end\n         *   9. error\n         *   10. lookup\n         *   11. ready\n         *   12. timeout\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: (hadError: boolean) => void): this;\n        addListener(event: \"connect\", listener: () => void): this;\n        addListener(event: \"connectionAttempt\", listener: (ip: string, port: number, family: number) => void): this;\n        addListener(\n            event: \"connectionAttemptFailed\",\n            listener: (ip: string, port: number, family: number, error: Error) => void,\n        ): this;\n        addListener(\n            event: \"connectionAttemptTimeout\",\n            listener: (ip: string, port: number, family: number) => void,\n        ): this;\n        addListener(event: \"data\", listener: (data: Buffer) => void): this;\n        addListener(event: \"drain\", listener: () => void): this;\n        addListener(event: \"end\", listener: () => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(\n            event: \"lookup\",\n            listener: (err: Error, address: string, family: string | number, host: string) => void,\n        ): this;\n        addListener(event: \"ready\", listener: () => void): this;\n        addListener(event: \"timeout\", listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\", hadError: boolean): boolean;\n        emit(event: \"connect\"): boolean;\n        emit(event: \"connectionAttempt\", ip: string, port: number, family: number): boolean;\n        emit(event: \"connectionAttemptFailed\", ip: string, port: number, family: number, error: Error): boolean;\n        emit(event: \"connectionAttemptTimeout\", ip: string, port: number, family: number): boolean;\n        emit(event: \"data\", data: Buffer): boolean;\n        emit(event: \"drain\"): boolean;\n        emit(event: \"end\"): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"lookup\", err: Error, address: string, family: string | number, host: string): boolean;\n        emit(event: \"ready\"): boolean;\n        emit(event: \"timeout\"): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: (hadError: boolean) => void): this;\n        on(event: \"connect\", listener: () => void): this;\n        on(event: \"connectionAttempt\", listener: (ip: string, port: number, family: number) => void): this;\n        on(\n            event: \"connectionAttemptFailed\",\n            listener: (ip: string, port: number, family: number, error: Error) => void,\n        ): this;\n        on(event: \"connectionAttemptTimeout\", listener: (ip: string, port: number, family: number) => void): this;\n        on(event: \"data\", listener: (data: Buffer) => void): this;\n        on(event: \"drain\", listener: () => void): this;\n        on(event: \"end\", listener: () => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(\n            event: \"lookup\",\n            listener: (err: Error, address: string, family: string | number, host: string) => void,\n        ): this;\n        on(event: \"ready\", listener: () => void): this;\n        on(event: \"timeout\", listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: (hadError: boolean) => void): this;\n        once(event: \"connectionAttempt\", listener: (ip: string, port: number, family: number) => void): this;\n        once(\n            event: \"connectionAttemptFailed\",\n            listener: (ip: string, port: number, family: number, error: Error) => void,\n        ): this;\n        once(event: \"connectionAttemptTimeout\", listener: (ip: string, port: number, family: number) => void): this;\n        once(event: \"connect\", listener: () => void): this;\n        once(event: \"data\", listener: (data: Buffer) => void): this;\n        once(event: \"drain\", listener: () => void): this;\n        once(event: \"end\", listener: () => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(\n            event: \"lookup\",\n            listener: (err: Error, address: string, family: string | number, host: string) => void,\n        ): this;\n        once(event: \"ready\", listener: () => void): this;\n        once(event: \"timeout\", listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: (hadError: boolean) => void): this;\n        prependListener(event: \"connect\", listener: () => void): this;\n        prependListener(event: \"connectionAttempt\", listener: (ip: string, port: number, family: number) => void): this;\n        prependListener(\n            event: \"connectionAttemptFailed\",\n            listener: (ip: string, port: number, family: number, error: Error) => void,\n        ): this;\n        prependListener(\n            event: \"connectionAttemptTimeout\",\n            listener: (ip: string, port: number, family: number) => void,\n        ): this;\n        prependListener(event: \"data\", listener: (data: Buffer) => void): this;\n        prependListener(event: \"drain\", listener: () => void): this;\n        prependListener(event: \"end\", listener: () => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(\n            event: \"lookup\",\n            listener: (err: Error, address: string, family: string | number, host: string) => void,\n        ): this;\n        prependListener(event: \"ready\", listener: () => void): this;\n        prependListener(event: \"timeout\", listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: (hadError: boolean) => void): this;\n        prependOnceListener(event: \"connect\", listener: () => void): this;\n        prependOnceListener(\n            event: \"connectionAttempt\",\n            listener: (ip: string, port: number, family: number) => void,\n        ): this;\n        prependOnceListener(\n            event: \"connectionAttemptFailed\",\n            listener: (ip: string, port: number, family: number, error: Error) => void,\n        ): this;\n        prependOnceListener(\n            event: \"connectionAttemptTimeout\",\n            listener: (ip: string, port: number, family: number) => void,\n        ): this;\n        prependOnceListener(event: \"data\", listener: (data: Buffer) => void): this;\n        prependOnceListener(event: \"drain\", listener: () => void): this;\n        prependOnceListener(event: \"end\", listener: () => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(\n            event: \"lookup\",\n            listener: (err: Error, address: string, family: string | number, host: string) => void,\n        ): this;\n        prependOnceListener(event: \"ready\", listener: () => void): this;\n        prependOnceListener(event: \"timeout\", listener: () => void): this;\n    }\n    interface ListenOptions extends Abortable {\n        backlog?: number | undefined;\n        exclusive?: boolean | undefined;\n        host?: string | undefined;\n        /**\n         * @default false\n         */\n        ipv6Only?: boolean | undefined;\n        reusePort?: boolean | undefined;\n        path?: string | undefined;\n        port?: number | undefined;\n        readableAll?: boolean | undefined;\n        writableAll?: boolean | undefined;\n    }\n    interface ServerOpts {\n        /**\n         * Indicates whether half-opened TCP connections are allowed.\n         * @default false\n         */\n        allowHalfOpen?: boolean | undefined;\n        /**\n         * Indicates whether the socket should be paused on incoming connections.\n         * @default false\n         */\n        pauseOnConnect?: boolean | undefined;\n        /**\n         * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.\n         * @default false\n         * @since v16.5.0\n         */\n        noDelay?: boolean | undefined;\n        /**\n         * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received,\n         * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`.\n         * @default false\n         * @since v16.5.0\n         */\n        keepAlive?: boolean | undefined;\n        /**\n         * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.\n         * @default 0\n         * @since v16.5.0\n         */\n        keepAliveInitialDelay?: number | undefined;\n        /**\n         * Optionally overrides all `net.Socket`s' `readableHighWaterMark` and `writableHighWaterMark`.\n         * @default See [stream.getDefaultHighWaterMark()](https://nodejs.org/docs/latest-v22.x/api/stream.html#streamgetdefaulthighwatermarkobjectmode).\n         * @since v18.17.0, v20.1.0\n         */\n        highWaterMark?: number | undefined;\n        /**\n         * `blockList` can be used for disabling inbound\n         * access to specific IP addresses, IP ranges, or IP subnets. This does not\n         * work if the server is behind a reverse proxy, NAT, etc. because the address\n         * checked against the block list is the address of the proxy, or the one\n         * specified by the NAT.\n         * @since v22.13.0\n         */\n        blockList?: BlockList | undefined;\n    }\n    interface DropArgument {\n        localAddress?: string;\n        localPort?: number;\n        localFamily?: string;\n        remoteAddress?: string;\n        remotePort?: number;\n        remoteFamily?: string;\n    }\n    /**\n     * This class is used to create a TCP or `IPC` server.\n     * @since v0.1.90\n     */\n    class Server extends EventEmitter {\n        constructor(connectionListener?: (socket: Socket) => void);\n        constructor(options?: ServerOpts, connectionListener?: (socket: Socket) => void);\n        /**\n         * Start a server listening for connections. A `net.Server` can be a TCP or\n         * an `IPC` server depending on what it listens to.\n         *\n         * Possible signatures:\n         *\n         * * `server.listen(handle[, backlog][, callback])`\n         * * `server.listen(options[, callback])`\n         * * `server.listen(path[, backlog][, callback])` for `IPC` servers\n         * * `server.listen([port[, host[, backlog]]][, callback])` for TCP servers\n         *\n         * This function is asynchronous. When the server starts listening, the `'listening'` event will be emitted. The last parameter `callback`will be added as a listener for the `'listening'`\n         * event.\n         *\n         * All `listen()` methods can take a `backlog` parameter to specify the maximum\n         * length of the queue of pending connections. The actual length will be determined\n         * by the OS through sysctl settings such as `tcp_max_syn_backlog` and `somaxconn` on Linux. The default value of this parameter is 511 (not 512).\n         *\n         * All {@link Socket} are set to `SO_REUSEADDR` (see [`socket(7)`](https://man7.org/linux/man-pages/man7/socket.7.html) for\n         * details).\n         *\n         * The `server.listen()` method can be called again if and only if there was an\n         * error during the first `server.listen()` call or `server.close()` has been\n         * called. Otherwise, an `ERR_SERVER_ALREADY_LISTEN` error will be thrown.\n         *\n         * One of the most common errors raised when listening is `EADDRINUSE`.\n         * This happens when another server is already listening on the requested`port`/`path`/`handle`. One way to handle this would be to retry\n         * after a certain amount of time:\n         *\n         * ```js\n         * server.on('error', (e) => {\n         *   if (e.code === 'EADDRINUSE') {\n         *     console.error('Address in use, retrying...');\n         *     setTimeout(() => {\n         *       server.close();\n         *       server.listen(PORT, HOST);\n         *     }, 1000);\n         *   }\n         * });\n         * ```\n         */\n        listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this;\n        listen(port?: number, hostname?: string, listeningListener?: () => void): this;\n        listen(port?: number, backlog?: number, listeningListener?: () => void): this;\n        listen(port?: number, listeningListener?: () => void): this;\n        listen(path: string, backlog?: number, listeningListener?: () => void): this;\n        listen(path: string, listeningListener?: () => void): this;\n        listen(options: ListenOptions, listeningListener?: () => void): this;\n        listen(handle: any, backlog?: number, listeningListener?: () => void): this;\n        listen(handle: any, listeningListener?: () => void): this;\n        /**\n         * Stops the server from accepting new connections and keeps existing\n         * connections. This function is asynchronous, the server is finally closed\n         * when all connections are ended and the server emits a `'close'` event.\n         * The optional `callback` will be called once the `'close'` event occurs. Unlike\n         * that event, it will be called with an `Error` as its only argument if the server\n         * was not open when it was closed.\n         * @since v0.1.90\n         * @param callback Called when the server is closed.\n         */\n        close(callback?: (err?: Error) => void): this;\n        /**\n         * Returns the bound `address`, the address `family` name, and `port` of the server\n         * as reported by the operating system if listening on an IP socket\n         * (useful to find which port was assigned when getting an OS-assigned address):`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`.\n         *\n         * For a server listening on a pipe or Unix domain socket, the name is returned\n         * as a string.\n         *\n         * ```js\n         * const server = net.createServer((socket) => {\n         *   socket.end('goodbye\\n');\n         * }).on('error', (err) => {\n         *   // Handle errors here.\n         *   throw err;\n         * });\n         *\n         * // Grab an arbitrary unused port.\n         * server.listen(() => {\n         *   console.log('opened server on', server.address());\n         * });\n         * ```\n         *\n         * `server.address()` returns `null` before the `'listening'` event has been\n         * emitted or after calling `server.close()`.\n         * @since v0.1.90\n         */\n        address(): AddressInfo | string | null;\n        /**\n         * Asynchronously get the number of concurrent connections on the server. Works\n         * when sockets were sent to forks.\n         *\n         * Callback should take two arguments `err` and `count`.\n         * @since v0.9.7\n         */\n        getConnections(cb: (error: Error | null, count: number) => void): this;\n        /**\n         * Opposite of `unref()`, calling `ref()` on a previously `unref`ed server will _not_ let the program exit if it's the only server left (the default behavior).\n         * If the server is `ref`ed calling `ref()` again will have no effect.\n         * @since v0.9.1\n         */\n        ref(): this;\n        /**\n         * Calling `unref()` on a server will allow the program to exit if this is the only\n         * active server in the event system. If the server is already `unref`ed calling`unref()` again will have no effect.\n         * @since v0.9.1\n         */\n        unref(): this;\n        /**\n         * Set this property to reject connections when the server's connection count gets\n         * high.\n         *\n         * It is not recommended to use this option once a socket has been sent to a child\n         * with `child_process.fork()`.\n         * @since v0.2.0\n         */\n        maxConnections: number;\n        connections: number;\n        /**\n         * Indicates whether or not the server is listening for connections.\n         * @since v5.7.0\n         */\n        readonly listening: boolean;\n        /**\n         * events.EventEmitter\n         *   1. close\n         *   2. connection\n         *   3. error\n         *   4. listening\n         *   5. drop\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"listening\", listener: () => void): this;\n        addListener(event: \"drop\", listener: (data?: DropArgument) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"connection\", socket: Socket): boolean;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"listening\"): boolean;\n        emit(event: \"drop\", data?: DropArgument): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"connection\", listener: (socket: Socket) => void): this;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"listening\", listener: () => void): this;\n        on(event: \"drop\", listener: (data?: DropArgument) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"connection\", listener: (socket: Socket) => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"listening\", listener: () => void): this;\n        once(event: \"drop\", listener: (data?: DropArgument) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"listening\", listener: () => void): this;\n        prependListener(event: \"drop\", listener: (data?: DropArgument) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"connection\", listener: (socket: Socket) => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"listening\", listener: () => void): this;\n        prependOnceListener(event: \"drop\", listener: (data?: DropArgument) => void): this;\n        /**\n         * Calls {@link Server.close()} and returns a promise that fulfills when the server has closed.\n         * @since v20.5.0\n         */\n        [Symbol.asyncDispose](): Promise<void>;\n    }\n    type IPVersion = \"ipv4\" | \"ipv6\";\n    /**\n     * The `BlockList` object can be used with some network APIs to specify rules for\n     * disabling inbound or outbound access to specific IP addresses, IP ranges, or\n     * IP subnets.\n     * @since v15.0.0, v14.18.0\n     */\n    class BlockList {\n        /**\n         * Adds a rule to block the given IP address.\n         * @since v15.0.0, v14.18.0\n         * @param address An IPv4 or IPv6 address.\n         * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`.\n         */\n        addAddress(address: string, type?: IPVersion): void;\n        addAddress(address: SocketAddress): void;\n        /**\n         * Adds a rule to block a range of IP addresses from `start` (inclusive) to`end` (inclusive).\n         * @since v15.0.0, v14.18.0\n         * @param start The starting IPv4 or IPv6 address in the range.\n         * @param end The ending IPv4 or IPv6 address in the range.\n         * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`.\n         */\n        addRange(start: string, end: string, type?: IPVersion): void;\n        addRange(start: SocketAddress, end: SocketAddress): void;\n        /**\n         * Adds a rule to block a range of IP addresses specified as a subnet mask.\n         * @since v15.0.0, v14.18.0\n         * @param net The network IPv4 or IPv6 address.\n         * @param prefix The number of CIDR prefix bits. For IPv4, this must be a value between `0` and `32`. For IPv6, this must be between `0` and `128`.\n         * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`.\n         */\n        addSubnet(net: SocketAddress, prefix: number): void;\n        addSubnet(net: string, prefix: number, type?: IPVersion): void;\n        /**\n         * Returns `true` if the given IP address matches any of the rules added to the`BlockList`.\n         *\n         * ```js\n         * const blockList = new net.BlockList();\n         * blockList.addAddress('123.123.123.123');\n         * blockList.addRange('10.0.0.1', '10.0.0.10');\n         * blockList.addSubnet('8592:757c:efae:4e45::', 64, 'ipv6');\n         *\n         * console.log(blockList.check('123.123.123.123'));  // Prints: true\n         * console.log(blockList.check('10.0.0.3'));  // Prints: true\n         * console.log(blockList.check('222.111.111.222'));  // Prints: false\n         *\n         * // IPv6 notation for IPv4 addresses works:\n         * console.log(blockList.check('::ffff:7b7b:7b7b', 'ipv6')); // Prints: true\n         * console.log(blockList.check('::ffff:123.123.123.123', 'ipv6')); // Prints: true\n         * ```\n         * @since v15.0.0, v14.18.0\n         * @param address The IP address to check\n         * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`.\n         */\n        check(address: SocketAddress): boolean;\n        check(address: string, type?: IPVersion): boolean;\n        /**\n         * The list of rules added to the blocklist.\n         * @since v15.0.0, v14.18.0\n         */\n        rules: readonly string[];\n        /**\n         * Returns `true` if the `value` is a `net.BlockList`.\n         * @since v22.13.0\n         * @param value Any JS value\n         */\n        static isBlockList(value: unknown): value is BlockList;\n    }\n    interface TcpNetConnectOpts extends TcpSocketConnectOpts, SocketConstructorOpts {\n        timeout?: number | undefined;\n    }\n    interface IpcNetConnectOpts extends IpcSocketConnectOpts, SocketConstructorOpts {\n        timeout?: number | undefined;\n    }\n    type NetConnectOpts = TcpNetConnectOpts | IpcNetConnectOpts;\n    /**\n     * Creates a new TCP or `IPC` server.\n     *\n     * If `allowHalfOpen` is set to `true`, when the other end of the socket\n     * signals the end of transmission, the server will only send back the end of\n     * transmission when `socket.end()` is explicitly called. For example, in the\n     * context of TCP, when a FIN packed is received, a FIN packed is sent\n     * back only when `socket.end()` is explicitly called. Until then the\n     * connection is half-closed (non-readable but still writable). See `'end'` event and [RFC 1122](https://tools.ietf.org/html/rfc1122) (section 4.2.2.13) for more information.\n     *\n     * If `pauseOnConnect` is set to `true`, then the socket associated with each\n     * incoming connection will be paused, and no data will be read from its handle.\n     * This allows connections to be passed between processes without any data being\n     * read by the original process. To begin reading data from a paused socket, call `socket.resume()`.\n     *\n     * The server can be a TCP server or an `IPC` server, depending on what it `listen()` to.\n     *\n     * Here is an example of a TCP echo server which listens for connections\n     * on port 8124:\n     *\n     * ```js\n     * import net from 'node:net';\n     * const server = net.createServer((c) => {\n     *   // 'connection' listener.\n     *   console.log('client connected');\n     *   c.on('end', () => {\n     *     console.log('client disconnected');\n     *   });\n     *   c.write('hello\\r\\n');\n     *   c.pipe(c);\n     * });\n     * server.on('error', (err) => {\n     *   throw err;\n     * });\n     * server.listen(8124, () => {\n     *   console.log('server bound');\n     * });\n     * ```\n     *\n     * Test this by using `telnet`:\n     *\n     * ```bash\n     * telnet localhost 8124\n     * ```\n     *\n     * To listen on the socket `/tmp/echo.sock`:\n     *\n     * ```js\n     * server.listen('/tmp/echo.sock', () => {\n     *   console.log('server bound');\n     * });\n     * ```\n     *\n     * Use `nc` to connect to a Unix domain socket server:\n     *\n     * ```bash\n     * nc -U /tmp/echo.sock\n     * ```\n     * @since v0.5.0\n     * @param connectionListener Automatically set as a listener for the {@link 'connection'} event.\n     */\n    function createServer(connectionListener?: (socket: Socket) => void): Server;\n    function createServer(options?: ServerOpts, connectionListener?: (socket: Socket) => void): Server;\n    /**\n     * Aliases to {@link createConnection}.\n     *\n     * Possible signatures:\n     *\n     * * {@link connect}\n     * * {@link connect} for `IPC` connections.\n     * * {@link connect} for TCP connections.\n     */\n    function connect(options: NetConnectOpts, connectionListener?: () => void): Socket;\n    function connect(port: number, host?: string, connectionListener?: () => void): Socket;\n    function connect(path: string, connectionListener?: () => void): Socket;\n    /**\n     * A factory function, which creates a new {@link Socket},\n     * immediately initiates connection with `socket.connect()`,\n     * then returns the `net.Socket` that starts the connection.\n     *\n     * When the connection is established, a `'connect'` event will be emitted\n     * on the returned socket. The last parameter `connectListener`, if supplied,\n     * will be added as a listener for the `'connect'` event **once**.\n     *\n     * Possible signatures:\n     *\n     * * {@link createConnection}\n     * * {@link createConnection} for `IPC` connections.\n     * * {@link createConnection} for TCP connections.\n     *\n     * The {@link connect} function is an alias to this function.\n     */\n    function createConnection(options: NetConnectOpts, connectionListener?: () => void): Socket;\n    function createConnection(port: number, host?: string, connectionListener?: () => void): Socket;\n    function createConnection(path: string, connectionListener?: () => void): Socket;\n    /**\n     * Gets the current default value of the `autoSelectFamily` option of `socket.connect(options)`.\n     * The initial default value is `true`, unless the command line option`--no-network-family-autoselection` is provided.\n     * @since v19.4.0\n     */\n    function getDefaultAutoSelectFamily(): boolean;\n    /**\n     * Sets the default value of the `autoSelectFamily` option of `socket.connect(options)`.\n     * @param value The new default value.\n     * The initial default value is `true`, unless the command line option\n     * `--no-network-family-autoselection` is provided.\n     * @since v19.4.0\n     */\n    function setDefaultAutoSelectFamily(value: boolean): void;\n    /**\n     * Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of `socket.connect(options)`.\n     * The initial default value is `250` or the value specified via the command line option `--network-family-autoselection-attempt-timeout`.\n     * @returns The current default value of the `autoSelectFamilyAttemptTimeout` option.\n     * @since v19.8.0, v18.8.0\n     */\n    function getDefaultAutoSelectFamilyAttemptTimeout(): number;\n    /**\n     * Sets the default value of the `autoSelectFamilyAttemptTimeout` option of `socket.connect(options)`.\n     * @param value The new default value, which must be a positive number. If the number is less than `10`, the value `10` is used instead. The initial default value is `250` or the value specified via the command line\n     * option `--network-family-autoselection-attempt-timeout`.\n     * @since v19.8.0, v18.8.0\n     */\n    function setDefaultAutoSelectFamilyAttemptTimeout(value: number): void;\n    /**\n     * Returns `6` if `input` is an IPv6 address. Returns `4` if `input` is an IPv4\n     * address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no leading zeroes. Otherwise, returns`0`.\n     *\n     * ```js\n     * net.isIP('::1'); // returns 6\n     * net.isIP('127.0.0.1'); // returns 4\n     * net.isIP('127.000.000.001'); // returns 0\n     * net.isIP('127.0.0.1/24'); // returns 0\n     * net.isIP('fhqwhgads'); // returns 0\n     * ```\n     * @since v0.3.0\n     */\n    function isIP(input: string): number;\n    /**\n     * Returns `true` if `input` is an IPv4 address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no\n     * leading zeroes. Otherwise, returns `false`.\n     *\n     * ```js\n     * net.isIPv4('127.0.0.1'); // returns true\n     * net.isIPv4('127.000.000.001'); // returns false\n     * net.isIPv4('127.0.0.1/24'); // returns false\n     * net.isIPv4('fhqwhgads'); // returns false\n     * ```\n     * @since v0.3.0\n     */\n    function isIPv4(input: string): boolean;\n    /**\n     * Returns `true` if `input` is an IPv6 address. Otherwise, returns `false`.\n     *\n     * ```js\n     * net.isIPv6('::1'); // returns true\n     * net.isIPv6('fhqwhgads'); // returns false\n     * ```\n     * @since v0.3.0\n     */\n    function isIPv6(input: string): boolean;\n    interface SocketAddressInitOptions {\n        /**\n         * The network address as either an IPv4 or IPv6 string.\n         * @default 127.0.0.1\n         */\n        address?: string | undefined;\n        /**\n         * @default `'ipv4'`\n         */\n        family?: IPVersion | undefined;\n        /**\n         * An IPv6 flow-label used only if `family` is `'ipv6'`.\n         * @default 0\n         */\n        flowlabel?: number | undefined;\n        /**\n         * An IP port.\n         * @default 0\n         */\n        port?: number | undefined;\n    }\n    /**\n     * @since v15.14.0, v14.18.0\n     */\n    class SocketAddress {\n        constructor(options: SocketAddressInitOptions);\n        /**\n         * Either \\`'ipv4'\\` or \\`'ipv6'\\`.\n         * @since v15.14.0, v14.18.0\n         */\n        readonly address: string;\n        /**\n         * Either \\`'ipv4'\\` or \\`'ipv6'\\`.\n         * @since v15.14.0, v14.18.0\n         */\n        readonly family: IPVersion;\n        /**\n         * @since v15.14.0, v14.18.0\n         */\n        readonly port: number;\n        /**\n         * @since v15.14.0, v14.18.0\n         */\n        readonly flowlabel: number;\n        /**\n         * @since v22.13.0\n         * @param input An input string containing an IP address and optional port,\n         * e.g. `123.1.2.3:1234` or `[1::1]:1234`.\n         * @returns Returns a `SocketAddress` if parsing was successful.\n         * Otherwise returns `undefined`.\n         */\n        static parse(input: string): SocketAddress | undefined;\n    }\n}\ndeclare module \"node:net\" {\n    export * from \"net\";\n}\n",
    "node_modules/@types/node/os.d.ts": "/**\n * The `node:os` module provides operating system-related utility methods and\n * properties. It can be accessed using:\n *\n * ```js\n * import os from 'node:os';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/os.js)\n */\ndeclare module \"os\" {\n    interface CpuInfo {\n        model: string;\n        speed: number;\n        times: {\n            /** The number of milliseconds the CPU has spent in user mode. */\n            user: number;\n            /** The number of milliseconds the CPU has spent in nice mode. */\n            nice: number;\n            /** The number of milliseconds the CPU has spent in sys mode. */\n            sys: number;\n            /** The number of milliseconds the CPU has spent in idle mode. */\n            idle: number;\n            /** The number of milliseconds the CPU has spent in irq mode. */\n            irq: number;\n        };\n    }\n    interface NetworkInterfaceBase {\n        address: string;\n        netmask: string;\n        mac: string;\n        internal: boolean;\n        cidr: string | null;\n    }\n    interface NetworkInterfaceInfoIPv4 extends NetworkInterfaceBase {\n        family: \"IPv4\";\n        scopeid?: undefined;\n    }\n    interface NetworkInterfaceInfoIPv6 extends NetworkInterfaceBase {\n        family: \"IPv6\";\n        scopeid: number;\n    }\n    interface UserInfo<T> {\n        username: T;\n        uid: number;\n        gid: number;\n        shell: T | null;\n        homedir: T;\n    }\n    type NetworkInterfaceInfo = NetworkInterfaceInfoIPv4 | NetworkInterfaceInfoIPv6;\n    /**\n     * Returns the host name of the operating system as a string.\n     * @since v0.3.3\n     */\n    function hostname(): string;\n    /**\n     * Returns an array containing the 1, 5, and 15 minute load averages.\n     *\n     * The load average is a measure of system activity calculated by the operating\n     * system and expressed as a fractional number.\n     *\n     * The load average is a Unix-specific concept. On Windows, the return value is\n     * always `[0, 0, 0]`.\n     * @since v0.3.3\n     */\n    function loadavg(): number[];\n    /**\n     * Returns the system uptime in number of seconds.\n     * @since v0.3.3\n     */\n    function uptime(): number;\n    /**\n     * Returns the amount of free system memory in bytes as an integer.\n     * @since v0.3.3\n     */\n    function freemem(): number;\n    /**\n     * Returns the total amount of system memory in bytes as an integer.\n     * @since v0.3.3\n     */\n    function totalmem(): number;\n    /**\n     * Returns an array of objects containing information about each logical CPU core.\n     * The array will be empty if no CPU information is available, such as if the `/proc` file system is unavailable.\n     *\n     * The properties included on each object include:\n     *\n     * ```js\n     * [\n     *   {\n     *     model: 'Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz',\n     *     speed: 2926,\n     *     times: {\n     *       user: 252020,\n     *       nice: 0,\n     *       sys: 30340,\n     *       idle: 1070356870,\n     *       irq: 0,\n     *     },\n     *   },\n     *   {\n     *     model: 'Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz',\n     *     speed: 2926,\n     *     times: {\n     *       user: 306960,\n     *       nice: 0,\n     *       sys: 26980,\n     *       idle: 1071569080,\n     *       irq: 0,\n     *     },\n     *   },\n     *   {\n     *     model: 'Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz',\n     *     speed: 2926,\n     *     times: {\n     *       user: 248450,\n     *       nice: 0,\n     *       sys: 21750,\n     *       idle: 1070919370,\n     *       irq: 0,\n     *     },\n     *   },\n     *   {\n     *     model: 'Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz',\n     *     speed: 2926,\n     *     times: {\n     *       user: 256880,\n     *       nice: 0,\n     *       sys: 19430,\n     *       idle: 1070905480,\n     *       irq: 20,\n     *     },\n     *   },\n     * ]\n     * ```\n     *\n     * `nice` values are POSIX-only. On Windows, the `nice` values of all processors\n     * are always 0.\n     *\n     * `os.cpus().length` should not be used to calculate the amount of parallelism\n     * available to an application. Use {@link availableParallelism} for this purpose.\n     * @since v0.3.3\n     */\n    function cpus(): CpuInfo[];\n    /**\n     * Returns an estimate of the default amount of parallelism a program should use.\n     * Always returns a value greater than zero.\n     *\n     * This function is a small wrapper about libuv's [`uv_available_parallelism()`](https://docs.libuv.org/en/v1.x/misc.html#c.uv_available_parallelism).\n     * @since v19.4.0, v18.14.0\n     */\n    function availableParallelism(): number;\n    /**\n     * Returns the operating system name as returned by [`uname(3)`](https://linux.die.net/man/3/uname). For example, it\n     * returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows.\n     *\n     * See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for additional information\n     * about the output of running [`uname(3)`](https://linux.die.net/man/3/uname) on various operating systems.\n     * @since v0.3.3\n     */\n    function type(): string;\n    /**\n     * Returns the operating system as a string.\n     *\n     * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `GetVersionExW()` is used. See\n     * [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information.\n     * @since v0.3.3\n     */\n    function release(): string;\n    /**\n     * Returns an object containing network interfaces that have been assigned a\n     * network address.\n     *\n     * Each key on the returned object identifies a network interface. The associated\n     * value is an array of objects that each describe an assigned network address.\n     *\n     * The properties available on the assigned network address object include:\n     *\n     * ```js\n     * {\n     *   lo: [\n     *     {\n     *       address: '127.0.0.1',\n     *       netmask: '255.0.0.0',\n     *       family: 'IPv4',\n     *       mac: '00:00:00:00:00:00',\n     *       internal: true,\n     *       cidr: '127.0.0.1/8'\n     *     },\n     *     {\n     *       address: '::1',\n     *       netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff',\n     *       family: 'IPv6',\n     *       mac: '00:00:00:00:00:00',\n     *       scopeid: 0,\n     *       internal: true,\n     *       cidr: '::1/128'\n     *     }\n     *   ],\n     *   eth0: [\n     *     {\n     *       address: '192.168.1.108',\n     *       netmask: '255.255.255.0',\n     *       family: 'IPv4',\n     *       mac: '01:02:03:0a:0b:0c',\n     *       internal: false,\n     *       cidr: '192.168.1.108/24'\n     *     },\n     *     {\n     *       address: 'fe80::a00:27ff:fe4e:66a1',\n     *       netmask: 'ffff:ffff:ffff:ffff::',\n     *       family: 'IPv6',\n     *       mac: '01:02:03:0a:0b:0c',\n     *       scopeid: 1,\n     *       internal: false,\n     *       cidr: 'fe80::a00:27ff:fe4e:66a1/64'\n     *     }\n     *   ]\n     * }\n     * ```\n     * @since v0.6.0\n     */\n    function networkInterfaces(): NodeJS.Dict<NetworkInterfaceInfo[]>;\n    /**\n     * Returns the string path of the current user's home directory.\n     *\n     * On POSIX, it uses the `$HOME` environment variable if defined. Otherwise it\n     * uses the [effective UID](https://en.wikipedia.org/wiki/User_identifier#Effective_user_ID) to look up the user's home directory.\n     *\n     * On Windows, it uses the `USERPROFILE` environment variable if defined.\n     * Otherwise it uses the path to the profile directory of the current user.\n     * @since v2.3.0\n     */\n    function homedir(): string;\n    /**\n     * Returns information about the currently effective user. On POSIX platforms,\n     * this is typically a subset of the password file. The returned object includes\n     * the `username`, `uid`, `gid`, `shell`, and `homedir`. On Windows, the `uid` and `gid` fields are `-1`, and `shell` is `null`.\n     *\n     * The value of `homedir` returned by `os.userInfo()` is provided by the operating\n     * system. This differs from the result of `os.homedir()`, which queries\n     * environment variables for the home directory before falling back to the\n     * operating system response.\n     *\n     * Throws a [`SystemError`](https://nodejs.org/docs/latest-v22.x/api/errors.html#class-systemerror) if a user has no `username` or `homedir`.\n     * @since v6.0.0\n     */\n    function userInfo(options: { encoding: \"buffer\" }): UserInfo<Buffer>;\n    function userInfo(options?: { encoding: BufferEncoding }): UserInfo<string>;\n    type SignalConstants = {\n        [key in NodeJS.Signals]: number;\n    };\n    namespace constants {\n        const UV_UDP_REUSEADDR: number;\n        namespace signals {}\n        const signals: SignalConstants;\n        namespace errno {\n            const E2BIG: number;\n            const EACCES: number;\n            const EADDRINUSE: number;\n            const EADDRNOTAVAIL: number;\n            const EAFNOSUPPORT: number;\n            const EAGAIN: number;\n            const EALREADY: number;\n            const EBADF: number;\n            const EBADMSG: number;\n            const EBUSY: number;\n            const ECANCELED: number;\n            const ECHILD: number;\n            const ECONNABORTED: number;\n            const ECONNREFUSED: number;\n            const ECONNRESET: number;\n            const EDEADLK: number;\n            const EDESTADDRREQ: number;\n            const EDOM: number;\n            const EDQUOT: number;\n            const EEXIST: number;\n            const EFAULT: number;\n            const EFBIG: number;\n            const EHOSTUNREACH: number;\n            const EIDRM: number;\n            const EILSEQ: number;\n            const EINPROGRESS: number;\n            const EINTR: number;\n            const EINVAL: number;\n            const EIO: number;\n            const EISCONN: number;\n            const EISDIR: number;\n            const ELOOP: number;\n            const EMFILE: number;\n            const EMLINK: number;\n            const EMSGSIZE: number;\n            const EMULTIHOP: number;\n            const ENAMETOOLONG: number;\n            const ENETDOWN: number;\n            const ENETRESET: number;\n            const ENETUNREACH: number;\n            const ENFILE: number;\n            const ENOBUFS: number;\n            const ENODATA: number;\n            const ENODEV: number;\n            const ENOENT: number;\n            const ENOEXEC: number;\n            const ENOLCK: number;\n            const ENOLINK: number;\n            const ENOMEM: number;\n            const ENOMSG: number;\n            const ENOPROTOOPT: number;\n            const ENOSPC: number;\n            const ENOSR: number;\n            const ENOSTR: number;\n            const ENOSYS: number;\n            const ENOTCONN: number;\n            const ENOTDIR: number;\n            const ENOTEMPTY: number;\n            const ENOTSOCK: number;\n            const ENOTSUP: number;\n            const ENOTTY: number;\n            const ENXIO: number;\n            const EOPNOTSUPP: number;\n            const EOVERFLOW: number;\n            const EPERM: number;\n            const EPIPE: number;\n            const EPROTO: number;\n            const EPROTONOSUPPORT: number;\n            const EPROTOTYPE: number;\n            const ERANGE: number;\n            const EROFS: number;\n            const ESPIPE: number;\n            const ESRCH: number;\n            const ESTALE: number;\n            const ETIME: number;\n            const ETIMEDOUT: number;\n            const ETXTBSY: number;\n            const EWOULDBLOCK: number;\n            const EXDEV: number;\n            const WSAEINTR: number;\n            const WSAEBADF: number;\n            const WSAEACCES: number;\n            const WSAEFAULT: number;\n            const WSAEINVAL: number;\n            const WSAEMFILE: number;\n            const WSAEWOULDBLOCK: number;\n            const WSAEINPROGRESS: number;\n            const WSAEALREADY: number;\n            const WSAENOTSOCK: number;\n            const WSAEDESTADDRREQ: number;\n            const WSAEMSGSIZE: number;\n            const WSAEPROTOTYPE: number;\n            const WSAENOPROTOOPT: number;\n            const WSAEPROTONOSUPPORT: number;\n            const WSAESOCKTNOSUPPORT: number;\n            const WSAEOPNOTSUPP: number;\n            const WSAEPFNOSUPPORT: number;\n            const WSAEAFNOSUPPORT: number;\n            const WSAEADDRINUSE: number;\n            const WSAEADDRNOTAVAIL: number;\n            const WSAENETDOWN: number;\n            const WSAENETUNREACH: number;\n            const WSAENETRESET: number;\n            const WSAECONNABORTED: number;\n            const WSAECONNRESET: number;\n            const WSAENOBUFS: number;\n            const WSAEISCONN: number;\n            const WSAENOTCONN: number;\n            const WSAESHUTDOWN: number;\n            const WSAETOOMANYREFS: number;\n            const WSAETIMEDOUT: number;\n            const WSAECONNREFUSED: number;\n            const WSAELOOP: number;\n            const WSAENAMETOOLONG: number;\n            const WSAEHOSTDOWN: number;\n            const WSAEHOSTUNREACH: number;\n            const WSAENOTEMPTY: number;\n            const WSAEPROCLIM: number;\n            const WSAEUSERS: number;\n            const WSAEDQUOT: number;\n            const WSAESTALE: number;\n            const WSAEREMOTE: number;\n            const WSASYSNOTREADY: number;\n            const WSAVERNOTSUPPORTED: number;\n            const WSANOTINITIALISED: number;\n            const WSAEDISCON: number;\n            const WSAENOMORE: number;\n            const WSAECANCELLED: number;\n            const WSAEINVALIDPROCTABLE: number;\n            const WSAEINVALIDPROVIDER: number;\n            const WSAEPROVIDERFAILEDINIT: number;\n            const WSASYSCALLFAILURE: number;\n            const WSASERVICE_NOT_FOUND: number;\n            const WSATYPE_NOT_FOUND: number;\n            const WSA_E_NO_MORE: number;\n            const WSA_E_CANCELLED: number;\n            const WSAEREFUSED: number;\n        }\n        namespace dlopen {\n            const RTLD_LAZY: number;\n            const RTLD_NOW: number;\n            const RTLD_GLOBAL: number;\n            const RTLD_LOCAL: number;\n            const RTLD_DEEPBIND: number;\n        }\n        namespace priority {\n            const PRIORITY_LOW: number;\n            const PRIORITY_BELOW_NORMAL: number;\n            const PRIORITY_NORMAL: number;\n            const PRIORITY_ABOVE_NORMAL: number;\n            const PRIORITY_HIGH: number;\n            const PRIORITY_HIGHEST: number;\n        }\n    }\n    const devNull: string;\n    /**\n     * The operating system-specific end-of-line marker.\n     * * `\\n` on POSIX\n     * * `\\r\\n` on Windows\n     */\n    const EOL: string;\n    /**\n     * Returns the operating system CPU architecture for which the Node.js binary was\n     * compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'loong64'`, `'mips'`, `'mipsel'`, `'ppc'`, `'ppc64'`, `'riscv64'`, `'s390'`, `'s390x'`,\n     * and `'x64'`.\n     *\n     * The return value is equivalent to [process.arch](https://nodejs.org/docs/latest-v22.x/api/process.html#processarch).\n     * @since v0.5.0\n     */\n    function arch(): string;\n    /**\n     * Returns a string identifying the kernel version.\n     *\n     * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `RtlGetVersion()` is used, and if it is not\n     * available, `GetVersionExW()` will be used. See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information.\n     * @since v13.11.0, v12.17.0\n     */\n    function version(): string;\n    /**\n     * Returns a string identifying the operating system platform for which\n     * the Node.js binary was compiled. The value is set at compile time.\n     * Possible values are `'aix'`, `'darwin'`, `'freebsd'`, `'linux'`, `'openbsd'`, `'sunos'`, and `'win32'`.\n     *\n     * The return value is equivalent to `process.platform`.\n     *\n     * The value `'android'` may also be returned if Node.js is built on the Android\n     * operating system. [Android support is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os).\n     * @since v0.5.0\n     */\n    function platform(): NodeJS.Platform;\n    /**\n     * Returns the machine type as a string, such as `arm`, `arm64`, `aarch64`, `mips`, `mips64`, `ppc64`, `ppc64le`, `s390`, `s390x`, `i386`, `i686`, `x86_64`.\n     *\n     * On POSIX systems, the machine type is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `RtlGetVersion()` is used, and if it is not\n     * available, `GetVersionExW()` will be used. See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information.\n     * @since v18.9.0, v16.18.0\n     */\n    function machine(): string;\n    /**\n     * Returns the operating system's default directory for temporary files as a\n     * string.\n     * @since v0.9.9\n     */\n    function tmpdir(): string;\n    /**\n     * Returns a string identifying the endianness of the CPU for which the Node.js\n     * binary was compiled.\n     *\n     * Possible values are `'BE'` for big endian and `'LE'` for little endian.\n     * @since v0.9.4\n     */\n    function endianness(): \"BE\" | \"LE\";\n    /**\n     * Returns the scheduling priority for the process specified by `pid`. If `pid` is\n     * not provided or is `0`, the priority of the current process is returned.\n     * @since v10.10.0\n     * @param [pid=0] The process ID to retrieve scheduling priority for.\n     */\n    function getPriority(pid?: number): number;\n    /**\n     * Attempts to set the scheduling priority for the process specified by `pid`. If `pid` is not provided or is `0`, the process ID of the current process is used.\n     *\n     * The `priority` input must be an integer between `-20` (high priority) and `19` (low priority). Due to differences between Unix priority levels and Windows\n     * priority classes, `priority` is mapped to one of six priority constants in `os.constants.priority`. When retrieving a process priority level, this range\n     * mapping may cause the return value to be slightly different on Windows. To avoid\n     * confusion, set `priority` to one of the priority constants.\n     *\n     * On Windows, setting priority to `PRIORITY_HIGHEST` requires elevated user\n     * privileges. Otherwise the set priority will be silently reduced to `PRIORITY_HIGH`.\n     * @since v10.10.0\n     * @param [pid=0] The process ID to set scheduling priority for.\n     * @param priority The scheduling priority to assign to the process.\n     */\n    function setPriority(priority: number): void;\n    function setPriority(pid: number, priority: number): void;\n}\ndeclare module \"node:os\" {\n    export * from \"os\";\n}\n",
    "node_modules/@types/node/package.json": "{\n    \"name\": \"@types/node\",\n    \"version\": \"22.15.34\",\n    \"description\": \"TypeScript definitions for node\",\n    \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node\",\n    \"license\": \"MIT\",\n    \"contributors\": [\n        {\n            \"name\": \"Microsoft TypeScript\",\n            \"githubUsername\": \"Microsoft\",\n            \"url\": \"https://github.com/Microsoft\"\n        },\n        {\n            \"name\": \"Alberto Schiabel\",\n            \"githubUsername\": \"jkomyno\",\n            \"url\": \"https://github.com/jkomyno\"\n        },\n        {\n            \"name\": \"Alvis HT Tang\",\n            \"githubUsername\": \"alvis\",\n            \"url\": \"https://github.com/alvis\"\n        },\n        {\n            \"name\": \"Andrew Makarov\",\n            \"githubUsername\": \"r3nya\",\n            \"url\": \"https://github.com/r3nya\"\n        },\n        {\n            \"name\": \"Benjamin Toueg\",\n            \"githubUsername\": \"btoueg\",\n            \"url\": \"https://github.com/btoueg\"\n        },\n        {\n            \"name\": \"Chigozirim C.\",\n            \"githubUsername\": \"smac89\",\n            \"url\": \"https://github.com/smac89\"\n        },\n        {\n            \"name\": \"David Junger\",\n            \"githubUsername\": \"touffy\",\n            \"url\": \"https://github.com/touffy\"\n        },\n        {\n            \"name\": \"Deividas Bakanas\",\n            \"githubUsername\": \"DeividasBakanas\",\n            \"url\": \"https://github.com/DeividasBakanas\"\n        },\n        {\n            \"name\": \"Eugene Y. Q. Shen\",\n            \"githubUsername\": \"eyqs\",\n            \"url\": \"https://github.com/eyqs\"\n        },\n        {\n            \"name\": \"Hannes Magnusson\",\n            \"githubUsername\": \"Hannes-Magnusson-CK\",\n            \"url\": \"https://github.com/Hannes-Magnusson-CK\"\n        },\n        {\n            \"name\": \"Huw\",\n            \"githubUsername\": \"hoo29\",\n            \"url\": \"https://github.com/hoo29\"\n        },\n        {\n            \"name\": \"Kelvin Jin\",\n            \"githubUsername\": \"kjin\",\n            \"url\": \"https://github.com/kjin\"\n        },\n        {\n            \"name\": \"Klaus Meinhardt\",\n            \"githubUsername\": \"ajafff\",\n            \"url\": \"https://github.com/ajafff\"\n        },\n        {\n            \"name\": \"Lishude\",\n            \"githubUsername\": \"islishude\",\n            \"url\": \"https://github.com/islishude\"\n        },\n        {\n            \"name\": \"Mariusz Wiktorczyk\",\n            \"githubUsername\": \"mwiktorczyk\",\n            \"url\": \"https://github.com/mwiktorczyk\"\n        },\n        {\n            \"name\": \"Mohsen Azimi\",\n            \"githubUsername\": \"mohsen1\",\n            \"url\": \"https://github.com/mohsen1\"\n        },\n        {\n            \"name\": \"Nikita Galkin\",\n            \"githubUsername\": \"galkin\",\n            \"url\": \"https://github.com/galkin\"\n        },\n        {\n            \"name\": \"Parambir Singh\",\n            \"githubUsername\": \"parambirs\",\n            \"url\": \"https://github.com/parambirs\"\n        },\n        {\n            \"name\": \"Sebastian Silbermann\",\n            \"githubUsername\": \"eps1lon\",\n            \"url\": \"https://github.com/eps1lon\"\n        },\n        {\n            \"name\": \"Thomas den Hollander\",\n            \"githubUsername\": \"ThomasdenH\",\n            \"url\": \"https://github.com/ThomasdenH\"\n        },\n        {\n            \"name\": \"Wilco Bakker\",\n            \"githubUsername\": \"WilcoBakker\",\n            \"url\": \"https://github.com/WilcoBakker\"\n        },\n        {\n            \"name\": \"wwwy3y3\",\n            \"githubUsername\": \"wwwy3y3\",\n            \"url\": \"https://github.com/wwwy3y3\"\n        },\n        {\n            \"name\": \"Samuel Ainsworth\",\n            \"githubUsername\": \"samuela\",\n            \"url\": \"https://github.com/samuela\"\n        },\n        {\n            \"name\": \"Kyle Uehlein\",\n            \"githubUsername\": \"kuehlein\",\n            \"url\": \"https://github.com/kuehlein\"\n        },\n        {\n            \"name\": \"Thanik Bhongbhibhat\",\n            \"githubUsername\": \"bhongy\",\n            \"url\": \"https://github.com/bhongy\"\n        },\n        {\n            \"name\": \"Marcin Kopacz\",\n            \"githubUsername\": \"chyzwar\",\n            \"url\": \"https://github.com/chyzwar\"\n        },\n        {\n            \"name\": \"Trivikram Kamat\",\n            \"githubUsername\": \"trivikr\",\n            \"url\": \"https://github.com/trivikr\"\n        },\n        {\n            \"name\": \"Junxiao Shi\",\n            \"githubUsername\": \"yoursunny\",\n            \"url\": \"https://github.com/yoursunny\"\n        },\n        {\n            \"name\": \"Ilia Baryshnikov\",\n            \"githubUsername\": \"qwelias\",\n            \"url\": \"https://github.com/qwelias\"\n        },\n        {\n            \"name\": \"ExE Boss\",\n            \"githubUsername\": \"ExE-Boss\",\n            \"url\": \"https://github.com/ExE-Boss\"\n        },\n        {\n            \"name\": \"Piotr Błażejewicz\",\n            \"githubUsername\": \"peterblazejewicz\",\n            \"url\": \"https://github.com/peterblazejewicz\"\n        },\n        {\n            \"name\": \"Anna Henningsen\",\n            \"githubUsername\": \"addaleax\",\n            \"url\": \"https://github.com/addaleax\"\n        },\n        {\n            \"name\": \"Victor Perin\",\n            \"githubUsername\": \"victorperin\",\n            \"url\": \"https://github.com/victorperin\"\n        },\n        {\n            \"name\": \"NodeJS Contributors\",\n            \"githubUsername\": \"NodeJS\",\n            \"url\": \"https://github.com/NodeJS\"\n        },\n        {\n            \"name\": \"Linus Unnebäck\",\n            \"githubUsername\": \"LinusU\",\n            \"url\": \"https://github.com/LinusU\"\n        },\n        {\n            \"name\": \"wafuwafu13\",\n            \"githubUsername\": \"wafuwafu13\",\n            \"url\": \"https://github.com/wafuwafu13\"\n        },\n        {\n            \"name\": \"Matteo Collina\",\n            \"githubUsername\": \"mcollina\",\n            \"url\": \"https://github.com/mcollina\"\n        },\n        {\n            \"name\": \"Dmitry Semigradsky\",\n            \"githubUsername\": \"Semigradsky\",\n            \"url\": \"https://github.com/Semigradsky\"\n        },\n        {\n            \"name\": \"René\",\n            \"githubUsername\": \"Renegade334\",\n            \"url\": \"https://github.com/Renegade334\"\n        }\n    ],\n    \"main\": \"\",\n    \"types\": \"index.d.ts\",\n    \"typesVersions\": {\n        \"<=5.6\": {\n            \"*\": [\n                \"ts5.6/*\"\n            ]\n        }\n    },\n    \"repository\": {\n        \"type\": \"git\",\n        \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n        \"directory\": \"types/node\"\n    },\n    \"scripts\": {},\n    \"dependencies\": {\n        \"undici-types\": \"~6.21.0\"\n    },\n    \"peerDependencies\": {},\n    \"typesPublisherContentHash\": \"41775fc6753a5f26b0840aaad12ee761b0c4b320ba7f46ef61a24ce7aad81de9\",\n    \"typeScriptVersion\": \"5.1\"\n}",
    "node_modules/@types/node/path.d.ts": "declare module \"path/posix\" {\n    import path = require(\"path\");\n    export = path;\n}\ndeclare module \"path/win32\" {\n    import path = require(\"path\");\n    export = path;\n}\n/**\n * The `node:path` module provides utilities for working with file and directory\n * paths. It can be accessed using:\n *\n * ```js\n * import path from 'node:path';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/path.js)\n */\ndeclare module \"path\" {\n    namespace path {\n        /**\n         * A parsed path object generated by path.parse() or consumed by path.format().\n         */\n        interface ParsedPath {\n            /**\n             * The root of the path such as '/' or 'c:\\'\n             */\n            root: string;\n            /**\n             * The full directory path such as '/home/user/dir' or 'c:\\path\\dir'\n             */\n            dir: string;\n            /**\n             * The file name including extension (if any) such as 'index.html'\n             */\n            base: string;\n            /**\n             * The file extension (if any) such as '.html'\n             */\n            ext: string;\n            /**\n             * The file name without extension (if any) such as 'index'\n             */\n            name: string;\n        }\n        interface FormatInputPathObject {\n            /**\n             * The root of the path such as '/' or 'c:\\'\n             */\n            root?: string | undefined;\n            /**\n             * The full directory path such as '/home/user/dir' or 'c:\\path\\dir'\n             */\n            dir?: string | undefined;\n            /**\n             * The file name including extension (if any) such as 'index.html'\n             */\n            base?: string | undefined;\n            /**\n             * The file extension (if any) such as '.html'\n             */\n            ext?: string | undefined;\n            /**\n             * The file name without extension (if any) such as 'index'\n             */\n            name?: string | undefined;\n        }\n        interface PlatformPath {\n            /**\n             * Normalize a string path, reducing '..' and '.' parts.\n             * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used.\n             *\n             * @param path string path to normalize.\n             * @throws {TypeError} if `path` is not a string.\n             */\n            normalize(path: string): string;\n            /**\n             * Join all arguments together and normalize the resulting path.\n             *\n             * @param paths paths to join.\n             * @throws {TypeError} if any of the path segments is not a string.\n             */\n            join(...paths: string[]): string;\n            /**\n             * The right-most parameter is considered {to}. Other parameters are considered an array of {from}.\n             *\n             * Starting from leftmost {from} parameter, resolves {to} to an absolute path.\n             *\n             * If {to} isn't already absolute, {from} arguments are prepended in right to left order,\n             * until an absolute path is found. If after using all {from} paths still no absolute path is found,\n             * the current working directory is used as well. The resulting path is normalized,\n             * and trailing slashes are removed unless the path gets resolved to the root directory.\n             *\n             * @param paths A sequence of paths or path segments.\n             * @throws {TypeError} if any of the arguments is not a string.\n             */\n            resolve(...paths: string[]): string;\n            /**\n             * The `path.matchesGlob()` method determines if `path` matches the `pattern`.\n             * @param path The path to glob-match against.\n             * @param pattern The glob to check the path against.\n             * @returns Whether or not the `path` matched the `pattern`.\n             * @throws {TypeError} if `path` or `pattern` are not strings.\n             * @since v22.5.0\n             */\n            matchesGlob(path: string, pattern: string): boolean;\n            /**\n             * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory.\n             *\n             * If the given {path} is a zero-length string, `false` will be returned.\n             *\n             * @param path path to test.\n             * @throws {TypeError} if `path` is not a string.\n             */\n            isAbsolute(path: string): boolean;\n            /**\n             * Solve the relative path from {from} to {to} based on the current working directory.\n             * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve.\n             *\n             * @throws {TypeError} if either `from` or `to` is not a string.\n             */\n            relative(from: string, to: string): string;\n            /**\n             * Return the directory name of a path. Similar to the Unix dirname command.\n             *\n             * @param path the path to evaluate.\n             * @throws {TypeError} if `path` is not a string.\n             */\n            dirname(path: string): string;\n            /**\n             * Return the last portion of a path. Similar to the Unix basename command.\n             * Often used to extract the file name from a fully qualified path.\n             *\n             * @param path the path to evaluate.\n             * @param suffix optionally, an extension to remove from the result.\n             * @throws {TypeError} if `path` is not a string or if `ext` is given and is not a string.\n             */\n            basename(path: string, suffix?: string): string;\n            /**\n             * Return the extension of the path, from the last '.' to end of string in the last portion of the path.\n             * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string.\n             *\n             * @param path the path to evaluate.\n             * @throws {TypeError} if `path` is not a string.\n             */\n            extname(path: string): string;\n            /**\n             * The platform-specific file separator. '\\\\' or '/'.\n             */\n            readonly sep: \"\\\\\" | \"/\";\n            /**\n             * The platform-specific file delimiter. ';' or ':'.\n             */\n            readonly delimiter: \";\" | \":\";\n            /**\n             * Returns an object from a path string - the opposite of format().\n             *\n             * @param path path to evaluate.\n             * @throws {TypeError} if `path` is not a string.\n             */\n            parse(path: string): ParsedPath;\n            /**\n             * Returns a path string from an object - the opposite of parse().\n             *\n             * @param pathObject path to evaluate.\n             */\n            format(pathObject: FormatInputPathObject): string;\n            /**\n             * On Windows systems only, returns an equivalent namespace-prefixed path for the given path.\n             * If path is not a string, path will be returned without modifications.\n             * This method is meaningful only on Windows system.\n             * On POSIX systems, the method is non-operational and always returns path without modifications.\n             */\n            toNamespacedPath(path: string): string;\n            /**\n             * Posix specific pathing.\n             * Same as parent object on posix.\n             */\n            readonly posix: PlatformPath;\n            /**\n             * Windows specific pathing.\n             * Same as parent object on windows\n             */\n            readonly win32: PlatformPath;\n        }\n    }\n    const path: path.PlatformPath;\n    export = path;\n}\ndeclare module \"node:path\" {\n    import path = require(\"path\");\n    export = path;\n}\ndeclare module \"node:path/posix\" {\n    import path = require(\"path/posix\");\n    export = path;\n}\ndeclare module \"node:path/win32\" {\n    import path = require(\"path/win32\");\n    export = path;\n}\n",
    "node_modules/@types/node/perf_hooks.d.ts": "/**\n * This module provides an implementation of a subset of the W3C [Web Performance APIs](https://w3c.github.io/perf-timing-primer/) as well as additional APIs for\n * Node.js-specific performance measurements.\n *\n * Node.js supports the following [Web Performance APIs](https://w3c.github.io/perf-timing-primer/):\n *\n * * [High Resolution Time](https://www.w3.org/TR/hr-time-2)\n * * [Performance Timeline](https://w3c.github.io/performance-timeline/)\n * * [User Timing](https://www.w3.org/TR/user-timing/)\n * * [Resource Timing](https://www.w3.org/TR/resource-timing-2/)\n *\n * ```js\n * import { PerformanceObserver, performance } from 'node:perf_hooks';\n *\n * const obs = new PerformanceObserver((items) => {\n *   console.log(items.getEntries()[0].duration);\n *   performance.clearMarks();\n * });\n * obs.observe({ type: 'measure' });\n * performance.measure('Start to Now');\n *\n * performance.mark('A');\n * doSomeLongRunningProcess(() => {\n *   performance.measure('A to Now', 'A');\n *\n *   performance.mark('B');\n *   performance.measure('A to B', 'A', 'B');\n * });\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/perf_hooks.js)\n */\ndeclare module \"perf_hooks\" {\n    import { AsyncResource } from \"node:async_hooks\";\n    type EntryType =\n        | \"dns\" // Node.js only\n        | \"function\" // Node.js only\n        | \"gc\" // Node.js only\n        | \"http2\" // Node.js only\n        | \"http\" // Node.js only\n        | \"mark\" // available on the Web\n        | \"measure\" // available on the Web\n        | \"net\" // Node.js only\n        | \"node\" // Node.js only\n        | \"resource\"; // available on the Web\n    interface NodeGCPerformanceDetail {\n        /**\n         * When `performanceEntry.entryType` is equal to 'gc', the `performance.kind` property identifies\n         * the type of garbage collection operation that occurred.\n         * See perf_hooks.constants for valid values.\n         */\n        readonly kind?: number | undefined;\n        /**\n         * When `performanceEntry.entryType` is equal to 'gc', the `performance.flags`\n         * property contains additional information about garbage collection operation.\n         * See perf_hooks.constants for valid values.\n         */\n        readonly flags?: number | undefined;\n    }\n    /**\n     * The constructor of this class is not exposed to users directly.\n     * @since v8.5.0\n     */\n    class PerformanceEntry {\n        protected constructor();\n        /**\n         * The total number of milliseconds elapsed for this entry. This value will not\n         * be meaningful for all Performance Entry types.\n         * @since v8.5.0\n         */\n        readonly duration: number;\n        /**\n         * The name of the performance entry.\n         * @since v8.5.0\n         */\n        readonly name: string;\n        /**\n         * The high resolution millisecond timestamp marking the starting time of the\n         * Performance Entry.\n         * @since v8.5.0\n         */\n        readonly startTime: number;\n        /**\n         * The type of the performance entry. It may be one of:\n         *\n         * * `'node'` (Node.js only)\n         * * `'mark'` (available on the Web)\n         * * `'measure'` (available on the Web)\n         * * `'gc'` (Node.js only)\n         * * `'function'` (Node.js only)\n         * * `'http2'` (Node.js only)\n         * * `'http'` (Node.js only)\n         * @since v8.5.0\n         */\n        readonly entryType: EntryType;\n        /**\n         * Additional detail specific to the `entryType`.\n         * @since v16.0.0\n         */\n        readonly detail?: NodeGCPerformanceDetail | unknown | undefined; // TODO: Narrow this based on entry type.\n        toJSON(): any;\n    }\n    /**\n     * Exposes marks created via the `Performance.mark()` method.\n     * @since v18.2.0, v16.17.0\n     */\n    class PerformanceMark extends PerformanceEntry {\n        readonly duration: 0;\n        readonly entryType: \"mark\";\n    }\n    /**\n     * Exposes measures created via the `Performance.measure()` method.\n     *\n     * The constructor of this class is not exposed to users directly.\n     * @since v18.2.0, v16.17.0\n     */\n    class PerformanceMeasure extends PerformanceEntry {\n        readonly entryType: \"measure\";\n    }\n    interface UVMetrics {\n        /**\n         * Number of event loop iterations.\n         */\n        readonly loopCount: number;\n        /**\n         * Number of events that have been processed by the event handler.\n         */\n        readonly events: number;\n        /**\n         * Number of events that were waiting to be processed when the event provider was called.\n         */\n        readonly eventsWaiting: number;\n    }\n    /**\n     * _This property is an extension by Node.js. It is not available in Web browsers._\n     *\n     * Provides timing details for Node.js itself. The constructor of this class\n     * is not exposed to users.\n     * @since v8.5.0\n     */\n    class PerformanceNodeTiming extends PerformanceEntry {\n        readonly entryType: \"node\";\n        /**\n         * The high resolution millisecond timestamp at which the Node.js process\n         * completed bootstrapping. If bootstrapping has not yet finished, the property\n         * has the value of -1.\n         * @since v8.5.0\n         */\n        readonly bootstrapComplete: number;\n        /**\n         * The high resolution millisecond timestamp at which the Node.js environment was\n         * initialized.\n         * @since v8.5.0\n         */\n        readonly environment: number;\n        /**\n         * The high resolution millisecond timestamp of the amount of time the event loop\n         * has been idle within the event loop's event provider (e.g. `epoll_wait`). This\n         * does not take CPU usage into consideration. If the event loop has not yet\n         * started (e.g., in the first tick of the main script), the property has the\n         * value of 0.\n         * @since v14.10.0, v12.19.0\n         */\n        readonly idleTime: number;\n        /**\n         * The high resolution millisecond timestamp at which the Node.js event loop\n         * exited. If the event loop has not yet exited, the property has the value of -1\\.\n         * It can only have a value of not -1 in a handler of the `'exit'` event.\n         * @since v8.5.0\n         */\n        readonly loopExit: number;\n        /**\n         * The high resolution millisecond timestamp at which the Node.js event loop\n         * started. If the event loop has not yet started (e.g., in the first tick of the\n         * main script), the property has the value of -1.\n         * @since v8.5.0\n         */\n        readonly loopStart: number;\n        /**\n         * The high resolution millisecond timestamp at which the Node.js process was initialized.\n         * @since v8.5.0\n         */\n        readonly nodeStart: number;\n        /**\n         * This is a wrapper to the `uv_metrics_info` function.\n         * It returns the current set of event loop metrics.\n         *\n         * It is recommended to use this property inside a function whose execution was\n         * scheduled using `setImmediate` to avoid collecting metrics before finishing all\n         * operations scheduled during the current loop iteration.\n         * @since v22.8.0, v20.18.0\n         */\n        readonly uvMetricsInfo: UVMetrics;\n        /**\n         * The high resolution millisecond timestamp at which the V8 platform was\n         * initialized.\n         * @since v8.5.0\n         */\n        readonly v8Start: number;\n    }\n    interface EventLoopUtilization {\n        idle: number;\n        active: number;\n        utilization: number;\n    }\n    /**\n     * @param utilization1 The result of a previous call to `eventLoopUtilization()`.\n     * @param utilization2 The result of a previous call to `eventLoopUtilization()` prior to `utilization1`.\n     */\n    type EventLoopUtilityFunction = (\n        utilization1?: EventLoopUtilization,\n        utilization2?: EventLoopUtilization,\n    ) => EventLoopUtilization;\n    interface MarkOptions {\n        /**\n         * Additional optional detail to include with the mark.\n         */\n        detail?: unknown | undefined;\n        /**\n         * An optional timestamp to be used as the mark time.\n         * @default `performance.now()`\n         */\n        startTime?: number | undefined;\n    }\n    interface MeasureOptions {\n        /**\n         * Additional optional detail to include with the mark.\n         */\n        detail?: unknown | undefined;\n        /**\n         * Duration between start and end times.\n         */\n        duration?: number | undefined;\n        /**\n         * Timestamp to be used as the end time, or a string identifying a previously recorded mark.\n         */\n        end?: number | string | undefined;\n        /**\n         * Timestamp to be used as the start time, or a string identifying a previously recorded mark.\n         */\n        start?: number | string | undefined;\n    }\n    interface TimerifyOptions {\n        /**\n         * A histogram object created using `perf_hooks.createHistogram()` that will record runtime\n         * durations in nanoseconds.\n         */\n        histogram?: RecordableHistogram | undefined;\n    }\n    interface Performance {\n        /**\n         * If `name` is not provided, removes all `PerformanceMark` objects from the Performance Timeline.\n         * If `name` is provided, removes only the named mark.\n         * @since v8.5.0\n         */\n        clearMarks(name?: string): void;\n        /**\n         * If `name` is not provided, removes all `PerformanceMeasure` objects from the Performance Timeline.\n         * If `name` is provided, removes only the named measure.\n         * @since v16.7.0\n         */\n        clearMeasures(name?: string): void;\n        /**\n         * If `name` is not provided, removes all `PerformanceResourceTiming` objects from the Resource Timeline.\n         * If `name` is provided, removes only the named resource.\n         * @since v18.2.0, v16.17.0\n         */\n        clearResourceTimings(name?: string): void;\n        /**\n         * eventLoopUtilization is similar to CPU utilization except that it is calculated using high precision wall-clock time.\n         * It represents the percentage of time the event loop has spent outside the event loop's event provider (e.g. epoll_wait).\n         * No other CPU idle time is taken into consideration.\n         */\n        eventLoopUtilization: EventLoopUtilityFunction;\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime`.\n         * If you are only interested in performance entries of certain types or that have certain names, see\n         * `performance.getEntriesByType()` and `performance.getEntriesByName()`.\n         * @since v16.7.0\n         */\n        getEntries(): PerformanceEntry[];\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime`\n         * whose `performanceEntry.name` is equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to `type`.\n         * @param name\n         * @param type\n         * @since v16.7.0\n         */\n        getEntriesByName(name: string, type?: EntryType): PerformanceEntry[];\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime`\n         * whose `performanceEntry.entryType` is equal to `type`.\n         * @param type\n         * @since v16.7.0\n         */\n        getEntriesByType(type: EntryType): PerformanceEntry[];\n        /**\n         * Creates a new `PerformanceMark` entry in the Performance Timeline.\n         * A `PerformanceMark` is a subclass of `PerformanceEntry` whose `performanceEntry.entryType` is always `'mark'`,\n         * and whose `performanceEntry.duration` is always `0`.\n         * Performance marks are used to mark specific significant moments in the Performance Timeline.\n         *\n         * The created `PerformanceMark` entry is put in the global Performance Timeline and can be queried with\n         * `performance.getEntries`, `performance.getEntriesByName`, and `performance.getEntriesByType`. When the observation is\n         * performed, the entries should be cleared from the global Performance Timeline manually with `performance.clearMarks`.\n         * @param name\n         */\n        mark(name: string, options?: MarkOptions): PerformanceMark;\n        /**\n         * Creates a new `PerformanceResourceTiming` entry in the Resource Timeline.\n         * A `PerformanceResourceTiming` is a subclass of `PerformanceEntry` whose `performanceEntry.entryType` is always `'resource'`.\n         * Performance resources are used to mark moments in the Resource Timeline.\n         * @param timingInfo [Fetch Timing Info](https://fetch.spec.whatwg.org/#fetch-timing-info)\n         * @param requestedUrl The resource url\n         * @param initiatorType The initiator name, e.g: 'fetch'\n         * @param global\n         * @param cacheMode The cache mode must be an empty string ('') or 'local'\n         * @param bodyInfo [Fetch Response Body Info](https://fetch.spec.whatwg.org/#response-body-info)\n         * @param responseStatus The response's status code\n         * @param deliveryType The delivery type. Default: ''.\n         * @since v18.2.0, v16.17.0\n         */\n        markResourceTiming(\n            timingInfo: object,\n            requestedUrl: string,\n            initiatorType: string,\n            global: object,\n            cacheMode: \"\" | \"local\",\n            bodyInfo: object,\n            responseStatus: number,\n            deliveryType?: string,\n        ): PerformanceResourceTiming;\n        /**\n         * Creates a new PerformanceMeasure entry in the Performance Timeline.\n         * A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure',\n         * and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark.\n         *\n         * The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify\n         * any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist,\n         * then startMark is set to timeOrigin by default.\n         *\n         * The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp\n         * properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown.\n         * @param name\n         * @param startMark\n         * @param endMark\n         * @return The PerformanceMeasure entry that was created\n         */\n        measure(name: string, startMark?: string, endMark?: string): PerformanceMeasure;\n        measure(name: string, options: MeasureOptions): PerformanceMeasure;\n        /**\n         * _This property is an extension by Node.js. It is not available in Web browsers._\n         *\n         * An instance of the `PerformanceNodeTiming` class that provides performance metrics for specific Node.js operational milestones.\n         * @since v8.5.0\n         */\n        readonly nodeTiming: PerformanceNodeTiming;\n        /**\n         * Returns the current high resolution millisecond timestamp, where 0 represents the start of the current `node` process.\n         * @since v8.5.0\n         */\n        now(): number;\n        /**\n         * Sets the global performance resource timing buffer size to the specified number of \"resource\" type performance entry objects.\n         *\n         * By default the max buffer size is set to 250.\n         * @since v18.8.0\n         */\n        setResourceTimingBufferSize(maxSize: number): void;\n        /**\n         * The [`timeOrigin`](https://w3c.github.io/hr-time/#dom-performance-timeorigin) specifies the high resolution millisecond timestamp\n         * at which the current `node` process began, measured in Unix time.\n         * @since v8.5.0\n         */\n        readonly timeOrigin: number;\n        /**\n         * _This property is an extension by Node.js. It is not available in Web browsers._\n         *\n         * Wraps a function within a new function that measures the running time of the wrapped function.\n         * A `PerformanceObserver` must be subscribed to the `'function'` event type in order for the timing details to be accessed.\n         *\n         * ```js\n         * import {\n         *   performance,\n         *   PerformanceObserver,\n         * } from 'node:perf_hooks';\n         *\n         * function someFunction() {\n         *   console.log('hello world');\n         * }\n         *\n         * const wrapped = performance.timerify(someFunction);\n         *\n         * const obs = new PerformanceObserver((list) => {\n         *   console.log(list.getEntries()[0].duration);\n         *\n         *   performance.clearMarks();\n         *   performance.clearMeasures();\n         *   obs.disconnect();\n         * });\n         * obs.observe({ entryTypes: ['function'] });\n         *\n         * // A performance timeline entry will be created\n         * wrapped();\n         * ```\n         *\n         * If the wrapped function returns a promise, a finally handler will be attached to the promise and the duration will be reported\n         * once the finally handler is invoked.\n         * @param fn\n         */\n        timerify<T extends (...params: any[]) => any>(fn: T, options?: TimerifyOptions): T;\n        /**\n         * An object which is JSON representation of the performance object. It is similar to\n         * [`window.performance.toJSON`](https://developer.mozilla.org/en-US/docs/Web/API/Performance/toJSON) in browsers.\n         * @since v16.1.0\n         */\n        toJSON(): any;\n    }\n    class PerformanceObserverEntryList {\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order\n         * with respect to `performanceEntry.startTime`.\n         *\n         * ```js\n         * import {\n         *   performance,\n         *   PerformanceObserver,\n         * } from 'node:perf_hooks';\n         *\n         * const obs = new PerformanceObserver((perfObserverList, observer) => {\n         *   console.log(perfObserverList.getEntries());\n         *\n         *    * [\n         *    *   PerformanceEntry {\n         *    *     name: 'test',\n         *    *     entryType: 'mark',\n         *    *     startTime: 81.465639,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   },\n         *    *   PerformanceEntry {\n         *    *     name: 'meow',\n         *    *     entryType: 'mark',\n         *    *     startTime: 81.860064,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   }\n         *    * ]\n         *\n         *   performance.clearMarks();\n         *   performance.clearMeasures();\n         *   observer.disconnect();\n         * });\n         * obs.observe({ type: 'mark' });\n         *\n         * performance.mark('test');\n         * performance.mark('meow');\n         * ```\n         * @since v8.5.0\n         */\n        getEntries(): PerformanceEntry[];\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order\n         * with respect to `performanceEntry.startTime` whose `performanceEntry.name` is\n         * equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to`type`.\n         *\n         * ```js\n         * import {\n         *   performance,\n         *   PerformanceObserver,\n         * } from 'node:perf_hooks';\n         *\n         * const obs = new PerformanceObserver((perfObserverList, observer) => {\n         *   console.log(perfObserverList.getEntriesByName('meow'));\n         *\n         *    * [\n         *    *   PerformanceEntry {\n         *    *     name: 'meow',\n         *    *     entryType: 'mark',\n         *    *     startTime: 98.545991,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   }\n         *    * ]\n         *\n         *   console.log(perfObserverList.getEntriesByName('nope')); // []\n         *\n         *   console.log(perfObserverList.getEntriesByName('test', 'mark'));\n         *\n         *    * [\n         *    *   PerformanceEntry {\n         *    *     name: 'test',\n         *    *     entryType: 'mark',\n         *    *     startTime: 63.518931,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   }\n         *    * ]\n         *\n         *   console.log(perfObserverList.getEntriesByName('test', 'measure')); // []\n         *\n         *   performance.clearMarks();\n         *   performance.clearMeasures();\n         *   observer.disconnect();\n         * });\n         * obs.observe({ entryTypes: ['mark', 'measure'] });\n         *\n         * performance.mark('test');\n         * performance.mark('meow');\n         * ```\n         * @since v8.5.0\n         */\n        getEntriesByName(name: string, type?: EntryType): PerformanceEntry[];\n        /**\n         * Returns a list of `PerformanceEntry` objects in chronological order\n         * with respect to `performanceEntry.startTime` whose `performanceEntry.entryType` is equal to `type`.\n         *\n         * ```js\n         * import {\n         *   performance,\n         *   PerformanceObserver,\n         * } from 'node:perf_hooks';\n         *\n         * const obs = new PerformanceObserver((perfObserverList, observer) => {\n         *   console.log(perfObserverList.getEntriesByType('mark'));\n         *\n         *    * [\n         *    *   PerformanceEntry {\n         *    *     name: 'test',\n         *    *     entryType: 'mark',\n         *    *     startTime: 55.897834,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   },\n         *    *   PerformanceEntry {\n         *    *     name: 'meow',\n         *    *     entryType: 'mark',\n         *    *     startTime: 56.350146,\n         *    *     duration: 0,\n         *    *     detail: null\n         *    *   }\n         *    * ]\n         *\n         *   performance.clearMarks();\n         *   performance.clearMeasures();\n         *   observer.disconnect();\n         * });\n         * obs.observe({ type: 'mark' });\n         *\n         * performance.mark('test');\n         * performance.mark('meow');\n         * ```\n         * @since v8.5.0\n         */\n        getEntriesByType(type: EntryType): PerformanceEntry[];\n    }\n    type PerformanceObserverCallback = (list: PerformanceObserverEntryList, observer: PerformanceObserver) => void;\n    /**\n     * @since v8.5.0\n     */\n    class PerformanceObserver extends AsyncResource {\n        constructor(callback: PerformanceObserverCallback);\n        /**\n         * Disconnects the `PerformanceObserver` instance from all notifications.\n         * @since v8.5.0\n         */\n        disconnect(): void;\n        /**\n         * Subscribes the `PerformanceObserver` instance to notifications of new `PerformanceEntry` instances identified either by `options.entryTypes` or `options.type`:\n         *\n         * ```js\n         * import {\n         *   performance,\n         *   PerformanceObserver,\n         * } from 'node:perf_hooks';\n         *\n         * const obs = new PerformanceObserver((list, observer) => {\n         *   // Called once asynchronously. `list` contains three items.\n         * });\n         * obs.observe({ type: 'mark' });\n         *\n         * for (let n = 0; n < 3; n++)\n         *   performance.mark(`test${n}`);\n         * ```\n         * @since v8.5.0\n         */\n        observe(\n            options:\n                | {\n                    entryTypes: readonly EntryType[];\n                    buffered?: boolean | undefined;\n                }\n                | {\n                    type: EntryType;\n                    buffered?: boolean | undefined;\n                },\n        ): void;\n        /**\n         * @since v16.0.0\n         * @returns Current list of entries stored in the performance observer, emptying it out.\n         */\n        takeRecords(): PerformanceEntry[];\n    }\n    /**\n     * Provides detailed network timing data regarding the loading of an application's resources.\n     *\n     * The constructor of this class is not exposed to users directly.\n     * @since v18.2.0, v16.17.0\n     */\n    class PerformanceResourceTiming extends PerformanceEntry {\n        readonly entryType: \"resource\";\n        protected constructor();\n        /**\n         * The high resolution millisecond timestamp at immediately before dispatching the `fetch`\n         * request. If the resource is not intercepted by a worker the property will always return 0.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly workerStart: number;\n        /**\n         * The high resolution millisecond timestamp that represents the start time of the fetch which\n         * initiates the redirect.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly redirectStart: number;\n        /**\n         * The high resolution millisecond timestamp that will be created immediately after receiving\n         * the last byte of the response of the last redirect.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly redirectEnd: number;\n        /**\n         * The high resolution millisecond timestamp immediately before the Node.js starts to fetch the resource.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly fetchStart: number;\n        /**\n         * The high resolution millisecond timestamp immediately before the Node.js starts the domain name lookup\n         * for the resource.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly domainLookupStart: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately after the Node.js finished\n         * the domain name lookup for the resource.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly domainLookupEnd: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately before Node.js starts to\n         * establish the connection to the server to retrieve the resource.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly connectStart: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately after Node.js finishes\n         * establishing the connection to the server to retrieve the resource.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly connectEnd: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately before Node.js starts the\n         * handshake process to secure the current connection.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly secureConnectionStart: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately before Node.js receives the\n         * first byte of the response from the server.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly requestStart: number;\n        /**\n         * The high resolution millisecond timestamp representing the time immediately after Node.js receives the\n         * last byte of the resource or immediately before the transport connection is closed, whichever comes first.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly responseEnd: number;\n        /**\n         * A number representing the size (in octets) of the fetched resource. The size includes the response header\n         * fields plus the response payload body.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly transferSize: number;\n        /**\n         * A number representing the size (in octets) received from the fetch (HTTP or cache), of the payload body, before\n         * removing any applied content-codings.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly encodedBodySize: number;\n        /**\n         * A number representing the size (in octets) received from the fetch (HTTP or cache), of the message body, after\n         * removing any applied content-codings.\n         * @since v18.2.0, v16.17.0\n         */\n        readonly decodedBodySize: number;\n        /**\n         * Returns a `object` that is the JSON representation of the `PerformanceResourceTiming` object\n         * @since v18.2.0, v16.17.0\n         */\n        toJSON(): any;\n    }\n    namespace constants {\n        const NODE_PERFORMANCE_GC_MAJOR: number;\n        const NODE_PERFORMANCE_GC_MINOR: number;\n        const NODE_PERFORMANCE_GC_INCREMENTAL: number;\n        const NODE_PERFORMANCE_GC_WEAKCB: number;\n        const NODE_PERFORMANCE_GC_FLAGS_NO: number;\n        const NODE_PERFORMANCE_GC_FLAGS_CONSTRUCT_RETAINED: number;\n        const NODE_PERFORMANCE_GC_FLAGS_FORCED: number;\n        const NODE_PERFORMANCE_GC_FLAGS_SYNCHRONOUS_PHANTOM_PROCESSING: number;\n        const NODE_PERFORMANCE_GC_FLAGS_ALL_AVAILABLE_GARBAGE: number;\n        const NODE_PERFORMANCE_GC_FLAGS_ALL_EXTERNAL_MEMORY: number;\n        const NODE_PERFORMANCE_GC_FLAGS_SCHEDULE_IDLE: number;\n    }\n    const performance: Performance;\n    interface EventLoopMonitorOptions {\n        /**\n         * The sampling rate in milliseconds.\n         * Must be greater than zero.\n         * @default 10\n         */\n        resolution?: number | undefined;\n    }\n    interface Histogram {\n        /**\n         * The number of samples recorded by the histogram.\n         * @since v17.4.0, v16.14.0\n         */\n        readonly count: number;\n        /**\n         * The number of samples recorded by the histogram.\n         * v17.4.0, v16.14.0\n         */\n        readonly countBigInt: bigint;\n        /**\n         * The number of times the event loop delay exceeded the maximum 1 hour event\n         * loop delay threshold.\n         * @since v11.10.0\n         */\n        readonly exceeds: number;\n        /**\n         * The number of times the event loop delay exceeded the maximum 1 hour event loop delay threshold.\n         * @since v17.4.0, v16.14.0\n         */\n        readonly exceedsBigInt: bigint;\n        /**\n         * The maximum recorded event loop delay.\n         * @since v11.10.0\n         */\n        readonly max: number;\n        /**\n         * The maximum recorded event loop delay.\n         * v17.4.0, v16.14.0\n         */\n        readonly maxBigInt: number;\n        /**\n         * The mean of the recorded event loop delays.\n         * @since v11.10.0\n         */\n        readonly mean: number;\n        /**\n         * The minimum recorded event loop delay.\n         * @since v11.10.0\n         */\n        readonly min: number;\n        /**\n         * The minimum recorded event loop delay.\n         * v17.4.0, v16.14.0\n         */\n        readonly minBigInt: bigint;\n        /**\n         * Returns the value at the given percentile.\n         * @since v11.10.0\n         * @param percentile A percentile value in the range (0, 100].\n         */\n        percentile(percentile: number): number;\n        /**\n         * Returns the value at the given percentile.\n         * @since v17.4.0, v16.14.0\n         * @param percentile A percentile value in the range (0, 100].\n         */\n        percentileBigInt(percentile: number): bigint;\n        /**\n         * Returns a `Map` object detailing the accumulated percentile distribution.\n         * @since v11.10.0\n         */\n        readonly percentiles: Map<number, number>;\n        /**\n         * Returns a `Map` object detailing the accumulated percentile distribution.\n         * @since v17.4.0, v16.14.0\n         */\n        readonly percentilesBigInt: Map<bigint, bigint>;\n        /**\n         * Resets the collected histogram data.\n         * @since v11.10.0\n         */\n        reset(): void;\n        /**\n         * The standard deviation of the recorded event loop delays.\n         * @since v11.10.0\n         */\n        readonly stddev: number;\n    }\n    interface IntervalHistogram extends Histogram {\n        /**\n         * Enables the update interval timer. Returns `true` if the timer was\n         * started, `false` if it was already started.\n         * @since v11.10.0\n         */\n        enable(): boolean;\n        /**\n         * Disables the update interval timer. Returns `true` if the timer was\n         * stopped, `false` if it was already stopped.\n         * @since v11.10.0\n         */\n        disable(): boolean;\n    }\n    interface RecordableHistogram extends Histogram {\n        /**\n         * @since v15.9.0, v14.18.0\n         * @param val The amount to record in the histogram.\n         */\n        record(val: number | bigint): void;\n        /**\n         * Calculates the amount of time (in nanoseconds) that has passed since the\n         * previous call to `recordDelta()` and records that amount in the histogram.\n         * @since v15.9.0, v14.18.0\n         */\n        recordDelta(): void;\n        /**\n         * Adds the values from `other` to this histogram.\n         * @since v17.4.0, v16.14.0\n         */\n        add(other: RecordableHistogram): void;\n    }\n    /**\n     * _This property is an extension by Node.js. It is not available in Web browsers._\n     *\n     * Creates an `IntervalHistogram` object that samples and reports the event loop\n     * delay over time. The delays will be reported in nanoseconds.\n     *\n     * Using a timer to detect approximate event loop delay works because the\n     * execution of timers is tied specifically to the lifecycle of the libuv\n     * event loop. That is, a delay in the loop will cause a delay in the execution\n     * of the timer, and those delays are specifically what this API is intended to\n     * detect.\n     *\n     * ```js\n     * import { monitorEventLoopDelay } from 'node:perf_hooks';\n     * const h = monitorEventLoopDelay({ resolution: 20 });\n     * h.enable();\n     * // Do something.\n     * h.disable();\n     * console.log(h.min);\n     * console.log(h.max);\n     * console.log(h.mean);\n     * console.log(h.stddev);\n     * console.log(h.percentiles);\n     * console.log(h.percentile(50));\n     * console.log(h.percentile(99));\n     * ```\n     * @since v11.10.0\n     */\n    function monitorEventLoopDelay(options?: EventLoopMonitorOptions): IntervalHistogram;\n    interface CreateHistogramOptions {\n        /**\n         * The minimum recordable value. Must be an integer value greater than 0.\n         * @default 1\n         */\n        lowest?: number | bigint | undefined;\n        /**\n         * The maximum recordable value. Must be an integer value greater than min.\n         * @default Number.MAX_SAFE_INTEGER\n         */\n        highest?: number | bigint | undefined;\n        /**\n         * The number of accuracy digits. Must be a number between 1 and 5.\n         * @default 3\n         */\n        figures?: number | undefined;\n    }\n    /**\n     * Returns a `RecordableHistogram`.\n     * @since v15.9.0, v14.18.0\n     */\n    function createHistogram(options?: CreateHistogramOptions): RecordableHistogram;\n    import {\n        performance as _performance,\n        PerformanceEntry as _PerformanceEntry,\n        PerformanceMark as _PerformanceMark,\n        PerformanceMeasure as _PerformanceMeasure,\n        PerformanceObserver as _PerformanceObserver,\n        PerformanceObserverEntryList as _PerformanceObserverEntryList,\n        PerformanceResourceTiming as _PerformanceResourceTiming,\n    } from \"perf_hooks\";\n    global {\n        /**\n         * `PerformanceEntry` is a global reference for `import { PerformanceEntry } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performanceentry\n         * @since v19.0.0\n         */\n        var PerformanceEntry: typeof globalThis extends {\n            onmessage: any;\n            PerformanceEntry: infer T;\n        } ? T\n            : typeof _PerformanceEntry;\n        /**\n         * `PerformanceMark` is a global reference for `import { PerformanceMark } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performancemark\n         * @since v19.0.0\n         */\n        var PerformanceMark: typeof globalThis extends {\n            onmessage: any;\n            PerformanceMark: infer T;\n        } ? T\n            : typeof _PerformanceMark;\n        /**\n         * `PerformanceMeasure` is a global reference for `import { PerformanceMeasure } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performancemeasure\n         * @since v19.0.0\n         */\n        var PerformanceMeasure: typeof globalThis extends {\n            onmessage: any;\n            PerformanceMeasure: infer T;\n        } ? T\n            : typeof _PerformanceMeasure;\n        /**\n         * `PerformanceObserver` is a global reference for `import { PerformanceObserver } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performanceobserver\n         * @since v19.0.0\n         */\n        var PerformanceObserver: typeof globalThis extends {\n            onmessage: any;\n            PerformanceObserver: infer T;\n        } ? T\n            : typeof _PerformanceObserver;\n        /**\n         * `PerformanceObserverEntryList` is a global reference for `import { PerformanceObserverEntryList } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performanceobserverentrylist\n         * @since v19.0.0\n         */\n        var PerformanceObserverEntryList: typeof globalThis extends {\n            onmessage: any;\n            PerformanceObserverEntryList: infer T;\n        } ? T\n            : typeof _PerformanceObserverEntryList;\n        /**\n         * `PerformanceResourceTiming` is a global reference for `import { PerformanceResourceTiming } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performanceresourcetiming\n         * @since v19.0.0\n         */\n        var PerformanceResourceTiming: typeof globalThis extends {\n            onmessage: any;\n            PerformanceResourceTiming: infer T;\n        } ? T\n            : typeof _PerformanceResourceTiming;\n        /**\n         * `performance` is a global reference for `import { performance } from 'node:perf_hooks'`\n         * @see https://nodejs.org/docs/latest-v22.x/api/globals.html#performance\n         * @since v16.0.0\n         */\n        var performance: typeof globalThis extends {\n            onmessage: any;\n            performance: infer T;\n        } ? T\n            : typeof _performance;\n    }\n}\ndeclare module \"node:perf_hooks\" {\n    export * from \"perf_hooks\";\n}\n",
    "node_modules/@types/node/process.d.ts": "declare module \"process\" {\n    import * as tty from \"node:tty\";\n    import { Worker } from \"node:worker_threads\";\n\n    interface BuiltInModule {\n        \"assert\": typeof import(\"assert\");\n        \"node:assert\": typeof import(\"node:assert\");\n        \"assert/strict\": typeof import(\"assert/strict\");\n        \"node:assert/strict\": typeof import(\"node:assert/strict\");\n        \"async_hooks\": typeof import(\"async_hooks\");\n        \"node:async_hooks\": typeof import(\"node:async_hooks\");\n        \"buffer\": typeof import(\"buffer\");\n        \"node:buffer\": typeof import(\"node:buffer\");\n        \"child_process\": typeof import(\"child_process\");\n        \"node:child_process\": typeof import(\"node:child_process\");\n        \"cluster\": typeof import(\"cluster\");\n        \"node:cluster\": typeof import(\"node:cluster\");\n        \"console\": typeof import(\"console\");\n        \"node:console\": typeof import(\"node:console\");\n        \"constants\": typeof import(\"constants\");\n        \"node:constants\": typeof import(\"node:constants\");\n        \"crypto\": typeof import(\"crypto\");\n        \"node:crypto\": typeof import(\"node:crypto\");\n        \"dgram\": typeof import(\"dgram\");\n        \"node:dgram\": typeof import(\"node:dgram\");\n        \"diagnostics_channel\": typeof import(\"diagnostics_channel\");\n        \"node:diagnostics_channel\": typeof import(\"node:diagnostics_channel\");\n        \"dns\": typeof import(\"dns\");\n        \"node:dns\": typeof import(\"node:dns\");\n        \"dns/promises\": typeof import(\"dns/promises\");\n        \"node:dns/promises\": typeof import(\"node:dns/promises\");\n        \"domain\": typeof import(\"domain\");\n        \"node:domain\": typeof import(\"node:domain\");\n        \"events\": typeof import(\"events\");\n        \"node:events\": typeof import(\"node:events\");\n        \"fs\": typeof import(\"fs\");\n        \"node:fs\": typeof import(\"node:fs\");\n        \"fs/promises\": typeof import(\"fs/promises\");\n        \"node:fs/promises\": typeof import(\"node:fs/promises\");\n        \"http\": typeof import(\"http\");\n        \"node:http\": typeof import(\"node:http\");\n        \"http2\": typeof import(\"http2\");\n        \"node:http2\": typeof import(\"node:http2\");\n        \"https\": typeof import(\"https\");\n        \"node:https\": typeof import(\"node:https\");\n        \"inspector\": typeof import(\"inspector\");\n        \"node:inspector\": typeof import(\"node:inspector\");\n        \"inspector/promises\": typeof import(\"inspector/promises\");\n        \"node:inspector/promises\": typeof import(\"node:inspector/promises\");\n        \"module\": typeof import(\"module\");\n        \"node:module\": typeof import(\"node:module\");\n        \"net\": typeof import(\"net\");\n        \"node:net\": typeof import(\"node:net\");\n        \"os\": typeof import(\"os\");\n        \"node:os\": typeof import(\"node:os\");\n        \"path\": typeof import(\"path\");\n        \"node:path\": typeof import(\"node:path\");\n        \"path/posix\": typeof import(\"path/posix\");\n        \"node:path/posix\": typeof import(\"node:path/posix\");\n        \"path/win32\": typeof import(\"path/win32\");\n        \"node:path/win32\": typeof import(\"node:path/win32\");\n        \"perf_hooks\": typeof import(\"perf_hooks\");\n        \"node:perf_hooks\": typeof import(\"node:perf_hooks\");\n        \"process\": typeof import(\"process\");\n        \"node:process\": typeof import(\"node:process\");\n        \"punycode\": typeof import(\"punycode\");\n        \"node:punycode\": typeof import(\"node:punycode\");\n        \"querystring\": typeof import(\"querystring\");\n        \"node:querystring\": typeof import(\"node:querystring\");\n        \"readline\": typeof import(\"readline\");\n        \"node:readline\": typeof import(\"node:readline\");\n        \"readline/promises\": typeof import(\"readline/promises\");\n        \"node:readline/promises\": typeof import(\"node:readline/promises\");\n        \"repl\": typeof import(\"repl\");\n        \"node:repl\": typeof import(\"node:repl\");\n        \"node:sea\": typeof import(\"node:sea\");\n        \"node:sqlite\": typeof import(\"node:sqlite\");\n        \"stream\": typeof import(\"stream\");\n        \"node:stream\": typeof import(\"node:stream\");\n        \"stream/consumers\": typeof import(\"stream/consumers\");\n        \"node:stream/consumers\": typeof import(\"node:stream/consumers\");\n        \"stream/promises\": typeof import(\"stream/promises\");\n        \"node:stream/promises\": typeof import(\"node:stream/promises\");\n        \"stream/web\": typeof import(\"stream/web\");\n        \"node:stream/web\": typeof import(\"node:stream/web\");\n        \"string_decoder\": typeof import(\"string_decoder\");\n        \"node:string_decoder\": typeof import(\"node:string_decoder\");\n        \"node:test\": typeof import(\"node:test\");\n        \"node:test/reporters\": typeof import(\"node:test/reporters\");\n        \"timers\": typeof import(\"timers\");\n        \"node:timers\": typeof import(\"node:timers\");\n        \"timers/promises\": typeof import(\"timers/promises\");\n        \"node:timers/promises\": typeof import(\"node:timers/promises\");\n        \"tls\": typeof import(\"tls\");\n        \"node:tls\": typeof import(\"node:tls\");\n        \"trace_events\": typeof import(\"trace_events\");\n        \"node:trace_events\": typeof import(\"node:trace_events\");\n        \"tty\": typeof import(\"tty\");\n        \"node:tty\": typeof import(\"node:tty\");\n        \"url\": typeof import(\"url\");\n        \"node:url\": typeof import(\"node:url\");\n        \"util\": typeof import(\"util\");\n        \"node:util\": typeof import(\"node:util\");\n        \"sys\": typeof import(\"util\");\n        \"node:sys\": typeof import(\"node:util\");\n        \"util/types\": typeof import(\"util/types\");\n        \"node:util/types\": typeof import(\"node:util/types\");\n        \"v8\": typeof import(\"v8\");\n        \"node:v8\": typeof import(\"node:v8\");\n        \"vm\": typeof import(\"vm\");\n        \"node:vm\": typeof import(\"node:vm\");\n        \"wasi\": typeof import(\"wasi\");\n        \"node:wasi\": typeof import(\"node:wasi\");\n        \"worker_threads\": typeof import(\"worker_threads\");\n        \"node:worker_threads\": typeof import(\"node:worker_threads\");\n        \"zlib\": typeof import(\"zlib\");\n        \"node:zlib\": typeof import(\"node:zlib\");\n    }\n    global {\n        var process: NodeJS.Process;\n        namespace NodeJS {\n            // this namespace merge is here because these are specifically used\n            // as the type for process.stdin, process.stdout, and process.stderr.\n            // they can't live in tty.d.ts because we need to disambiguate the imported name.\n            interface ReadStream extends tty.ReadStream {}\n            interface WriteStream extends tty.WriteStream {}\n            interface MemoryUsageFn {\n                /**\n                 * The `process.memoryUsage()` method iterate over each page to gather informations about memory\n                 * usage which can be slow depending on the program memory allocations.\n                 */\n                (): MemoryUsage;\n                /**\n                 * method returns an integer representing the Resident Set Size (RSS) in bytes.\n                 */\n                rss(): number;\n            }\n            interface MemoryUsage {\n                /**\n                 * Resident Set Size, is the amount of space occupied in the main memory device (that is a subset of the total allocated memory) for the\n                 * process, including all C++ and JavaScript objects and code.\n                 */\n                rss: number;\n                /**\n                 * Refers to V8's memory usage.\n                 */\n                heapTotal: number;\n                /**\n                 * Refers to V8's memory usage.\n                 */\n                heapUsed: number;\n                external: number;\n                /**\n                 * Refers to memory allocated for `ArrayBuffer`s and `SharedArrayBuffer`s, including all Node.js Buffers. This is also included\n                 * in the external value. When Node.js is used as an embedded library, this value may be `0` because allocations for `ArrayBuffer`s\n                 * may not be tracked in that case.\n                 */\n                arrayBuffers: number;\n            }\n            interface CpuUsage {\n                user: number;\n                system: number;\n            }\n            interface ProcessRelease {\n                name: string;\n                sourceUrl?: string | undefined;\n                headersUrl?: string | undefined;\n                libUrl?: string | undefined;\n                lts?: string | undefined;\n            }\n            interface ProcessFeatures {\n                /**\n                 * A boolean value that is `true` if the current Node.js build is caching builtin modules.\n                 * @since v12.0.0\n                 */\n                readonly cached_builtins: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build is a debug build.\n                 * @since v0.5.5\n                 */\n                readonly debug: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes the inspector.\n                 * @since v11.10.0\n                 */\n                readonly inspector: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for IPv6.\n                 *\n                 * Since all Node.js builds have IPv6 support, this value is always `true`.\n                 * @since v0.5.3\n                 * @deprecated This property is always true, and any checks based on it are redundant.\n                 */\n                readonly ipv6: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build supports\n                 * [loading ECMAScript modules using `require()`](https://nodejs.org/docs/latest-v22.x/api/modules.md#loading-ecmascript-modules-using-require).\n                 * @since v22.10.0\n                 */\n                readonly require_module: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for TLS.\n                 * @since v0.5.3\n                 */\n                readonly tls: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for ALPN in TLS.\n                 *\n                 * In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional ALPN support.\n                 * This value is therefore identical to that of `process.features.tls`.\n                 * @since v4.8.0\n                 * @deprecated Use `process.features.tls` instead.\n                 */\n                readonly tls_alpn: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for OCSP in TLS.\n                 *\n                 * In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional OCSP support.\n                 * This value is therefore identical to that of `process.features.tls`.\n                 * @since v0.11.13\n                 * @deprecated Use `process.features.tls` instead.\n                 */\n                readonly tls_ocsp: boolean;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for SNI in TLS.\n                 *\n                 * In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional SNI support.\n                 * This value is therefore identical to that of `process.features.tls`.\n                 * @since v0.5.3\n                 * @deprecated Use `process.features.tls` instead.\n                 */\n                readonly tls_sni: boolean;\n                /**\n                 * A value that is `\"strip\"` if Node.js is run with `--experimental-strip-types`,\n                 * `\"transform\"` if Node.js is run with `--experimental-transform-types`, and `false` otherwise.\n                 * @since v22.10.0\n                 */\n                readonly typescript: \"strip\" | \"transform\" | false;\n                /**\n                 * A boolean value that is `true` if the current Node.js build includes support for libuv.\n                 *\n                 * Since it's not possible to build Node.js without libuv, this value is always `true`.\n                 * @since v0.5.3\n                 * @deprecated This property is always true, and any checks based on it are redundant.\n                 */\n                readonly uv: boolean;\n            }\n            interface ProcessVersions extends Dict<string> {\n                http_parser: string;\n                node: string;\n                v8: string;\n                ares: string;\n                uv: string;\n                zlib: string;\n                modules: string;\n                openssl: string;\n            }\n            type Platform =\n                | \"aix\"\n                | \"android\"\n                | \"darwin\"\n                | \"freebsd\"\n                | \"haiku\"\n                | \"linux\"\n                | \"openbsd\"\n                | \"sunos\"\n                | \"win32\"\n                | \"cygwin\"\n                | \"netbsd\";\n            type Architecture =\n                | \"arm\"\n                | \"arm64\"\n                | \"ia32\"\n                | \"loong64\"\n                | \"mips\"\n                | \"mipsel\"\n                | \"ppc\"\n                | \"ppc64\"\n                | \"riscv64\"\n                | \"s390\"\n                | \"s390x\"\n                | \"x64\";\n            type Signals =\n                | \"SIGABRT\"\n                | \"SIGALRM\"\n                | \"SIGBUS\"\n                | \"SIGCHLD\"\n                | \"SIGCONT\"\n                | \"SIGFPE\"\n                | \"SIGHUP\"\n                | \"SIGILL\"\n                | \"SIGINT\"\n                | \"SIGIO\"\n                | \"SIGIOT\"\n                | \"SIGKILL\"\n                | \"SIGPIPE\"\n                | \"SIGPOLL\"\n                | \"SIGPROF\"\n                | \"SIGPWR\"\n                | \"SIGQUIT\"\n                | \"SIGSEGV\"\n                | \"SIGSTKFLT\"\n                | \"SIGSTOP\"\n                | \"SIGSYS\"\n                | \"SIGTERM\"\n                | \"SIGTRAP\"\n                | \"SIGTSTP\"\n                | \"SIGTTIN\"\n                | \"SIGTTOU\"\n                | \"SIGUNUSED\"\n                | \"SIGURG\"\n                | \"SIGUSR1\"\n                | \"SIGUSR2\"\n                | \"SIGVTALRM\"\n                | \"SIGWINCH\"\n                | \"SIGXCPU\"\n                | \"SIGXFSZ\"\n                | \"SIGBREAK\"\n                | \"SIGLOST\"\n                | \"SIGINFO\";\n            type UncaughtExceptionOrigin = \"uncaughtException\" | \"unhandledRejection\";\n            type MultipleResolveType = \"resolve\" | \"reject\";\n            type BeforeExitListener = (code: number) => void;\n            type DisconnectListener = () => void;\n            type ExitListener = (code: number) => void;\n            type RejectionHandledListener = (promise: Promise<unknown>) => void;\n            type UncaughtExceptionListener = (error: Error, origin: UncaughtExceptionOrigin) => void;\n            /**\n             * Most of the time the unhandledRejection will be an Error, but this should not be relied upon\n             * as *anything* can be thrown/rejected, it is therefore unsafe to assume that the value is an Error.\n             */\n            type UnhandledRejectionListener = (reason: unknown, promise: Promise<unknown>) => void;\n            type WarningListener = (warning: Error) => void;\n            type MessageListener = (message: unknown, sendHandle: unknown) => void;\n            type SignalsListener = (signal: Signals) => void;\n            type MultipleResolveListener = (\n                type: MultipleResolveType,\n                promise: Promise<unknown>,\n                value: unknown,\n            ) => void;\n            type WorkerListener = (worker: Worker) => void;\n            interface Socket extends ReadWriteStream {\n                isTTY?: true | undefined;\n            }\n            // Alias for compatibility\n            interface ProcessEnv extends Dict<string> {\n                /**\n                 * Can be used to change the default timezone at runtime\n                 */\n                TZ?: string;\n            }\n            interface HRTime {\n                /**\n                 * This is the legacy version of {@link process.hrtime.bigint()}\n                 * before bigint was introduced in JavaScript.\n                 *\n                 * The `process.hrtime()` method returns the current high-resolution real time in a `[seconds, nanoseconds]` tuple `Array`,\n                 * where `nanoseconds` is the remaining part of the real time that can't be represented in second precision.\n                 *\n                 * `time` is an optional parameter that must be the result of a previous `process.hrtime()` call to diff with the current time.\n                 * If the parameter passed in is not a tuple `Array`, a TypeError will be thrown.\n                 * Passing in a user-defined array instead of the result of a previous call to `process.hrtime()` will lead to undefined behavior.\n                 *\n                 * These times are relative to an arbitrary time in the past,\n                 * and not related to the time of day and therefore not subject to clock drift.\n                 * The primary use is for measuring performance between intervals:\n                 * ```js\n                 * const { hrtime } = require('node:process');\n                 * const NS_PER_SEC = 1e9;\n                 * const time = hrtime();\n                 * // [ 1800216, 25 ]\n                 *\n                 * setTimeout(() => {\n                 *   const diff = hrtime(time);\n                 *   // [ 1, 552 ]\n                 *\n                 *   console.log(`Benchmark took ${diff[0] * NS_PER_SEC + diff[1]} nanoseconds`);\n                 *   // Benchmark took 1000000552 nanoseconds\n                 * }, 1000);\n                 * ```\n                 * @since 0.7.6\n                 * @legacy Use {@link process.hrtime.bigint()} instead.\n                 * @param time The result of a previous call to `process.hrtime()`\n                 */\n                (time?: [number, number]): [number, number];\n                /**\n                 * The `bigint` version of the {@link process.hrtime()} method returning the current high-resolution real time in nanoseconds as a `bigint`.\n                 *\n                 * Unlike {@link process.hrtime()}, it does not support an additional time argument since the difference can just be computed directly by subtraction of the two `bigint`s.\n                 * ```js\n                 * import { hrtime } from 'node:process';\n                 *\n                 * const start = hrtime.bigint();\n                 * // 191051479007711n\n                 *\n                 * setTimeout(() => {\n                 *   const end = hrtime.bigint();\n                 *   // 191052633396993n\n                 *\n                 *   console.log(`Benchmark took ${end - start} nanoseconds`);\n                 *   // Benchmark took 1154389282 nanoseconds\n                 * }, 1000);\n                 * ```\n                 * @since v10.7.0\n                 */\n                bigint(): bigint;\n            }\n            interface ProcessPermission {\n                /**\n                 * Verifies that the process is able to access the given scope and reference.\n                 * If no reference is provided, a global scope is assumed, for instance, `process.permission.has('fs.read')`\n                 * will check if the process has ALL file system read permissions.\n                 *\n                 * The reference has a meaning based on the provided scope. For example, the reference when the scope is File System means files and folders.\n                 *\n                 * The available scopes are:\n                 *\n                 * * `fs` - All File System\n                 * * `fs.read` - File System read operations\n                 * * `fs.write` - File System write operations\n                 * * `child` - Child process spawning operations\n                 * * `worker` - Worker thread spawning operation\n                 *\n                 * ```js\n                 * // Check if the process has permission to read the README file\n                 * process.permission.has('fs.read', './README.md');\n                 * // Check if the process has read permission operations\n                 * process.permission.has('fs.read');\n                 * ```\n                 * @since v20.0.0\n                 */\n                has(scope: string, reference?: string): boolean;\n            }\n            interface ProcessReport {\n                /**\n                 * Write reports in a compact format, single-line JSON, more easily consumable by log processing systems\n                 * than the default multi-line format designed for human consumption.\n                 * @since v13.12.0, v12.17.0\n                 */\n                compact: boolean;\n                /**\n                 * Directory where the report is written.\n                 * The default value is the empty string, indicating that reports are written to the current\n                 * working directory of the Node.js process.\n                 */\n                directory: string;\n                /**\n                 * Filename where the report is written. If set to the empty string, the output filename will be comprised\n                 * of a timestamp, PID, and sequence number. The default value is the empty string.\n                 */\n                filename: string;\n                /**\n                 * Returns a JavaScript Object representation of a diagnostic report for the running process.\n                 * The report's JavaScript stack trace is taken from `err`, if present.\n                 */\n                getReport(err?: Error): object;\n                /**\n                 * If true, a diagnostic report is generated on fatal errors,\n                 * such as out of memory errors or failed C++ assertions.\n                 * @default false\n                 */\n                reportOnFatalError: boolean;\n                /**\n                 * If true, a diagnostic report is generated when the process\n                 * receives the signal specified by process.report.signal.\n                 * @default false\n                 */\n                reportOnSignal: boolean;\n                /**\n                 * If true, a diagnostic report is generated on uncaught exception.\n                 * @default false\n                 */\n                reportOnUncaughtException: boolean;\n                /**\n                 * The signal used to trigger the creation of a diagnostic report.\n                 * @default 'SIGUSR2'\n                 */\n                signal: Signals;\n                /**\n                 * Writes a diagnostic report to a file. If filename is not provided, the default filename\n                 * includes the date, time, PID, and a sequence number.\n                 * The report's JavaScript stack trace is taken from `err`, if present.\n                 *\n                 * If the value of filename is set to `'stdout'` or `'stderr'`, the report is written\n                 * to the stdout or stderr of the process respectively.\n                 * @param fileName Name of the file where the report is written.\n                 * This should be a relative path, that will be appended to the directory specified in\n                 * `process.report.directory`, or the current working directory of the Node.js process,\n                 * if unspecified.\n                 * @param err A custom error used for reporting the JavaScript stack.\n                 * @return Filename of the generated report.\n                 */\n                writeReport(fileName?: string, err?: Error): string;\n                writeReport(err?: Error): string;\n            }\n            interface ResourceUsage {\n                fsRead: number;\n                fsWrite: number;\n                involuntaryContextSwitches: number;\n                ipcReceived: number;\n                ipcSent: number;\n                majorPageFault: number;\n                maxRSS: number;\n                minorPageFault: number;\n                sharedMemorySize: number;\n                signalsCount: number;\n                swappedOut: number;\n                systemCPUTime: number;\n                unsharedDataSize: number;\n                unsharedStackSize: number;\n                userCPUTime: number;\n                voluntaryContextSwitches: number;\n            }\n            interface EmitWarningOptions {\n                /**\n                 * When `warning` is a `string`, `type` is the name to use for the _type_ of warning being emitted.\n                 *\n                 * @default 'Warning'\n                 */\n                type?: string | undefined;\n                /**\n                 * A unique identifier for the warning instance being emitted.\n                 */\n                code?: string | undefined;\n                /**\n                 * When `warning` is a `string`, `ctor` is an optional function used to limit the generated stack trace.\n                 *\n                 * @default process.emitWarning\n                 */\n                ctor?: Function | undefined;\n                /**\n                 * Additional text to include with the error.\n                 */\n                detail?: string | undefined;\n            }\n            interface ProcessConfig {\n                readonly target_defaults: {\n                    readonly cflags: any[];\n                    readonly default_configuration: string;\n                    readonly defines: string[];\n                    readonly include_dirs: string[];\n                    readonly libraries: string[];\n                };\n                readonly variables: {\n                    readonly clang: number;\n                    readonly host_arch: string;\n                    readonly node_install_npm: boolean;\n                    readonly node_install_waf: boolean;\n                    readonly node_prefix: string;\n                    readonly node_shared_openssl: boolean;\n                    readonly node_shared_v8: boolean;\n                    readonly node_shared_zlib: boolean;\n                    readonly node_use_dtrace: boolean;\n                    readonly node_use_etw: boolean;\n                    readonly node_use_openssl: boolean;\n                    readonly target_arch: string;\n                    readonly v8_no_strict_aliasing: number;\n                    readonly v8_use_snapshot: boolean;\n                    readonly visibility: string;\n                };\n            }\n            interface Process extends EventEmitter {\n                /**\n                 * The `process.stdout` property returns a stream connected to`stdout` (fd `1`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `1` refers to a file, in which case it is\n                 * a `Writable` stream.\n                 *\n                 * For example, to copy `process.stdin` to `process.stdout`:\n                 *\n                 * ```js\n                 * import { stdin, stdout } from 'node:process';\n                 *\n                 * stdin.pipe(stdout);\n                 * ```\n                 *\n                 * `process.stdout` differs from other Node.js streams in important ways. See `note on process I/O` for more information.\n                 */\n                stdout: WriteStream & {\n                    fd: 1;\n                };\n                /**\n                 * The `process.stderr` property returns a stream connected to`stderr` (fd `2`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `2` refers to a file, in which case it is\n                 * a `Writable` stream.\n                 *\n                 * `process.stderr` differs from other Node.js streams in important ways. See `note on process I/O` for more information.\n                 */\n                stderr: WriteStream & {\n                    fd: 2;\n                };\n                /**\n                 * The `process.stdin` property returns a stream connected to`stdin` (fd `0`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `0` refers to a file, in which case it is\n                 * a `Readable` stream.\n                 *\n                 * For details of how to read from `stdin` see `readable.read()`.\n                 *\n                 * As a `Duplex` stream, `process.stdin` can also be used in \"old\" mode that\n                 * is compatible with scripts written for Node.js prior to v0.10\\.\n                 * For more information see `Stream compatibility`.\n                 *\n                 * In \"old\" streams mode the `stdin` stream is paused by default, so one\n                 * must call `process.stdin.resume()` to read from it. Note also that calling `process.stdin.resume()` itself would switch stream to \"old\" mode.\n                 */\n                stdin: ReadStream & {\n                    fd: 0;\n                };\n                /**\n                 * The `process.argv` property returns an array containing the command-line\n                 * arguments passed when the Node.js process was launched. The first element will\n                 * be {@link execPath}. See `process.argv0` if access to the original value\n                 * of `argv[0]` is needed. The second element will be the path to the JavaScript\n                 * file being executed. The remaining elements will be any additional command-line\n                 * arguments.\n                 *\n                 * For example, assuming the following script for `process-args.js`:\n                 *\n                 * ```js\n                 * import { argv } from 'node:process';\n                 *\n                 * // print process.argv\n                 * argv.forEach((val, index) => {\n                 *   console.log(`${index}: ${val}`);\n                 * });\n                 * ```\n                 *\n                 * Launching the Node.js process as:\n                 *\n                 * ```bash\n                 * node process-args.js one two=three four\n                 * ```\n                 *\n                 * Would generate the output:\n                 *\n                 * ```text\n                 * 0: /usr/local/bin/node\n                 * 1: /Users/mjr/work/node/process-args.js\n                 * 2: one\n                 * 3: two=three\n                 * 4: four\n                 * ```\n                 * @since v0.1.27\n                 */\n                argv: string[];\n                /**\n                 * The `process.argv0` property stores a read-only copy of the original value of`argv[0]` passed when Node.js starts.\n                 *\n                 * ```console\n                 * $ bash -c 'exec -a customArgv0 ./node'\n                 * > process.argv[0]\n                 * '/Volumes/code/external/node/out/Release/node'\n                 * > process.argv0\n                 * 'customArgv0'\n                 * ```\n                 * @since v6.4.0\n                 */\n                argv0: string;\n                /**\n                 * The `process.execArgv` property returns the set of Node.js-specific command-line\n                 * options passed when the Node.js process was launched. These options do not\n                 * appear in the array returned by the {@link argv} property, and do not\n                 * include the Node.js executable, the name of the script, or any options following\n                 * the script name. These options are useful in order to spawn child processes with\n                 * the same execution environment as the parent.\n                 *\n                 * ```bash\n                 * node --icu-data-dir=./foo --require ./bar.js script.js --version\n                 * ```\n                 *\n                 * Results in `process.execArgv`:\n                 *\n                 * ```js\n                 * [\"--icu-data-dir=./foo\", \"--require\", \"./bar.js\"]\n                 * ```\n                 *\n                 * And `process.argv`:\n                 *\n                 * ```js\n                 * ['/usr/local/bin/node', 'script.js', '--version']\n                 * ```\n                 *\n                 * Refer to `Worker constructor` for the detailed behavior of worker\n                 * threads with this property.\n                 * @since v0.7.7\n                 */\n                execArgv: string[];\n                /**\n                 * The `process.execPath` property returns the absolute pathname of the executable\n                 * that started the Node.js process. Symbolic links, if any, are resolved.\n                 *\n                 * ```js\n                 * '/usr/local/bin/node'\n                 * ```\n                 * @since v0.1.100\n                 */\n                execPath: string;\n                /**\n                 * The `process.abort()` method causes the Node.js process to exit immediately and\n                 * generate a core file.\n                 *\n                 * This feature is not available in `Worker` threads.\n                 * @since v0.7.0\n                 */\n                abort(): never;\n                /**\n                 * The `process.chdir()` method changes the current working directory of the\n                 * Node.js process or throws an exception if doing so fails (for instance, if\n                 * the specified `directory` does not exist).\n                 *\n                 * ```js\n                 * import { chdir, cwd } from 'node:process';\n                 *\n                 * console.log(`Starting directory: ${cwd()}`);\n                 * try {\n                 *   chdir('/tmp');\n                 *   console.log(`New directory: ${cwd()}`);\n                 * } catch (err) {\n                 *   console.error(`chdir: ${err}`);\n                 * }\n                 * ```\n                 *\n                 * This feature is not available in `Worker` threads.\n                 * @since v0.1.17\n                 */\n                chdir(directory: string): void;\n                /**\n                 * The `process.cwd()` method returns the current working directory of the Node.js\n                 * process.\n                 *\n                 * ```js\n                 * import { cwd } from 'node:process';\n                 *\n                 * console.log(`Current directory: ${cwd()}`);\n                 * ```\n                 * @since v0.1.8\n                 */\n                cwd(): string;\n                /**\n                 * The port used by the Node.js debugger when enabled.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * process.debugPort = 5858;\n                 * ```\n                 * @since v0.7.2\n                 */\n                debugPort: number;\n                /**\n                 * The `process.dlopen()` method allows dynamically loading shared objects. It is primarily used by `require()` to load C++ Addons, and\n                 * should not be used directly, except in special cases. In other words, `require()` should be preferred over `process.dlopen()`\n                 * unless there are specific reasons such as custom dlopen flags or loading from ES modules.\n                 *\n                 * The `flags` argument is an integer that allows to specify dlopen behavior. See the `[os.constants.dlopen](https://nodejs.org/docs/latest-v22.x/api/os.html#dlopen-constants)`\n                 * documentation for details.\n                 *\n                 * An important requirement when calling `process.dlopen()` is that the `module` instance must be passed. Functions exported by the C++ Addon\n                 * are then accessible via `module.exports`.\n                 *\n                 * The example below shows how to load a C++ Addon, named `local.node`, that exports a `foo` function. All the symbols are loaded before the call returns, by passing the `RTLD_NOW` constant.\n                 * In this example the constant is assumed to be available.\n                 *\n                 * ```js\n                 * import { dlopen } from 'node:process';\n                 * import { constants } from 'node:os';\n                 * import { fileURLToPath } from 'node:url';\n                 *\n                 * const module = { exports: {} };\n                 * dlopen(module, fileURLToPath(new URL('local.node', import.meta.url)),\n                 *        constants.dlopen.RTLD_NOW);\n                 * module.exports.foo();\n                 * ```\n                 */\n                dlopen(module: object, filename: string, flags?: number): void;\n                /**\n                 * The `process.emitWarning()` method can be used to emit custom or application\n                 * specific process warnings. These can be listened for by adding a handler to the `'warning'` event.\n                 *\n                 * ```js\n                 * import { emitWarning } from 'node:process';\n                 *\n                 * // Emit a warning using a string.\n                 * emitWarning('Something happened!');\n                 * // Emits: (node: 56338) Warning: Something happened!\n                 * ```\n                 *\n                 * ```js\n                 * import { emitWarning } from 'node:process';\n                 *\n                 * // Emit a warning using a string and a type.\n                 * emitWarning('Something Happened!', 'CustomWarning');\n                 * // Emits: (node:56338) CustomWarning: Something Happened!\n                 * ```\n                 *\n                 * ```js\n                 * import { emitWarning } from 'node:process';\n                 *\n                 * emitWarning('Something happened!', 'CustomWarning', 'WARN001');\n                 * // Emits: (node:56338) [WARN001] CustomWarning: Something happened!\n                 * ```js\n                 *\n                 * In each of the previous examples, an `Error` object is generated internally by `process.emitWarning()` and passed through to the `'warning'` handler.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * process.on('warning', (warning) => {\n                 *   console.warn(warning.name);    // 'Warning'\n                 *   console.warn(warning.message); // 'Something happened!'\n                 *   console.warn(warning.code);    // 'MY_WARNING'\n                 *   console.warn(warning.stack);   // Stack trace\n                 *   console.warn(warning.detail);  // 'This is some additional information'\n                 * });\n                 * ```\n                 *\n                 * If `warning` is passed as an `Error` object, it will be passed through to the `'warning'` event handler\n                 * unmodified (and the optional `type`, `code` and `ctor` arguments will be ignored):\n                 *\n                 * ```js\n                 * import { emitWarning } from 'node:process';\n                 *\n                 * // Emit a warning using an Error object.\n                 * const myWarning = new Error('Something happened!');\n                 * // Use the Error name property to specify the type name\n                 * myWarning.name = 'CustomWarning';\n                 * myWarning.code = 'WARN001';\n                 *\n                 * emitWarning(myWarning);\n                 * // Emits: (node:56338) [WARN001] CustomWarning: Something happened!\n                 * ```\n                 *\n                 * A `TypeError` is thrown if `warning` is anything other than a string or `Error` object.\n                 *\n                 * While process warnings use `Error` objects, the process warning mechanism is not a replacement for normal error handling mechanisms.\n                 *\n                 * The following additional handling is implemented if the warning `type` is `'DeprecationWarning'`:\n                 * * If the `--throw-deprecation` command-line flag is used, the deprecation warning is thrown as an exception rather than being emitted as an event.\n                 * * If the `--no-deprecation` command-line flag is used, the deprecation warning is suppressed.\n                 * * If the `--trace-deprecation` command-line flag is used, the deprecation warning is printed to `stderr` along with the full stack trace.\n                 * @since v8.0.0\n                 * @param warning The warning to emit.\n                 */\n                emitWarning(warning: string | Error, ctor?: Function): void;\n                emitWarning(warning: string | Error, type?: string, ctor?: Function): void;\n                emitWarning(warning: string | Error, type?: string, code?: string, ctor?: Function): void;\n                emitWarning(warning: string | Error, options?: EmitWarningOptions): void;\n                /**\n                 * The `process.env` property returns an object containing the user environment.\n                 * See [`environ(7)`](http://man7.org/linux/man-pages/man7/environ.7.html).\n                 *\n                 * An example of this object looks like:\n                 *\n                 * ```js\n                 * {\n                 *   TERM: 'xterm-256color',\n                 *   SHELL: '/usr/local/bin/bash',\n                 *   USER: 'maciej',\n                 *   PATH: '~/.bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',\n                 *   PWD: '/Users/maciej',\n                 *   EDITOR: 'vim',\n                 *   SHLVL: '1',\n                 *   HOME: '/Users/maciej',\n                 *   LOGNAME: 'maciej',\n                 *   _: '/usr/local/bin/node'\n                 * }\n                 * ```\n                 *\n                 * It is possible to modify this object, but such modifications will not be\n                 * reflected outside the Node.js process, or (unless explicitly requested)\n                 * to other `Worker` threads.\n                 * In other words, the following example would not work:\n                 *\n                 * ```bash\n                 * node -e 'process.env.foo = \"bar\"' &#x26;&#x26; echo $foo\n                 * ```\n                 *\n                 * While the following will:\n                 *\n                 * ```js\n                 * import { env } from 'node:process';\n                 *\n                 * env.foo = 'bar';\n                 * console.log(env.foo);\n                 * ```\n                 *\n                 * Assigning a property on `process.env` will implicitly convert the value\n                 * to a string. **This behavior is deprecated.** Future versions of Node.js may\n                 * throw an error when the value is not a string, number, or boolean.\n                 *\n                 * ```js\n                 * import { env } from 'node:process';\n                 *\n                 * env.test = null;\n                 * console.log(env.test);\n                 * // => 'null'\n                 * env.test = undefined;\n                 * console.log(env.test);\n                 * // => 'undefined'\n                 * ```\n                 *\n                 * Use `delete` to delete a property from `process.env`.\n                 *\n                 * ```js\n                 * import { env } from 'node:process';\n                 *\n                 * env.TEST = 1;\n                 * delete env.TEST;\n                 * console.log(env.TEST);\n                 * // => undefined\n                 * ```\n                 *\n                 * On Windows operating systems, environment variables are case-insensitive.\n                 *\n                 * ```js\n                 * import { env } from 'node:process';\n                 *\n                 * env.TEST = 1;\n                 * console.log(env.test);\n                 * // => 1\n                 * ```\n                 *\n                 * Unless explicitly specified when creating a `Worker` instance,\n                 * each `Worker` thread has its own copy of `process.env`, based on its\n                 * parent thread's `process.env`, or whatever was specified as the `env` option\n                 * to the `Worker` constructor. Changes to `process.env` will not be visible\n                 * across `Worker` threads, and only the main thread can make changes that\n                 * are visible to the operating system or to native add-ons. On Windows, a copy of `process.env` on a `Worker` instance operates in a case-sensitive manner\n                 * unlike the main thread.\n                 * @since v0.1.27\n                 */\n                env: ProcessEnv;\n                /**\n                 * The `process.exit()` method instructs Node.js to terminate the process\n                 * synchronously with an exit status of `code`. If `code` is omitted, exit uses\n                 * either the 'success' code `0` or the value of `process.exitCode` if it has been\n                 * set. Node.js will not terminate until all the `'exit'` event listeners are\n                 * called.\n                 *\n                 * To exit with a 'failure' code:\n                 *\n                 * ```js\n                 * import { exit } from 'node:process';\n                 *\n                 * exit(1);\n                 * ```\n                 *\n                 * The shell that executed Node.js should see the exit code as `1`.\n                 *\n                 * Calling `process.exit()` will force the process to exit as quickly as possible\n                 * even if there are still asynchronous operations pending that have not yet\n                 * completed fully, including I/O operations to `process.stdout` and `process.stderr`.\n                 *\n                 * In most situations, it is not actually necessary to call `process.exit()` explicitly. The Node.js process will exit on its own _if there is no additional_\n                 * _work pending_ in the event loop. The `process.exitCode` property can be set to\n                 * tell the process which exit code to use when the process exits gracefully.\n                 *\n                 * For instance, the following example illustrates a _misuse_ of the `process.exit()` method that could lead to data printed to stdout being\n                 * truncated and lost:\n                 *\n                 * ```js\n                 * import { exit } from 'node:process';\n                 *\n                 * // This is an example of what *not* to do:\n                 * if (someConditionNotMet()) {\n                 *   printUsageToStdout();\n                 *   exit(1);\n                 * }\n                 * ```\n                 *\n                 * The reason this is problematic is because writes to `process.stdout` in Node.js\n                 * are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js\n                 * event loop. Calling `process.exit()`, however, forces the process to exit _before_ those additional writes to `stdout` can be performed.\n                 *\n                 * Rather than calling `process.exit()` directly, the code _should_ set the `process.exitCode` and allow the process to exit naturally by avoiding\n                 * scheduling any additional work for the event loop:\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * // How to properly set the exit code while letting\n                 * // the process exit gracefully.\n                 * if (someConditionNotMet()) {\n                 *   printUsageToStdout();\n                 *   process.exitCode = 1;\n                 * }\n                 * ```\n                 *\n                 * If it is necessary to terminate the Node.js process due to an error condition,\n                 * throwing an _uncaught_ error and allowing the process to terminate accordingly\n                 * is safer than calling `process.exit()`.\n                 *\n                 * In `Worker` threads, this function stops the current thread rather\n                 * than the current process.\n                 * @since v0.1.13\n                 * @param [code=0] The exit code. For string type, only integer strings (e.g.,'1') are allowed.\n                 */\n                exit(code?: number | string | null | undefined): never;\n                /**\n                 * A number which will be the process exit code, when the process either\n                 * exits gracefully, or is exited via {@link exit} without specifying\n                 * a code.\n                 *\n                 * Specifying a code to {@link exit} will override any\n                 * previous setting of `process.exitCode`.\n                 * @default undefined\n                 * @since v0.11.8\n                 */\n                exitCode?: number | string | number | undefined;\n                finalization: {\n                    /**\n                     * This function registers a callback to be called when the process emits the `exit` event if the `ref` object was not garbage collected.\n                     * If the object `ref` was garbage collected before the `exit` event is emitted, the callback will be removed from the finalization registry, and it will not be called on process exit.\n                     *\n                     * Inside the callback you can release the resources allocated by the `ref` object.\n                     * Be aware that all limitations applied to the `beforeExit` event are also applied to the callback function,\n                     * this means that there is a possibility that the callback will not be called under special circumstances.\n                     *\n                     * The idea of ​​this function is to help you free up resources when the starts process exiting, but also let the object be garbage collected if it is no longer being used.\n                     * @param ref The reference to the resource that is being tracked.\n                     * @param callback The callback function to be called when the resource is finalized.\n                     * @since v22.5.0\n                     * @experimental\n                     */\n                    register<T extends object>(ref: T, callback: (ref: T, event: \"exit\") => void): void;\n                    /**\n                     * This function behaves exactly like the `register`, except that the callback will be called when the process emits the `beforeExit` event if `ref` object was not garbage collected.\n                     *\n                     * Be aware that all limitations applied to the `beforeExit` event are also applied to the callback function, this means that there is a possibility that the callback will not be called under special circumstances.\n                     * @param ref The reference to the resource that is being tracked.\n                     * @param callback The callback function to be called when the resource is finalized.\n                     * @since v22.5.0\n                     * @experimental\n                     */\n                    registerBeforeExit<T extends object>(ref: T, callback: (ref: T, event: \"beforeExit\") => void): void;\n                    /**\n                     * This function remove the register of the object from the finalization registry, so the callback will not be called anymore.\n                     * @param ref The reference to the resource that was registered previously.\n                     * @since v22.5.0\n                     * @experimental\n                     */\n                    unregister(ref: object): void;\n                };\n                /**\n                 * The `process.getActiveResourcesInfo()` method returns an array of strings containing\n                 * the types of the active resources that are currently keeping the event loop alive.\n                 *\n                 * ```js\n                 * import { getActiveResourcesInfo } from 'node:process';\n                 * import { setTimeout } from 'node:timers';\n\n                 * console.log('Before:', getActiveResourcesInfo());\n                 * setTimeout(() => {}, 1000);\n                 * console.log('After:', getActiveResourcesInfo());\n                 * // Prints:\n                 * //   Before: [ 'TTYWrap', 'TTYWrap', 'TTYWrap' ]\n                 * //   After: [ 'TTYWrap', 'TTYWrap', 'TTYWrap', 'Timeout' ]\n                 * ```\n                 * @since v17.3.0, v16.14.0\n                 */\n                getActiveResourcesInfo(): string[];\n                /**\n                 * Provides a way to load built-in modules in a globally available function.\n                 * @param id ID of the built-in module being requested.\n                 */\n                getBuiltinModule<ID extends keyof BuiltInModule>(id: ID): BuiltInModule[ID];\n                getBuiltinModule(id: string): object | undefined;\n                /**\n                 * The `process.getgid()` method returns the numerical group identity of the\n                 * process. (See [`getgid(2)`](http://man7.org/linux/man-pages/man2/getgid.2.html).)\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getgid) {\n                 *   console.log(`Current gid: ${process.getgid()}`);\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * @since v0.1.31\n                 */\n                getgid?: () => number;\n                /**\n                 * The `process.setgid()` method sets the group identity of the process. (See [`setgid(2)`](http://man7.org/linux/man-pages/man2/setgid.2.html).) The `id` can be passed as either a\n                 * numeric ID or a group name\n                 * string. If a group name is specified, this method blocks while resolving the\n                 * associated numeric ID.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getgid &#x26;&#x26; process.setgid) {\n                 *   console.log(`Current gid: ${process.getgid()}`);\n                 *   try {\n                 *     process.setgid(501);\n                 *     console.log(`New gid: ${process.getgid()}`);\n                 *   } catch (err) {\n                 *     console.log(`Failed to set gid: ${err}`);\n                 *   }\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * This feature is not available in `Worker` threads.\n                 * @since v0.1.31\n                 * @param id The group name or ID\n                 */\n                setgid?: (id: number | string) => void;\n                /**\n                 * The `process.getuid()` method returns the numeric user identity of the process.\n                 * (See [`getuid(2)`](http://man7.org/linux/man-pages/man2/getuid.2.html).)\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getuid) {\n                 *   console.log(`Current uid: ${process.getuid()}`);\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * @since v0.1.28\n                 */\n                getuid?: () => number;\n                /**\n                 * The `process.setuid(id)` method sets the user identity of the process. (See [`setuid(2)`](http://man7.org/linux/man-pages/man2/setuid.2.html).) The `id` can be passed as either a\n                 * numeric ID or a username string.\n                 * If a username is specified, the method blocks while resolving the associated\n                 * numeric ID.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getuid &#x26;&#x26; process.setuid) {\n                 *   console.log(`Current uid: ${process.getuid()}`);\n                 *   try {\n                 *     process.setuid(501);\n                 *     console.log(`New uid: ${process.getuid()}`);\n                 *   } catch (err) {\n                 *     console.log(`Failed to set uid: ${err}`);\n                 *   }\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * This feature is not available in `Worker` threads.\n                 * @since v0.1.28\n                 */\n                setuid?: (id: number | string) => void;\n                /**\n                 * The `process.geteuid()` method returns the numerical effective user identity of\n                 * the process. (See [`geteuid(2)`](http://man7.org/linux/man-pages/man2/geteuid.2.html).)\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.geteuid) {\n                 *   console.log(`Current uid: ${process.geteuid()}`);\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * @since v2.0.0\n                 */\n                geteuid?: () => number;\n                /**\n                 * The `process.seteuid()` method sets the effective user identity of the process.\n                 * (See [`seteuid(2)`](http://man7.org/linux/man-pages/man2/seteuid.2.html).) The `id` can be passed as either a numeric ID or a username\n                 * string. If a username is specified, the method blocks while resolving the\n                 * associated numeric ID.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.geteuid &#x26;&#x26; process.seteuid) {\n                 *   console.log(`Current uid: ${process.geteuid()}`);\n                 *   try {\n                 *     process.seteuid(501);\n                 *     console.log(`New uid: ${process.geteuid()}`);\n                 *   } catch (err) {\n                 *     console.log(`Failed to set uid: ${err}`);\n                 *   }\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * This feature is not available in `Worker` threads.\n                 * @since v2.0.0\n                 * @param id A user name or ID\n                 */\n                seteuid?: (id: number | string) => void;\n                /**\n                 * The `process.getegid()` method returns the numerical effective group identity\n                 * of the Node.js process. (See [`getegid(2)`](http://man7.org/linux/man-pages/man2/getegid.2.html).)\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getegid) {\n                 *   console.log(`Current gid: ${process.getegid()}`);\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * @since v2.0.0\n                 */\n                getegid?: () => number;\n                /**\n                 * The `process.setegid()` method sets the effective group identity of the process.\n                 * (See [`setegid(2)`](http://man7.org/linux/man-pages/man2/setegid.2.html).) The `id` can be passed as either a numeric ID or a group\n                 * name string. If a group name is specified, this method blocks while resolving\n                 * the associated a numeric ID.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getegid &#x26;&#x26; process.setegid) {\n                 *   console.log(`Current gid: ${process.getegid()}`);\n                 *   try {\n                 *     process.setegid(501);\n                 *     console.log(`New gid: ${process.getegid()}`);\n                 *   } catch (err) {\n                 *     console.log(`Failed to set gid: ${err}`);\n                 *   }\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * This feature is not available in `Worker` threads.\n                 * @since v2.0.0\n                 * @param id A group name or ID\n                 */\n                setegid?: (id: number | string) => void;\n                /**\n                 * The `process.getgroups()` method returns an array with the supplementary group\n                 * IDs. POSIX leaves it unspecified if the effective group ID is included but\n                 * Node.js ensures it always is.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getgroups) {\n                 *   console.log(process.getgroups()); // [ 16, 21, 297 ]\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * @since v0.9.4\n                 */\n                getgroups?: () => number[];\n                /**\n                 * The `process.setgroups()` method sets the supplementary group IDs for the\n                 * Node.js process. This is a privileged operation that requires the Node.js\n                 * process to have `root` or the `CAP_SETGID` capability.\n                 *\n                 * The `groups` array can contain numeric group IDs, group names, or both.\n                 *\n                 * ```js\n                 * import process from 'node:process';\n                 *\n                 * if (process.getgroups &#x26;&#x26; process.setgroups) {\n                 *   try {\n                 *     process.setgroups([501]);\n                 *     console.log(process.getgroups()); // new groups\n                 *   } catch (err) {\n                 *     console.log(`Failed to set groups: ${err}`);\n                 *   }\n                 * }\n                 * ```\n                 *\n                 * This function is only available on POSIX platforms (i.e. not Windows or\n                 * Android).\n                 * This feature is not available in `Worker` threads.\n                 * @since v0.9.4\n                 */\n                setgroups?: (groups: ReadonlyArray<string | number>) => void;\n                /**\n                 * The `process.setUncaughtExceptionCaptureCallback()` function sets a function\n                 * that will be invoked when an uncaught exception occurs, which will receive the\n                 * exception value itself as its first argument.\n                 *\n                 * If such a function is set, the `'uncaughtException'` event will\n                 * not be emitted. If `--abort-on-uncaught-exception` was passed from the\n                 * command line or set through `v8.setFlagsFromString()`, the process will\n                 * not abort. Actions configured to take place on exceptions such as report\n                 * generations will be affected too\n                 *\n                 * To unset the capture function, `process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this\n                 * method with a non-`null` argument while another capture function is set will\n                 * throw an error.\n                 *\n                 * Using this function is mutually exclusive with using the deprecated `domain` built-in module.\n                 * @since v9.3.0\n                 */\n                setUncaughtExceptionCaptureCallback(cb: ((err: Error) => void) | null): void;\n                /**\n                 * Indicates whether a callback has been set using {@link setUncaughtExceptionCaptureCallback}.\n                 * @since v9.3.0\n                 */\n                hasUncaughtExceptionCaptureCallback(): boolean;\n                /**\n                 * The `process.sourceMapsEnabled` property returns whether the [Source Map v3](https://sourcemaps.info/spec.html) support for stack traces is enabled.\n                 * @since v20.7.0\n                 * @experimental\n                 */\n                readonly sourceMapsEnabled: boolean;\n                /**\n                 * This function enables or disables the [Source Map v3](https://sourcemaps.info/spec.html) support for\n                 * stack traces.\n                 *\n                 * It provides same features as launching Node.js process with commandline options `--enable-source-maps`.\n                 *\n                 * Only source maps in JavaScript files that are loaded after source maps has been\n                 * enabled will be parsed and loaded.\n                 * @since v16.6.0, v14.18.0\n                 * @experimental\n                 */\n                setSourceMapsEnabled(value: boolean): void;\n                /**\n                 * The `process.version` property contains the Node.js version string.\n                 *\n                 * ```js\n                 * import { version } from 'node:process';\n                 *\n                 * console.log(`Version: ${version}`);\n                 * // Version: v14.8.0\n                 * ```\n                 *\n                 * To get the version string without the prepended _v_, use`process.versions.node`.\n                 * @since v0.1.3\n                 */\n                readonly version: string;\n                /**\n                 * The `process.versions` property returns an object listing the version strings of\n                 * Node.js and its dependencies. `process.versions.modules` indicates the current\n                 * ABI version, which is increased whenever a C++ API changes. Node.js will refuse\n                 * to load modules that were compiled against a different module ABI version.\n                 *\n                 * ```js\n                 * import { versions } from 'node:process';\n                 *\n                 * console.log(versions);\n                 * ```\n                 *\n                 * Will generate an object similar to:\n                 *\n                 * ```console\n                 * { node: '20.2.0',\n                 *   acorn: '8.8.2',\n                 *   ada: '2.4.0',\n                 *   ares: '1.19.0',\n                 *   base64: '0.5.0',\n                 *   brotli: '1.0.9',\n                 *   cjs_module_lexer: '1.2.2',\n                 *   cldr: '43.0',\n                 *   icu: '73.1',\n                 *   llhttp: '8.1.0',\n                 *   modules: '115',\n                 *   napi: '8',\n                 *   nghttp2: '1.52.0',\n                 *   nghttp3: '0.7.0',\n                 *   ngtcp2: '0.8.1',\n                 *   openssl: '3.0.8+quic',\n                 *   simdutf: '3.2.9',\n                 *   tz: '2023c',\n                 *   undici: '5.22.0',\n                 *   unicode: '15.0',\n                 *   uv: '1.44.2',\n                 *   uvwasi: '0.0.16',\n                 *   v8: '11.3.244.8-node.9',\n                 *   zlib: '1.2.13' }\n                 * ```\n                 * @since v0.2.0\n                 */\n                readonly versions: ProcessVersions;\n                /**\n                 * The `process.config` property returns a frozen `Object` containing the\n                 * JavaScript representation of the configure options used to compile the current\n                 * Node.js executable. This is the same as the `config.gypi` file that was produced\n                 * when running the `./configure` script.\n                 *\n                 * An example of the possible output looks like:\n                 *\n                 * ```js\n                 * {\n                 *   target_defaults:\n                 *    { cflags: [],\n                 *      default_configuration: 'Release',\n                 *      defines: [],\n                 *      include_dirs: [],\n                 *      libraries: [] },\n                 *   variables:\n                 *    {\n                 *      host_arch: 'x64',\n                 *      napi_build_version: 5,\n                 *      node_install_npm: 'true',\n                 *      node_prefix: '',\n                 *      node_shared_cares: 'false',\n                 *      node_shared_http_parser: 'false',\n                 *      node_shared_libuv: 'false',\n                 *      node_shared_zlib: 'false',\n                 *      node_use_openssl: 'true',\n                 *      node_shared_openssl: 'false',\n                 *      strict_aliasing: 'true',\n                 *      target_arch: 'x64',\n                 *      v8_use_snapshot: 1\n                 *    }\n                 * }\n                 * ```\n                 * @since v0.7.7\n                 */\n                readonly config: ProcessConfig;\n                /**\n                 * The `process.kill()` method sends the `signal` to the process identified by`pid`.\n                 *\n                 * Signal names are strings such as `'SIGINT'` or `'SIGHUP'`. See `Signal Events` and [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for more information.\n                 *\n                 * This method will throw an error if the target `pid` does not exist. As a special\n                 * case, a signal of `0` can be used to test for the existence of a process.\n                 * Windows platforms will throw an error if the `pid` is used to kill a process\n                 * group.\n                 *\n                 * Even though the name of this function is `process.kill()`, it is really just a\n                 * signal sender, like the `kill` system call. The signal sent may do something\n                 * other than kill the target process.\n                 *\n                 * ```js\n                 * import process, { kill } from 'node:process';\n                 *\n                 * process.on('SIGHUP', () => {\n                 *   console.log('Got SIGHUP signal.');\n                 * });\n                 *\n                 * setTimeout(() => {\n                 *   console.log('Exiting.');\n                 *   process.exit(0);\n                 * }, 100);\n                 *\n                 * kill(process.pid, 'SIGHUP');\n                 * ```\n                 *\n                 * When `SIGUSR1` is received by a Node.js process, Node.js will start the\n                 * debugger. See `Signal Events`.\n                 * @since v0.0.6\n                 * @param pid A process ID\n                 * @param [signal='SIGTERM'] The signal to send, either as a string or number.\n                 */\n                kill(pid: number, signal?: string | number): true;\n                /**\n                 * Loads the environment configuration from a `.env` file into `process.env`. If\n                 * the file is not found, error will be thrown.\n                 *\n                 * To load a specific .env file by specifying its path, use the following code:\n                 *\n                 * ```js\n                 * import { loadEnvFile } from 'node:process';\n                 *\n                 * loadEnvFile('./development.env')\n                 * ```\n                 * @since v20.12.0\n                 * @param path The path to the .env file\n                 */\n                loadEnvFile(path?: string | URL | Buffer): void;\n                /**\n                 * The `process.pid` property returns the PID of the process.\n                 *\n                 * ```js\n                 * import { pid } from 'node:process';\n                 *\n                 * console.log(`This process is pid ${pid}`);\n                 * ```\n                 * @since v0.1.15\n                 */\n                readonly pid: number;\n                /**\n                 * The `process.ppid` property returns the PID of the parent of the\n                 * current process.\n                 *\n                 * ```js\n                 * import { ppid } from 'node:process';\n                 *\n                 * console.log(`The parent process is pid ${ppid}`);\n                 * ```\n                 * @since v9.2.0, v8.10.0, v6.13.0\n                 */\n                readonly ppid: number;\n                /**\n                 * The `process.title` property returns the current process title (i.e. returns\n                 * the current value of `ps`). Assigning a new value to `process.title` modifies\n                 * the current value of `ps`.\n                 *\n                 * When a new value is assigned, different platforms will impose different maximum\n                 * length restrictions on the title. Usually such restrictions are quite limited.\n                 * For instance, on Linux and macOS, `process.title` is limited to the size of the\n                 * binary name plus the length of the command-line arguments because setting the `process.title` overwrites the `argv` memory of the process. Node.js v0.8\n                 * allowed for longer process title strings by also overwriting the `environ` memory but that was potentially insecure and confusing in some (rather obscure)\n                 * cases.\n                 *\n                 * Assigning a value to `process.title` might not result in an accurate label\n                 * within process manager applications such as macOS Activity Monitor or Windows\n                 * Services Manager.\n                 * @since v0.1.104\n                 */\n                title: string;\n                /**\n                 * The operating system CPU architecture for which the Node.js binary was compiled.\n                 * Possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'loong64'`, `'mips'`, `'mipsel'`, `'ppc'`, `'ppc64'`, `'riscv64'`, `'s390'`, `'s390x'`, and `'x64'`.\n                 *\n                 * ```js\n                 * import { arch } from 'node:process';\n                 *\n                 * console.log(`This processor architecture is ${arch}`);\n                 * ```\n                 * @since v0.5.0\n                 */\n                readonly arch: Architecture;\n                /**\n                 * The `process.platform` property returns a string identifying the operating\n                 * system platform for which the Node.js binary was compiled.\n                 *\n                 * Currently possible values are:\n                 *\n                 * * `'aix'`\n                 * * `'darwin'`\n                 * * `'freebsd'`\n                 * * `'linux'`\n                 * * `'openbsd'`\n                 * * `'sunos'`\n                 * * `'win32'`\n                 *\n                 * ```js\n                 * import { platform } from 'node:process';\n                 *\n                 * console.log(`This platform is ${platform}`);\n                 * ```\n                 *\n                 * The value `'android'` may also be returned if the Node.js is built on the\n                 * Android operating system. However, Android support in Node.js [is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os).\n                 * @since v0.1.16\n                 */\n                readonly platform: Platform;\n                /**\n                 * The `process.mainModule` property provides an alternative way of retrieving `require.main`. The difference is that if the main module changes at\n                 * runtime, `require.main` may still refer to the original main module in\n                 * modules that were required before the change occurred. Generally, it's\n                 * safe to assume that the two refer to the same module.\n                 *\n                 * As with `require.main`, `process.mainModule` will be `undefined` if there\n                 * is no entry script.\n                 * @since v0.1.17\n                 * @deprecated Since v14.0.0 - Use `main` instead.\n                 */\n                mainModule?: Module | undefined;\n                memoryUsage: MemoryUsageFn;\n                /**\n                 * Gets the amount of memory available to the process (in bytes) based on\n                 * limits imposed by the OS. If there is no such constraint, or the constraint\n                 * is unknown, `0` is returned.\n                 *\n                 * See [`uv_get_constrained_memory`](https://docs.libuv.org/en/v1.x/misc.html#c.uv_get_constrained_memory) for more\n                 * information.\n                 * @since v19.6.0, v18.15.0\n                 * @experimental\n                 */\n                constrainedMemory(): number;\n                /**\n                 * Gets the amount of free memory that is still available to the process (in bytes).\n                 * See [`uv_get_available_memory`](https://nodejs.org/docs/latest-v22.x/api/process.html#processavailablememory) for more information.\n                 * @experimental\n                 * @since v20.13.0\n                 */\n                availableMemory(): number;\n                /**\n                 * The `process.cpuUsage()` method returns the user and system CPU time usage of\n                 * the current process, in an object with properties `user` and `system`, whose\n                 * values are microsecond values (millionth of a second). These values measure time\n                 * spent in user and system code respectively, and may end up being greater than\n                 * actual elapsed time if multiple CPU cores are performing work for this process.\n                 *\n                 * The result of a previous call to `process.cpuUsage()` can be passed as the\n                 * argument to the function, to get a diff reading.\n                 *\n                 * ```js\n                 * import { cpuUsage } from 'node:process';\n                 *\n                 * const startUsage = cpuUsage();\n                 * // { user: 38579, system: 6986 }\n                 *\n                 * // spin the CPU for 500 milliseconds\n                 * const now = Date.now();\n                 * while (Date.now() - now < 500);\n                 *\n                 * console.log(cpuUsage(startUsage));\n                 * // { user: 514883, system: 11226 }\n                 * ```\n                 * @since v6.1.0\n                 * @param previousValue A previous return value from calling `process.cpuUsage()`\n                 */\n                cpuUsage(previousValue?: CpuUsage): CpuUsage;\n                /**\n                 * `process.nextTick()` adds `callback` to the \"next tick queue\". This queue is\n                 * fully drained after the current operation on the JavaScript stack runs to\n                 * completion and before the event loop is allowed to continue. It's possible to\n                 * create an infinite loop if one were to recursively call `process.nextTick()`.\n                 * See the [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#process-nexttick) guide for more background.\n                 *\n                 * ```js\n                 * import { nextTick } from 'node:process';\n                 *\n                 * console.log('start');\n                 * nextTick(() => {\n                 *   console.log('nextTick callback');\n                 * });\n                 * console.log('scheduled');\n                 * // Output:\n                 * // start\n                 * // scheduled\n                 * // nextTick callback\n                 * ```\n                 *\n                 * This is important when developing APIs in order to give users the opportunity\n                 * to assign event handlers _after_ an object has been constructed but before any\n                 * I/O has occurred:\n                 *\n                 * ```js\n                 * import { nextTick } from 'node:process';\n                 *\n                 * function MyThing(options) {\n                 *   this.setupOptions(options);\n                 *\n                 *   nextTick(() => {\n                 *     this.startDoingStuff();\n                 *   });\n                 * }\n                 *\n                 * const thing = new MyThing();\n                 * thing.getReadyForStuff();\n                 *\n                 * // thing.startDoingStuff() gets called now, not before.\n                 * ```\n                 *\n                 * It is very important for APIs to be either 100% synchronous or 100%\n                 * asynchronous. Consider this example:\n                 *\n                 * ```js\n                 * // WARNING!  DO NOT USE!  BAD UNSAFE HAZARD!\n                 * function maybeSync(arg, cb) {\n                 *   if (arg) {\n                 *     cb();\n                 *     return;\n                 *   }\n                 *\n                 *   fs.stat('file', cb);\n                 * }\n                 * ```\n                 *\n                 * This API is hazardous because in the following case:\n                 *\n                 * ```js\n                 * const maybeTrue = Math.random() > 0.5;\n                 *\n                 * maybeSync(maybeTrue, () => {\n                 *   foo();\n                 * });\n                 *\n                 * bar();\n                 * ```\n                 *\n                 * It is not clear whether `foo()` or `bar()` will be called first.\n                 *\n                 * The following approach is much better:\n                 *\n                 * ```js\n                 * import { nextTick } from 'node:process';\n                 *\n                 * function definitelyAsync(arg, cb) {\n                 *   if (arg) {\n                 *     nextTick(cb);\n                 *     return;\n                 *   }\n                 *\n                 *   fs.stat('file', cb);\n                 * }\n                 * ```\n                 * @since v0.1.26\n                 * @param args Additional arguments to pass when invoking the `callback`\n                 */\n                nextTick(callback: Function, ...args: any[]): void;\n                /**\n                 * This API is available through the [--permission](https://nodejs.org/api/cli.html#--permission) flag.\n                 *\n                 * `process.permission` is an object whose methods are used to manage permissions for the current process.\n                 * Additional documentation is available in the [Permission Model](https://nodejs.org/api/permissions.html#permission-model).\n                 * @since v20.0.0\n                 */\n                permission: ProcessPermission;\n                /**\n                 * The `process.release` property returns an `Object` containing metadata related\n                 * to the current release, including URLs for the source tarball and headers-only\n                 * tarball.\n                 *\n                 * `process.release` contains the following properties:\n                 *\n                 * ```js\n                 * {\n                 *   name: 'node',\n                 *   lts: 'Hydrogen',\n                 *   sourceUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0.tar.gz',\n                 *   headersUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0-headers.tar.gz',\n                 *   libUrl: 'https://nodejs.org/download/release/v18.12.0/win-x64/node.lib'\n                 * }\n                 * ```\n                 *\n                 * In custom builds from non-release versions of the source tree, only the `name` property may be present. The additional properties should not be\n                 * relied upon to exist.\n                 * @since v3.0.0\n                 */\n                readonly release: ProcessRelease;\n                readonly features: ProcessFeatures;\n                /**\n                 * `process.umask()` returns the Node.js process's file mode creation mask. Child\n                 * processes inherit the mask from the parent process.\n                 * @since v0.1.19\n                 * @deprecated Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential\n                 * security vulnerability. There is no safe, cross-platform alternative API.\n                 */\n                umask(): number;\n                /**\n                 * Can only be set if not in worker thread.\n                 */\n                umask(mask: string | number): number;\n                /**\n                 * The `process.uptime()` method returns the number of seconds the current Node.js\n                 * process has been running.\n                 *\n                 * The return value includes fractions of a second. Use `Math.floor()` to get whole\n                 * seconds.\n                 * @since v0.5.0\n                 */\n                uptime(): number;\n                hrtime: HRTime;\n                /**\n                 * If the Node.js process was spawned with an IPC channel, the process.channel property is a reference to the IPC channel.\n                 * If no IPC channel exists, this property is undefined.\n                 * @since v7.1.0\n                 */\n                channel?: {\n                    /**\n                     * This method makes the IPC channel keep the event loop of the process running if .unref() has been called before.\n                     * @since v7.1.0\n                     */\n                    ref(): void;\n                    /**\n                     * This method makes the IPC channel not keep the event loop of the process running, and lets it finish even while the channel is open.\n                     * @since v7.1.0\n                     */\n                    unref(): void;\n                };\n                /**\n                 * If Node.js is spawned with an IPC channel, the `process.send()` method can be\n                 * used to send messages to the parent process. Messages will be received as a `'message'` event on the parent's `ChildProcess` object.\n                 *\n                 * If Node.js was not spawned with an IPC channel, `process.send` will be `undefined`.\n                 *\n                 * The message goes through serialization and parsing. The resulting message might\n                 * not be the same as what is originally sent.\n                 * @since v0.5.9\n                 * @param options used to parameterize the sending of certain types of handles. `options` supports the following properties:\n                 */\n                send?(\n                    message: any,\n                    sendHandle?: any,\n                    options?: {\n                        keepOpen?: boolean | undefined;\n                    },\n                    callback?: (error: Error | null) => void,\n                ): boolean;\n                /**\n                 * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.disconnect()` method will close the\n                 * IPC channel to the parent process, allowing the child process to exit gracefully\n                 * once there are no other connections keeping it alive.\n                 *\n                 * The effect of calling `process.disconnect()` is the same as calling `ChildProcess.disconnect()` from the parent process.\n                 *\n                 * If the Node.js process was not spawned with an IPC channel, `process.disconnect()` will be `undefined`.\n                 * @since v0.7.2\n                 */\n                disconnect(): void;\n                /**\n                 * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.connected` property will return `true` so long as the IPC\n                 * channel is connected and will return `false` after `process.disconnect()` is called.\n                 *\n                 * Once `process.connected` is `false`, it is no longer possible to send messages\n                 * over the IPC channel using `process.send()`.\n                 * @since v0.7.2\n                 */\n                connected: boolean;\n                /**\n                 * The `process.allowedNodeEnvironmentFlags` property is a special,\n                 * read-only `Set` of flags allowable within the `NODE_OPTIONS` environment variable.\n                 *\n                 * `process.allowedNodeEnvironmentFlags` extends `Set`, but overrides `Set.prototype.has` to recognize several different possible flag\n                 * representations. `process.allowedNodeEnvironmentFlags.has()` will\n                 * return `true` in the following cases:\n                 *\n                 * * Flags may omit leading single (`-`) or double (`--`) dashes; e.g., `inspect-brk` for `--inspect-brk`, or `r` for `-r`.\n                 * * Flags passed through to V8 (as listed in `--v8-options`) may replace\n                 * one or more _non-leading_ dashes for an underscore, or vice-versa;\n                 * e.g., `--perf_basic_prof`, `--perf-basic-prof`, `--perf_basic-prof`,\n                 * etc.\n                 * * Flags may contain one or more equals (`=`) characters; all\n                 * characters after and including the first equals will be ignored;\n                 * e.g., `--stack-trace-limit=100`.\n                 * * Flags _must_ be allowable within `NODE_OPTIONS`.\n                 *\n                 * When iterating over `process.allowedNodeEnvironmentFlags`, flags will\n                 * appear only _once_; each will begin with one or more dashes. Flags\n                 * passed through to V8 will contain underscores instead of non-leading\n                 * dashes:\n                 *\n                 * ```js\n                 * import { allowedNodeEnvironmentFlags } from 'node:process';\n                 *\n                 * allowedNodeEnvironmentFlags.forEach((flag) => {\n                 *   // -r\n                 *   // --inspect-brk\n                 *   // --abort_on_uncaught_exception\n                 *   // ...\n                 * });\n                 * ```\n                 *\n                 * The methods `add()`, `clear()`, and `delete()` of`process.allowedNodeEnvironmentFlags` do nothing, and will fail\n                 * silently.\n                 *\n                 * If Node.js was compiled _without_ `NODE_OPTIONS` support (shown in {@link config}), `process.allowedNodeEnvironmentFlags` will\n                 * contain what _would have_ been allowable.\n                 * @since v10.10.0\n                 */\n                allowedNodeEnvironmentFlags: ReadonlySet<string>;\n                /**\n                 * `process.report` is an object whose methods are used to generate diagnostic reports for the current process.\n                 * Additional documentation is available in the [report documentation](https://nodejs.org/docs/latest-v22.x/api/report.html).\n                 * @since v11.8.0\n                 */\n                report: ProcessReport;\n                /**\n                 * ```js\n                 * import { resourceUsage } from 'node:process';\n                 *\n                 * console.log(resourceUsage());\n                 * /*\n                 *   Will output:\n                 *   {\n                 *     userCPUTime: 82872,\n                 *     systemCPUTime: 4143,\n                 *     maxRSS: 33164,\n                 *     sharedMemorySize: 0,\n                 *     unsharedDataSize: 0,\n                 *     unsharedStackSize: 0,\n                 *     minorPageFault: 2469,\n                 *     majorPageFault: 0,\n                 *     swappedOut: 0,\n                 *     fsRead: 0,\n                 *     fsWrite: 8,\n                 *     ipcSent: 0,\n                 *     ipcReceived: 0,\n                 *     signalsCount: 0,\n                 *     voluntaryContextSwitches: 79,\n                 *     involuntaryContextSwitches: 1\n                 *   }\n                 *\n                 * ```\n                 * @since v12.6.0\n                 * @return the resource usage for the current process. All of these values come from the `uv_getrusage` call which returns a [`uv_rusage_t` struct][uv_rusage_t].\n                 */\n                resourceUsage(): ResourceUsage;\n                /**\n                 * The initial value of `process.throwDeprecation` indicates whether the `--throw-deprecation` flag is set on the current Node.js process. `process.throwDeprecation`\n                 * is mutable, so whether or not deprecation warnings result in errors may be altered at runtime. See the documentation for the 'warning' event and the emitWarning()\n                 * method for more information.\n                 *\n                 * ```bash\n                 * $ node --throw-deprecation -p \"process.throwDeprecation\"\n                 * true\n                 * $ node -p \"process.throwDeprecation\"\n                 * undefined\n                 * $ node\n                 * > process.emitWarning('test', 'DeprecationWarning');\n                 * undefined\n                 * > (node:26598) DeprecationWarning: test\n                 * > process.throwDeprecation = true;\n                 * true\n                 * > process.emitWarning('test', 'DeprecationWarning');\n                 * Thrown:\n                 * [DeprecationWarning: test] { name: 'DeprecationWarning' }\n                 * ```\n                 * @since v0.9.12\n                 */\n                throwDeprecation: boolean;\n                /**\n                 * The `process.traceDeprecation` property indicates whether the `--trace-deprecation` flag is set on the current Node.js process. See the\n                 * documentation for the `'warning' event` and the `emitWarning() method` for more information about this\n                 * flag's behavior.\n                 * @since v0.8.0\n                 */\n                traceDeprecation: boolean;\n                /**\n                 * An object is \"refable\" if it implements the Node.js \"Refable protocol\".\n                 * Specifically, this means that the object implements the `Symbol.for('nodejs.ref')`\n                 * and `Symbol.for('nodejs.unref')` methods. \"Ref'd\" objects will keep the Node.js\n                 * event loop alive, while \"unref'd\" objects will not. Historically, this was\n                 * implemented by using `ref()` and `unref()` methods directly on the objects.\n                 * This pattern, however, is being deprecated in favor of the \"Refable protocol\"\n                 * in order to better support Web Platform API types whose APIs cannot be modified\n                 * to add `ref()` and `unref()` methods but still need to support that behavior.\n                 * @since v22.14.0\n                 * @experimental\n                 * @param maybeRefable An object that may be \"refable\".\n                 */\n                ref(maybeRefable: any): void;\n                /**\n                 * An object is \"unrefable\" if it implements the Node.js \"Refable protocol\".\n                 * Specifically, this means that the object implements the `Symbol.for('nodejs.ref')`\n                 * and `Symbol.for('nodejs.unref')` methods. \"Ref'd\" objects will keep the Node.js\n                 * event loop alive, while \"unref'd\" objects will not. Historically, this was\n                 * implemented by using `ref()` and `unref()` methods directly on the objects.\n                 * This pattern, however, is being deprecated in favor of the \"Refable protocol\"\n                 * in order to better support Web Platform API types whose APIs cannot be modified\n                 * to add `ref()` and `unref()` methods but still need to support that behavior.\n                 * @since v22.14.0\n                 * @experimental\n                 * @param maybeRefable An object that may be \"unref'd\".\n                 */\n                unref(maybeRefable: any): void;\n                /**\n                 * Replaces the current process with a new process.\n                 *\n                 * This is achieved by using the `execve` POSIX function and therefore no memory or other\n                 * resources from the current process are preserved, except for the standard input,\n                 * standard output and standard error file descriptor.\n                 *\n                 * All other resources are discarded by the system when the processes are swapped, without triggering\n                 * any exit or close events and without running any cleanup handler.\n                 *\n                 * This function will never return, unless an error occurred.\n                 *\n                 * This function is not available on Windows or IBM i.\n                 * @since v22.15.0\n                 * @experimental\n                 * @param file The name or path of the executable file to run.\n                 * @param args List of string arguments. No argument can contain a null-byte (`\\u0000`).\n                 * @param env Environment key-value pairs.\n                 * No key or value can contain a null-byte (`\\u0000`).\n                 * **Default:** `process.env`.\n                 */\n                execve?(file: string, args?: readonly string[], env?: ProcessEnv): never;\n                /* EventEmitter */\n                addListener(event: \"beforeExit\", listener: BeforeExitListener): this;\n                addListener(event: \"disconnect\", listener: DisconnectListener): this;\n                addListener(event: \"exit\", listener: ExitListener): this;\n                addListener(event: \"rejectionHandled\", listener: RejectionHandledListener): this;\n                addListener(event: \"uncaughtException\", listener: UncaughtExceptionListener): this;\n                addListener(event: \"uncaughtExceptionMonitor\", listener: UncaughtExceptionListener): this;\n                addListener(event: \"unhandledRejection\", listener: UnhandledRejectionListener): this;\n                addListener(event: \"warning\", listener: WarningListener): this;\n                addListener(event: \"message\", listener: MessageListener): this;\n                addListener(event: Signals, listener: SignalsListener): this;\n                addListener(event: \"multipleResolves\", listener: MultipleResolveListener): this;\n                addListener(event: \"worker\", listener: WorkerListener): this;\n                emit(event: \"beforeExit\", code: number): boolean;\n                emit(event: \"disconnect\"): boolean;\n                emit(event: \"exit\", code: number): boolean;\n                emit(event: \"rejectionHandled\", promise: Promise<unknown>): boolean;\n                emit(event: \"uncaughtException\", error: Error): boolean;\n                emit(event: \"uncaughtExceptionMonitor\", error: Error): boolean;\n                emit(event: \"unhandledRejection\", reason: unknown, promise: Promise<unknown>): boolean;\n                emit(event: \"warning\", warning: Error): boolean;\n                emit(event: \"message\", message: unknown, sendHandle: unknown): this;\n                emit(event: Signals, signal?: Signals): boolean;\n                emit(\n                    event: \"multipleResolves\",\n                    type: MultipleResolveType,\n                    promise: Promise<unknown>,\n                    value: unknown,\n                ): this;\n                emit(event: \"worker\", listener: WorkerListener): this;\n                on(event: \"beforeExit\", listener: BeforeExitListener): this;\n                on(event: \"disconnect\", listener: DisconnectListener): this;\n                on(event: \"exit\", listener: ExitListener): this;\n                on(event: \"rejectionHandled\", listener: RejectionHandledListener): this;\n                on(event: \"uncaughtException\", listener: UncaughtExceptionListener): this;\n                on(event: \"uncaughtExceptionMonitor\", listener: UncaughtExceptionListener): this;\n                on(event: \"unhandledRejection\", listener: UnhandledRejectionListener): this;\n                on(event: \"warning\", listener: WarningListener): this;\n                on(event: \"message\", listener: MessageListener): this;\n                on(event: Signals, listener: SignalsListener): this;\n                on(event: \"multipleResolves\", listener: MultipleResolveListener): this;\n                on(event: \"worker\", listener: WorkerListener): this;\n                on(event: string | symbol, listener: (...args: any[]) => void): this;\n                once(event: \"beforeExit\", listener: BeforeExitListener): this;\n                once(event: \"disconnect\", listener: DisconnectListener): this;\n                once(event: \"exit\", listener: ExitListener): this;\n                once(event: \"rejectionHandled\", listener: RejectionHandledListener): this;\n                once(event: \"uncaughtException\", listener: UncaughtExceptionListener): this;\n                once(event: \"uncaughtExceptionMonitor\", listener: UncaughtExceptionListener): this;\n                once(event: \"unhandledRejection\", listener: UnhandledRejectionListener): this;\n                once(event: \"warning\", listener: WarningListener): this;\n                once(event: \"message\", listener: MessageListener): this;\n                once(event: Signals, listener: SignalsListener): this;\n                once(event: \"multipleResolves\", listener: MultipleResolveListener): this;\n                once(event: \"worker\", listener: WorkerListener): this;\n                once(event: string | symbol, listener: (...args: any[]) => void): this;\n                prependListener(event: \"beforeExit\", listener: BeforeExitListener): this;\n                prependListener(event: \"disconnect\", listener: DisconnectListener): this;\n                prependListener(event: \"exit\", listener: ExitListener): this;\n                prependListener(event: \"rejectionHandled\", listener: RejectionHandledListener): this;\n                prependListener(event: \"uncaughtException\", listener: UncaughtExceptionListener): this;\n                prependListener(event: \"uncaughtExceptionMonitor\", listener: UncaughtExceptionListener): this;\n                prependListener(event: \"unhandledRejection\", listener: UnhandledRejectionListener): this;\n                prependListener(event: \"warning\", listener: WarningListener): this;\n                prependListener(event: \"message\", listener: MessageListener): this;\n                prependListener(event: Signals, listener: SignalsListener): this;\n                prependListener(event: \"multipleResolves\", listener: MultipleResolveListener): this;\n                prependListener(event: \"worker\", listener: WorkerListener): this;\n                prependOnceListener(event: \"beforeExit\", listener: BeforeExitListener): this;\n                prependOnceListener(event: \"disconnect\", listener: DisconnectListener): this;\n                prependOnceListener(event: \"exit\", listener: ExitListener): this;\n                prependOnceListener(event: \"rejectionHandled\", listener: RejectionHandledListener): this;\n                prependOnceListener(event: \"uncaughtException\", listener: UncaughtExceptionListener): this;\n                prependOnceListener(event: \"uncaughtExceptionMonitor\", listener: UncaughtExceptionListener): this;\n                prependOnceListener(event: \"unhandledRejection\", listener: UnhandledRejectionListener): this;\n                prependOnceListener(event: \"warning\", listener: WarningListener): this;\n                prependOnceListener(event: \"message\", listener: MessageListener): this;\n                prependOnceListener(event: Signals, listener: SignalsListener): this;\n                prependOnceListener(event: \"multipleResolves\", listener: MultipleResolveListener): this;\n                prependOnceListener(event: \"worker\", listener: WorkerListener): this;\n                listeners(event: \"beforeExit\"): BeforeExitListener[];\n                listeners(event: \"disconnect\"): DisconnectListener[];\n                listeners(event: \"exit\"): ExitListener[];\n                listeners(event: \"rejectionHandled\"): RejectionHandledListener[];\n                listeners(event: \"uncaughtException\"): UncaughtExceptionListener[];\n                listeners(event: \"uncaughtExceptionMonitor\"): UncaughtExceptionListener[];\n                listeners(event: \"unhandledRejection\"): UnhandledRejectionListener[];\n                listeners(event: \"warning\"): WarningListener[];\n                listeners(event: \"message\"): MessageListener[];\n                listeners(event: Signals): SignalsListener[];\n                listeners(event: \"multipleResolves\"): MultipleResolveListener[];\n                listeners(event: \"worker\"): WorkerListener[];\n            }\n        }\n    }\n    export = process;\n}\ndeclare module \"node:process\" {\n    import process = require(\"process\");\n    export = process;\n}\n",
    "node_modules/@types/node/punycode.d.ts": "/**\n * **The version of the punycode module bundled in Node.js is being deprecated. **In a future major version of Node.js this module will be removed. Users\n * currently depending on the `punycode` module should switch to using the\n * userland-provided [Punycode.js](https://github.com/bestiejs/punycode.js) module instead. For punycode-based URL\n * encoding, see `url.domainToASCII` or, more generally, the `WHATWG URL API`.\n *\n * The `punycode` module is a bundled version of the [Punycode.js](https://github.com/bestiejs/punycode.js) module. It\n * can be accessed using:\n *\n * ```js\n * import punycode from 'node:punycode';\n * ```\n *\n * [Punycode](https://tools.ietf.org/html/rfc3492) is a character encoding scheme defined by RFC 3492 that is\n * primarily intended for use in Internationalized Domain Names. Because host\n * names in URLs are limited to ASCII characters only, Domain Names that contain\n * non-ASCII characters must be converted into ASCII using the Punycode scheme.\n * For instance, the Japanese character that translates into the English word, `'example'` is `'例'`. The Internationalized Domain Name, `'例.com'` (equivalent\n * to `'example.com'`) is represented by Punycode as the ASCII string `'xn--fsq.com'`.\n *\n * The `punycode` module provides a simple implementation of the Punycode standard.\n *\n * The `punycode` module is a third-party dependency used by Node.js and\n * made available to developers as a convenience. Fixes or other modifications to\n * the module must be directed to the [Punycode.js](https://github.com/bestiejs/punycode.js) project.\n * @deprecated Since v7.0.0 - Deprecated\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/punycode.js)\n */\ndeclare module \"punycode\" {\n    /**\n     * The `punycode.decode()` method converts a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only\n     * characters to the equivalent string of Unicode codepoints.\n     *\n     * ```js\n     * punycode.decode('maana-pta'); // 'mañana'\n     * punycode.decode('--dqo34k'); // '☃-⌘'\n     * ```\n     * @since v0.5.1\n     */\n    function decode(string: string): string;\n    /**\n     * The `punycode.encode()` method converts a string of Unicode codepoints to a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only characters.\n     *\n     * ```js\n     * punycode.encode('mañana'); // 'maana-pta'\n     * punycode.encode('☃-⌘'); // '--dqo34k'\n     * ```\n     * @since v0.5.1\n     */\n    function encode(string: string): string;\n    /**\n     * The `punycode.toUnicode()` method converts a string representing a domain name\n     * containing [Punycode](https://tools.ietf.org/html/rfc3492) encoded characters into Unicode. Only the [Punycode](https://tools.ietf.org/html/rfc3492) encoded parts of the domain name are be\n     * converted.\n     *\n     * ```js\n     * // decode domain names\n     * punycode.toUnicode('xn--maana-pta.com'); // 'mañana.com'\n     * punycode.toUnicode('xn----dqo34k.com');  // '☃-⌘.com'\n     * punycode.toUnicode('example.com');       // 'example.com'\n     * ```\n     * @since v0.6.1\n     */\n    function toUnicode(domain: string): string;\n    /**\n     * The `punycode.toASCII()` method converts a Unicode string representing an\n     * Internationalized Domain Name to [Punycode](https://tools.ietf.org/html/rfc3492). Only the non-ASCII parts of the\n     * domain name will be converted. Calling `punycode.toASCII()` on a string that\n     * already only contains ASCII characters will have no effect.\n     *\n     * ```js\n     * // encode domain names\n     * punycode.toASCII('mañana.com');  // 'xn--maana-pta.com'\n     * punycode.toASCII('☃-⌘.com');   // 'xn----dqo34k.com'\n     * punycode.toASCII('example.com'); // 'example.com'\n     * ```\n     * @since v0.6.1\n     */\n    function toASCII(domain: string): string;\n    /**\n     * @deprecated since v7.0.0\n     * The version of the punycode module bundled in Node.js is being deprecated.\n     * In a future major version of Node.js this module will be removed.\n     * Users currently depending on the punycode module should switch to using\n     * the userland-provided Punycode.js module instead.\n     */\n    const ucs2: ucs2;\n    interface ucs2 {\n        /**\n         * @deprecated since v7.0.0\n         * The version of the punycode module bundled in Node.js is being deprecated.\n         * In a future major version of Node.js this module will be removed.\n         * Users currently depending on the punycode module should switch to using\n         * the userland-provided Punycode.js module instead.\n         */\n        decode(string: string): number[];\n        /**\n         * @deprecated since v7.0.0\n         * The version of the punycode module bundled in Node.js is being deprecated.\n         * In a future major version of Node.js this module will be removed.\n         * Users currently depending on the punycode module should switch to using\n         * the userland-provided Punycode.js module instead.\n         */\n        encode(codePoints: readonly number[]): string;\n    }\n    /**\n     * @deprecated since v7.0.0\n     * The version of the punycode module bundled in Node.js is being deprecated.\n     * In a future major version of Node.js this module will be removed.\n     * Users currently depending on the punycode module should switch to using\n     * the userland-provided Punycode.js module instead.\n     */\n    const version: string;\n}\ndeclare module \"node:punycode\" {\n    export * from \"punycode\";\n}\n",
    "node_modules/@types/node/querystring.d.ts": "/**\n * The `node:querystring` module provides utilities for parsing and formatting URL\n * query strings. It can be accessed using:\n *\n * ```js\n * import querystring from 'node:querystring';\n * ```\n *\n * `querystring` is more performant than `URLSearchParams` but is not a\n * standardized API. Use `URLSearchParams` when performance is not critical or\n * when compatibility with browser code is desirable.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/querystring.js)\n */\ndeclare module \"querystring\" {\n    interface StringifyOptions {\n        /**\n         * The function to use when converting URL-unsafe characters to percent-encoding in the query string.\n         * @default `querystring.escape()`\n         */\n        encodeURIComponent?: ((str: string) => string) | undefined;\n    }\n    interface ParseOptions {\n        /**\n         * Specifies the maximum number of keys to parse. Specify `0` to remove key counting limitations.\n         * @default 1000\n         */\n        maxKeys?: number | undefined;\n        /**\n         * The function to use when decoding percent-encoded characters in the query string.\n         * @default `querystring.unescape()`\n         */\n        decodeURIComponent?: ((str: string) => string) | undefined;\n    }\n    interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> {}\n    interface ParsedUrlQueryInput extends\n        NodeJS.Dict<\n            | string\n            | number\n            | boolean\n            | bigint\n            | ReadonlyArray<string | number | boolean | bigint>\n            | null\n        >\n    {}\n    /**\n     * The `querystring.stringify()` method produces a URL query string from a\n     * given `obj` by iterating through the object's \"own properties\".\n     *\n     * It serializes the following types of values passed in `obj`: [string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) |\n     * [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) |\n     * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) |\n     * [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) |\n     * [string\\[\\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) |\n     * [number\\[\\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) |\n     * [bigint\\[\\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) |\n     * [boolean\\[\\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) The numeric values must be finite. Any other input values will be coerced to\n     * empty strings.\n     *\n     * ```js\n     * querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });\n     * // Returns 'foo=bar&#x26;baz=qux&#x26;baz=quux&#x26;corge='\n     *\n     * querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':');\n     * // Returns 'foo:bar;baz:qux'\n     * ```\n     *\n     * By default, characters requiring percent-encoding within the query string will\n     * be encoded as UTF-8\\. If an alternative encoding is required, then an alternative `encodeURIComponent` option will need to be specified:\n     *\n     * ```js\n     * // Assuming gbkEncodeURIComponent function already exists,\n     *\n     * querystring.stringify({ w: '中文', foo: 'bar' }, null, null,\n     *                       { encodeURIComponent: gbkEncodeURIComponent });\n     * ```\n     * @since v0.1.25\n     * @param obj The object to serialize into a URL query string\n     * @param [sep='&'] The substring used to delimit key and value pairs in the query string.\n     * @param [eq='='] . The substring used to delimit keys and values in the query string.\n     */\n    function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string;\n    /**\n     * The `querystring.parse()` method parses a URL query string (`str`) into a\n     * collection of key and value pairs.\n     *\n     * For example, the query string `'foo=bar&#x26;abc=xyz&#x26;abc=123'` is parsed into:\n     *\n     * ```json\n     * {\n     *   \"foo\": \"bar\",\n     *   \"abc\": [\"xyz\", \"123\"]\n     * }\n     * ```\n     *\n     * The object returned by the `querystring.parse()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`,\n     * `obj.hasOwnProperty()`, and others\n     * are not defined and _will not work_.\n     *\n     * By default, percent-encoded characters within the query string will be assumed\n     * to use UTF-8 encoding. If an alternative character encoding is used, then an\n     * alternative `decodeURIComponent` option will need to be specified:\n     *\n     * ```js\n     * // Assuming gbkDecodeURIComponent function already exists...\n     *\n     * querystring.parse('w=%D6%D0%CE%C4&#x26;foo=bar', null, null,\n     *                   { decodeURIComponent: gbkDecodeURIComponent });\n     * ```\n     * @since v0.1.25\n     * @param str The URL query string to parse\n     * @param [sep='&'] The substring used to delimit key and value pairs in the query string.\n     * @param [eq='='] The substring used to delimit keys and values in the query string.\n     */\n    function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery;\n    /**\n     * The querystring.encode() function is an alias for querystring.stringify().\n     */\n    const encode: typeof stringify;\n    /**\n     * The querystring.decode() function is an alias for querystring.parse().\n     */\n    const decode: typeof parse;\n    /**\n     * The `querystring.escape()` method performs URL percent-encoding on the given `str` in a manner that is optimized for the specific requirements of URL\n     * query strings.\n     *\n     * The `querystring.escape()` method is used by `querystring.stringify()` and is\n     * generally not expected to be used directly. It is exported primarily to allow\n     * application code to provide a replacement percent-encoding implementation if\n     * necessary by assigning `querystring.escape` to an alternative function.\n     * @since v0.1.25\n     */\n    function escape(str: string): string;\n    /**\n     * The `querystring.unescape()` method performs decoding of URL percent-encoded\n     * characters on the given `str`.\n     *\n     * The `querystring.unescape()` method is used by `querystring.parse()` and is\n     * generally not expected to be used directly. It is exported primarily to allow\n     * application code to provide a replacement decoding implementation if\n     * necessary by assigning `querystring.unescape` to an alternative function.\n     *\n     * By default, the `querystring.unescape()` method will attempt to use the\n     * JavaScript built-in `decodeURIComponent()` method to decode. If that fails,\n     * a safer equivalent that does not throw on malformed URLs will be used.\n     * @since v0.1.25\n     */\n    function unescape(str: string): string;\n}\ndeclare module \"node:querystring\" {\n    export * from \"querystring\";\n}\n",
    "node_modules/@types/node/readline/promises.d.ts": "/**\n * @since v17.0.0\n * @experimental\n */\ndeclare module \"readline/promises\" {\n    import { Abortable } from \"node:events\";\n    import {\n        CompleterResult,\n        Direction,\n        Interface as _Interface,\n        ReadLineOptions as _ReadLineOptions,\n    } from \"node:readline\";\n    /**\n     * Instances of the `readlinePromises.Interface` class are constructed using the `readlinePromises.createInterface()` method. Every instance is associated with a\n     * single `input` `Readable` stream and a single `output` `Writable` stream.\n     * The `output` stream is used to print prompts for user input that arrives on,\n     * and is read from, the `input` stream.\n     * @since v17.0.0\n     */\n    class Interface extends _Interface {\n        /**\n         * The `rl.question()` method displays the `query` by writing it to the `output`,\n         * waits for user input to be provided on `input`, then invokes the `callback` function passing the provided input as the first argument.\n         *\n         * When called, `rl.question()` will resume the `input` stream if it has been\n         * paused.\n         *\n         * If the `Interface` was created with `output` set to `null` or `undefined` the `query` is not written.\n         *\n         * If the question is called after `rl.close()`, it returns a rejected promise.\n         *\n         * Example usage:\n         *\n         * ```js\n         * const answer = await rl.question('What is your favorite food? ');\n         * console.log(`Oh, so your favorite food is ${answer}`);\n         * ```\n         *\n         * Using an `AbortSignal` to cancel a question.\n         *\n         * ```js\n         * const signal = AbortSignal.timeout(10_000);\n         *\n         * signal.addEventListener('abort', () => {\n         *   console.log('The food question timed out');\n         * }, { once: true });\n         *\n         * const answer = await rl.question('What is your favorite food? ', { signal });\n         * console.log(`Oh, so your favorite food is ${answer}`);\n         * ```\n         * @since v17.0.0\n         * @param query A statement or query to write to `output`, prepended to the prompt.\n         * @return A promise that is fulfilled with the user's input in response to the `query`.\n         */\n        question(query: string): Promise<string>;\n        question(query: string, options: Abortable): Promise<string>;\n    }\n    /**\n     * @since v17.0.0\n     */\n    class Readline {\n        /**\n         * @param stream A TTY stream.\n         */\n        constructor(\n            stream: NodeJS.WritableStream,\n            options?: {\n                autoCommit?: boolean;\n            },\n        );\n        /**\n         * The `rl.clearLine()` method adds to the internal list of pending action an\n         * action that clears current line of the associated `stream` in a specified\n         * direction identified by `dir`.\n         * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor.\n         * @since v17.0.0\n         * @return this\n         */\n        clearLine(dir: Direction): this;\n        /**\n         * The `rl.clearScreenDown()` method adds to the internal list of pending action an\n         * action that clears the associated stream from the current position of the\n         * cursor down.\n         * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor.\n         * @since v17.0.0\n         * @return this\n         */\n        clearScreenDown(): this;\n        /**\n         * The `rl.commit()` method sends all the pending actions to the associated `stream` and clears the internal list of pending actions.\n         * @since v17.0.0\n         */\n        commit(): Promise<void>;\n        /**\n         * The `rl.cursorTo()` method adds to the internal list of pending action an action\n         * that moves cursor to the specified position in the associated `stream`.\n         * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor.\n         * @since v17.0.0\n         * @return this\n         */\n        cursorTo(x: number, y?: number): this;\n        /**\n         * The `rl.moveCursor()` method adds to the internal list of pending action an\n         * action that moves the cursor _relative_ to its current position in the\n         * associated `stream`.\n         * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor.\n         * @since v17.0.0\n         * @return this\n         */\n        moveCursor(dx: number, dy: number): this;\n        /**\n         * The `rl.rollback` methods clears the internal list of pending actions without\n         * sending it to the associated `stream`.\n         * @since v17.0.0\n         * @return this\n         */\n        rollback(): this;\n    }\n    type Completer = (line: string) => CompleterResult | Promise<CompleterResult>;\n    interface ReadLineOptions extends Omit<_ReadLineOptions, \"completer\"> {\n        /**\n         * An optional function used for Tab autocompletion.\n         */\n        completer?: Completer | undefined;\n    }\n    /**\n     * The `readlinePromises.createInterface()` method creates a new `readlinePromises.Interface` instance.\n     *\n     * ```js\n     * import readlinePromises from 'node:readline/promises';\n     * const rl = readlinePromises.createInterface({\n     *   input: process.stdin,\n     *   output: process.stdout,\n     * });\n     * ```\n     *\n     * Once the `readlinePromises.Interface` instance is created, the most common case\n     * is to listen for the `'line'` event:\n     *\n     * ```js\n     * rl.on('line', (line) => {\n     *   console.log(`Received: ${line}`);\n     * });\n     * ```\n     *\n     * If `terminal` is `true` for this instance then the `output` stream will get\n     * the best compatibility if it defines an `output.columns` property and emits\n     * a `'resize'` event on the `output` if or when the columns ever change\n     * (`process.stdout` does this automatically when it is a TTY).\n     * @since v17.0.0\n     */\n    function createInterface(\n        input: NodeJS.ReadableStream,\n        output?: NodeJS.WritableStream,\n        completer?: Completer,\n        terminal?: boolean,\n    ): Interface;\n    function createInterface(options: ReadLineOptions): Interface;\n}\ndeclare module \"node:readline/promises\" {\n    export * from \"readline/promises\";\n}\n",
    "node_modules/@types/node/readline.d.ts": "/**\n * The `node:readline` module provides an interface for reading data from a [Readable](https://nodejs.org/docs/latest-v22.x/api/stream.html#readable-streams) stream\n * (such as [`process.stdin`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdin)) one line at a time.\n *\n * To use the promise-based APIs:\n *\n * ```js\n * import * as readline from 'node:readline/promises';\n * ```\n *\n * To use the callback and sync APIs:\n *\n * ```js\n * import * as readline from 'node:readline';\n * ```\n *\n * The following simple example illustrates the basic use of the `node:readline` module.\n *\n * ```js\n * import * as readline from 'node:readline/promises';\n * import { stdin as input, stdout as output } from 'node:process';\n *\n * const rl = readline.createInterface({ input, output });\n *\n * const answer = await rl.question('What do you think of Node.js? ');\n *\n * console.log(`Thank you for your valuable feedback: ${answer}`);\n *\n * rl.close();\n * ```\n *\n * Once this code is invoked, the Node.js application will not terminate until the `readline.Interface` is closed because the interface waits for data to be\n * received on the `input` stream.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/readline.js)\n */\ndeclare module \"readline\" {\n    import { Abortable, EventEmitter } from \"node:events\";\n    import * as promises from \"node:readline/promises\";\n    export { promises };\n    export interface Key {\n        sequence?: string | undefined;\n        name?: string | undefined;\n        ctrl?: boolean | undefined;\n        meta?: boolean | undefined;\n        shift?: boolean | undefined;\n    }\n    /**\n     * Instances of the `readline.Interface` class are constructed using the `readline.createInterface()` method. Every instance is associated with a\n     * single `input` [Readable](https://nodejs.org/docs/latest-v22.x/api/stream.html#readable-streams) stream and a single `output` [Writable](https://nodejs.org/docs/latest-v22.x/api/stream.html#writable-streams) stream.\n     * The `output` stream is used to print prompts for user input that arrives on,\n     * and is read from, the `input` stream.\n     * @since v0.1.104\n     */\n    export class Interface extends EventEmitter implements Disposable {\n        readonly terminal: boolean;\n        /**\n         * The current input data being processed by node.\n         *\n         * This can be used when collecting input from a TTY stream to retrieve the\n         * current value that has been processed thus far, prior to the `line` event\n         * being emitted. Once the `line` event has been emitted, this property will\n         * be an empty string.\n         *\n         * Be aware that modifying the value during the instance runtime may have\n         * unintended consequences if `rl.cursor` is not also controlled.\n         *\n         * **If not using a TTY stream for input, use the `'line'` event.**\n         *\n         * One possible use case would be as follows:\n         *\n         * ```js\n         * const values = ['lorem ipsum', 'dolor sit amet'];\n         * const rl = readline.createInterface(process.stdin);\n         * const showResults = debounce(() => {\n         *   console.log(\n         *     '\\n',\n         *     values.filter((val) => val.startsWith(rl.line)).join(' '),\n         *   );\n         * }, 300);\n         * process.stdin.on('keypress', (c, k) => {\n         *   showResults();\n         * });\n         * ```\n         * @since v0.1.98\n         */\n        readonly line: string;\n        /**\n         * The cursor position relative to `rl.line`.\n         *\n         * This will track where the current cursor lands in the input string, when\n         * reading input from a TTY stream. The position of cursor determines the\n         * portion of the input string that will be modified as input is processed,\n         * as well as the column where the terminal caret will be rendered.\n         * @since v0.1.98\n         */\n        readonly cursor: number;\n        /**\n         * NOTE: According to the documentation:\n         *\n         * > Instances of the `readline.Interface` class are constructed using the\n         * > `readline.createInterface()` method.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/readline.html#class-interfaceconstructor\n         */\n        protected constructor(\n            input: NodeJS.ReadableStream,\n            output?: NodeJS.WritableStream,\n            completer?: Completer | AsyncCompleter,\n            terminal?: boolean,\n        );\n        /**\n         * NOTE: According to the documentation:\n         *\n         * > Instances of the `readline.Interface` class are constructed using the\n         * > `readline.createInterface()` method.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/readline.html#class-interfaceconstructor\n         */\n        protected constructor(options: ReadLineOptions);\n        /**\n         * The `rl.getPrompt()` method returns the current prompt used by `rl.prompt()`.\n         * @since v15.3.0, v14.17.0\n         * @return the current prompt string\n         */\n        getPrompt(): string;\n        /**\n         * The `rl.setPrompt()` method sets the prompt that will be written to `output` whenever `rl.prompt()` is called.\n         * @since v0.1.98\n         */\n        setPrompt(prompt: string): void;\n        /**\n         * The `rl.prompt()` method writes the `Interface` instances configured`prompt` to a new line in `output` in order to provide a user with a new\n         * location at which to provide input.\n         *\n         * When called, `rl.prompt()` will resume the `input` stream if it has been\n         * paused.\n         *\n         * If the `Interface` was created with `output` set to `null` or `undefined` the prompt is not written.\n         * @since v0.1.98\n         * @param preserveCursor If `true`, prevents the cursor placement from being reset to `0`.\n         */\n        prompt(preserveCursor?: boolean): void;\n        /**\n         * The `rl.question()` method displays the `query` by writing it to the `output`,\n         * waits for user input to be provided on `input`, then invokes the `callback` function passing the provided input as the first argument.\n         *\n         * When called, `rl.question()` will resume the `input` stream if it has been\n         * paused.\n         *\n         * If the `Interface` was created with `output` set to `null` or `undefined` the `query` is not written.\n         *\n         * The `callback` function passed to `rl.question()` does not follow the typical\n         * pattern of accepting an `Error` object or `null` as the first argument.\n         * The `callback` is called with the provided answer as the only argument.\n         *\n         * An error will be thrown if calling `rl.question()` after `rl.close()`.\n         *\n         * Example usage:\n         *\n         * ```js\n         * rl.question('What is your favorite food? ', (answer) => {\n         *   console.log(`Oh, so your favorite food is ${answer}`);\n         * });\n         * ```\n         *\n         * Using an `AbortController` to cancel a question.\n         *\n         * ```js\n         * const ac = new AbortController();\n         * const signal = ac.signal;\n         *\n         * rl.question('What is your favorite food? ', { signal }, (answer) => {\n         *   console.log(`Oh, so your favorite food is ${answer}`);\n         * });\n         *\n         * signal.addEventListener('abort', () => {\n         *   console.log('The food question timed out');\n         * }, { once: true });\n         *\n         * setTimeout(() => ac.abort(), 10000);\n         * ```\n         * @since v0.3.3\n         * @param query A statement or query to write to `output`, prepended to the prompt.\n         * @param callback A callback function that is invoked with the user's input in response to the `query`.\n         */\n        question(query: string, callback: (answer: string) => void): void;\n        question(query: string, options: Abortable, callback: (answer: string) => void): void;\n        /**\n         * The `rl.pause()` method pauses the `input` stream, allowing it to be resumed\n         * later if necessary.\n         *\n         * Calling `rl.pause()` does not immediately pause other events (including `'line'`) from being emitted by the `Interface` instance.\n         * @since v0.3.4\n         */\n        pause(): this;\n        /**\n         * The `rl.resume()` method resumes the `input` stream if it has been paused.\n         * @since v0.3.4\n         */\n        resume(): this;\n        /**\n         * The `rl.close()` method closes the `Interface` instance and\n         * relinquishes control over the `input` and `output` streams. When called,\n         * the `'close'` event will be emitted.\n         *\n         * Calling `rl.close()` does not immediately stop other events (including `'line'`)\n         * from being emitted by the `Interface` instance.\n         * @since v0.1.98\n         */\n        close(): void;\n        /**\n         * Alias for `rl.close()`.\n         * @since v22.15.0\n         */\n        [Symbol.dispose](): void;\n        /**\n         * The `rl.write()` method will write either `data` or a key sequence identified\n         * by `key` to the `output`. The `key` argument is supported only if `output` is\n         * a `TTY` text terminal. See `TTY keybindings` for a list of key\n         * combinations.\n         *\n         * If `key` is specified, `data` is ignored.\n         *\n         * When called, `rl.write()` will resume the `input` stream if it has been\n         * paused.\n         *\n         * If the `Interface` was created with `output` set to `null` or `undefined` the `data` and `key` are not written.\n         *\n         * ```js\n         * rl.write('Delete this!');\n         * // Simulate Ctrl+U to delete the line written previously\n         * rl.write(null, { ctrl: true, name: 'u' });\n         * ```\n         *\n         * The `rl.write()` method will write the data to the `readline` `Interface`'s `input` _as if it were provided by the user_.\n         * @since v0.1.98\n         */\n        write(data: string | Buffer, key?: Key): void;\n        write(data: undefined | null | string | Buffer, key: Key): void;\n        /**\n         * Returns the real position of the cursor in relation to the input\n         * prompt + string. Long input (wrapping) strings, as well as multiple\n         * line prompts are included in the calculations.\n         * @since v13.5.0, v12.16.0\n         */\n        getCursorPos(): CursorPos;\n        /**\n         * events.EventEmitter\n         * 1. close\n         * 2. line\n         * 3. pause\n         * 4. resume\n         * 5. SIGCONT\n         * 6. SIGINT\n         * 7. SIGTSTP\n         * 8. history\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"line\", listener: (input: string) => void): this;\n        addListener(event: \"pause\", listener: () => void): this;\n        addListener(event: \"resume\", listener: () => void): this;\n        addListener(event: \"SIGCONT\", listener: () => void): this;\n        addListener(event: \"SIGINT\", listener: () => void): this;\n        addListener(event: \"SIGTSTP\", listener: () => void): this;\n        addListener(event: \"history\", listener: (history: string[]) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"line\", input: string): boolean;\n        emit(event: \"pause\"): boolean;\n        emit(event: \"resume\"): boolean;\n        emit(event: \"SIGCONT\"): boolean;\n        emit(event: \"SIGINT\"): boolean;\n        emit(event: \"SIGTSTP\"): boolean;\n        emit(event: \"history\", history: string[]): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"line\", listener: (input: string) => void): this;\n        on(event: \"pause\", listener: () => void): this;\n        on(event: \"resume\", listener: () => void): this;\n        on(event: \"SIGCONT\", listener: () => void): this;\n        on(event: \"SIGINT\", listener: () => void): this;\n        on(event: \"SIGTSTP\", listener: () => void): this;\n        on(event: \"history\", listener: (history: string[]) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"line\", listener: (input: string) => void): this;\n        once(event: \"pause\", listener: () => void): this;\n        once(event: \"resume\", listener: () => void): this;\n        once(event: \"SIGCONT\", listener: () => void): this;\n        once(event: \"SIGINT\", listener: () => void): this;\n        once(event: \"SIGTSTP\", listener: () => void): this;\n        once(event: \"history\", listener: (history: string[]) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"line\", listener: (input: string) => void): this;\n        prependListener(event: \"pause\", listener: () => void): this;\n        prependListener(event: \"resume\", listener: () => void): this;\n        prependListener(event: \"SIGCONT\", listener: () => void): this;\n        prependListener(event: \"SIGINT\", listener: () => void): this;\n        prependListener(event: \"SIGTSTP\", listener: () => void): this;\n        prependListener(event: \"history\", listener: (history: string[]) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"line\", listener: (input: string) => void): this;\n        prependOnceListener(event: \"pause\", listener: () => void): this;\n        prependOnceListener(event: \"resume\", listener: () => void): this;\n        prependOnceListener(event: \"SIGCONT\", listener: () => void): this;\n        prependOnceListener(event: \"SIGINT\", listener: () => void): this;\n        prependOnceListener(event: \"SIGTSTP\", listener: () => void): this;\n        prependOnceListener(event: \"history\", listener: (history: string[]) => void): this;\n        [Symbol.asyncIterator](): NodeJS.AsyncIterator<string>;\n    }\n    export type ReadLine = Interface; // type forwarded for backwards compatibility\n    export type Completer = (line: string) => CompleterResult;\n    export type AsyncCompleter = (\n        line: string,\n        callback: (err?: null | Error, result?: CompleterResult) => void,\n    ) => void;\n    export type CompleterResult = [string[], string];\n    export interface ReadLineOptions {\n        /**\n         * The [`Readable`](https://nodejs.org/docs/latest-v22.x/api/stream.html#readable-streams) stream to listen to\n         */\n        input: NodeJS.ReadableStream;\n        /**\n         * The [`Writable`](https://nodejs.org/docs/latest-v22.x/api/stream.html#writable-streams) stream to write readline data to.\n         */\n        output?: NodeJS.WritableStream | undefined;\n        /**\n         * An optional function used for Tab autocompletion.\n         */\n        completer?: Completer | AsyncCompleter | undefined;\n        /**\n         * `true` if the `input` and `output` streams should be treated like a TTY,\n         * and have ANSI/VT100 escape codes written to it.\n         * Default: checking `isTTY` on the `output` stream upon instantiation.\n         */\n        terminal?: boolean | undefined;\n        /**\n         * Initial list of history lines.\n         * This option makes sense only if `terminal` is set to `true` by the user or by an internal `output` check,\n         * otherwise the history caching mechanism is not initialized at all.\n         * @default []\n         */\n        history?: string[] | undefined;\n        /**\n         * Maximum number of history lines retained.\n         * To disable the history set this value to `0`.\n         * This option makes sense only if `terminal` is set to `true` by the user or by an internal `output` check,\n         * otherwise the history caching mechanism is not initialized at all.\n         * @default 30\n         */\n        historySize?: number | undefined;\n        /**\n         * If `true`, when a new input line added to the history list duplicates an older one,\n         * this removes the older line from the list.\n         * @default false\n         */\n        removeHistoryDuplicates?: boolean | undefined;\n        /**\n         * The prompt string to use.\n         * @default \"> \"\n         */\n        prompt?: string | undefined;\n        /**\n         * If the delay between `\\r` and `\\n` exceeds `crlfDelay` milliseconds,\n         * both `\\r` and `\\n` will be treated as separate end-of-line input.\n         * `crlfDelay` will be coerced to a number no less than `100`.\n         * It can be set to `Infinity`, in which case\n         * `\\r` followed by `\\n` will always be considered a single newline\n         * (which may be reasonable for [reading files](https://nodejs.org/docs/latest-v22.x/api/readline.html#example-read-file-stream-line-by-line) with `\\r\\n` line delimiter).\n         * @default 100\n         */\n        crlfDelay?: number | undefined;\n        /**\n         * The duration `readline` will wait for a character\n         * (when reading an ambiguous key sequence in milliseconds\n         * one that can both form a complete key sequence using the input read so far\n         * and can take additional input to complete a longer key sequence).\n         * @default 500\n         */\n        escapeCodeTimeout?: number | undefined;\n        /**\n         * The number of spaces a tab is equal to (minimum 1).\n         * @default 8\n         */\n        tabSize?: number | undefined;\n        /**\n         * Allows closing the interface using an AbortSignal.\n         * Aborting the signal will internally call `close` on the interface.\n         */\n        signal?: AbortSignal | undefined;\n    }\n    /**\n     * The `readline.createInterface()` method creates a new `readline.Interface` instance.\n     *\n     * ```js\n     * import readline from 'node:readline';\n     * const rl = readline.createInterface({\n     *   input: process.stdin,\n     *   output: process.stdout,\n     * });\n     * ```\n     *\n     * Once the `readline.Interface` instance is created, the most common case is to\n     * listen for the `'line'` event:\n     *\n     * ```js\n     * rl.on('line', (line) => {\n     *   console.log(`Received: ${line}`);\n     * });\n     * ```\n     *\n     * If `terminal` is `true` for this instance then the `output` stream will get\n     * the best compatibility if it defines an `output.columns` property and emits\n     * a `'resize'` event on the `output` if or when the columns ever change\n     * (`process.stdout` does this automatically when it is a TTY).\n     *\n     * When creating a `readline.Interface` using `stdin` as input, the program\n     * will not terminate until it receives an [EOF character](https://en.wikipedia.org/wiki/End-of-file#EOF_character). To exit without\n     * waiting for user input, call `process.stdin.unref()`.\n     * @since v0.1.98\n     */\n    export function createInterface(\n        input: NodeJS.ReadableStream,\n        output?: NodeJS.WritableStream,\n        completer?: Completer | AsyncCompleter,\n        terminal?: boolean,\n    ): Interface;\n    export function createInterface(options: ReadLineOptions): Interface;\n    /**\n     * The `readline.emitKeypressEvents()` method causes the given `Readable` stream to begin emitting `'keypress'` events corresponding to received input.\n     *\n     * Optionally, `interface` specifies a `readline.Interface` instance for which\n     * autocompletion is disabled when copy-pasted input is detected.\n     *\n     * If the `stream` is a `TTY`, then it must be in raw mode.\n     *\n     * This is automatically called by any readline instance on its `input` if the `input` is a terminal. Closing the `readline` instance does not stop\n     * the `input` from emitting `'keypress'` events.\n     *\n     * ```js\n     * readline.emitKeypressEvents(process.stdin);\n     * if (process.stdin.isTTY)\n     *   process.stdin.setRawMode(true);\n     * ```\n     *\n     * ## Example: Tiny CLI\n     *\n     * The following example illustrates the use of `readline.Interface` class to\n     * implement a small command-line interface:\n     *\n     * ```js\n     * import readline from 'node:readline';\n     * const rl = readline.createInterface({\n     *   input: process.stdin,\n     *   output: process.stdout,\n     *   prompt: 'OHAI> ',\n     * });\n     *\n     * rl.prompt();\n     *\n     * rl.on('line', (line) => {\n     *   switch (line.trim()) {\n     *     case 'hello':\n     *       console.log('world!');\n     *       break;\n     *     default:\n     *       console.log(`Say what? I might have heard '${line.trim()}'`);\n     *       break;\n     *   }\n     *   rl.prompt();\n     * }).on('close', () => {\n     *   console.log('Have a great day!');\n     *   process.exit(0);\n     * });\n     * ```\n     *\n     * ## Example: Read file stream line-by-Line\n     *\n     * A common use case for `readline` is to consume an input file one line at a\n     * time. The easiest way to do so is leveraging the `fs.ReadStream` API as\n     * well as a `for await...of` loop:\n     *\n     * ```js\n     * import fs from 'node:fs';\n     * import readline from 'node:readline';\n     *\n     * async function processLineByLine() {\n     *   const fileStream = fs.createReadStream('input.txt');\n     *\n     *   const rl = readline.createInterface({\n     *     input: fileStream,\n     *     crlfDelay: Infinity,\n     *   });\n     *   // Note: we use the crlfDelay option to recognize all instances of CR LF\n     *   // ('\\r\\n') in input.txt as a single line break.\n     *\n     *   for await (const line of rl) {\n     *     // Each line in input.txt will be successively available here as `line`.\n     *     console.log(`Line from file: ${line}`);\n     *   }\n     * }\n     *\n     * processLineByLine();\n     * ```\n     *\n     * Alternatively, one could use the `'line'` event:\n     *\n     * ```js\n     * import fs from 'node:fs';\n     * import readline from 'node:readline';\n     *\n     * const rl = readline.createInterface({\n     *   input: fs.createReadStream('sample.txt'),\n     *   crlfDelay: Infinity,\n     * });\n     *\n     * rl.on('line', (line) => {\n     *   console.log(`Line from file: ${line}`);\n     * });\n     * ```\n     *\n     * Currently, `for await...of` loop can be a bit slower. If `async` / `await` flow and speed are both essential, a mixed approach can be applied:\n     *\n     * ```js\n     * import { once } from 'node:events';\n     * import { createReadStream } from 'node:fs';\n     * import { createInterface } from 'node:readline';\n     *\n     * (async function processLineByLine() {\n     *   try {\n     *     const rl = createInterface({\n     *       input: createReadStream('big-file.txt'),\n     *       crlfDelay: Infinity,\n     *     });\n     *\n     *     rl.on('line', (line) => {\n     *       // Process the line.\n     *     });\n     *\n     *     await once(rl, 'close');\n     *\n     *     console.log('File processed.');\n     *   } catch (err) {\n     *     console.error(err);\n     *   }\n     * })();\n     * ```\n     * @since v0.7.7\n     */\n    export function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void;\n    export type Direction = -1 | 0 | 1;\n    export interface CursorPos {\n        rows: number;\n        cols: number;\n    }\n    /**\n     * The `readline.clearLine()` method clears current line of given [TTY](https://nodejs.org/docs/latest-v22.x/api/tty.html) stream\n     * in a specified direction identified by `dir`.\n     * @since v0.7.7\n     * @param callback Invoked once the operation completes.\n     * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n     */\n    export function clearLine(stream: NodeJS.WritableStream, dir: Direction, callback?: () => void): boolean;\n    /**\n     * The `readline.clearScreenDown()` method clears the given [TTY](https://nodejs.org/docs/latest-v22.x/api/tty.html) stream from\n     * the current position of the cursor down.\n     * @since v0.7.7\n     * @param callback Invoked once the operation completes.\n     * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n     */\n    export function clearScreenDown(stream: NodeJS.WritableStream, callback?: () => void): boolean;\n    /**\n     * The `readline.cursorTo()` method moves cursor to the specified position in a\n     * given [TTY](https://nodejs.org/docs/latest-v22.x/api/tty.html) `stream`.\n     * @since v0.7.7\n     * @param callback Invoked once the operation completes.\n     * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n     */\n    export function cursorTo(stream: NodeJS.WritableStream, x: number, y?: number, callback?: () => void): boolean;\n    /**\n     * The `readline.moveCursor()` method moves the cursor _relative_ to its current\n     * position in a given [TTY](https://nodejs.org/docs/latest-v22.x/api/tty.html) `stream`.\n     * @since v0.7.7\n     * @param callback Invoked once the operation completes.\n     * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n     */\n    export function moveCursor(stream: NodeJS.WritableStream, dx: number, dy: number, callback?: () => void): boolean;\n}\ndeclare module \"node:readline\" {\n    export * from \"readline\";\n}\n",
    "node_modules/@types/node/repl.d.ts": "/**\n * The `node:repl` module provides a Read-Eval-Print-Loop (REPL) implementation\n * that is available both as a standalone program or includible in other\n * applications. It can be accessed using:\n *\n * ```js\n * import repl from 'node:repl';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/repl.js)\n */\ndeclare module \"repl\" {\n    import { AsyncCompleter, Completer, Interface } from \"node:readline\";\n    import { Context } from \"node:vm\";\n    import { InspectOptions } from \"node:util\";\n    interface ReplOptions {\n        /**\n         * The input prompt to display.\n         * @default \"> \"\n         */\n        prompt?: string | undefined;\n        /**\n         * The `Readable` stream from which REPL input will be read.\n         * @default process.stdin\n         */\n        input?: NodeJS.ReadableStream | undefined;\n        /**\n         * The `Writable` stream to which REPL output will be written.\n         * @default process.stdout\n         */\n        output?: NodeJS.WritableStream | undefined;\n        /**\n         * If `true`, specifies that the output should be treated as a TTY terminal, and have\n         * ANSI/VT100 escape codes written to it.\n         * Default: checking the value of the `isTTY` property on the output stream upon\n         * instantiation.\n         */\n        terminal?: boolean | undefined;\n        /**\n         * The function to be used when evaluating each given line of input.\n         * Default: an async wrapper for the JavaScript `eval()` function. An `eval` function can\n         * error with `repl.Recoverable` to indicate the input was incomplete and prompt for\n         * additional lines.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_default_evaluation\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_custom_evaluation_functions\n         */\n        eval?: REPLEval | undefined;\n        /**\n         * Defines if the repl prints output previews or not.\n         * @default `true` Always `false` in case `terminal` is falsy.\n         */\n        preview?: boolean | undefined;\n        /**\n         * If `true`, specifies that the default `writer` function should include ANSI color\n         * styling to REPL output. If a custom `writer` function is provided then this has no\n         * effect.\n         * @default the REPL instance's `terminal` value\n         */\n        useColors?: boolean | undefined;\n        /**\n         * If `true`, specifies that the default evaluation function will use the JavaScript\n         * `global` as the context as opposed to creating a new separate context for the REPL\n         * instance. The node CLI REPL sets this value to `true`.\n         * @default false\n         */\n        useGlobal?: boolean | undefined;\n        /**\n         * If `true`, specifies that the default writer will not output the return value of a\n         * command if it evaluates to `undefined`.\n         * @default false\n         */\n        ignoreUndefined?: boolean | undefined;\n        /**\n         * The function to invoke to format the output of each command before writing to `output`.\n         * @default a wrapper for `util.inspect`\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_customizing_repl_output\n         */\n        writer?: REPLWriter | undefined;\n        /**\n         * An optional function used for custom Tab auto completion.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/readline.html#readline_use_of_the_completer_function\n         */\n        completer?: Completer | AsyncCompleter | undefined;\n        /**\n         * A flag that specifies whether the default evaluator executes all JavaScript commands in\n         * strict mode or default (sloppy) mode.\n         * Accepted values are:\n         * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode.\n         * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to\n         *   prefacing every repl statement with `'use strict'`.\n         */\n        replMode?: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT | undefined;\n        /**\n         * Stop evaluating the current piece of code when `SIGINT` is received, i.e. `Ctrl+C` is\n         * pressed. This cannot be used together with a custom `eval` function.\n         * @default false\n         */\n        breakEvalOnSigint?: boolean | undefined;\n    }\n    type REPLEval = (\n        this: REPLServer,\n        evalCmd: string,\n        context: Context,\n        file: string,\n        cb: (err: Error | null, result: any) => void,\n    ) => void;\n    type REPLWriter = (this: REPLServer, obj: any) => string;\n    /**\n     * This is the default \"writer\" value, if none is passed in the REPL options,\n     * and it can be overridden by custom print functions.\n     */\n    const writer: REPLWriter & {\n        options: InspectOptions;\n    };\n    type REPLCommandAction = (this: REPLServer, text: string) => void;\n    interface REPLCommand {\n        /**\n         * Help text to be displayed when `.help` is entered.\n         */\n        help?: string | undefined;\n        /**\n         * The function to execute, optionally accepting a single string argument.\n         */\n        action: REPLCommandAction;\n    }\n    /**\n     * Instances of `repl.REPLServer` are created using the {@link start} method\n     * or directly using the JavaScript `new` keyword.\n     *\n     * ```js\n     * import repl from 'node:repl';\n     *\n     * const options = { useColors: true };\n     *\n     * const firstInstance = repl.start(options);\n     * const secondInstance = new repl.REPLServer(options);\n     * ```\n     * @since v0.1.91\n     */\n    class REPLServer extends Interface {\n        /**\n         * The `vm.Context` provided to the `eval` function to be used for JavaScript\n         * evaluation.\n         */\n        readonly context: Context;\n        /**\n         * @deprecated since v14.3.0 - Use `input` instead.\n         */\n        readonly inputStream: NodeJS.ReadableStream;\n        /**\n         * @deprecated since v14.3.0 - Use `output` instead.\n         */\n        readonly outputStream: NodeJS.WritableStream;\n        /**\n         * The `Readable` stream from which REPL input will be read.\n         */\n        readonly input: NodeJS.ReadableStream;\n        /**\n         * The `Writable` stream to which REPL output will be written.\n         */\n        readonly output: NodeJS.WritableStream;\n        /**\n         * The commands registered via `replServer.defineCommand()`.\n         */\n        readonly commands: NodeJS.ReadOnlyDict<REPLCommand>;\n        /**\n         * A value indicating whether the REPL is currently in \"editor mode\".\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_commands_and_special_keys\n         */\n        readonly editorMode: boolean;\n        /**\n         * A value indicating whether the `_` variable has been assigned.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable\n         */\n        readonly underscoreAssigned: boolean;\n        /**\n         * The last evaluation result from the REPL (assigned to the `_` variable inside of the REPL).\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable\n         */\n        readonly last: any;\n        /**\n         * A value indicating whether the `_error` variable has been assigned.\n         *\n         * @since v9.8.0\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable\n         */\n        readonly underscoreErrAssigned: boolean;\n        /**\n         * The last error raised inside the REPL (assigned to the `_error` variable inside of the REPL).\n         *\n         * @since v9.8.0\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable\n         */\n        readonly lastError: any;\n        /**\n         * Specified in the REPL options, this is the function to be used when evaluating each\n         * given line of input. If not specified in the REPL options, this is an async wrapper\n         * for the JavaScript `eval()` function.\n         */\n        readonly eval: REPLEval;\n        /**\n         * Specified in the REPL options, this is a value indicating whether the default\n         * `writer` function should include ANSI color styling to REPL output.\n         */\n        readonly useColors: boolean;\n        /**\n         * Specified in the REPL options, this is a value indicating whether the default `eval`\n         * function will use the JavaScript `global` as the context as opposed to creating a new\n         * separate context for the REPL instance.\n         */\n        readonly useGlobal: boolean;\n        /**\n         * Specified in the REPL options, this is a value indicating whether the default `writer`\n         * function should output the result of a command if it evaluates to `undefined`.\n         */\n        readonly ignoreUndefined: boolean;\n        /**\n         * Specified in the REPL options, this is the function to invoke to format the output of\n         * each command before writing to `outputStream`. If not specified in the REPL options,\n         * this will be a wrapper for `util.inspect`.\n         */\n        readonly writer: REPLWriter;\n        /**\n         * Specified in the REPL options, this is the function to use for custom Tab auto-completion.\n         */\n        readonly completer: Completer | AsyncCompleter;\n        /**\n         * Specified in the REPL options, this is a flag that specifies whether the default `eval`\n         * function should execute all JavaScript commands in strict mode or default (sloppy) mode.\n         * Possible values are:\n         * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode.\n         * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to\n         *    prefacing every repl statement with `'use strict'`.\n         */\n        readonly replMode: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT;\n        /**\n         * NOTE: According to the documentation:\n         *\n         * > Instances of `repl.REPLServer` are created using the `repl.start()` method and\n         * > _should not_ be created directly using the JavaScript `new` keyword.\n         *\n         * `REPLServer` cannot be subclassed due to implementation specifics in NodeJS.\n         *\n         * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_class_replserver\n         */\n        private constructor();\n        /**\n         * The `replServer.defineCommand()` method is used to add new `.`\\-prefixed commands\n         * to the REPL instance. Such commands are invoked by typing a `.` followed by the `keyword`. The `cmd` is either a `Function` or an `Object` with the following\n         * properties:\n         *\n         * The following example shows two new commands added to the REPL instance:\n         *\n         * ```js\n         * import repl from 'node:repl';\n         *\n         * const replServer = repl.start({ prompt: '> ' });\n         * replServer.defineCommand('sayhello', {\n         *   help: 'Say hello',\n         *   action(name) {\n         *     this.clearBufferedCommand();\n         *     console.log(`Hello, ${name}!`);\n         *     this.displayPrompt();\n         *   },\n         * });\n         * replServer.defineCommand('saybye', function saybye() {\n         *   console.log('Goodbye!');\n         *   this.close();\n         * });\n         * ```\n         *\n         * The new commands can then be used from within the REPL instance:\n         *\n         * ```console\n         * > .sayhello Node.js User\n         * Hello, Node.js User!\n         * > .saybye\n         * Goodbye!\n         * ```\n         * @since v0.3.0\n         * @param keyword The command keyword (_without_ a leading `.` character).\n         * @param cmd The function to invoke when the command is processed.\n         */\n        defineCommand(keyword: string, cmd: REPLCommandAction | REPLCommand): void;\n        /**\n         * The `replServer.displayPrompt()` method readies the REPL instance for input\n         * from the user, printing the configured `prompt` to a new line in the `output` and resuming the `input` to accept new input.\n         *\n         * When multi-line input is being entered, an ellipsis is printed rather than the\n         * 'prompt'.\n         *\n         * When `preserveCursor` is `true`, the cursor placement will not be reset to `0`.\n         *\n         * The `replServer.displayPrompt` method is primarily intended to be called from\n         * within the action function for commands registered using the `replServer.defineCommand()` method.\n         * @since v0.1.91\n         */\n        displayPrompt(preserveCursor?: boolean): void;\n        /**\n         * The `replServer.clearBufferedCommand()` method clears any command that has been\n         * buffered but not yet executed. This method is primarily intended to be\n         * called from within the action function for commands registered using the `replServer.defineCommand()` method.\n         * @since v9.0.0\n         */\n        clearBufferedCommand(): void;\n        /**\n         * Initializes a history log file for the REPL instance. When executing the\n         * Node.js binary and using the command-line REPL, a history file is initialized\n         * by default. However, this is not the case when creating a REPL\n         * programmatically. Use this method to initialize a history log file when working\n         * with REPL instances programmatically.\n         * @since v11.10.0\n         * @param historyPath the path to the history file\n         * @param callback called when history writes are ready or upon error\n         */\n        setupHistory(path: string, callback: (err: Error | null, repl: this) => void): void;\n        /**\n         * events.EventEmitter\n         * 1. close - inherited from `readline.Interface`\n         * 2. line - inherited from `readline.Interface`\n         * 3. pause - inherited from `readline.Interface`\n         * 4. resume - inherited from `readline.Interface`\n         * 5. SIGCONT - inherited from `readline.Interface`\n         * 6. SIGINT - inherited from `readline.Interface`\n         * 7. SIGTSTP - inherited from `readline.Interface`\n         * 8. exit\n         * 9. reset\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"line\", listener: (input: string) => void): this;\n        addListener(event: \"pause\", listener: () => void): this;\n        addListener(event: \"resume\", listener: () => void): this;\n        addListener(event: \"SIGCONT\", listener: () => void): this;\n        addListener(event: \"SIGINT\", listener: () => void): this;\n        addListener(event: \"SIGTSTP\", listener: () => void): this;\n        addListener(event: \"exit\", listener: () => void): this;\n        addListener(event: \"reset\", listener: (context: Context) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"close\"): boolean;\n        emit(event: \"line\", input: string): boolean;\n        emit(event: \"pause\"): boolean;\n        emit(event: \"resume\"): boolean;\n        emit(event: \"SIGCONT\"): boolean;\n        emit(event: \"SIGINT\"): boolean;\n        emit(event: \"SIGTSTP\"): boolean;\n        emit(event: \"exit\"): boolean;\n        emit(event: \"reset\", context: Context): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"line\", listener: (input: string) => void): this;\n        on(event: \"pause\", listener: () => void): this;\n        on(event: \"resume\", listener: () => void): this;\n        on(event: \"SIGCONT\", listener: () => void): this;\n        on(event: \"SIGINT\", listener: () => void): this;\n        on(event: \"SIGTSTP\", listener: () => void): this;\n        on(event: \"exit\", listener: () => void): this;\n        on(event: \"reset\", listener: (context: Context) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"line\", listener: (input: string) => void): this;\n        once(event: \"pause\", listener: () => void): this;\n        once(event: \"resume\", listener: () => void): this;\n        once(event: \"SIGCONT\", listener: () => void): this;\n        once(event: \"SIGINT\", listener: () => void): this;\n        once(event: \"SIGTSTP\", listener: () => void): this;\n        once(event: \"exit\", listener: () => void): this;\n        once(event: \"reset\", listener: (context: Context) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"line\", listener: (input: string) => void): this;\n        prependListener(event: \"pause\", listener: () => void): this;\n        prependListener(event: \"resume\", listener: () => void): this;\n        prependListener(event: \"SIGCONT\", listener: () => void): this;\n        prependListener(event: \"SIGINT\", listener: () => void): this;\n        prependListener(event: \"SIGTSTP\", listener: () => void): this;\n        prependListener(event: \"exit\", listener: () => void): this;\n        prependListener(event: \"reset\", listener: (context: Context) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"line\", listener: (input: string) => void): this;\n        prependOnceListener(event: \"pause\", listener: () => void): this;\n        prependOnceListener(event: \"resume\", listener: () => void): this;\n        prependOnceListener(event: \"SIGCONT\", listener: () => void): this;\n        prependOnceListener(event: \"SIGINT\", listener: () => void): this;\n        prependOnceListener(event: \"SIGTSTP\", listener: () => void): this;\n        prependOnceListener(event: \"exit\", listener: () => void): this;\n        prependOnceListener(event: \"reset\", listener: (context: Context) => void): this;\n    }\n    /**\n     * A flag passed in the REPL options. Evaluates expressions in sloppy mode.\n     */\n    const REPL_MODE_SLOPPY: unique symbol;\n    /**\n     * A flag passed in the REPL options. Evaluates expressions in strict mode.\n     * This is equivalent to prefacing every repl statement with `'use strict'`.\n     */\n    const REPL_MODE_STRICT: unique symbol;\n    /**\n     * The `repl.start()` method creates and starts a {@link REPLServer} instance.\n     *\n     * If `options` is a string, then it specifies the input prompt:\n     *\n     * ```js\n     * import repl from 'node:repl';\n     *\n     * // a Unix style prompt\n     * repl.start('$ ');\n     * ```\n     * @since v0.1.91\n     */\n    function start(options?: string | ReplOptions): REPLServer;\n    /**\n     * Indicates a recoverable error that a `REPLServer` can use to support multi-line input.\n     *\n     * @see https://nodejs.org/dist/latest-v22.x/docs/api/repl.html#repl_recoverable_errors\n     */\n    class Recoverable extends SyntaxError {\n        err: Error;\n        constructor(err: Error);\n    }\n}\ndeclare module \"node:repl\" {\n    export * from \"repl\";\n}\n",
    "node_modules/@types/node/sea.d.ts": "/**\n * This feature allows the distribution of a Node.js application conveniently to a\n * system that does not have Node.js installed.\n *\n * Node.js supports the creation of [single executable applications](https://github.com/nodejs/single-executable) by allowing\n * the injection of a blob prepared by Node.js, which can contain a bundled script,\n * into the `node` binary. During start up, the program checks if anything has been\n * injected. If the blob is found, it executes the script in the blob. Otherwise\n * Node.js operates as it normally does.\n *\n * The single executable application feature currently only supports running a\n * single embedded script using the `CommonJS` module system.\n *\n * Users can create a single executable application from their bundled script\n * with the `node` binary itself and any tool which can inject resources into the\n * binary.\n *\n * Here are the steps for creating a single executable application using one such\n * tool, [postject](https://github.com/nodejs/postject):\n *\n * 1. Create a JavaScript file:\n * ```bash\n * echo 'console.log(`Hello, ${process.argv[2]}!`);' > hello.js\n * ```\n * 2. Create a configuration file building a blob that can be injected into the\n * single executable application (see `Generating single executable preparation blobs` for details):\n * ```bash\n * echo '{ \"main\": \"hello.js\", \"output\": \"sea-prep.blob\" }' > sea-config.json\n * ```\n * 3. Generate the blob to be injected:\n * ```bash\n * node --experimental-sea-config sea-config.json\n * ```\n * 4. Create a copy of the `node` executable and name it according to your needs:\n *    * On systems other than Windows:\n * ```bash\n * cp $(command -v node) hello\n * ```\n *    * On Windows:\n * ```text\n * node -e \"require('fs').copyFileSync(process.execPath, 'hello.exe')\"\n * ```\n * The `.exe` extension is necessary.\n * 5. Remove the signature of the binary (macOS and Windows only):\n *    * On macOS:\n * ```bash\n * codesign --remove-signature hello\n * ```\n *    * On Windows (optional):\n * [signtool](https://learn.microsoft.com/en-us/windows/win32/seccrypto/signtool) can be used from the installed [Windows SDK](https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/).\n * If this step is\n * skipped, ignore any signature-related warning from postject.\n * ```powershell\n * signtool remove /s hello.exe\n * ```\n * 6. Inject the blob into the copied binary by running `postject` with\n * the following options:\n *    * `hello` / `hello.exe` \\- The name of the copy of the `node` executable\n *    created in step 4.\n *    * `NODE_SEA_BLOB` \\- The name of the resource / note / section in the binary\n *    where the contents of the blob will be stored.\n *    * `sea-prep.blob` \\- The name of the blob created in step 1.\n *    * `--sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2` \\- The [fuse](https://www.electronjs.org/docs/latest/tutorial/fuses) used by the Node.js project to detect if a file has been\n * injected.\n *    * `--macho-segment-name NODE_SEA` (only needed on macOS) - The name of the\n *    segment in the binary where the contents of the blob will be\n *    stored.\n * To summarize, here is the required command for each platform:\n *    * On Linux:\n *    ```bash\n *    npx postject hello NODE_SEA_BLOB sea-prep.blob \\\n *        --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n *    ```\n *    * On Windows - PowerShell:\n *    ```powershell\n *    npx postject hello.exe NODE_SEA_BLOB sea-prep.blob `\n *        --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n *    ```\n *    * On Windows - Command Prompt:\n *    ```text\n *    npx postject hello.exe NODE_SEA_BLOB sea-prep.blob ^\n *        --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2\n *    ```\n *    * On macOS:\n *    ```bash\n *    npx postject hello NODE_SEA_BLOB sea-prep.blob \\\n *        --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 \\\n *        --macho-segment-name NODE_SEA\n *    ```\n * 7. Sign the binary (macOS and Windows only):\n *    * On macOS:\n * ```bash\n * codesign --sign - hello\n * ```\n *    * On Windows (optional):\n * A certificate needs to be present for this to work. However, the unsigned\n * binary would still be runnable.\n * ```powershell\n * signtool sign /fd SHA256 hello.exe\n * ```\n * 8. Run the binary:\n *    * On systems other than Windows\n * ```console\n * $ ./hello world\n * Hello, world!\n * ```\n *    * On Windows\n * ```console\n * $ .\\hello.exe world\n * Hello, world!\n * ```\n * @since v19.7.0, v18.16.0\n * @experimental\n * @see [source](https://github.com/nodejs/node/blob/v22.x/src/node_sea.cc)\n */\ndeclare module \"node:sea\" {\n    type AssetKey = string;\n    /**\n     * @since v20.12.0\n     * @return Whether this script is running inside a single-executable application.\n     */\n    function isSea(): boolean;\n    /**\n     * This method can be used to retrieve the assets configured to be bundled into the\n     * single-executable application at build time.\n     * An error is thrown when no matching asset can be found.\n     * @since v20.12.0\n     */\n    function getAsset(key: AssetKey): ArrayBuffer;\n    function getAsset(key: AssetKey, encoding: string): string;\n    /**\n     * Similar to `sea.getAsset()`, but returns the result in a [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob).\n     * An error is thrown when no matching asset can be found.\n     * @since v20.12.0\n     */\n    function getAssetAsBlob(key: AssetKey, options?: {\n        type: string;\n    }): Blob;\n    /**\n     * This method can be used to retrieve the assets configured to be bundled into the\n     * single-executable application at build time.\n     * An error is thrown when no matching asset can be found.\n     *\n     * Unlike `sea.getRawAsset()` or `sea.getAssetAsBlob()`, this method does not\n     * return a copy. Instead, it returns the raw asset bundled inside the executable.\n     *\n     * For now, users should avoid writing to the returned array buffer. If the\n     * injected section is not marked as writable or not aligned properly,\n     * writes to the returned array buffer is likely to result in a crash.\n     * @since v20.12.0\n     */\n    function getRawAsset(key: AssetKey): ArrayBuffer;\n}\n",
    "node_modules/@types/node/sqlite.d.ts": "/**\n * The `node:sqlite` module facilitates working with SQLite databases.\n * To access it:\n *\n * ```js\n * import sqlite from 'node:sqlite';\n * ```\n *\n * This module is only available under the `node:` scheme. The following will not\n * work:\n *\n * ```js\n * import sqlite from 'sqlite';\n * ```\n *\n * The following example shows the basic usage of the `node:sqlite` module to open\n * an in-memory database, write data to the database, and then read the data back.\n *\n * ```js\n * import { DatabaseSync } from 'node:sqlite';\n * const database = new DatabaseSync(':memory:');\n *\n * // Execute SQL statements from strings.\n * database.exec(`\n *   CREATE TABLE data(\n *     key INTEGER PRIMARY KEY,\n *     value TEXT\n *   ) STRICT\n * `);\n * // Create a prepared statement to insert data into the database.\n * const insert = database.prepare('INSERT INTO data (key, value) VALUES (?, ?)');\n * // Execute the prepared statement with bound values.\n * insert.run(1, 'hello');\n * insert.run(2, 'world');\n * // Create a prepared statement to read data from the database.\n * const query = database.prepare('SELECT * FROM data ORDER BY key');\n * // Execute the prepared statement and log the result set.\n * console.log(query.all());\n * // Prints: [ { key: 1, value: 'hello' }, { key: 2, value: 'world' } ]\n * ```\n * @since v22.5.0\n * @experimental\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/sqlite.js)\n */\ndeclare module \"node:sqlite\" {\n    type SQLInputValue = null | number | bigint | string | NodeJS.ArrayBufferView;\n    type SQLOutputValue = null | number | bigint | string | Uint8Array;\n    /** @deprecated Use `SQLInputValue` or `SQLOutputValue` instead. */\n    type SupportedValueType = SQLOutputValue;\n    interface DatabaseSyncOptions {\n        /**\n         * If `true`, the database is opened by the constructor. When\n         * this value is `false`, the database must be opened via the `open()` method.\n         * @since v22.5.0\n         * @default true\n         */\n        open?: boolean | undefined;\n        /**\n         * If `true`, foreign key constraints\n         * are enabled. This is recommended but can be disabled for compatibility with\n         * legacy database schemas. The enforcement of foreign key constraints can be\n         * enabled and disabled after opening the database using\n         * [`PRAGMA foreign_keys`](https://www.sqlite.org/pragma.html#pragma_foreign_keys).\n         * @since v22.10.0\n         * @default true\n         */\n        enableForeignKeyConstraints?: boolean | undefined;\n        /**\n         * If `true`, SQLite will accept\n         * [double-quoted string literals](https://www.sqlite.org/quirks.html#dblquote).\n         * This is not recommended but can be\n         * enabled for compatibility with legacy database schemas.\n         * @since v22.10.0\n         * @default false\n         */\n        enableDoubleQuotedStringLiterals?: boolean | undefined;\n        /**\n         * If `true`, the database is opened in read-only mode.\n         * If the database does not exist, opening it will fail.\n         * @since v22.12.0\n         * @default false\n         */\n        readOnly?: boolean | undefined;\n        /**\n         * If `true`, the `loadExtension` SQL function\n         * and the `loadExtension()` method are enabled.\n         * You can call `enableLoadExtension(false)` later to disable this feature.\n         * @since v22.13.0\n         * @default false\n         */\n        allowExtension?: boolean | undefined;\n    }\n    interface CreateSessionOptions {\n        /**\n         * A specific table to track changes for. By default, changes to all tables are tracked.\n         * @since v22.12.0\n         */\n        table?: string | undefined;\n        /**\n         * Name of the database to track. This is useful when multiple databases have been added using\n         * [`ATTACH DATABASE`](https://www.sqlite.org/lang_attach.html).\n         * @since v22.12.0\n         * @default 'main'\n         */\n        db?: string | undefined;\n    }\n    interface ApplyChangesetOptions {\n        /**\n         * Skip changes that, when targeted table name is supplied to this function, return a truthy value.\n         * By default, all changes are attempted.\n         * @since v22.12.0\n         */\n        filter?: ((tableName: string) => boolean) | undefined;\n        /**\n         * A function that determines how to handle conflicts. The function receives one argument,\n         * which can be one of the following values:\n         *\n         * * `SQLITE_CHANGESET_DATA`: A `DELETE` or `UPDATE` change does not contain the expected \"before\" values.\n         * * `SQLITE_CHANGESET_NOTFOUND`: A row matching the primary key of the `DELETE` or `UPDATE` change does not exist.\n         * * `SQLITE_CHANGESET_CONFLICT`: An `INSERT` change results in a duplicate primary key.\n         * * `SQLITE_CHANGESET_FOREIGN_KEY`: Applying a change would result in a foreign key violation.\n         * * `SQLITE_CHANGESET_CONSTRAINT`: Applying a change results in a `UNIQUE`, `CHECK`, or `NOT NULL` constraint\n         * violation.\n         *\n         * The function should return one of the following values:\n         *\n         * * `SQLITE_CHANGESET_OMIT`: Omit conflicting changes.\n         * * `SQLITE_CHANGESET_REPLACE`: Replace existing values with conflicting changes (only valid with\n             `SQLITE_CHANGESET_DATA` or `SQLITE_CHANGESET_CONFLICT` conflicts).\n         * * `SQLITE_CHANGESET_ABORT`: Abort on conflict and roll back the database.\n         *\n         * When an error is thrown in the conflict handler or when any other value is returned from the handler,\n         * applying the changeset is aborted and the database is rolled back.\n         *\n         * **Default**: A function that returns `SQLITE_CHANGESET_ABORT`.\n         * @since v22.12.0\n         */\n        onConflict?: ((conflictType: number) => number) | undefined;\n    }\n    interface FunctionOptions {\n        /**\n         * If `true`, the [`SQLITE_DETERMINISTIC`](https://www.sqlite.org/c3ref/c_deterministic.html) flag is\n         * set on the created function.\n         * @default false\n         */\n        deterministic?: boolean | undefined;\n        /**\n         * If `true`, the [`SQLITE_DIRECTONLY`](https://www.sqlite.org/c3ref/c_directonly.html) flag is set on\n         * the created function.\n         * @default false\n         */\n        directOnly?: boolean | undefined;\n        /**\n         * If `true`, integer arguments to `function`\n         * are converted to `BigInt`s. If `false`, integer arguments are passed as\n         * JavaScript numbers.\n         * @default false\n         */\n        useBigIntArguments?: boolean | undefined;\n        /**\n         * If `true`, `function` may be invoked with any number of\n         * arguments (between zero and\n         * [`SQLITE_MAX_FUNCTION_ARG`](https://www.sqlite.org/limits.html#max_function_arg)). If `false`,\n         * `function` must be invoked with exactly `function.length` arguments.\n         * @default false\n         */\n        varargs?: boolean | undefined;\n    }\n    /**\n     * This class represents a single [connection](https://www.sqlite.org/c3ref/sqlite3.html) to a SQLite database. All APIs\n     * exposed by this class execute synchronously.\n     * @since v22.5.0\n     */\n    class DatabaseSync implements Disposable {\n        /**\n         * Constructs a new `DatabaseSync` instance.\n         * @param path The path of the database.\n         * A SQLite database can be stored in a file or completely [in memory](https://www.sqlite.org/inmemorydb.html).\n         * To use a file-backed database, the path should be a file path.\n         * To use an in-memory database, the path should be the special name `':memory:'`.\n         * @param options Configuration options for the database connection.\n         */\n        constructor(path: string | Buffer | URL, options?: DatabaseSyncOptions);\n        /**\n         * Closes the database connection. An exception is thrown if the database is not\n         * open. This method is a wrapper around [`sqlite3_close_v2()`](https://www.sqlite.org/c3ref/close.html).\n         * @since v22.5.0\n         */\n        close(): void;\n        /**\n         * Loads a shared library into the database connection. This method is a wrapper\n         * around [`sqlite3_load_extension()`](https://www.sqlite.org/c3ref/load_extension.html). It is required to enable the\n         * `allowExtension` option when constructing the `DatabaseSync` instance.\n         * @since v22.13.0\n         * @param path The path to the shared library to load.\n         */\n        loadExtension(path: string): void;\n        /**\n         * Enables or disables the `loadExtension` SQL function, and the `loadExtension()`\n         * method. When `allowExtension` is `false` when constructing, you cannot enable\n         * loading extensions for security reasons.\n         * @since v22.13.0\n         * @param allow Whether to allow loading extensions.\n         */\n        enableLoadExtension(allow: boolean): void;\n        /**\n         * This method allows one or more SQL statements to be executed without returning\n         * any results. This method is useful when executing SQL statements read from a\n         * file. This method is a wrapper around [`sqlite3_exec()`](https://www.sqlite.org/c3ref/exec.html).\n         * @since v22.5.0\n         * @param sql A SQL string to execute.\n         */\n        exec(sql: string): void;\n        /**\n         * This method is used to create SQLite user-defined functions. This method is a\n         * wrapper around [`sqlite3_create_function_v2()`](https://www.sqlite.org/c3ref/create_function.html).\n         * @since v22.13.0\n         * @param name The name of the SQLite function to create.\n         * @param options Optional configuration settings for the function.\n         * @param func The JavaScript function to call when the SQLite\n         * function is invoked. The return value of this function should be a valid\n         * SQLite data type: see\n         * [Type conversion between JavaScript and SQLite](https://nodejs.org/docs/latest-v22.x/api/sqlite.html#type-conversion-between-javascript-and-sqlite).\n         * The result defaults to `NULL` if the return value is `undefined`.\n         */\n        function(\n            name: string,\n            options: FunctionOptions,\n            func: (...args: SQLOutputValue[]) => SQLInputValue,\n        ): void;\n        function(name: string, func: (...args: SQLOutputValue[]) => SQLInputValue): void;\n        /**\n         * Whether the database is currently open or not.\n         * @since v22.15.0\n         */\n        readonly isOpen: boolean;\n        /**\n         * Opens the database specified in the `path` argument of the `DatabaseSync`constructor. This method should only be used when the database is not opened via\n         * the constructor. An exception is thrown if the database is already open.\n         * @since v22.5.0\n         */\n        open(): void;\n        /**\n         * Compiles a SQL statement into a [prepared statement](https://www.sqlite.org/c3ref/stmt.html). This method is a wrapper\n         * around [`sqlite3_prepare_v2()`](https://www.sqlite.org/c3ref/prepare.html).\n         * @since v22.5.0\n         * @param sql A SQL string to compile to a prepared statement.\n         * @return The prepared statement.\n         */\n        prepare(sql: string): StatementSync;\n        /**\n         * Creates and attaches a session to the database. This method is a wrapper around\n         * [`sqlite3session_create()`](https://www.sqlite.org/session/sqlite3session_create.html) and\n         * [`sqlite3session_attach()`](https://www.sqlite.org/session/sqlite3session_attach.html).\n         * @param options The configuration options for the session.\n         * @returns A session handle.\n         * @since v22.12.0\n         */\n        createSession(options?: CreateSessionOptions): Session;\n        /**\n         * An exception is thrown if the database is not\n         * open. This method is a wrapper around\n         * [`sqlite3changeset_apply()`](https://www.sqlite.org/session/sqlite3changeset_apply.html).\n         *\n         * ```js\n         * const sourceDb = new DatabaseSync(':memory:');\n         * const targetDb = new DatabaseSync(':memory:');\n         *\n         * sourceDb.exec('CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)');\n         * targetDb.exec('CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)');\n         *\n         * const session = sourceDb.createSession();\n         *\n         * const insert = sourceDb.prepare('INSERT INTO data (key, value) VALUES (?, ?)');\n         * insert.run(1, 'hello');\n         * insert.run(2, 'world');\n         *\n         * const changeset = session.changeset();\n         * targetDb.applyChangeset(changeset);\n         * // Now that the changeset has been applied, targetDb contains the same data as sourceDb.\n         * ```\n         * @param changeset A binary changeset or patchset.\n         * @param options The configuration options for how the changes will be applied.\n         * @returns Whether the changeset was applied successfully without being aborted.\n         * @since v22.12.0\n         */\n        applyChangeset(changeset: Uint8Array, options?: ApplyChangesetOptions): boolean;\n        /**\n         * Closes the database connection. If the database connection is already closed\n         * then this is a no-op.\n         * @since v22.15.0\n         * @experimental\n         */\n        [Symbol.dispose](): void;\n    }\n    /**\n     * @since v22.12.0\n     */\n    interface Session {\n        /**\n         * Retrieves a changeset containing all changes since the changeset was created. Can be called multiple times.\n         * An exception is thrown if the database or the session is not open. This method is a wrapper around\n         * [`sqlite3session_changeset()`](https://www.sqlite.org/session/sqlite3session_changeset.html).\n         * @returns Binary changeset that can be applied to other databases.\n         * @since v22.12.0\n         */\n        changeset(): Uint8Array;\n        /**\n         * Similar to the method above, but generates a more compact patchset. See\n         * [Changesets and Patchsets](https://www.sqlite.org/sessionintro.html#changesets_and_patchsets)\n         * in the documentation of SQLite. An exception is thrown if the database or the session is not open. This method is a\n         * wrapper around\n         * [`sqlite3session_patchset()`](https://www.sqlite.org/session/sqlite3session_patchset.html).\n         * @returns Binary patchset that can be applied to other databases.\n         * @since v22.12.0\n         */\n        patchset(): Uint8Array;\n        /**\n         * Closes the session. An exception is thrown if the database or the session is not open. This method is a\n         * wrapper around\n         * [`sqlite3session_delete()`](https://www.sqlite.org/session/sqlite3session_delete.html).\n         */\n        close(): void;\n    }\n    interface StatementResultingChanges {\n        /**\n         * The number of rows modified, inserted, or deleted by the most recently completed `INSERT`, `UPDATE`, or `DELETE` statement.\n         * This field is either a number or a `BigInt` depending on the prepared statement's configuration.\n         * This property is the result of [`sqlite3_changes64()`](https://www.sqlite.org/c3ref/changes.html).\n         */\n        changes: number | bigint;\n        /**\n         * The most recently inserted rowid.\n         * This field is either a number or a `BigInt` depending on the prepared statement's configuration.\n         * This property is the result of [`sqlite3_last_insert_rowid()`](https://www.sqlite.org/c3ref/last_insert_rowid.html).\n         */\n        lastInsertRowid: number | bigint;\n    }\n    /**\n     * This class represents a single [prepared statement](https://www.sqlite.org/c3ref/stmt.html). This class cannot be\n     * instantiated via its constructor. Instead, instances are created via the`database.prepare()` method. All APIs exposed by this class execute\n     * synchronously.\n     *\n     * A prepared statement is an efficient binary representation of the SQL used to\n     * create it. Prepared statements are parameterizable, and can be invoked multiple\n     * times with different bound values. Parameters also offer protection against [SQL injection](https://en.wikipedia.org/wiki/SQL_injection) attacks. For these reasons, prepared statements are\n     * preferred\n     * over hand-crafted SQL strings when handling user input.\n     * @since v22.5.0\n     */\n    class StatementSync {\n        private constructor();\n        /**\n         * This method executes a prepared statement and returns all results as an array of\n         * objects. If the prepared statement does not return any results, this method\n         * returns an empty array. The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_blob.html) using\n         * the values in `namedParameters` and `anonymousParameters`.\n         * @since v22.5.0\n         * @param namedParameters An optional object used to bind named parameters. The keys of this object are used to configure the mapping.\n         * @param anonymousParameters Zero or more values to bind to anonymous parameters.\n         * @return An array of objects. Each object corresponds to a row returned by executing the prepared statement. The keys and values of each object correspond to the column names and values of\n         * the row.\n         */\n        all(...anonymousParameters: SQLInputValue[]): Record<string, SQLOutputValue>[];\n        all(\n            namedParameters: Record<string, SQLInputValue>,\n            ...anonymousParameters: SQLInputValue[]\n        ): Record<string, SQLOutputValue>[];\n        /**\n         * The source SQL text of the prepared statement with parameter\n         * placeholders replaced by the values that were used during the most recent\n         * execution of this prepared statement. This property is a wrapper around\n         * [`sqlite3_expanded_sql()`](https://www.sqlite.org/c3ref/expanded_sql.html).\n         * @since v22.5.0\n         */\n        readonly expandedSQL: string;\n        /**\n         * This method executes a prepared statement and returns the first result as an\n         * object. If the prepared statement does not return any results, this method\n         * returns `undefined`. The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_blob.html) using the\n         * values in `namedParameters` and `anonymousParameters`.\n         * @since v22.5.0\n         * @param namedParameters An optional object used to bind named parameters. The keys of this object are used to configure the mapping.\n         * @param anonymousParameters Zero or more values to bind to anonymous parameters.\n         * @return An object corresponding to the first row returned by executing the prepared statement. The keys and values of the object correspond to the column names and values of the row. If no\n         * rows were returned from the database then this method returns `undefined`.\n         */\n        get(...anonymousParameters: SQLInputValue[]): Record<string, SQLOutputValue> | undefined;\n        get(\n            namedParameters: Record<string, SQLInputValue>,\n            ...anonymousParameters: SQLInputValue[]\n        ): Record<string, SQLOutputValue> | undefined;\n        /**\n         * This method executes a prepared statement and returns an iterator of\n         * objects. If the prepared statement does not return any results, this method\n         * returns an empty iterator. The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_blob.html) using\n         * the values in `namedParameters` and `anonymousParameters`.\n         * @since v22.13.0\n         * @param namedParameters An optional object used to bind named parameters.\n         * The keys of this object are used to configure the mapping.\n         * @param anonymousParameters Zero or more values to bind to anonymous parameters.\n         * @returns An iterable iterator of objects. Each object corresponds to a row\n         * returned by executing the prepared statement. The keys and values of each\n         * object correspond to the column names and values of the row.\n         */\n        iterate(...anonymousParameters: SQLInputValue[]): NodeJS.Iterator<Record<string, SQLOutputValue>>;\n        iterate(\n            namedParameters: Record<string, SQLInputValue>,\n            ...anonymousParameters: SQLInputValue[]\n        ): NodeJS.Iterator<Record<string, SQLOutputValue>>;\n        /**\n         * This method executes a prepared statement and returns an object summarizing the\n         * resulting changes. The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_blob.html) using the\n         * values in `namedParameters` and `anonymousParameters`.\n         * @since v22.5.0\n         * @param namedParameters An optional object used to bind named parameters. The keys of this object are used to configure the mapping.\n         * @param anonymousParameters Zero or more values to bind to anonymous parameters.\n         */\n        run(...anonymousParameters: SQLInputValue[]): StatementResultingChanges;\n        run(\n            namedParameters: Record<string, SQLInputValue>,\n            ...anonymousParameters: SQLInputValue[]\n        ): StatementResultingChanges;\n        /**\n         * The names of SQLite parameters begin with a prefix character. By default,`node:sqlite` requires that this prefix character is present when binding\n         * parameters. However, with the exception of dollar sign character, these\n         * prefix characters also require extra quoting when used in object keys.\n         *\n         * To improve ergonomics, this method can be used to also allow bare named\n         * parameters, which do not require the prefix character in JavaScript code. There\n         * are several caveats to be aware of when enabling bare named parameters:\n         *\n         * * The prefix character is still required in SQL.\n         * * The prefix character is still allowed in JavaScript. In fact, prefixed names\n         * will have slightly better binding performance.\n         * * Using ambiguous named parameters, such as `$k` and `@k`, in the same prepared\n         * statement will result in an exception as it cannot be determined how to bind\n         * a bare name.\n         * @since v22.5.0\n         * @param enabled Enables or disables support for binding named parameters without the prefix character.\n         */\n        setAllowBareNamedParameters(enabled: boolean): void;\n        /**\n         * By default, if an unknown name is encountered while binding parameters, an\n         * exception is thrown. This method allows unknown named parameters to be ignored.\n         * @since v22.15.0\n         * @param enabled Enables or disables support for unknown named parameters.\n         */\n        setAllowUnknownNamedParameters(enabled: boolean): void;\n        /**\n         * When reading from the database, SQLite `INTEGER`s are mapped to JavaScript\n         * numbers by default. However, SQLite `INTEGER`s can store values larger than\n         * JavaScript numbers are capable of representing. In such cases, this method can\n         * be used to read `INTEGER` data using JavaScript `BigInt`s. This method has no\n         * impact on database write operations where numbers and `BigInt`s are both\n         * supported at all times.\n         * @since v22.5.0\n         * @param enabled Enables or disables the use of `BigInt`s when reading `INTEGER` fields from the database.\n         */\n        setReadBigInts(enabled: boolean): void;\n        /**\n         * The source SQL text of the prepared statement. This property is a\n         * wrapper around [`sqlite3_sql()`](https://www.sqlite.org/c3ref/expanded_sql.html).\n         * @since v22.5.0\n         */\n        readonly sourceSQL: string;\n    }\n    /**\n     * @since v22.13.0\n     */\n    namespace constants {\n        /**\n         * The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is present in the database, but one or more other (non primary-key) fields modified by the update do not contain the expected \"before\" values.\n         * @since v22.14.0\n         */\n        const SQLITE_CHANGESET_DATA: number;\n        /**\n         * The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is not present in the database.\n         * @since v22.14.0\n         */\n        const SQLITE_CHANGESET_NOTFOUND: number;\n        /**\n         * This constant is passed to the conflict handler while processing an INSERT change if the operation would result in duplicate primary key values.\n         * @since v22.14.0\n         */\n        const SQLITE_CHANGESET_CONFLICT: number;\n        /**\n         * If foreign key handling is enabled, and applying a changeset leaves the database in a state containing foreign key violations, the conflict handler is invoked with this constant exactly once before the changeset is committed. If the conflict handler returns `SQLITE_CHANGESET_OMIT`, the changes, including those that caused the foreign key constraint violation, are committed. Or, if it returns `SQLITE_CHANGESET_ABORT`, the changeset is rolled back.\n         * @since v22.14.0\n         */\n        const SQLITE_CHANGESET_FOREIGN_KEY: number;\n        /**\n         * Conflicting changes are omitted.\n         * @since v22.12.0\n         */\n        const SQLITE_CHANGESET_OMIT: number;\n        /**\n         * Conflicting changes replace existing values. Note that this value can only be returned when the type of conflict is either `SQLITE_CHANGESET_DATA` or `SQLITE_CHANGESET_CONFLICT`.\n         * @since v22.12.0\n         */\n        const SQLITE_CHANGESET_REPLACE: number;\n        /**\n         * Abort when a change encounters a conflict and roll back database.\n         * @since v22.12.0\n         */\n        const SQLITE_CHANGESET_ABORT: number;\n    }\n}\n",
    "node_modules/@types/node/stream/consumers.d.ts": "/**\n * The utility consumer functions provide common options for consuming\n * streams.\n * @since v16.7.0\n */\ndeclare module \"stream/consumers\" {\n    import { Blob as NodeBlob } from \"node:buffer\";\n    import { ReadableStream as WebReadableStream } from \"node:stream/web\";\n    /**\n     * @since v16.7.0\n     * @returns Fulfills with an `ArrayBuffer` containing the full contents of the stream.\n     */\n    function arrayBuffer(stream: WebReadableStream | NodeJS.ReadableStream | AsyncIterable<any>): Promise<ArrayBuffer>;\n    /**\n     * @since v16.7.0\n     * @returns Fulfills with a `Blob` containing the full contents of the stream.\n     */\n    function blob(stream: WebReadableStream | NodeJS.ReadableStream | AsyncIterable<any>): Promise<NodeBlob>;\n    /**\n     * @since v16.7.0\n     * @returns Fulfills with a `Buffer` containing the full contents of the stream.\n     */\n    function buffer(stream: WebReadableStream | NodeJS.ReadableStream | AsyncIterable<any>): Promise<Buffer>;\n    /**\n     * @since v16.7.0\n     * @returns Fulfills with the contents of the stream parsed as a\n     * UTF-8 encoded string that is then passed through `JSON.parse()`.\n     */\n    function json(stream: WebReadableStream | NodeJS.ReadableStream | AsyncIterable<any>): Promise<unknown>;\n    /**\n     * @since v16.7.0\n     * @returns Fulfills with the contents of the stream parsed as a UTF-8 encoded string.\n     */\n    function text(stream: WebReadableStream | NodeJS.ReadableStream | AsyncIterable<any>): Promise<string>;\n}\ndeclare module \"node:stream/consumers\" {\n    export * from \"stream/consumers\";\n}\n",
    "node_modules/@types/node/stream/promises.d.ts": "declare module \"stream/promises\" {\n    import {\n        FinishedOptions as _FinishedOptions,\n        PipelineDestination,\n        PipelineOptions,\n        PipelinePromise,\n        PipelineSource,\n        PipelineTransform,\n    } from \"node:stream\";\n    interface FinishedOptions extends _FinishedOptions {\n        /**\n         * If true, removes the listeners registered by this function before the promise is fulfilled.\n         * @default false\n         */\n        cleanup?: boolean | undefined;\n    }\n    function finished(\n        stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream,\n        options?: FinishedOptions,\n    ): Promise<void>;\n    function pipeline<A extends PipelineSource<any>, B extends PipelineDestination<A, any>>(\n        source: A,\n        destination: B,\n        options?: PipelineOptions,\n    ): PipelinePromise<B>;\n    function pipeline<\n        A extends PipelineSource<any>,\n        T1 extends PipelineTransform<A, any>,\n        B extends PipelineDestination<T1, any>,\n    >(\n        source: A,\n        transform1: T1,\n        destination: B,\n        options?: PipelineOptions,\n    ): PipelinePromise<B>;\n    function pipeline<\n        A extends PipelineSource<any>,\n        T1 extends PipelineTransform<A, any>,\n        T2 extends PipelineTransform<T1, any>,\n        B extends PipelineDestination<T2, any>,\n    >(\n        source: A,\n        transform1: T1,\n        transform2: T2,\n        destination: B,\n        options?: PipelineOptions,\n    ): PipelinePromise<B>;\n    function pipeline<\n        A extends PipelineSource<any>,\n        T1 extends PipelineTransform<A, any>,\n        T2 extends PipelineTransform<T1, any>,\n        T3 extends PipelineTransform<T2, any>,\n        B extends PipelineDestination<T3, any>,\n    >(\n        source: A,\n        transform1: T1,\n        transform2: T2,\n        transform3: T3,\n        destination: B,\n        options?: PipelineOptions,\n    ): PipelinePromise<B>;\n    function pipeline<\n        A extends PipelineSource<any>,\n        T1 extends PipelineTransform<A, any>,\n        T2 extends PipelineTransform<T1, any>,\n        T3 extends PipelineTransform<T2, any>,\n        T4 extends PipelineTransform<T3, any>,\n        B extends PipelineDestination<T4, any>,\n    >(\n        source: A,\n        transform1: T1,\n        transform2: T2,\n        transform3: T3,\n        transform4: T4,\n        destination: B,\n        options?: PipelineOptions,\n    ): PipelinePromise<B>;\n    function pipeline(\n        streams: ReadonlyArray<NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream>,\n        options?: PipelineOptions,\n    ): Promise<void>;\n    function pipeline(\n        stream1: NodeJS.ReadableStream,\n        stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream,\n        ...streams: Array<NodeJS.ReadWriteStream | NodeJS.WritableStream | PipelineOptions>\n    ): Promise<void>;\n}\ndeclare module \"node:stream/promises\" {\n    export * from \"stream/promises\";\n}\n",
    "node_modules/@types/node/stream/web.d.ts": "type _ByteLengthQueuingStrategy = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ByteLengthQueuingStrategy;\ntype _CompressionStream = typeof globalThis extends { onmessage: any; ReportingObserver: any } ? {}\n    : import(\"stream/web\").CompressionStream;\ntype _CountQueuingStrategy = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").CountQueuingStrategy;\ntype _DecompressionStream = typeof globalThis extends { onmessage: any; ReportingObserver: any } ? {}\n    : import(\"stream/web\").DecompressionStream;\ntype _ReadableByteStreamController = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableByteStreamController;\ntype _ReadableStream<R = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableStream<R>;\ntype _ReadableStreamBYOBReader = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableStreamBYOBReader;\ntype _ReadableStreamBYOBRequest = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableStreamBYOBRequest;\ntype _ReadableStreamDefaultController<R = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableStreamDefaultController<R>;\ntype _ReadableStreamDefaultReader<R = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").ReadableStreamDefaultReader<R>;\ntype _TextDecoderStream = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").TextDecoderStream;\ntype _TextEncoderStream = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").TextEncoderStream;\ntype _TransformStream<I = any, O = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").TransformStream<I, O>;\ntype _TransformStreamDefaultController<O = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").TransformStreamDefaultController<O>;\ntype _WritableStream<W = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").WritableStream<W>;\ntype _WritableStreamDefaultController = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").WritableStreamDefaultController;\ntype _WritableStreamDefaultWriter<W = any> = typeof globalThis extends { onmessage: any } ? {}\n    : import(\"stream/web\").WritableStreamDefaultWriter<W>;\n\ndeclare module \"stream/web\" {\n    // stub module, pending copy&paste from .d.ts or manual impl\n    // copy from lib.dom.d.ts\n    interface ReadableWritablePair<R = any, W = any> {\n        readable: ReadableStream<R>;\n        /**\n         * Provides a convenient, chainable way of piping this readable stream\n         * through a transform stream (or any other { writable, readable }\n         * pair). It simply pipes the stream into the writable side of the\n         * supplied pair, and returns the readable side for further use.\n         *\n         * Piping a stream will lock it for the duration of the pipe, preventing\n         * any other consumer from acquiring a reader.\n         */\n        writable: WritableStream<W>;\n    }\n    interface StreamPipeOptions {\n        preventAbort?: boolean;\n        preventCancel?: boolean;\n        /**\n         * Pipes this readable stream to a given writable stream destination.\n         * The way in which the piping process behaves under various error\n         * conditions can be customized with a number of passed options. It\n         * returns a promise that fulfills when the piping process completes\n         * successfully, or rejects if any errors were encountered.\n         *\n         * Piping a stream will lock it for the duration of the pipe, preventing\n         * any other consumer from acquiring a reader.\n         *\n         * Errors and closures of the source and destination streams propagate\n         * as follows:\n         *\n         * An error in this source readable stream will abort destination,\n         * unless preventAbort is truthy. The returned promise will be rejected\n         * with the source's error, or with any error that occurs during\n         * aborting the destination.\n         *\n         * An error in destination will cancel this source readable stream,\n         * unless preventCancel is truthy. The returned promise will be rejected\n         * with the destination's error, or with any error that occurs during\n         * canceling the source.\n         *\n         * When this source readable stream closes, destination will be closed,\n         * unless preventClose is truthy. The returned promise will be fulfilled\n         * once this process completes, unless an error is encountered while\n         * closing the destination, in which case it will be rejected with that\n         * error.\n         *\n         * If destination starts out closed or closing, this source readable\n         * stream will be canceled, unless preventCancel is true. The returned\n         * promise will be rejected with an error indicating piping to a closed\n         * stream failed, or with any error that occurs during canceling the\n         * source.\n         *\n         * The signal option can be set to an AbortSignal to allow aborting an\n         * ongoing pipe operation via the corresponding AbortController. In this\n         * case, this source readable stream will be canceled, and destination\n         * aborted, unless the respective options preventCancel or preventAbort\n         * are set.\n         */\n        preventClose?: boolean;\n        signal?: AbortSignal;\n    }\n    interface ReadableStreamGenericReader {\n        readonly closed: Promise<void>;\n        cancel(reason?: any): Promise<void>;\n    }\n    type ReadableStreamController<T> = ReadableStreamDefaultController<T>;\n    interface ReadableStreamReadValueResult<T> {\n        done: false;\n        value: T;\n    }\n    interface ReadableStreamReadDoneResult<T> {\n        done: true;\n        value?: T;\n    }\n    type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;\n    interface ReadableByteStreamControllerCallback {\n        (controller: ReadableByteStreamController): void | PromiseLike<void>;\n    }\n    interface UnderlyingSinkAbortCallback {\n        (reason?: any): void | PromiseLike<void>;\n    }\n    interface UnderlyingSinkCloseCallback {\n        (): void | PromiseLike<void>;\n    }\n    interface UnderlyingSinkStartCallback {\n        (controller: WritableStreamDefaultController): any;\n    }\n    interface UnderlyingSinkWriteCallback<W> {\n        (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike<void>;\n    }\n    interface UnderlyingSourceCancelCallback {\n        (reason?: any): void | PromiseLike<void>;\n    }\n    interface UnderlyingSourcePullCallback<R> {\n        (controller: ReadableStreamController<R>): void | PromiseLike<void>;\n    }\n    interface UnderlyingSourceStartCallback<R> {\n        (controller: ReadableStreamController<R>): any;\n    }\n    interface TransformerFlushCallback<O> {\n        (controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n    }\n    interface TransformerStartCallback<O> {\n        (controller: TransformStreamDefaultController<O>): any;\n    }\n    interface TransformerTransformCallback<I, O> {\n        (chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n    }\n    interface UnderlyingByteSource {\n        autoAllocateChunkSize?: number;\n        cancel?: ReadableStreamErrorCallback;\n        pull?: ReadableByteStreamControllerCallback;\n        start?: ReadableByteStreamControllerCallback;\n        type: \"bytes\";\n    }\n    interface UnderlyingSource<R = any> {\n        cancel?: UnderlyingSourceCancelCallback;\n        pull?: UnderlyingSourcePullCallback<R>;\n        start?: UnderlyingSourceStartCallback<R>;\n        type?: undefined;\n    }\n    interface UnderlyingSink<W = any> {\n        abort?: UnderlyingSinkAbortCallback;\n        close?: UnderlyingSinkCloseCallback;\n        start?: UnderlyingSinkStartCallback;\n        type?: undefined;\n        write?: UnderlyingSinkWriteCallback<W>;\n    }\n    interface ReadableStreamErrorCallback {\n        (reason: any): void | PromiseLike<void>;\n    }\n    interface ReadableStreamAsyncIterator<T> extends NodeJS.AsyncIterator<T, NodeJS.BuiltinIteratorReturn, unknown> {\n        [Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;\n    }\n    /** This Streams API interface represents a readable stream of byte data. */\n    interface ReadableStream<R = any> {\n        readonly locked: boolean;\n        cancel(reason?: any): Promise<void>;\n        getReader(options: { mode: \"byob\" }): ReadableStreamBYOBReader;\n        getReader(): ReadableStreamDefaultReader<R>;\n        getReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReader<R>;\n        pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>;\n        pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;\n        tee(): [ReadableStream<R>, ReadableStream<R>];\n        values(options?: { preventCancel?: boolean }): ReadableStreamAsyncIterator<R>;\n        [Symbol.asyncIterator](): ReadableStreamAsyncIterator<R>;\n    }\n    const ReadableStream: {\n        prototype: ReadableStream;\n        from<T>(iterable: Iterable<T> | AsyncIterable<T>): ReadableStream<T>;\n        new(underlyingSource: UnderlyingByteSource, strategy?: QueuingStrategy<Uint8Array>): ReadableStream<Uint8Array>;\n        new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;\n    };\n    type ReadableStreamReaderMode = \"byob\";\n    interface ReadableStreamGetReaderOptions {\n        /**\n         * Creates a ReadableStreamBYOBReader and locks the stream to the new reader.\n         *\n         * This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle \"bring your own buffer\" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation.\n         */\n        mode?: ReadableStreamReaderMode;\n    }\n    type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;\n    interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {\n        read(): Promise<ReadableStreamReadResult<R>>;\n        releaseLock(): void;\n    }\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader) */\n    interface ReadableStreamBYOBReader extends ReadableStreamGenericReader {\n        /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read) */\n        read<T extends ArrayBufferView>(\n            view: T,\n            options?: {\n                min?: number;\n            },\n        ): Promise<ReadableStreamReadResult<T>>;\n        /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/releaseLock) */\n        releaseLock(): void;\n    }\n    const ReadableStreamDefaultReader: {\n        prototype: ReadableStreamDefaultReader;\n        new<R = any>(stream: ReadableStream<R>): ReadableStreamDefaultReader<R>;\n    };\n    const ReadableStreamBYOBReader: {\n        prototype: ReadableStreamBYOBReader;\n        new(stream: ReadableStream): ReadableStreamBYOBReader;\n    };\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) */\n    interface ReadableStreamBYOBRequest {\n        /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view) */\n        readonly view: ArrayBufferView | null;\n        /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respond) */\n        respond(bytesWritten: number): void;\n        /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respondWithNewView) */\n        respondWithNewView(view: ArrayBufferView): void;\n    }\n    const ReadableStreamBYOBRequest: {\n        prototype: ReadableStreamBYOBRequest;\n        new(): ReadableStreamBYOBRequest;\n    };\n    interface ReadableByteStreamController {\n        readonly byobRequest: undefined;\n        readonly desiredSize: number | null;\n        close(): void;\n        enqueue(chunk: ArrayBufferView): void;\n        error(error?: any): void;\n    }\n    const ReadableByteStreamController: {\n        prototype: ReadableByteStreamController;\n        new(): ReadableByteStreamController;\n    };\n    interface ReadableStreamDefaultController<R = any> {\n        readonly desiredSize: number | null;\n        close(): void;\n        enqueue(chunk?: R): void;\n        error(e?: any): void;\n    }\n    const ReadableStreamDefaultController: {\n        prototype: ReadableStreamDefaultController;\n        new(): ReadableStreamDefaultController;\n    };\n    interface Transformer<I = any, O = any> {\n        flush?: TransformerFlushCallback<O>;\n        readableType?: undefined;\n        start?: TransformerStartCallback<O>;\n        transform?: TransformerTransformCallback<I, O>;\n        writableType?: undefined;\n    }\n    interface TransformStream<I = any, O = any> {\n        readonly readable: ReadableStream<O>;\n        readonly writable: WritableStream<I>;\n    }\n    const TransformStream: {\n        prototype: TransformStream;\n        new<I = any, O = any>(\n            transformer?: Transformer<I, O>,\n            writableStrategy?: QueuingStrategy<I>,\n            readableStrategy?: QueuingStrategy<O>,\n        ): TransformStream<I, O>;\n    };\n    interface TransformStreamDefaultController<O = any> {\n        readonly desiredSize: number | null;\n        enqueue(chunk?: O): void;\n        error(reason?: any): void;\n        terminate(): void;\n    }\n    const TransformStreamDefaultController: {\n        prototype: TransformStreamDefaultController;\n        new(): TransformStreamDefaultController;\n    };\n    /**\n     * This Streams API interface provides a standard abstraction for writing\n     * streaming data to a destination, known as a sink. This object comes with\n     * built-in back pressure and queuing.\n     */\n    interface WritableStream<W = any> {\n        readonly locked: boolean;\n        abort(reason?: any): Promise<void>;\n        close(): Promise<void>;\n        getWriter(): WritableStreamDefaultWriter<W>;\n    }\n    const WritableStream: {\n        prototype: WritableStream;\n        new<W = any>(underlyingSink?: UnderlyingSink<W>, strategy?: QueuingStrategy<W>): WritableStream<W>;\n    };\n    /**\n     * This Streams API interface is the object returned by\n     * WritableStream.getWriter() and once created locks the < writer to the\n     * WritableStream ensuring that no other streams can write to the underlying\n     * sink.\n     */\n    interface WritableStreamDefaultWriter<W = any> {\n        readonly closed: Promise<void>;\n        readonly desiredSize: number | null;\n        readonly ready: Promise<void>;\n        abort(reason?: any): Promise<void>;\n        close(): Promise<void>;\n        releaseLock(): void;\n        write(chunk?: W): Promise<void>;\n    }\n    const WritableStreamDefaultWriter: {\n        prototype: WritableStreamDefaultWriter;\n        new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;\n    };\n    /**\n     * This Streams API interface represents a controller allowing control of a\n     * WritableStream's state. When constructing a WritableStream, the\n     * underlying sink is given a corresponding WritableStreamDefaultController\n     * instance to manipulate.\n     */\n    interface WritableStreamDefaultController {\n        error(e?: any): void;\n    }\n    const WritableStreamDefaultController: {\n        prototype: WritableStreamDefaultController;\n        new(): WritableStreamDefaultController;\n    };\n    interface QueuingStrategy<T = any> {\n        highWaterMark?: number;\n        size?: QueuingStrategySize<T>;\n    }\n    interface QueuingStrategySize<T = any> {\n        (chunk?: T): number;\n    }\n    interface QueuingStrategyInit {\n        /**\n         * Creates a new ByteLengthQueuingStrategy with the provided high water\n         * mark.\n         *\n         * Note that the provided high water mark will not be validated ahead of\n         * time. Instead, if it is negative, NaN, or not a number, the resulting\n         * ByteLengthQueuingStrategy will cause the corresponding stream\n         * constructor to throw.\n         */\n        highWaterMark: number;\n    }\n    /**\n     * This Streams API interface provides a built-in byte length queuing\n     * strategy that can be used when constructing streams.\n     */\n    interface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {\n        readonly highWaterMark: number;\n        readonly size: QueuingStrategySize<ArrayBufferView>;\n    }\n    const ByteLengthQueuingStrategy: {\n        prototype: ByteLengthQueuingStrategy;\n        new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;\n    };\n    /**\n     * This Streams API interface provides a built-in byte length queuing\n     * strategy that can be used when constructing streams.\n     */\n    interface CountQueuingStrategy extends QueuingStrategy {\n        readonly highWaterMark: number;\n        readonly size: QueuingStrategySize;\n    }\n    const CountQueuingStrategy: {\n        prototype: CountQueuingStrategy;\n        new(init: QueuingStrategyInit): CountQueuingStrategy;\n    };\n    interface TextEncoderStream {\n        /** Returns \"utf-8\". */\n        readonly encoding: \"utf-8\";\n        readonly readable: ReadableStream<Uint8Array>;\n        readonly writable: WritableStream<string>;\n        readonly [Symbol.toStringTag]: string;\n    }\n    const TextEncoderStream: {\n        prototype: TextEncoderStream;\n        new(): TextEncoderStream;\n    };\n    interface TextDecoderOptions {\n        fatal?: boolean;\n        ignoreBOM?: boolean;\n    }\n    type BufferSource = ArrayBufferView | ArrayBuffer;\n    interface TextDecoderStream {\n        /** Returns encoding's name, lower cased. */\n        readonly encoding: string;\n        /** Returns `true` if error mode is \"fatal\", and `false` otherwise. */\n        readonly fatal: boolean;\n        /** Returns `true` if ignore BOM flag is set, and `false` otherwise. */\n        readonly ignoreBOM: boolean;\n        readonly readable: ReadableStream<string>;\n        readonly writable: WritableStream<BufferSource>;\n        readonly [Symbol.toStringTag]: string;\n    }\n    const TextDecoderStream: {\n        prototype: TextDecoderStream;\n        new(encoding?: string, options?: TextDecoderOptions): TextDecoderStream;\n    };\n    interface CompressionStream {\n        readonly readable: ReadableStream;\n        readonly writable: WritableStream;\n    }\n    const CompressionStream: {\n        prototype: CompressionStream;\n        new(format: \"deflate\" | \"deflate-raw\" | \"gzip\"): CompressionStream;\n    };\n    interface DecompressionStream {\n        readonly writable: WritableStream;\n        readonly readable: ReadableStream;\n    }\n    const DecompressionStream: {\n        prototype: DecompressionStream;\n        new(format: \"deflate\" | \"deflate-raw\" | \"gzip\"): DecompressionStream;\n    };\n\n    global {\n        interface ByteLengthQueuingStrategy extends _ByteLengthQueuingStrategy {}\n        /**\n         * `ByteLengthQueuingStrategy` class is a global reference for `import { ByteLengthQueuingStrategy } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-bytelengthqueuingstrategy\n         * @since v18.0.0\n         */\n        var ByteLengthQueuingStrategy: typeof globalThis extends { onmessage: any; ByteLengthQueuingStrategy: infer T }\n            ? T\n            : typeof import(\"stream/web\").ByteLengthQueuingStrategy;\n\n        interface CompressionStream extends _CompressionStream {}\n        /**\n         * `CompressionStream` class is a global reference for `import { CompressionStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-compressionstream\n         * @since v18.0.0\n         */\n        var CompressionStream: typeof globalThis extends {\n            onmessage: any;\n            // CompressionStream, DecompressionStream and ReportingObserver was introduced in the same commit.\n            // If ReportingObserver check is removed, the type here will form a circular reference in TS5.0+lib.dom.d.ts\n            ReportingObserver: any;\n            CompressionStream: infer T;\n        } ? T\n            // TS 4.8, 4.9, 5.0\n            : typeof globalThis extends { onmessage: any; TransformStream: { prototype: infer T } } ? {\n                    prototype: T;\n                    new(format: \"deflate\" | \"deflate-raw\" | \"gzip\"): T;\n                }\n            : typeof import(\"stream/web\").CompressionStream;\n\n        interface CountQueuingStrategy extends _CountQueuingStrategy {}\n        /**\n         * `CountQueuingStrategy` class is a global reference for `import { CountQueuingStrategy } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-countqueuingstrategy\n         * @since v18.0.0\n         */\n        var CountQueuingStrategy: typeof globalThis extends { onmessage: any; CountQueuingStrategy: infer T } ? T\n            : typeof import(\"stream/web\").CountQueuingStrategy;\n\n        interface DecompressionStream extends _DecompressionStream {}\n        /**\n         * `DecompressionStream` class is a global reference for `import { DecompressionStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-decompressionstream\n         * @since v18.0.0\n         */\n        var DecompressionStream: typeof globalThis extends {\n            onmessage: any;\n            // CompressionStream, DecompressionStream and ReportingObserver was introduced in the same commit.\n            // If ReportingObserver check is removed, the type here will form a circular reference in TS5.0+lib.dom.d.ts\n            ReportingObserver: any;\n            DecompressionStream: infer T extends object;\n        } ? T\n            // TS 4.8, 4.9, 5.0\n            : typeof globalThis extends { onmessage: any; TransformStream: { prototype: infer T } } ? {\n                    prototype: T;\n                    new(format: \"deflate\" | \"deflate-raw\" | \"gzip\"): T;\n                }\n            : typeof import(\"stream/web\").DecompressionStream;\n\n        interface ReadableByteStreamController extends _ReadableByteStreamController {}\n        /**\n         * `ReadableByteStreamController` class is a global reference for `import { ReadableByteStreamController } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablebytestreamcontroller\n         * @since v18.0.0\n         */\n        var ReadableByteStreamController: typeof globalThis extends\n            { onmessage: any; ReadableByteStreamController: infer T } ? T\n            : typeof import(\"stream/web\").ReadableByteStreamController;\n\n        interface ReadableStream<R = any> extends _ReadableStream<R> {}\n        /**\n         * `ReadableStream` class is a global reference for `import { ReadableStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablestream\n         * @since v18.0.0\n         */\n        var ReadableStream: typeof globalThis extends { onmessage: any; ReadableStream: infer T } ? T\n            : typeof import(\"stream/web\").ReadableStream;\n\n        interface ReadableStreamBYOBReader extends _ReadableStreamBYOBReader {}\n        /**\n         * `ReadableStreamBYOBReader` class is a global reference for `import { ReadableStreamBYOBReader } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablestreambyobreader\n         * @since v18.0.0\n         */\n        var ReadableStreamBYOBReader: typeof globalThis extends { onmessage: any; ReadableStreamBYOBReader: infer T }\n            ? T\n            : typeof import(\"stream/web\").ReadableStreamBYOBReader;\n\n        interface ReadableStreamBYOBRequest extends _ReadableStreamBYOBRequest {}\n        /**\n         * `ReadableStreamBYOBRequest` class is a global reference for `import { ReadableStreamBYOBRequest } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablestreambyobrequest\n         * @since v18.0.0\n         */\n        var ReadableStreamBYOBRequest: typeof globalThis extends { onmessage: any; ReadableStreamBYOBRequest: infer T }\n            ? T\n            : typeof import(\"stream/web\").ReadableStreamBYOBRequest;\n\n        interface ReadableStreamDefaultController<R = any> extends _ReadableStreamDefaultController<R> {}\n        /**\n         * `ReadableStreamDefaultController` class is a global reference for `import { ReadableStreamDefaultController } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablestreamdefaultcontroller\n         * @since v18.0.0\n         */\n        var ReadableStreamDefaultController: typeof globalThis extends\n            { onmessage: any; ReadableStreamDefaultController: infer T } ? T\n            : typeof import(\"stream/web\").ReadableStreamDefaultController;\n\n        interface ReadableStreamDefaultReader<R = any> extends _ReadableStreamDefaultReader<R> {}\n        /**\n         * `ReadableStreamDefaultReader` class is a global reference for `import { ReadableStreamDefaultReader } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-readablestreamdefaultreader\n         * @since v18.0.0\n         */\n        var ReadableStreamDefaultReader: typeof globalThis extends\n            { onmessage: any; ReadableStreamDefaultReader: infer T } ? T\n            : typeof import(\"stream/web\").ReadableStreamDefaultReader;\n\n        interface TextDecoderStream extends _TextDecoderStream {}\n        /**\n         * `TextDecoderStream` class is a global reference for `import { TextDecoderStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-textdecoderstream\n         * @since v18.0.0\n         */\n        var TextDecoderStream: typeof globalThis extends { onmessage: any; TextDecoderStream: infer T } ? T\n            : typeof import(\"stream/web\").TextDecoderStream;\n\n        interface TextEncoderStream extends _TextEncoderStream {}\n        /**\n         * `TextEncoderStream` class is a global reference for `import { TextEncoderStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-textencoderstream\n         * @since v18.0.0\n         */\n        var TextEncoderStream: typeof globalThis extends { onmessage: any; TextEncoderStream: infer T } ? T\n            : typeof import(\"stream/web\").TextEncoderStream;\n\n        interface TransformStream<I = any, O = any> extends _TransformStream<I, O> {}\n        /**\n         * `TransformStream` class is a global reference for `import { TransformStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-transformstream\n         * @since v18.0.0\n         */\n        var TransformStream: typeof globalThis extends { onmessage: any; TransformStream: infer T } ? T\n            : typeof import(\"stream/web\").TransformStream;\n\n        interface TransformStreamDefaultController<O = any> extends _TransformStreamDefaultController<O> {}\n        /**\n         * `TransformStreamDefaultController` class is a global reference for `import { TransformStreamDefaultController } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-transformstreamdefaultcontroller\n         * @since v18.0.0\n         */\n        var TransformStreamDefaultController: typeof globalThis extends\n            { onmessage: any; TransformStreamDefaultController: infer T } ? T\n            : typeof import(\"stream/web\").TransformStreamDefaultController;\n\n        interface WritableStream<W = any> extends _WritableStream<W> {}\n        /**\n         * `WritableStream` class is a global reference for `import { WritableStream } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-writablestream\n         * @since v18.0.0\n         */\n        var WritableStream: typeof globalThis extends { onmessage: any; WritableStream: infer T } ? T\n            : typeof import(\"stream/web\").WritableStream;\n\n        interface WritableStreamDefaultController extends _WritableStreamDefaultController {}\n        /**\n         * `WritableStreamDefaultController` class is a global reference for `import { WritableStreamDefaultController } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-writablestreamdefaultcontroller\n         * @since v18.0.0\n         */\n        var WritableStreamDefaultController: typeof globalThis extends\n            { onmessage: any; WritableStreamDefaultController: infer T } ? T\n            : typeof import(\"stream/web\").WritableStreamDefaultController;\n\n        interface WritableStreamDefaultWriter<W = any> extends _WritableStreamDefaultWriter<W> {}\n        /**\n         * `WritableStreamDefaultWriter` class is a global reference for `import { WritableStreamDefaultWriter } from 'node:stream/web'`.\n         * https://nodejs.org/api/globals.html#class-writablestreamdefaultwriter\n         * @since v18.0.0\n         */\n        var WritableStreamDefaultWriter: typeof globalThis extends\n            { onmessage: any; WritableStreamDefaultWriter: infer T } ? T\n            : typeof import(\"stream/web\").WritableStreamDefaultWriter;\n    }\n}\ndeclare module \"node:stream/web\" {\n    export * from \"stream/web\";\n}\n",
    "node_modules/@types/node/stream.d.ts": "/**\n * A stream is an abstract interface for working with streaming data in Node.js.\n * The `node:stream` module provides an API for implementing the stream interface.\n *\n * There are many stream objects provided by Node.js. For instance, a [request to an HTTP server](https://nodejs.org/docs/latest-v22.x/api/http.html#class-httpincomingmessage)\n * and [`process.stdout`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdout) are both stream instances.\n *\n * Streams can be readable, writable, or both. All streams are instances of [`EventEmitter`](https://nodejs.org/docs/latest-v22.x/api/events.html#class-eventemitter).\n *\n * To access the `node:stream` module:\n *\n * ```js\n * import stream from 'node:stream';\n * ```\n *\n * The `node:stream` module is useful for creating new types of stream instances.\n * It is usually not necessary to use the `node:stream` module to consume streams.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/stream.js)\n */\ndeclare module \"stream\" {\n    import { Abortable, EventEmitter } from \"node:events\";\n    import { Blob as NodeBlob } from \"node:buffer\";\n    import * as streamPromises from \"node:stream/promises\";\n    import * as streamWeb from \"node:stream/web\";\n\n    type ComposeFnParam = (source: any) => void;\n\n    class Stream extends EventEmitter {\n        pipe<T extends NodeJS.WritableStream>(\n            destination: T,\n            options?: {\n                end?: boolean | undefined;\n            },\n        ): T;\n        compose<T extends NodeJS.ReadableStream>(\n            stream: T | ComposeFnParam | Iterable<T> | AsyncIterable<T>,\n            options?: { signal: AbortSignal },\n        ): T;\n    }\n    namespace Stream {\n        export { Stream, streamPromises as promises };\n    }\n    namespace Stream {\n        interface StreamOptions<T extends Stream> extends Abortable {\n            emitClose?: boolean | undefined;\n            highWaterMark?: number | undefined;\n            objectMode?: boolean | undefined;\n            construct?(this: T, callback: (error?: Error | null) => void): void;\n            destroy?(this: T, error: Error | null, callback: (error?: Error | null) => void): void;\n            autoDestroy?: boolean | undefined;\n        }\n        interface ReadableOptions<T extends Readable = Readable> extends StreamOptions<T> {\n            encoding?: BufferEncoding | undefined;\n            read?(this: T, size: number): void;\n        }\n        interface ArrayOptions {\n            /**\n             * The maximum concurrent invocations of `fn` to call on the stream at once.\n             * @default 1\n             */\n            concurrency?: number;\n            /** Allows destroying the stream if the signal is aborted. */\n            signal?: AbortSignal;\n        }\n        /**\n         * @since v0.9.4\n         */\n        class Readable extends Stream implements NodeJS.ReadableStream {\n            /**\n             * A utility method for creating Readable Streams out of iterators.\n             * @since v12.3.0, v10.17.0\n             * @param iterable Object implementing the `Symbol.asyncIterator` or `Symbol.iterator` iterable protocol. Emits an 'error' event if a null value is passed.\n             * @param options Options provided to `new stream.Readable([options])`. By default, `Readable.from()` will set `options.objectMode` to `true`, unless this is explicitly opted out by setting `options.objectMode` to `false`.\n             */\n            static from(iterable: Iterable<any> | AsyncIterable<any>, options?: ReadableOptions): Readable;\n            /**\n             * A utility method for creating a `Readable` from a web `ReadableStream`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static fromWeb(\n                readableStream: streamWeb.ReadableStream,\n                options?: Pick<ReadableOptions, \"encoding\" | \"highWaterMark\" | \"objectMode\" | \"signal\">,\n            ): Readable;\n            /**\n             * A utility method for creating a web `ReadableStream` from a `Readable`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static toWeb(\n                streamReadable: Readable,\n                options?: {\n                    strategy?: streamWeb.QueuingStrategy | undefined;\n                },\n            ): streamWeb.ReadableStream;\n            /**\n             * Returns whether the stream has been read from or cancelled.\n             * @since v16.8.0\n             */\n            static isDisturbed(stream: Readable | NodeJS.ReadableStream): boolean;\n            /**\n             * Returns whether the stream was destroyed or errored before emitting `'end'`.\n             * @since v16.8.0\n             * @experimental\n             */\n            readonly readableAborted: boolean;\n            /**\n             * Is `true` if it is safe to call {@link read}, which means\n             * the stream has not been destroyed or emitted `'error'` or `'end'`.\n             * @since v11.4.0\n             */\n            readable: boolean;\n            /**\n             * Returns whether `'data'` has been emitted.\n             * @since v16.7.0, v14.18.0\n             * @experimental\n             */\n            readonly readableDidRead: boolean;\n            /**\n             * Getter for the property `encoding` of a given `Readable` stream. The `encoding` property can be set using the {@link setEncoding} method.\n             * @since v12.7.0\n             */\n            readonly readableEncoding: BufferEncoding | null;\n            /**\n             * Becomes `true` when [`'end'`](https://nodejs.org/docs/latest-v22.x/api/stream.html#event-end) event is emitted.\n             * @since v12.9.0\n             */\n            readonly readableEnded: boolean;\n            /**\n             * This property reflects the current state of a `Readable` stream as described\n             * in the [Three states](https://nodejs.org/docs/latest-v22.x/api/stream.html#three-states) section.\n             * @since v9.4.0\n             */\n            readonly readableFlowing: boolean | null;\n            /**\n             * Returns the value of `highWaterMark` passed when creating this `Readable`.\n             * @since v9.3.0\n             */\n            readonly readableHighWaterMark: number;\n            /**\n             * This property contains the number of bytes (or objects) in the queue\n             * ready to be read. The value provides introspection data regarding\n             * the status of the `highWaterMark`.\n             * @since v9.4.0\n             */\n            readonly readableLength: number;\n            /**\n             * Getter for the property `objectMode` of a given `Readable` stream.\n             * @since v12.3.0\n             */\n            readonly readableObjectMode: boolean;\n            /**\n             * Is `true` after `readable.destroy()` has been called.\n             * @since v8.0.0\n             */\n            destroyed: boolean;\n            /**\n             * Is `true` after `'close'` has been emitted.\n             * @since v18.0.0\n             */\n            readonly closed: boolean;\n            /**\n             * Returns error if the stream has been destroyed with an error.\n             * @since v18.0.0\n             */\n            readonly errored: Error | null;\n            constructor(opts?: ReadableOptions);\n            _construct?(callback: (error?: Error | null) => void): void;\n            _read(size: number): void;\n            /**\n             * The `readable.read()` method reads data out of the internal buffer and\n             * returns it. If no data is available to be read, `null` is returned. By default,\n             * the data is returned as a `Buffer` object unless an encoding has been\n             * specified using the `readable.setEncoding()` method or the stream is operating\n             * in object mode.\n             *\n             * The optional `size` argument specifies a specific number of bytes to read. If\n             * `size` bytes are not available to be read, `null` will be returned _unless_ the\n             * stream has ended, in which case all of the data remaining in the internal buffer\n             * will be returned.\n             *\n             * If the `size` argument is not specified, all of the data contained in the\n             * internal buffer will be returned.\n             *\n             * The `size` argument must be less than or equal to 1 GiB.\n             *\n             * The `readable.read()` method should only be called on `Readable` streams\n             * operating in paused mode. In flowing mode, `readable.read()` is called\n             * automatically until the internal buffer is fully drained.\n             *\n             * ```js\n             * const readable = getReadableStreamSomehow();\n             *\n             * // 'readable' may be triggered multiple times as data is buffered in\n             * readable.on('readable', () => {\n             *   let chunk;\n             *   console.log('Stream is readable (new data received in buffer)');\n             *   // Use a loop to make sure we read all currently available data\n             *   while (null !== (chunk = readable.read())) {\n             *     console.log(`Read ${chunk.length} bytes of data...`);\n             *   }\n             * });\n             *\n             * // 'end' will be triggered once when there is no more data available\n             * readable.on('end', () => {\n             *   console.log('Reached end of stream.');\n             * });\n             * ```\n             *\n             * Each call to `readable.read()` returns a chunk of data, or `null`. The chunks\n             * are not concatenated. A `while` loop is necessary to consume all data\n             * currently in the buffer. When reading a large file `.read()` may return `null`,\n             * having consumed all buffered content so far, but there is still more data to\n             * come not yet buffered. In this case a new `'readable'` event will be emitted\n             * when there is more data in the buffer. Finally the `'end'` event will be\n             * emitted when there is no more data to come.\n             *\n             * Therefore to read a file's whole contents from a `readable`, it is necessary\n             * to collect chunks across multiple `'readable'` events:\n             *\n             * ```js\n             * const chunks = [];\n             *\n             * readable.on('readable', () => {\n             *   let chunk;\n             *   while (null !== (chunk = readable.read())) {\n             *     chunks.push(chunk);\n             *   }\n             * });\n             *\n             * readable.on('end', () => {\n             *   const content = chunks.join('');\n             * });\n             * ```\n             *\n             * A `Readable` stream in object mode will always return a single item from\n             * a call to `readable.read(size)`, regardless of the value of the `size` argument.\n             *\n             * If the `readable.read()` method returns a chunk of data, a `'data'` event will\n             * also be emitted.\n             *\n             * Calling {@link read} after the `'end'` event has\n             * been emitted will return `null`. No runtime error will be raised.\n             * @since v0.9.4\n             * @param size Optional argument to specify how much data to read.\n             */\n            read(size?: number): any;\n            /**\n             * The `readable.setEncoding()` method sets the character encoding for\n             * data read from the `Readable` stream.\n             *\n             * By default, no encoding is assigned and stream data will be returned as `Buffer` objects. Setting an encoding causes the stream data\n             * to be returned as strings of the specified encoding rather than as `Buffer` objects. For instance, calling `readable.setEncoding('utf8')` will cause the\n             * output data to be interpreted as UTF-8 data, and passed as strings. Calling `readable.setEncoding('hex')` will cause the data to be encoded in hexadecimal\n             * string format.\n             *\n             * The `Readable` stream will properly handle multi-byte characters delivered\n             * through the stream that would otherwise become improperly decoded if simply\n             * pulled from the stream as `Buffer` objects.\n             *\n             * ```js\n             * const readable = getReadableStreamSomehow();\n             * readable.setEncoding('utf8');\n             * readable.on('data', (chunk) => {\n             *   assert.equal(typeof chunk, 'string');\n             *   console.log('Got %d characters of string data:', chunk.length);\n             * });\n             * ```\n             * @since v0.9.4\n             * @param encoding The encoding to use.\n             */\n            setEncoding(encoding: BufferEncoding): this;\n            /**\n             * The `readable.pause()` method will cause a stream in flowing mode to stop\n             * emitting `'data'` events, switching out of flowing mode. Any data that\n             * becomes available will remain in the internal buffer.\n             *\n             * ```js\n             * const readable = getReadableStreamSomehow();\n             * readable.on('data', (chunk) => {\n             *   console.log(`Received ${chunk.length} bytes of data.`);\n             *   readable.pause();\n             *   console.log('There will be no additional data for 1 second.');\n             *   setTimeout(() => {\n             *     console.log('Now data will start flowing again.');\n             *     readable.resume();\n             *   }, 1000);\n             * });\n             * ```\n             *\n             * The `readable.pause()` method has no effect if there is a `'readable'` event listener.\n             * @since v0.9.4\n             */\n            pause(): this;\n            /**\n             * The `readable.resume()` method causes an explicitly paused `Readable` stream to\n             * resume emitting `'data'` events, switching the stream into flowing mode.\n             *\n             * The `readable.resume()` method can be used to fully consume the data from a\n             * stream without actually processing any of that data:\n             *\n             * ```js\n             * getReadableStreamSomehow()\n             *   .resume()\n             *   .on('end', () => {\n             *     console.log('Reached the end, but did not read anything.');\n             *   });\n             * ```\n             *\n             * The `readable.resume()` method has no effect if there is a `'readable'` event listener.\n             * @since v0.9.4\n             */\n            resume(): this;\n            /**\n             * The `readable.isPaused()` method returns the current operating state of the `Readable`.\n             * This is used primarily by the mechanism that underlies the `readable.pipe()` method.\n             * In most typical cases, there will be no reason to use this method directly.\n             *\n             * ```js\n             * const readable = new stream.Readable();\n             *\n             * readable.isPaused(); // === false\n             * readable.pause();\n             * readable.isPaused(); // === true\n             * readable.resume();\n             * readable.isPaused(); // === false\n             * ```\n             * @since v0.11.14\n             */\n            isPaused(): boolean;\n            /**\n             * The `readable.unpipe()` method detaches a `Writable` stream previously attached\n             * using the {@link pipe} method.\n             *\n             * If the `destination` is not specified, then _all_ pipes are detached.\n             *\n             * If the `destination` is specified, but no pipe is set up for it, then\n             * the method does nothing.\n             *\n             * ```js\n             * import fs from 'node:fs';\n             * const readable = getReadableStreamSomehow();\n             * const writable = fs.createWriteStream('file.txt');\n             * // All the data from readable goes into 'file.txt',\n             * // but only for the first second.\n             * readable.pipe(writable);\n             * setTimeout(() => {\n             *   console.log('Stop writing to file.txt.');\n             *   readable.unpipe(writable);\n             *   console.log('Manually close the file stream.');\n             *   writable.end();\n             * }, 1000);\n             * ```\n             * @since v0.9.4\n             * @param destination Optional specific stream to unpipe\n             */\n            unpipe(destination?: NodeJS.WritableStream): this;\n            /**\n             * Passing `chunk` as `null` signals the end of the stream (EOF) and behaves the\n             * same as `readable.push(null)`, after which no more data can be written. The EOF\n             * signal is put at the end of the buffer and any buffered data will still be\n             * flushed.\n             *\n             * The `readable.unshift()` method pushes a chunk of data back into the internal\n             * buffer. This is useful in certain situations where a stream is being consumed by\n             * code that needs to \"un-consume\" some amount of data that it has optimistically\n             * pulled out of the source, so that the data can be passed on to some other party.\n             *\n             * The `stream.unshift(chunk)` method cannot be called after the `'end'` event\n             * has been emitted or a runtime error will be thrown.\n             *\n             * Developers using `stream.unshift()` often should consider switching to\n             * use of a `Transform` stream instead. See the `API for stream implementers` section for more information.\n             *\n             * ```js\n             * // Pull off a header delimited by \\n\\n.\n             * // Use unshift() if we get too much.\n             * // Call the callback with (error, header, stream).\n             * import { StringDecoder } from 'node:string_decoder';\n             * function parseHeader(stream, callback) {\n             *   stream.on('error', callback);\n             *   stream.on('readable', onReadable);\n             *   const decoder = new StringDecoder('utf8');\n             *   let header = '';\n             *   function onReadable() {\n             *     let chunk;\n             *     while (null !== (chunk = stream.read())) {\n             *       const str = decoder.write(chunk);\n             *       if (str.includes('\\n\\n')) {\n             *         // Found the header boundary.\n             *         const split = str.split(/\\n\\n/);\n             *         header += split.shift();\n             *         const remaining = split.join('\\n\\n');\n             *         const buf = Buffer.from(remaining, 'utf8');\n             *         stream.removeListener('error', callback);\n             *         // Remove the 'readable' listener before unshifting.\n             *         stream.removeListener('readable', onReadable);\n             *         if (buf.length)\n             *           stream.unshift(buf);\n             *         // Now the body of the message can be read from the stream.\n             *         callback(null, header, stream);\n             *         return;\n             *       }\n             *       // Still reading the header.\n             *       header += str;\n             *     }\n             *   }\n             * }\n             * ```\n             *\n             * Unlike {@link push}, `stream.unshift(chunk)` will not\n             * end the reading process by resetting the internal reading state of the stream.\n             * This can cause unexpected results if `readable.unshift()` is called during a\n             * read (i.e. from within a {@link _read} implementation on a\n             * custom stream). Following the call to `readable.unshift()` with an immediate {@link push} will reset the reading state appropriately,\n             * however it is best to simply avoid calling `readable.unshift()` while in the\n             * process of performing a read.\n             * @since v0.9.11\n             * @param chunk Chunk of data to unshift onto the read queue. For streams not operating in object mode, `chunk` must\n             * be a {string}, {Buffer}, {TypedArray}, {DataView} or `null`. For object mode streams, `chunk` may be any JavaScript value.\n             * @param encoding Encoding of string chunks. Must be a valid `Buffer` encoding, such as `'utf8'` or `'ascii'`.\n             */\n            unshift(chunk: any, encoding?: BufferEncoding): void;\n            /**\n             * Prior to Node.js 0.10, streams did not implement the entire `node:stream` module API as it is currently defined. (See `Compatibility` for more\n             * information.)\n             *\n             * When using an older Node.js library that emits `'data'` events and has a {@link pause} method that is advisory only, the `readable.wrap()` method can be used to create a `Readable`\n             * stream that uses\n             * the old stream as its data source.\n             *\n             * It will rarely be necessary to use `readable.wrap()` but the method has been\n             * provided as a convenience for interacting with older Node.js applications and\n             * libraries.\n             *\n             * ```js\n             * import { OldReader } from './old-api-module.js';\n             * import { Readable } from 'node:stream';\n             * const oreader = new OldReader();\n             * const myReader = new Readable().wrap(oreader);\n             *\n             * myReader.on('readable', () => {\n             *   myReader.read(); // etc.\n             * });\n             * ```\n             * @since v0.9.4\n             * @param stream An \"old style\" readable stream\n             */\n            wrap(stream: NodeJS.ReadableStream): this;\n            push(chunk: any, encoding?: BufferEncoding): boolean;\n            /**\n             * The iterator created by this method gives users the option to cancel the destruction\n             * of the stream if the `for await...of` loop is exited by `return`, `break`, or `throw`,\n             * or if the iterator should destroy the stream if the stream emitted an error during iteration.\n             * @since v16.3.0\n             * @param options.destroyOnReturn When set to `false`, calling `return` on the async iterator,\n             * or exiting a `for await...of` iteration using a `break`, `return`, or `throw` will not destroy the stream.\n             * **Default: `true`**.\n             */\n            iterator(options?: { destroyOnReturn?: boolean }): NodeJS.AsyncIterator<any>;\n            /**\n             * This method allows mapping over the stream. The *fn* function will be called for every chunk in the stream.\n             * If the *fn* function returns a promise - that promise will be `await`ed before being passed to the result stream.\n             * @since v17.4.0, v16.14.0\n             * @param fn a function to map over every chunk in the stream. Async or not.\n             * @returns a stream mapped with the function *fn*.\n             */\n            map(fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => any, options?: ArrayOptions): Readable;\n            /**\n             * This method allows filtering the stream. For each chunk in the stream the *fn* function will be called\n             * and if it returns a truthy value, the chunk will be passed to the result stream.\n             * If the *fn* function returns a promise - that promise will be `await`ed.\n             * @since v17.4.0, v16.14.0\n             * @param fn a function to filter chunks from the stream. Async or not.\n             * @returns a stream filtered with the predicate *fn*.\n             */\n            filter(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => boolean | Promise<boolean>,\n                options?: ArrayOptions,\n            ): Readable;\n            /**\n             * This method allows iterating a stream. For each chunk in the stream the *fn* function will be called.\n             * If the *fn* function returns a promise - that promise will be `await`ed.\n             *\n             * This method is different from `for await...of` loops in that it can optionally process chunks concurrently.\n             * In addition, a `forEach` iteration can only be stopped by having passed a `signal` option\n             * and aborting the related AbortController while `for await...of` can be stopped with `break` or `return`.\n             * In either case the stream will be destroyed.\n             *\n             * This method is different from listening to the `'data'` event in that it uses the `readable` event\n             * in the underlying machinary and can limit the number of concurrent *fn* calls.\n             * @since v17.5.0\n             * @param fn a function to call on each chunk of the stream. Async or not.\n             * @returns a promise for when the stream has finished.\n             */\n            forEach(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => void | Promise<void>,\n                options?: ArrayOptions,\n            ): Promise<void>;\n            /**\n             * This method allows easily obtaining the contents of a stream.\n             *\n             * As this method reads the entire stream into memory, it negates the benefits of streams. It's intended\n             * for interoperability and convenience, not as the primary way to consume streams.\n             * @since v17.5.0\n             * @returns a promise containing an array with the contents of the stream.\n             */\n            toArray(options?: Pick<ArrayOptions, \"signal\">): Promise<any[]>;\n            /**\n             * This method is similar to `Array.prototype.some` and calls *fn* on each chunk in the stream\n             * until the awaited return value is `true` (or any truthy value). Once an *fn* call on a chunk\n             * `await`ed return value is truthy, the stream is destroyed and the promise is fulfilled with `true`.\n             * If none of the *fn* calls on the chunks return a truthy value, the promise is fulfilled with `false`.\n             * @since v17.5.0\n             * @param fn a function to call on each chunk of the stream. Async or not.\n             * @returns a promise evaluating to `true` if *fn* returned a truthy value for at least one of the chunks.\n             */\n            some(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => boolean | Promise<boolean>,\n                options?: ArrayOptions,\n            ): Promise<boolean>;\n            /**\n             * This method is similar to `Array.prototype.find` and calls *fn* on each chunk in the stream\n             * to find a chunk with a truthy value for *fn*. Once an *fn* call's awaited return value is truthy,\n             * the stream is destroyed and the promise is fulfilled with value for which *fn* returned a truthy value.\n             * If all of the *fn* calls on the chunks return a falsy value, the promise is fulfilled with `undefined`.\n             * @since v17.5.0\n             * @param fn a function to call on each chunk of the stream. Async or not.\n             * @returns a promise evaluating to the first chunk for which *fn* evaluated with a truthy value,\n             * or `undefined` if no element was found.\n             */\n            find<T>(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => data is T,\n                options?: ArrayOptions,\n            ): Promise<T | undefined>;\n            find(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => boolean | Promise<boolean>,\n                options?: ArrayOptions,\n            ): Promise<any>;\n            /**\n             * This method is similar to `Array.prototype.every` and calls *fn* on each chunk in the stream\n             * to check if all awaited return values are truthy value for *fn*. Once an *fn* call on a chunk\n             * `await`ed return value is falsy, the stream is destroyed and the promise is fulfilled with `false`.\n             * If all of the *fn* calls on the chunks return a truthy value, the promise is fulfilled with `true`.\n             * @since v17.5.0\n             * @param fn a function to call on each chunk of the stream. Async or not.\n             * @returns a promise evaluating to `true` if *fn* returned a truthy value for every one of the chunks.\n             */\n            every(\n                fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => boolean | Promise<boolean>,\n                options?: ArrayOptions,\n            ): Promise<boolean>;\n            /**\n             * This method returns a new stream by applying the given callback to each chunk of the stream\n             * and then flattening the result.\n             *\n             * It is possible to return a stream or another iterable or async iterable from *fn* and the result streams\n             * will be merged (flattened) into the returned stream.\n             * @since v17.5.0\n             * @param fn a function to map over every chunk in the stream. May be async. May be a stream or generator.\n             * @returns a stream flat-mapped with the function *fn*.\n             */\n            flatMap(fn: (data: any, options?: Pick<ArrayOptions, \"signal\">) => any, options?: ArrayOptions): Readable;\n            /**\n             * This method returns a new stream with the first *limit* chunks dropped from the start.\n             * @since v17.5.0\n             * @param limit the number of chunks to drop from the readable.\n             * @returns a stream with *limit* chunks dropped from the start.\n             */\n            drop(limit: number, options?: Pick<ArrayOptions, \"signal\">): Readable;\n            /**\n             * This method returns a new stream with the first *limit* chunks.\n             * @since v17.5.0\n             * @param limit the number of chunks to take from the readable.\n             * @returns a stream with *limit* chunks taken.\n             */\n            take(limit: number, options?: Pick<ArrayOptions, \"signal\">): Readable;\n            /**\n             * This method returns a new stream with chunks of the underlying stream paired with a counter\n             * in the form `[index, chunk]`. The first index value is `0` and it increases by 1 for each chunk produced.\n             * @since v17.5.0\n             * @returns a stream of indexed pairs.\n             */\n            asIndexedPairs(options?: Pick<ArrayOptions, \"signal\">): Readable;\n            /**\n             * This method calls *fn* on each chunk of the stream in order, passing it the result from the calculation\n             * on the previous element. It returns a promise for the final value of the reduction.\n             *\n             * If no *initial* value is supplied the first chunk of the stream is used as the initial value.\n             * If the stream is empty, the promise is rejected with a `TypeError` with the `ERR_INVALID_ARGS` code property.\n             *\n             * The reducer function iterates the stream element-by-element which means that there is no *concurrency* parameter\n             * or parallelism. To perform a reduce concurrently, you can extract the async function to `readable.map` method.\n             * @since v17.5.0\n             * @param fn a reducer function to call over every chunk in the stream. Async or not.\n             * @param initial the initial value to use in the reduction.\n             * @returns a promise for the final value of the reduction.\n             */\n            reduce<T = any>(\n                fn: (previous: any, data: any, options?: Pick<ArrayOptions, \"signal\">) => T,\n                initial?: undefined,\n                options?: Pick<ArrayOptions, \"signal\">,\n            ): Promise<T>;\n            reduce<T = any>(\n                fn: (previous: T, data: any, options?: Pick<ArrayOptions, \"signal\">) => T,\n                initial: T,\n                options?: Pick<ArrayOptions, \"signal\">,\n            ): Promise<T>;\n            _destroy(error: Error | null, callback: (error?: Error | null) => void): void;\n            /**\n             * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'` event (unless `emitClose` is set to `false`). After this call, the readable\n             * stream will release any internal resources and subsequent calls to `push()` will be ignored.\n             *\n             * Once `destroy()` has been called any further calls will be a no-op and no\n             * further errors except from `_destroy()` may be emitted as `'error'`.\n             *\n             * Implementors should not override this method, but instead implement `readable._destroy()`.\n             * @since v8.0.0\n             * @param error Error which will be passed as payload in `'error'` event\n             */\n            destroy(error?: Error): this;\n            /**\n             * Event emitter\n             * The defined events on documents including:\n             * 1. close\n             * 2. data\n             * 3. end\n             * 4. error\n             * 5. pause\n             * 6. readable\n             * 7. resume\n             */\n            addListener(event: \"close\", listener: () => void): this;\n            addListener(event: \"data\", listener: (chunk: any) => void): this;\n            addListener(event: \"end\", listener: () => void): this;\n            addListener(event: \"error\", listener: (err: Error) => void): this;\n            addListener(event: \"pause\", listener: () => void): this;\n            addListener(event: \"readable\", listener: () => void): this;\n            addListener(event: \"resume\", listener: () => void): this;\n            addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            emit(event: \"close\"): boolean;\n            emit(event: \"data\", chunk: any): boolean;\n            emit(event: \"end\"): boolean;\n            emit(event: \"error\", err: Error): boolean;\n            emit(event: \"pause\"): boolean;\n            emit(event: \"readable\"): boolean;\n            emit(event: \"resume\"): boolean;\n            emit(event: string | symbol, ...args: any[]): boolean;\n            on(event: \"close\", listener: () => void): this;\n            on(event: \"data\", listener: (chunk: any) => void): this;\n            on(event: \"end\", listener: () => void): this;\n            on(event: \"error\", listener: (err: Error) => void): this;\n            on(event: \"pause\", listener: () => void): this;\n            on(event: \"readable\", listener: () => void): this;\n            on(event: \"resume\", listener: () => void): this;\n            on(event: string | symbol, listener: (...args: any[]) => void): this;\n            once(event: \"close\", listener: () => void): this;\n            once(event: \"data\", listener: (chunk: any) => void): this;\n            once(event: \"end\", listener: () => void): this;\n            once(event: \"error\", listener: (err: Error) => void): this;\n            once(event: \"pause\", listener: () => void): this;\n            once(event: \"readable\", listener: () => void): this;\n            once(event: \"resume\", listener: () => void): this;\n            once(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependListener(event: \"close\", listener: () => void): this;\n            prependListener(event: \"data\", listener: (chunk: any) => void): this;\n            prependListener(event: \"end\", listener: () => void): this;\n            prependListener(event: \"error\", listener: (err: Error) => void): this;\n            prependListener(event: \"pause\", listener: () => void): this;\n            prependListener(event: \"readable\", listener: () => void): this;\n            prependListener(event: \"resume\", listener: () => void): this;\n            prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependOnceListener(event: \"close\", listener: () => void): this;\n            prependOnceListener(event: \"data\", listener: (chunk: any) => void): this;\n            prependOnceListener(event: \"end\", listener: () => void): this;\n            prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n            prependOnceListener(event: \"pause\", listener: () => void): this;\n            prependOnceListener(event: \"readable\", listener: () => void): this;\n            prependOnceListener(event: \"resume\", listener: () => void): this;\n            prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            removeListener(event: \"close\", listener: () => void): this;\n            removeListener(event: \"data\", listener: (chunk: any) => void): this;\n            removeListener(event: \"end\", listener: () => void): this;\n            removeListener(event: \"error\", listener: (err: Error) => void): this;\n            removeListener(event: \"pause\", listener: () => void): this;\n            removeListener(event: \"readable\", listener: () => void): this;\n            removeListener(event: \"resume\", listener: () => void): this;\n            removeListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            [Symbol.asyncIterator](): NodeJS.AsyncIterator<any>;\n            /**\n             * Calls `readable.destroy()` with an `AbortError` and returns a promise that fulfills when the stream is finished.\n             * @since v20.4.0\n             */\n            [Symbol.asyncDispose](): Promise<void>;\n        }\n        interface WritableOptions<T extends Writable = Writable> extends StreamOptions<T> {\n            decodeStrings?: boolean | undefined;\n            defaultEncoding?: BufferEncoding | undefined;\n            write?(\n                this: T,\n                chunk: any,\n                encoding: BufferEncoding,\n                callback: (error?: Error | null) => void,\n            ): void;\n            writev?(\n                this: T,\n                chunks: Array<{\n                    chunk: any;\n                    encoding: BufferEncoding;\n                }>,\n                callback: (error?: Error | null) => void,\n            ): void;\n            final?(this: T, callback: (error?: Error | null) => void): void;\n        }\n        /**\n         * @since v0.9.4\n         */\n        class Writable extends Stream implements NodeJS.WritableStream {\n            /**\n             * A utility method for creating a `Writable` from a web `WritableStream`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static fromWeb(\n                writableStream: streamWeb.WritableStream,\n                options?: Pick<WritableOptions, \"decodeStrings\" | \"highWaterMark\" | \"objectMode\" | \"signal\">,\n            ): Writable;\n            /**\n             * A utility method for creating a web `WritableStream` from a `Writable`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static toWeb(streamWritable: Writable): streamWeb.WritableStream;\n            /**\n             * Is `true` if it is safe to call `writable.write()`, which means\n             * the stream has not been destroyed, errored, or ended.\n             * @since v11.4.0\n             */\n            readonly writable: boolean;\n            /**\n             * Returns whether the stream was destroyed or errored before emitting `'finish'`.\n             * @since v18.0.0, v16.17.0\n             * @experimental\n             */\n            readonly writableAborted: boolean;\n            /**\n             * Is `true` after `writable.end()` has been called. This property\n             * does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead.\n             * @since v12.9.0\n             */\n            readonly writableEnded: boolean;\n            /**\n             * Is set to `true` immediately before the `'finish'` event is emitted.\n             * @since v12.6.0\n             */\n            readonly writableFinished: boolean;\n            /**\n             * Return the value of `highWaterMark` passed when creating this `Writable`.\n             * @since v9.3.0\n             */\n            readonly writableHighWaterMark: number;\n            /**\n             * This property contains the number of bytes (or objects) in the queue\n             * ready to be written. The value provides introspection data regarding\n             * the status of the `highWaterMark`.\n             * @since v9.4.0\n             */\n            readonly writableLength: number;\n            /**\n             * Getter for the property `objectMode` of a given `Writable` stream.\n             * @since v12.3.0\n             */\n            readonly writableObjectMode: boolean;\n            /**\n             * Number of times `writable.uncork()` needs to be\n             * called in order to fully uncork the stream.\n             * @since v13.2.0, v12.16.0\n             */\n            readonly writableCorked: number;\n            /**\n             * Is `true` after `writable.destroy()` has been called.\n             * @since v8.0.0\n             */\n            destroyed: boolean;\n            /**\n             * Is `true` after `'close'` has been emitted.\n             * @since v18.0.0\n             */\n            readonly closed: boolean;\n            /**\n             * Returns error if the stream has been destroyed with an error.\n             * @since v18.0.0\n             */\n            readonly errored: Error | null;\n            /**\n             * Is `true` if the stream's buffer has been full and stream will emit `'drain'`.\n             * @since v15.2.0, v14.17.0\n             */\n            readonly writableNeedDrain: boolean;\n            constructor(opts?: WritableOptions);\n            _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void;\n            _writev?(\n                chunks: Array<{\n                    chunk: any;\n                    encoding: BufferEncoding;\n                }>,\n                callback: (error?: Error | null) => void,\n            ): void;\n            _construct?(callback: (error?: Error | null) => void): void;\n            _destroy(error: Error | null, callback: (error?: Error | null) => void): void;\n            _final(callback: (error?: Error | null) => void): void;\n            /**\n             * The `writable.write()` method writes some data to the stream, and calls the\n             * supplied `callback` once the data has been fully handled. If an error\n             * occurs, the `callback` will be called with the error as its\n             * first argument. The `callback` is called asynchronously and before `'error'` is\n             * emitted.\n             *\n             * The return value is `true` if the internal buffer is less than the `highWaterMark` configured when the stream was created after admitting `chunk`.\n             * If `false` is returned, further attempts to write data to the stream should\n             * stop until the `'drain'` event is emitted.\n             *\n             * While a stream is not draining, calls to `write()` will buffer `chunk`, and\n             * return false. Once all currently buffered chunks are drained (accepted for\n             * delivery by the operating system), the `'drain'` event will be emitted.\n             * Once `write()` returns false, do not write more chunks\n             * until the `'drain'` event is emitted. While calling `write()` on a stream that\n             * is not draining is allowed, Node.js will buffer all written chunks until\n             * maximum memory usage occurs, at which point it will abort unconditionally.\n             * Even before it aborts, high memory usage will cause poor garbage collector\n             * performance and high RSS (which is not typically released back to the system,\n             * even after the memory is no longer required). Since TCP sockets may never\n             * drain if the remote peer does not read the data, writing a socket that is\n             * not draining may lead to a remotely exploitable vulnerability.\n             *\n             * Writing data while the stream is not draining is particularly\n             * problematic for a `Transform`, because the `Transform` streams are paused\n             * by default until they are piped or a `'data'` or `'readable'` event handler\n             * is added.\n             *\n             * If the data to be written can be generated or fetched on demand, it is\n             * recommended to encapsulate the logic into a `Readable` and use {@link pipe}. However, if calling `write()` is preferred, it is\n             * possible to respect backpressure and avoid memory issues using the `'drain'` event:\n             *\n             * ```js\n             * function write(data, cb) {\n             *   if (!stream.write(data)) {\n             *     stream.once('drain', cb);\n             *   } else {\n             *     process.nextTick(cb);\n             *   }\n             * }\n             *\n             * // Wait for cb to be called before doing any other write.\n             * write('hello', () => {\n             *   console.log('Write completed, do more writes now.');\n             * });\n             * ```\n             *\n             * A `Writable` stream in object mode will always ignore the `encoding` argument.\n             * @since v0.9.4\n             * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},\n             * {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.\n             * @param [encoding='utf8'] The encoding, if `chunk` is a string.\n             * @param callback Callback for when this chunk of data is flushed.\n             * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n             */\n            write(chunk: any, callback?: (error: Error | null | undefined) => void): boolean;\n            write(chunk: any, encoding: BufferEncoding, callback?: (error: Error | null | undefined) => void): boolean;\n            /**\n             * The `writable.setDefaultEncoding()` method sets the default `encoding` for a `Writable` stream.\n             * @since v0.11.15\n             * @param encoding The new default encoding\n             */\n            setDefaultEncoding(encoding: BufferEncoding): this;\n            /**\n             * Calling the `writable.end()` method signals that no more data will be written\n             * to the `Writable`. The optional `chunk` and `encoding` arguments allow one\n             * final additional chunk of data to be written immediately before closing the\n             * stream.\n             *\n             * Calling the {@link write} method after calling {@link end} will raise an error.\n             *\n             * ```js\n             * // Write 'hello, ' and then end with 'world!'.\n             * import fs from 'node:fs';\n             * const file = fs.createWriteStream('example.txt');\n             * file.write('hello, ');\n             * file.end('world!');\n             * // Writing more now is not allowed!\n             * ```\n             * @since v0.9.4\n             * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},\n             * {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.\n             * @param encoding The encoding if `chunk` is a string\n             * @param callback Callback for when the stream is finished.\n             */\n            end(cb?: () => void): this;\n            end(chunk: any, cb?: () => void): this;\n            end(chunk: any, encoding: BufferEncoding, cb?: () => void): this;\n            /**\n             * The `writable.cork()` method forces all written data to be buffered in memory.\n             * The buffered data will be flushed when either the {@link uncork} or {@link end} methods are called.\n             *\n             * The primary intent of `writable.cork()` is to accommodate a situation in which\n             * several small chunks are written to the stream in rapid succession. Instead of\n             * immediately forwarding them to the underlying destination, `writable.cork()` buffers all the chunks until `writable.uncork()` is called, which will pass them\n             * all to `writable._writev()`, if present. This prevents a head-of-line blocking\n             * situation where data is being buffered while waiting for the first small chunk\n             * to be processed. However, use of `writable.cork()` without implementing `writable._writev()` may have an adverse effect on throughput.\n             *\n             * See also: `writable.uncork()`, `writable._writev()`.\n             * @since v0.11.2\n             */\n            cork(): void;\n            /**\n             * The `writable.uncork()` method flushes all data buffered since {@link cork} was called.\n             *\n             * When using `writable.cork()` and `writable.uncork()` to manage the buffering\n             * of writes to a stream, defer calls to `writable.uncork()` using `process.nextTick()`. Doing so allows batching of all `writable.write()` calls that occur within a given Node.js event\n             * loop phase.\n             *\n             * ```js\n             * stream.cork();\n             * stream.write('some ');\n             * stream.write('data ');\n             * process.nextTick(() => stream.uncork());\n             * ```\n             *\n             * If the `writable.cork()` method is called multiple times on a stream, the\n             * same number of calls to `writable.uncork()` must be called to flush the buffered\n             * data.\n             *\n             * ```js\n             * stream.cork();\n             * stream.write('some ');\n             * stream.cork();\n             * stream.write('data ');\n             * process.nextTick(() => {\n             *   stream.uncork();\n             *   // The data will not be flushed until uncork() is called a second time.\n             *   stream.uncork();\n             * });\n             * ```\n             *\n             * See also: `writable.cork()`.\n             * @since v0.11.2\n             */\n            uncork(): void;\n            /**\n             * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'` event (unless `emitClose` is set to `false`). After this call, the writable\n             * stream has ended and subsequent calls to `write()` or `end()` will result in\n             * an `ERR_STREAM_DESTROYED` error.\n             * This is a destructive and immediate way to destroy a stream. Previous calls to `write()` may not have drained, and may trigger an `ERR_STREAM_DESTROYED` error.\n             * Use `end()` instead of destroy if data should flush before close, or wait for\n             * the `'drain'` event before destroying the stream.\n             *\n             * Once `destroy()` has been called any further calls will be a no-op and no\n             * further errors except from `_destroy()` may be emitted as `'error'`.\n             *\n             * Implementors should not override this method,\n             * but instead implement `writable._destroy()`.\n             * @since v8.0.0\n             * @param error Optional, an error to emit with `'error'` event.\n             */\n            destroy(error?: Error): this;\n            /**\n             * Event emitter\n             * The defined events on documents including:\n             * 1. close\n             * 2. drain\n             * 3. error\n             * 4. finish\n             * 5. pipe\n             * 6. unpipe\n             */\n            addListener(event: \"close\", listener: () => void): this;\n            addListener(event: \"drain\", listener: () => void): this;\n            addListener(event: \"error\", listener: (err: Error) => void): this;\n            addListener(event: \"finish\", listener: () => void): this;\n            addListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            addListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            emit(event: \"close\"): boolean;\n            emit(event: \"drain\"): boolean;\n            emit(event: \"error\", err: Error): boolean;\n            emit(event: \"finish\"): boolean;\n            emit(event: \"pipe\", src: Readable): boolean;\n            emit(event: \"unpipe\", src: Readable): boolean;\n            emit(event: string | symbol, ...args: any[]): boolean;\n            on(event: \"close\", listener: () => void): this;\n            on(event: \"drain\", listener: () => void): this;\n            on(event: \"error\", listener: (err: Error) => void): this;\n            on(event: \"finish\", listener: () => void): this;\n            on(event: \"pipe\", listener: (src: Readable) => void): this;\n            on(event: \"unpipe\", listener: (src: Readable) => void): this;\n            on(event: string | symbol, listener: (...args: any[]) => void): this;\n            once(event: \"close\", listener: () => void): this;\n            once(event: \"drain\", listener: () => void): this;\n            once(event: \"error\", listener: (err: Error) => void): this;\n            once(event: \"finish\", listener: () => void): this;\n            once(event: \"pipe\", listener: (src: Readable) => void): this;\n            once(event: \"unpipe\", listener: (src: Readable) => void): this;\n            once(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependListener(event: \"close\", listener: () => void): this;\n            prependListener(event: \"drain\", listener: () => void): this;\n            prependListener(event: \"error\", listener: (err: Error) => void): this;\n            prependListener(event: \"finish\", listener: () => void): this;\n            prependListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            prependListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependOnceListener(event: \"close\", listener: () => void): this;\n            prependOnceListener(event: \"drain\", listener: () => void): this;\n            prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n            prependOnceListener(event: \"finish\", listener: () => void): this;\n            prependOnceListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            prependOnceListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            removeListener(event: \"close\", listener: () => void): this;\n            removeListener(event: \"drain\", listener: () => void): this;\n            removeListener(event: \"error\", listener: (err: Error) => void): this;\n            removeListener(event: \"finish\", listener: () => void): this;\n            removeListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            removeListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            removeListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        }\n        interface DuplexOptions<T extends Duplex = Duplex> extends ReadableOptions<T>, WritableOptions<T> {\n            allowHalfOpen?: boolean | undefined;\n            readableObjectMode?: boolean | undefined;\n            writableObjectMode?: boolean | undefined;\n            readableHighWaterMark?: number | undefined;\n            writableHighWaterMark?: number | undefined;\n            writableCorked?: number | undefined;\n        }\n        /**\n         * Duplex streams are streams that implement both the `Readable` and `Writable` interfaces.\n         *\n         * Examples of `Duplex` streams include:\n         *\n         * * `TCP sockets`\n         * * `zlib streams`\n         * * `crypto streams`\n         * @since v0.9.4\n         */\n        class Duplex extends Stream implements NodeJS.ReadWriteStream {\n            /**\n             * If `false` then the stream will automatically end the writable side when the\n             * readable side ends. Set initially by the `allowHalfOpen` constructor option,\n             * which defaults to `true`.\n             *\n             * This can be changed manually to change the half-open behavior of an existing\n             * `Duplex` stream instance, but must be changed before the `'end'` event is emitted.\n             * @since v0.9.4\n             */\n            allowHalfOpen: boolean;\n            constructor(opts?: DuplexOptions);\n            /**\n             * A utility method for creating duplex streams.\n             *\n             * - `Stream` converts writable stream into writable `Duplex` and readable stream\n             *   to `Duplex`.\n             * - `Blob` converts into readable `Duplex`.\n             * - `string` converts into readable `Duplex`.\n             * - `ArrayBuffer` converts into readable `Duplex`.\n             * - `AsyncIterable` converts into a readable `Duplex`. Cannot yield `null`.\n             * - `AsyncGeneratorFunction` converts into a readable/writable transform\n             *   `Duplex`. Must take a source `AsyncIterable` as first parameter. Cannot yield\n             *   `null`.\n             * - `AsyncFunction` converts into a writable `Duplex`. Must return\n             *   either `null` or `undefined`\n             * - `Object ({ writable, readable })` converts `readable` and\n             *   `writable` into `Stream` and then combines them into `Duplex` where the\n             *   `Duplex` will write to the `writable` and read from the `readable`.\n             * - `Promise` converts into readable `Duplex`. Value `null` is ignored.\n             *\n             * @since v16.8.0\n             */\n            static from(\n                src:\n                    | Stream\n                    | NodeBlob\n                    | ArrayBuffer\n                    | string\n                    | Iterable<any>\n                    | AsyncIterable<any>\n                    | AsyncGeneratorFunction\n                    | Promise<any>\n                    | Object,\n            ): Duplex;\n            /**\n             * A utility method for creating a web `ReadableStream` and `WritableStream` from a `Duplex`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static toWeb(streamDuplex: Duplex): {\n                readable: streamWeb.ReadableStream;\n                writable: streamWeb.WritableStream;\n            };\n            /**\n             * A utility method for creating a `Duplex` from a web `ReadableStream` and `WritableStream`.\n             * @since v17.0.0\n             * @experimental\n             */\n            static fromWeb(\n                duplexStream: {\n                    readable: streamWeb.ReadableStream;\n                    writable: streamWeb.WritableStream;\n                },\n                options?: Pick<\n                    DuplexOptions,\n                    \"allowHalfOpen\" | \"decodeStrings\" | \"encoding\" | \"highWaterMark\" | \"objectMode\" | \"signal\"\n                >,\n            ): Duplex;\n            /**\n             * Event emitter\n             * The defined events on documents including:\n             * 1.  close\n             * 2.  data\n             * 3.  drain\n             * 4.  end\n             * 5.  error\n             * 6.  finish\n             * 7.  pause\n             * 8.  pipe\n             * 9.  readable\n             * 10. resume\n             * 11. unpipe\n             */\n            addListener(event: \"close\", listener: () => void): this;\n            addListener(event: \"data\", listener: (chunk: any) => void): this;\n            addListener(event: \"drain\", listener: () => void): this;\n            addListener(event: \"end\", listener: () => void): this;\n            addListener(event: \"error\", listener: (err: Error) => void): this;\n            addListener(event: \"finish\", listener: () => void): this;\n            addListener(event: \"pause\", listener: () => void): this;\n            addListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            addListener(event: \"readable\", listener: () => void): this;\n            addListener(event: \"resume\", listener: () => void): this;\n            addListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            emit(event: \"close\"): boolean;\n            emit(event: \"data\", chunk: any): boolean;\n            emit(event: \"drain\"): boolean;\n            emit(event: \"end\"): boolean;\n            emit(event: \"error\", err: Error): boolean;\n            emit(event: \"finish\"): boolean;\n            emit(event: \"pause\"): boolean;\n            emit(event: \"pipe\", src: Readable): boolean;\n            emit(event: \"readable\"): boolean;\n            emit(event: \"resume\"): boolean;\n            emit(event: \"unpipe\", src: Readable): boolean;\n            emit(event: string | symbol, ...args: any[]): boolean;\n            on(event: \"close\", listener: () => void): this;\n            on(event: \"data\", listener: (chunk: any) => void): this;\n            on(event: \"drain\", listener: () => void): this;\n            on(event: \"end\", listener: () => void): this;\n            on(event: \"error\", listener: (err: Error) => void): this;\n            on(event: \"finish\", listener: () => void): this;\n            on(event: \"pause\", listener: () => void): this;\n            on(event: \"pipe\", listener: (src: Readable) => void): this;\n            on(event: \"readable\", listener: () => void): this;\n            on(event: \"resume\", listener: () => void): this;\n            on(event: \"unpipe\", listener: (src: Readable) => void): this;\n            on(event: string | symbol, listener: (...args: any[]) => void): this;\n            once(event: \"close\", listener: () => void): this;\n            once(event: \"data\", listener: (chunk: any) => void): this;\n            once(event: \"drain\", listener: () => void): this;\n            once(event: \"end\", listener: () => void): this;\n            once(event: \"error\", listener: (err: Error) => void): this;\n            once(event: \"finish\", listener: () => void): this;\n            once(event: \"pause\", listener: () => void): this;\n            once(event: \"pipe\", listener: (src: Readable) => void): this;\n            once(event: \"readable\", listener: () => void): this;\n            once(event: \"resume\", listener: () => void): this;\n            once(event: \"unpipe\", listener: (src: Readable) => void): this;\n            once(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependListener(event: \"close\", listener: () => void): this;\n            prependListener(event: \"data\", listener: (chunk: any) => void): this;\n            prependListener(event: \"drain\", listener: () => void): this;\n            prependListener(event: \"end\", listener: () => void): this;\n            prependListener(event: \"error\", listener: (err: Error) => void): this;\n            prependListener(event: \"finish\", listener: () => void): this;\n            prependListener(event: \"pause\", listener: () => void): this;\n            prependListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            prependListener(event: \"readable\", listener: () => void): this;\n            prependListener(event: \"resume\", listener: () => void): this;\n            prependListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            prependOnceListener(event: \"close\", listener: () => void): this;\n            prependOnceListener(event: \"data\", listener: (chunk: any) => void): this;\n            prependOnceListener(event: \"drain\", listener: () => void): this;\n            prependOnceListener(event: \"end\", listener: () => void): this;\n            prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n            prependOnceListener(event: \"finish\", listener: () => void): this;\n            prependOnceListener(event: \"pause\", listener: () => void): this;\n            prependOnceListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            prependOnceListener(event: \"readable\", listener: () => void): this;\n            prependOnceListener(event: \"resume\", listener: () => void): this;\n            prependOnceListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n            removeListener(event: \"close\", listener: () => void): this;\n            removeListener(event: \"data\", listener: (chunk: any) => void): this;\n            removeListener(event: \"drain\", listener: () => void): this;\n            removeListener(event: \"end\", listener: () => void): this;\n            removeListener(event: \"error\", listener: (err: Error) => void): this;\n            removeListener(event: \"finish\", listener: () => void): this;\n            removeListener(event: \"pause\", listener: () => void): this;\n            removeListener(event: \"pipe\", listener: (src: Readable) => void): this;\n            removeListener(event: \"readable\", listener: () => void): this;\n            removeListener(event: \"resume\", listener: () => void): this;\n            removeListener(event: \"unpipe\", listener: (src: Readable) => void): this;\n            removeListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        }\n        interface Duplex extends Readable, Writable {}\n        /**\n         * The utility function `duplexPair` returns an Array with two items,\n         * each being a `Duplex` stream connected to the other side:\n         *\n         * ```js\n         * const [ sideA, sideB ] = duplexPair();\n         * ```\n         *\n         * Whatever is written to one stream is made readable on the other. It provides\n         * behavior analogous to a network connection, where the data written by the client\n         * becomes readable by the server, and vice-versa.\n         *\n         * The Duplex streams are symmetrical; one or the other may be used without any\n         * difference in behavior.\n         * @param options A value to pass to both {@link Duplex} constructors,\n         * to set options such as buffering.\n         * @since v22.6.0\n         */\n        function duplexPair(options?: DuplexOptions): [Duplex, Duplex];\n        type TransformCallback = (error?: Error | null, data?: any) => void;\n        interface TransformOptions<T extends Transform = Transform> extends DuplexOptions<T> {\n            transform?(this: T, chunk: any, encoding: BufferEncoding, callback: TransformCallback): void;\n            flush?(this: T, callback: TransformCallback): void;\n        }\n        /**\n         * Transform streams are `Duplex` streams where the output is in some way\n         * related to the input. Like all `Duplex` streams, `Transform` streams\n         * implement both the `Readable` and `Writable` interfaces.\n         *\n         * Examples of `Transform` streams include:\n         *\n         * * `zlib streams`\n         * * `crypto streams`\n         * @since v0.9.4\n         */\n        class Transform extends Duplex {\n            constructor(opts?: TransformOptions);\n            _transform(chunk: any, encoding: BufferEncoding, callback: TransformCallback): void;\n            _flush(callback: TransformCallback): void;\n        }\n        /**\n         * The `stream.PassThrough` class is a trivial implementation of a `Transform` stream that simply passes the input bytes across to the output. Its purpose is\n         * primarily for examples and testing, but there are some use cases where `stream.PassThrough` is useful as a building block for novel sorts of streams.\n         */\n        class PassThrough extends Transform {}\n        /**\n         * A stream to attach a signal to.\n         *\n         * Attaches an AbortSignal to a readable or writeable stream. This lets code\n         * control stream destruction using an `AbortController`.\n         *\n         * Calling `abort` on the `AbortController` corresponding to the passed `AbortSignal` will behave the same way as calling `.destroy(new AbortError())` on the\n         * stream, and `controller.error(new AbortError())` for webstreams.\n         *\n         * ```js\n         * import fs from 'node:fs';\n         *\n         * const controller = new AbortController();\n         * const read = addAbortSignal(\n         *   controller.signal,\n         *   fs.createReadStream(('object.json')),\n         * );\n         * // Later, abort the operation closing the stream\n         * controller.abort();\n         * ```\n         *\n         * Or using an `AbortSignal` with a readable stream as an async iterable:\n         *\n         * ```js\n         * const controller = new AbortController();\n         * setTimeout(() => controller.abort(), 10_000); // set a timeout\n         * const stream = addAbortSignal(\n         *   controller.signal,\n         *   fs.createReadStream(('object.json')),\n         * );\n         * (async () => {\n         *   try {\n         *     for await (const chunk of stream) {\n         *       await process(chunk);\n         *     }\n         *   } catch (e) {\n         *     if (e.name === 'AbortError') {\n         *       // The operation was cancelled\n         *     } else {\n         *       throw e;\n         *     }\n         *   }\n         * })();\n         * ```\n         *\n         * Or using an `AbortSignal` with a ReadableStream:\n         *\n         * ```js\n         * const controller = new AbortController();\n         * const rs = new ReadableStream({\n         *   start(controller) {\n         *     controller.enqueue('hello');\n         *     controller.enqueue('world');\n         *     controller.close();\n         *   },\n         * });\n         *\n         * addAbortSignal(controller.signal, rs);\n         *\n         * finished(rs, (err) => {\n         *   if (err) {\n         *     if (err.name === 'AbortError') {\n         *       // The operation was cancelled\n         *     }\n         *   }\n         * });\n         *\n         * const reader = rs.getReader();\n         *\n         * reader.read().then(({ value, done }) => {\n         *   console.log(value); // hello\n         *   console.log(done); // false\n         *   controller.abort();\n         * });\n         * ```\n         * @since v15.4.0\n         * @param signal A signal representing possible cancellation\n         * @param stream A stream to attach a signal to.\n         */\n        function addAbortSignal<T extends Stream>(signal: AbortSignal, stream: T): T;\n        /**\n         * Returns the default highWaterMark used by streams.\n         * Defaults to `65536` (64 KiB), or `16` for `objectMode`.\n         * @since v19.9.0\n         */\n        function getDefaultHighWaterMark(objectMode: boolean): number;\n        /**\n         * Sets the default highWaterMark used by streams.\n         * @since v19.9.0\n         * @param value highWaterMark value\n         */\n        function setDefaultHighWaterMark(objectMode: boolean, value: number): void;\n        interface FinishedOptions extends Abortable {\n            error?: boolean | undefined;\n            readable?: boolean | undefined;\n            writable?: boolean | undefined;\n        }\n        /**\n         * A readable and/or writable stream/webstream.\n         *\n         * A function to get notified when a stream is no longer readable, writable\n         * or has experienced an error or a premature close event.\n         *\n         * ```js\n         * import { finished } from 'node:stream';\n         * import fs from 'node:fs';\n         *\n         * const rs = fs.createReadStream('archive.tar');\n         *\n         * finished(rs, (err) => {\n         *   if (err) {\n         *     console.error('Stream failed.', err);\n         *   } else {\n         *     console.log('Stream is done reading.');\n         *   }\n         * });\n         *\n         * rs.resume(); // Drain the stream.\n         * ```\n         *\n         * Especially useful in error handling scenarios where a stream is destroyed\n         * prematurely (like an aborted HTTP request), and will not emit `'end'` or `'finish'`.\n         *\n         * The `finished` API provides [`promise version`](https://nodejs.org/docs/latest-v22.x/api/stream.html#streamfinishedstream-options).\n         *\n         * `stream.finished()` leaves dangling event listeners (in particular `'error'`, `'end'`, `'finish'` and `'close'`) after `callback` has been\n         * invoked. The reason for this is so that unexpected `'error'` events (due to\n         * incorrect stream implementations) do not cause unexpected crashes.\n         * If this is unwanted behavior then the returned cleanup function needs to be\n         * invoked in the callback:\n         *\n         * ```js\n         * const cleanup = finished(rs, (err) => {\n         *   cleanup();\n         *   // ...\n         * });\n         * ```\n         * @since v10.0.0\n         * @param stream A readable and/or writable stream.\n         * @param callback A callback function that takes an optional error argument.\n         * @returns A cleanup function which removes all registered listeners.\n         */\n        function finished(\n            stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream,\n            options: FinishedOptions,\n            callback: (err?: NodeJS.ErrnoException | null) => void,\n        ): () => void;\n        function finished(\n            stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream,\n            callback: (err?: NodeJS.ErrnoException | null) => void,\n        ): () => void;\n        namespace finished {\n            function __promisify__(\n                stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream,\n                options?: FinishedOptions,\n            ): Promise<void>;\n        }\n        type PipelineSourceFunction<T> = () => Iterable<T> | AsyncIterable<T>;\n        type PipelineSource<T> = Iterable<T> | AsyncIterable<T> | NodeJS.ReadableStream | PipelineSourceFunction<T>;\n        type PipelineTransform<S extends PipelineTransformSource<any>, U> =\n            | NodeJS.ReadWriteStream\n            | ((\n                source: S extends (...args: any[]) => Iterable<infer ST> | AsyncIterable<infer ST> ? AsyncIterable<ST>\n                    : S,\n            ) => AsyncIterable<U>);\n        type PipelineTransformSource<T> = PipelineSource<T> | PipelineTransform<any, T>;\n        type PipelineDestinationIterableFunction<T> = (source: AsyncIterable<T>) => AsyncIterable<any>;\n        type PipelineDestinationPromiseFunction<T, P> = (source: AsyncIterable<T>) => Promise<P>;\n        type PipelineDestination<S extends PipelineTransformSource<any>, P> = S extends\n            PipelineTransformSource<infer ST> ?\n                | NodeJS.WritableStream\n                | PipelineDestinationIterableFunction<ST>\n                | PipelineDestinationPromiseFunction<ST, P>\n            : never;\n        type PipelineCallback<S extends PipelineDestination<any, any>> = S extends\n            PipelineDestinationPromiseFunction<any, infer P> ? (err: NodeJS.ErrnoException | null, value: P) => void\n            : (err: NodeJS.ErrnoException | null) => void;\n        type PipelinePromise<S extends PipelineDestination<any, any>> = S extends\n            PipelineDestinationPromiseFunction<any, infer P> ? Promise<P> : Promise<void>;\n        interface PipelineOptions {\n            signal?: AbortSignal | undefined;\n            end?: boolean | undefined;\n        }\n        /**\n         * A module method to pipe between streams and generators forwarding errors and\n         * properly cleaning up and provide a callback when the pipeline is complete.\n         *\n         * ```js\n         * import { pipeline } from 'node:stream';\n         * import fs from 'node:fs';\n         * import zlib from 'node:zlib';\n         *\n         * // Use the pipeline API to easily pipe a series of streams\n         * // together and get notified when the pipeline is fully done.\n         *\n         * // A pipeline to gzip a potentially huge tar file efficiently:\n         *\n         * pipeline(\n         *   fs.createReadStream('archive.tar'),\n         *   zlib.createGzip(),\n         *   fs.createWriteStream('archive.tar.gz'),\n         *   (err) => {\n         *     if (err) {\n         *       console.error('Pipeline failed.', err);\n         *     } else {\n         *       console.log('Pipeline succeeded.');\n         *     }\n         *   },\n         * );\n         * ```\n         *\n         * The `pipeline` API provides a [`promise version`](https://nodejs.org/docs/latest-v22.x/api/stream.html#streampipelinesource-transforms-destination-options).\n         *\n         * `stream.pipeline()` will call `stream.destroy(err)` on all streams except:\n         *\n         * * `Readable` streams which have emitted `'end'` or `'close'`.\n         * * `Writable` streams which have emitted `'finish'` or `'close'`.\n         *\n         * `stream.pipeline()` leaves dangling event listeners on the streams\n         * after the `callback` has been invoked. In the case of reuse of streams after\n         * failure, this can cause event listener leaks and swallowed errors. If the last\n         * stream is readable, dangling event listeners will be removed so that the last\n         * stream can be consumed later.\n         *\n         * `stream.pipeline()` closes all the streams when an error is raised.\n         * The `IncomingRequest` usage with `pipeline` could lead to an unexpected behavior\n         * once it would destroy the socket without sending the expected response.\n         * See the example below:\n         *\n         * ```js\n         * import fs from 'node:fs';\n         * import http from 'node:http';\n         * import { pipeline } from 'node:stream';\n         *\n         * const server = http.createServer((req, res) => {\n         *   const fileStream = fs.createReadStream('./fileNotExist.txt');\n         *   pipeline(fileStream, res, (err) => {\n         *     if (err) {\n         *       console.log(err); // No such file\n         *       // this message can't be sent once `pipeline` already destroyed the socket\n         *       return res.end('error!!!');\n         *     }\n         *   });\n         * });\n         * ```\n         * @since v10.0.0\n         * @param callback Called when the pipeline is fully done.\n         */\n        function pipeline<A extends PipelineSource<any>, B extends PipelineDestination<A, any>>(\n            source: A,\n            destination: B,\n            callback: PipelineCallback<B>,\n        ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream;\n        function pipeline<\n            A extends PipelineSource<any>,\n            T1 extends PipelineTransform<A, any>,\n            B extends PipelineDestination<T1, any>,\n        >(\n            source: A,\n            transform1: T1,\n            destination: B,\n            callback: PipelineCallback<B>,\n        ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream;\n        function pipeline<\n            A extends PipelineSource<any>,\n            T1 extends PipelineTransform<A, any>,\n            T2 extends PipelineTransform<T1, any>,\n            B extends PipelineDestination<T2, any>,\n        >(\n            source: A,\n            transform1: T1,\n            transform2: T2,\n            destination: B,\n            callback: PipelineCallback<B>,\n        ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream;\n        function pipeline<\n            A extends PipelineSource<any>,\n            T1 extends PipelineTransform<A, any>,\n            T2 extends PipelineTransform<T1, any>,\n            T3 extends PipelineTransform<T2, any>,\n            B extends PipelineDestination<T3, any>,\n        >(\n            source: A,\n            transform1: T1,\n            transform2: T2,\n            transform3: T3,\n            destination: B,\n            callback: PipelineCallback<B>,\n        ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream;\n        function pipeline<\n            A extends PipelineSource<any>,\n            T1 extends PipelineTransform<A, any>,\n            T2 extends PipelineTransform<T1, any>,\n            T3 extends PipelineTransform<T2, any>,\n            T4 extends PipelineTransform<T3, any>,\n            B extends PipelineDestination<T4, any>,\n        >(\n            source: A,\n            transform1: T1,\n            transform2: T2,\n            transform3: T3,\n            transform4: T4,\n            destination: B,\n            callback: PipelineCallback<B>,\n        ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream;\n        function pipeline(\n            streams: ReadonlyArray<NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream>,\n            callback: (err: NodeJS.ErrnoException | null) => void,\n        ): NodeJS.WritableStream;\n        function pipeline(\n            stream1: NodeJS.ReadableStream,\n            stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream,\n            ...streams: Array<\n                NodeJS.ReadWriteStream | NodeJS.WritableStream | ((err: NodeJS.ErrnoException | null) => void)\n            >\n        ): NodeJS.WritableStream;\n        namespace pipeline {\n            function __promisify__<A extends PipelineSource<any>, B extends PipelineDestination<A, any>>(\n                source: A,\n                destination: B,\n                options?: PipelineOptions,\n            ): PipelinePromise<B>;\n            function __promisify__<\n                A extends PipelineSource<any>,\n                T1 extends PipelineTransform<A, any>,\n                B extends PipelineDestination<T1, any>,\n            >(\n                source: A,\n                transform1: T1,\n                destination: B,\n                options?: PipelineOptions,\n            ): PipelinePromise<B>;\n            function __promisify__<\n                A extends PipelineSource<any>,\n                T1 extends PipelineTransform<A, any>,\n                T2 extends PipelineTransform<T1, any>,\n                B extends PipelineDestination<T2, any>,\n            >(\n                source: A,\n                transform1: T1,\n                transform2: T2,\n                destination: B,\n                options?: PipelineOptions,\n            ): PipelinePromise<B>;\n            function __promisify__<\n                A extends PipelineSource<any>,\n                T1 extends PipelineTransform<A, any>,\n                T2 extends PipelineTransform<T1, any>,\n                T3 extends PipelineTransform<T2, any>,\n                B extends PipelineDestination<T3, any>,\n            >(\n                source: A,\n                transform1: T1,\n                transform2: T2,\n                transform3: T3,\n                destination: B,\n                options?: PipelineOptions,\n            ): PipelinePromise<B>;\n            function __promisify__<\n                A extends PipelineSource<any>,\n                T1 extends PipelineTransform<A, any>,\n                T2 extends PipelineTransform<T1, any>,\n                T3 extends PipelineTransform<T2, any>,\n                T4 extends PipelineTransform<T3, any>,\n                B extends PipelineDestination<T4, any>,\n            >(\n                source: A,\n                transform1: T1,\n                transform2: T2,\n                transform3: T3,\n                transform4: T4,\n                destination: B,\n                options?: PipelineOptions,\n            ): PipelinePromise<B>;\n            function __promisify__(\n                streams: ReadonlyArray<NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream>,\n                options?: PipelineOptions,\n            ): Promise<void>;\n            function __promisify__(\n                stream1: NodeJS.ReadableStream,\n                stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream,\n                ...streams: Array<NodeJS.ReadWriteStream | NodeJS.WritableStream | PipelineOptions>\n            ): Promise<void>;\n        }\n        interface Pipe {\n            close(): void;\n            hasRef(): boolean;\n            ref(): void;\n            unref(): void;\n        }\n        /**\n         * Returns whether the stream has encountered an error.\n         * @since v17.3.0, v16.14.0\n         * @experimental\n         */\n        function isErrored(stream: Readable | Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean;\n        /**\n         * Returns whether the stream is readable.\n         * @since v17.4.0, v16.14.0\n         * @experimental\n         */\n        function isReadable(stream: Readable | NodeJS.ReadableStream): boolean;\n    }\n    export = Stream;\n}\ndeclare module \"node:stream\" {\n    import stream = require(\"stream\");\n    export = stream;\n}\n",
    "node_modules/@types/node/string_decoder.d.ts": "/**\n * The `node:string_decoder` module provides an API for decoding `Buffer` objects\n * into strings in a manner that preserves encoded multi-byte UTF-8 and UTF-16\n * characters. It can be accessed using:\n *\n * ```js\n * import { StringDecoder } from 'node:string_decoder';\n * ```\n *\n * The following example shows the basic use of the `StringDecoder` class.\n *\n * ```js\n * import { StringDecoder } from 'node:string_decoder';\n * const decoder = new StringDecoder('utf8');\n *\n * const cent = Buffer.from([0xC2, 0xA2]);\n * console.log(decoder.write(cent)); // Prints: ¢\n *\n * const euro = Buffer.from([0xE2, 0x82, 0xAC]);\n * console.log(decoder.write(euro)); // Prints: €\n * ```\n *\n * When a `Buffer` instance is written to the `StringDecoder` instance, an\n * internal buffer is used to ensure that the decoded string does not contain\n * any incomplete multibyte characters. These are held in the buffer until the\n * next call to `stringDecoder.write()` or until `stringDecoder.end()` is called.\n *\n * In the following example, the three UTF-8 encoded bytes of the European Euro\n * symbol (`€`) are written over three separate operations:\n *\n * ```js\n * import { StringDecoder } from 'node:string_decoder';\n * const decoder = new StringDecoder('utf8');\n *\n * decoder.write(Buffer.from([0xE2]));\n * decoder.write(Buffer.from([0x82]));\n * console.log(decoder.end(Buffer.from([0xAC]))); // Prints: €\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/string_decoder.js)\n */\ndeclare module \"string_decoder\" {\n    class StringDecoder {\n        constructor(encoding?: BufferEncoding);\n        /**\n         * Returns a decoded string, ensuring that any incomplete multibyte characters at\n         * the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the\n         * returned string and stored in an internal buffer for the next call to `stringDecoder.write()` or `stringDecoder.end()`.\n         * @since v0.1.99\n         * @param buffer The bytes to decode.\n         */\n        write(buffer: string | Buffer | NodeJS.ArrayBufferView): string;\n        /**\n         * Returns any remaining input stored in the internal buffer as a string. Bytes\n         * representing incomplete UTF-8 and UTF-16 characters will be replaced with\n         * substitution characters appropriate for the character encoding.\n         *\n         * If the `buffer` argument is provided, one final call to `stringDecoder.write()` is performed before returning the remaining input.\n         * After `end()` is called, the `stringDecoder` object can be reused for new input.\n         * @since v0.9.3\n         * @param buffer The bytes to decode.\n         */\n        end(buffer?: string | Buffer | NodeJS.ArrayBufferView): string;\n    }\n}\ndeclare module \"node:string_decoder\" {\n    export * from \"string_decoder\";\n}\n",
    "node_modules/@types/node/test.d.ts": "/**\n * The `node:test` module facilitates the creation of JavaScript tests.\n * To access it:\n *\n * ```js\n * import test from 'node:test';\n * ```\n *\n * This module is only available under the `node:` scheme. The following will not\n * work:\n *\n * ```js\n * import test from 'node:test';\n * ```\n *\n * Tests created via the `test` module consist of a single function that is\n * processed in one of three ways:\n *\n * 1. A synchronous function that is considered failing if it throws an exception,\n * and is considered passing otherwise.\n * 2. A function that returns a `Promise` that is considered failing if the `Promise` rejects, and is considered passing if the `Promise` fulfills.\n * 3. A function that receives a callback function. If the callback receives any\n * truthy value as its first argument, the test is considered failing. If a\n * falsy value is passed as the first argument to the callback, the test is\n * considered passing. If the test function receives a callback function and\n * also returns a `Promise`, the test will fail.\n *\n * The following example illustrates how tests are written using the `test` module.\n *\n * ```js\n * test('synchronous passing test', (t) => {\n *   // This test passes because it does not throw an exception.\n *   assert.strictEqual(1, 1);\n * });\n *\n * test('synchronous failing test', (t) => {\n *   // This test fails because it throws an exception.\n *   assert.strictEqual(1, 2);\n * });\n *\n * test('asynchronous passing test', async (t) => {\n *   // This test passes because the Promise returned by the async\n *   // function is settled and not rejected.\n *   assert.strictEqual(1, 1);\n * });\n *\n * test('asynchronous failing test', async (t) => {\n *   // This test fails because the Promise returned by the async\n *   // function is rejected.\n *   assert.strictEqual(1, 2);\n * });\n *\n * test('failing test using Promises', (t) => {\n *   // Promises can be used directly as well.\n *   return new Promise((resolve, reject) => {\n *     setImmediate(() => {\n *       reject(new Error('this will cause the test to fail'));\n *     });\n *   });\n * });\n *\n * test('callback passing test', (t, done) => {\n *   // done() is the callback function. When the setImmediate() runs, it invokes\n *   // done() with no arguments.\n *   setImmediate(done);\n * });\n *\n * test('callback failing test', (t, done) => {\n *   // When the setImmediate() runs, done() is invoked with an Error object and\n *   // the test fails.\n *   setImmediate(() => {\n *     done(new Error('callback failure'));\n *   });\n * });\n * ```\n *\n * If any tests fail, the process exit code is set to `1`.\n * @since v18.0.0, v16.17.0\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/test.js)\n */\ndeclare module \"node:test\" {\n    import { Readable } from \"node:stream\";\n    /**\n     * **Note:** `shard` is used to horizontally parallelize test running across\n     * machines or processes, ideal for large-scale executions across varied\n     * environments. It's incompatible with `watch` mode, tailored for rapid\n     * code iteration by automatically rerunning tests on file changes.\n     *\n     * ```js\n     * import { tap } from 'node:test/reporters';\n     * import { run } from 'node:test';\n     * import process from 'node:process';\n     * import path from 'node:path';\n     *\n     * run({ files: [path.resolve('./tests/test.js')] })\n     *   .compose(tap)\n     *   .pipe(process.stdout);\n     * ```\n     * @since v18.9.0, v16.19.0\n     * @param options Configuration options for running tests.\n     */\n    function run(options?: RunOptions): TestsStream;\n    /**\n     * The `test()` function is the value imported from the `test` module. Each\n     * invocation of this function results in reporting the test to the `TestsStream`.\n     *\n     * The `TestContext` object passed to the `fn` argument can be used to perform\n     * actions related to the current test. Examples include skipping the test, adding\n     * additional diagnostic information, or creating subtests.\n     *\n     * `test()` returns a `Promise` that fulfills once the test completes.\n     * if `test()` is called within a suite, it fulfills immediately.\n     * The return value can usually be discarded for top level tests.\n     * However, the return value from subtests should be used to prevent the parent\n     * test from finishing first and cancelling the subtest\n     * as shown in the following example.\n     *\n     * ```js\n     * test('top level test', async (t) => {\n     *   // The setTimeout() in the following subtest would cause it to outlive its\n     *   // parent test if 'await' is removed on the next line. Once the parent test\n     *   // completes, it will cancel any outstanding subtests.\n     *   await t.test('longer running subtest', async (t) => {\n     *     return new Promise((resolve, reject) => {\n     *       setTimeout(resolve, 1000);\n     *     });\n     *   });\n     * });\n     * ```\n     *\n     * The `timeout` option can be used to fail the test if it takes longer than `timeout` milliseconds to complete. However, it is not a reliable mechanism for\n     * canceling tests because a running test might block the application thread and\n     * thus prevent the scheduled cancellation.\n     * @since v18.0.0, v16.17.0\n     * @param name The name of the test, which is displayed when reporting test results.\n     * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.\n     * @param options Configuration options for the test.\n     * @param fn The function under test. The first argument to this function is a {@link TestContext} object.\n     * If the test uses callbacks, the callback function is passed as the second argument.\n     * @return Fulfilled with `undefined` once the test completes, or immediately if the test runs within a suite.\n     */\n    function test(name?: string, fn?: TestFn): Promise<void>;\n    function test(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n    function test(options?: TestOptions, fn?: TestFn): Promise<void>;\n    function test(fn?: TestFn): Promise<void>;\n    namespace test {\n        export {\n            after,\n            afterEach,\n            assert,\n            before,\n            beforeEach,\n            describe,\n            it,\n            mock,\n            only,\n            run,\n            skip,\n            snapshot,\n            suite,\n            test,\n            todo,\n        };\n    }\n    /**\n     * The `suite()` function is imported from the `node:test` module.\n     * @param name The name of the suite, which is displayed when reporting test results.\n     * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.\n     * @param options Configuration options for the suite. This supports the same options as {@link test}.\n     * @param fn The suite function declaring nested tests and suites. The first argument to this function is a {@link SuiteContext} object.\n     * @return Immediately fulfilled with `undefined`.\n     * @since v20.13.0\n     */\n    function suite(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n    function suite(name?: string, fn?: SuiteFn): Promise<void>;\n    function suite(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n    function suite(fn?: SuiteFn): Promise<void>;\n    namespace suite {\n        /**\n         * Shorthand for skipping a suite. This is the same as calling {@link suite} with `options.skip` set to `true`.\n         * @since v20.13.0\n         */\n        function skip(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function skip(name?: string, fn?: SuiteFn): Promise<void>;\n        function skip(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function skip(fn?: SuiteFn): Promise<void>;\n        /**\n         * Shorthand for marking a suite as `TODO`. This is the same as calling {@link suite} with `options.todo` set to `true`.\n         * @since v20.13.0\n         */\n        function todo(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function todo(name?: string, fn?: SuiteFn): Promise<void>;\n        function todo(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function todo(fn?: SuiteFn): Promise<void>;\n        /**\n         * Shorthand for marking a suite as `only`. This is the same as calling {@link suite} with `options.only` set to `true`.\n         * @since v20.13.0\n         */\n        function only(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function only(name?: string, fn?: SuiteFn): Promise<void>;\n        function only(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function only(fn?: SuiteFn): Promise<void>;\n    }\n    /**\n     * Alias for {@link suite}.\n     *\n     * The `describe()` function is imported from the `node:test` module.\n     */\n    function describe(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n    function describe(name?: string, fn?: SuiteFn): Promise<void>;\n    function describe(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n    function describe(fn?: SuiteFn): Promise<void>;\n    namespace describe {\n        /**\n         * Shorthand for skipping a suite. This is the same as calling {@link describe} with `options.skip` set to `true`.\n         * @since v18.15.0\n         */\n        function skip(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function skip(name?: string, fn?: SuiteFn): Promise<void>;\n        function skip(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function skip(fn?: SuiteFn): Promise<void>;\n        /**\n         * Shorthand for marking a suite as `TODO`. This is the same as calling {@link describe} with `options.todo` set to `true`.\n         * @since v18.15.0\n         */\n        function todo(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function todo(name?: string, fn?: SuiteFn): Promise<void>;\n        function todo(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function todo(fn?: SuiteFn): Promise<void>;\n        /**\n         * Shorthand for marking a suite as `only`. This is the same as calling {@link describe} with `options.only` set to `true`.\n         * @since v18.15.0\n         */\n        function only(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function only(name?: string, fn?: SuiteFn): Promise<void>;\n        function only(options?: TestOptions, fn?: SuiteFn): Promise<void>;\n        function only(fn?: SuiteFn): Promise<void>;\n    }\n    /**\n     * Alias for {@link test}.\n     *\n     * The `it()` function is imported from the `node:test` module.\n     * @since v18.6.0, v16.17.0\n     */\n    function it(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n    function it(name?: string, fn?: TestFn): Promise<void>;\n    function it(options?: TestOptions, fn?: TestFn): Promise<void>;\n    function it(fn?: TestFn): Promise<void>;\n    namespace it {\n        /**\n         * Shorthand for skipping a test. This is the same as calling {@link it} with `options.skip` set to `true`.\n         */\n        function skip(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n        function skip(name?: string, fn?: TestFn): Promise<void>;\n        function skip(options?: TestOptions, fn?: TestFn): Promise<void>;\n        function skip(fn?: TestFn): Promise<void>;\n        /**\n         * Shorthand for marking a test as `TODO`. This is the same as calling {@link it} with `options.todo` set to `true`.\n         */\n        function todo(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n        function todo(name?: string, fn?: TestFn): Promise<void>;\n        function todo(options?: TestOptions, fn?: TestFn): Promise<void>;\n        function todo(fn?: TestFn): Promise<void>;\n        /**\n         * Shorthand for marking a test as `only`. This is the same as calling {@link it} with `options.only` set to `true`.\n         * @since v18.15.0\n         */\n        function only(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n        function only(name?: string, fn?: TestFn): Promise<void>;\n        function only(options?: TestOptions, fn?: TestFn): Promise<void>;\n        function only(fn?: TestFn): Promise<void>;\n    }\n    /**\n     * Shorthand for skipping a test. This is the same as calling {@link test} with `options.skip` set to `true`.\n     * @since v20.2.0\n     */\n    function skip(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n    function skip(name?: string, fn?: TestFn): Promise<void>;\n    function skip(options?: TestOptions, fn?: TestFn): Promise<void>;\n    function skip(fn?: TestFn): Promise<void>;\n    /**\n     * Shorthand for marking a test as `TODO`. This is the same as calling {@link test} with `options.todo` set to `true`.\n     * @since v20.2.0\n     */\n    function todo(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n    function todo(name?: string, fn?: TestFn): Promise<void>;\n    function todo(options?: TestOptions, fn?: TestFn): Promise<void>;\n    function todo(fn?: TestFn): Promise<void>;\n    /**\n     * Shorthand for marking a test as `only`. This is the same as calling {@link test} with `options.only` set to `true`.\n     * @since v20.2.0\n     */\n    function only(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;\n    function only(name?: string, fn?: TestFn): Promise<void>;\n    function only(options?: TestOptions, fn?: TestFn): Promise<void>;\n    function only(fn?: TestFn): Promise<void>;\n    /**\n     * The type of a function passed to {@link test}. The first argument to this function is a {@link TestContext} object.\n     * If the test uses callbacks, the callback function is passed as the second argument.\n     */\n    type TestFn = (t: TestContext, done: (result?: any) => void) => void | Promise<void>;\n    /**\n     * The type of a suite test function. The argument to this function is a {@link SuiteContext} object.\n     */\n    type SuiteFn = (s: SuiteContext) => void | Promise<void>;\n    interface TestShard {\n        /**\n         * A positive integer between 1 and `total` that specifies the index of the shard to run.\n         */\n        index: number;\n        /**\n         * A positive integer that specifies the total number of shards to split the test files to.\n         */\n        total: number;\n    }\n    interface RunOptions {\n        /**\n         * If a number is provided, then that many test processes would run in parallel, where each process corresponds to one test file.\n         * If `true`, it would run `os.availableParallelism() - 1` test files in parallel. If `false`, it would only run one test file at a time.\n         * @default false\n         */\n        concurrency?: number | boolean | undefined;\n        /**\n         * An array containing the list of files to run. If omitted, files are run according to the\n         * [test runner execution model](https://nodejs.org/docs/latest-v22.x/api/test.html#test-runner-execution-model).\n         */\n        files?: readonly string[] | undefined;\n        /**\n         * Configures the test runner to exit the process once all known\n         * tests have finished executing even if the event loop would\n         * otherwise remain active.\n         * @default false\n         */\n        forceExit?: boolean | undefined;\n        /**\n         * An array containing the list of glob patterns to match test files.\n         * This option cannot be used together with `files`. If omitted, files are run according to the\n         * [test runner execution model](https://nodejs.org/docs/latest-v22.x/api/test.html#test-runner-execution-model).\n         * @since v22.6.0\n         */\n        globPatterns?: readonly string[] | undefined;\n        /**\n         * Sets inspector port of test child process.\n         * This can be a number, or a function that takes no arguments and returns a\n         * number. If a nullish value is provided, each process gets its own port,\n         * incremented from the primary's `process.debugPort`. This option is ignored\n         * if the `isolation` option is set to `'none'` as no child processes are\n         * spawned.\n         * @default undefined\n         */\n        inspectPort?: number | (() => number) | undefined;\n        /**\n         * Configures the type of test isolation. If set to\n         * `'process'`, each test file is run in a separate child process. If set to\n         * `'none'`, all test files run in the current process.\n         * @default 'process'\n         * @since v22.8.0\n         */\n        isolation?: \"process\" | \"none\" | undefined;\n        /**\n         * If truthy, the test context will only run tests that have the `only` option set\n         */\n        only?: boolean | undefined;\n        /**\n         * A function that accepts the `TestsStream` instance and can be used to setup listeners before any tests are run.\n         * @default undefined\n         */\n        setup?: ((reporter: TestsStream) => void | Promise<void>) | undefined;\n        /**\n         * An array of CLI flags to pass to the `node` executable when\n         * spawning the subprocesses. This option has no effect when `isolation` is `'none`'.\n         * @since v22.10.0\n         * @default []\n         */\n        execArgv?: readonly string[] | undefined;\n        /**\n         * An array of CLI flags to pass to each test file when spawning the\n         * subprocesses. This option has no effect when `isolation` is `'none'`.\n         * @since v22.10.0\n         * @default []\n         */\n        argv?: readonly string[] | undefined;\n        /**\n         * Allows aborting an in-progress test execution.\n         */\n        signal?: AbortSignal | undefined;\n        /**\n         * If provided, only run tests whose name matches the provided pattern.\n         * Strings are interpreted as JavaScript regular expressions.\n         * @default undefined\n         */\n        testNamePatterns?: string | RegExp | ReadonlyArray<string | RegExp> | undefined;\n        /**\n         * A String, RegExp or a RegExp Array, that can be used to exclude running tests whose\n         * name matches the provided pattern. Test name patterns are interpreted as JavaScript\n         * regular expressions. For each test that is executed, any corresponding test hooks,\n         * such as `beforeEach()`, are also run.\n         * @default undefined\n         * @since v22.1.0\n         */\n        testSkipPatterns?: string | RegExp | ReadonlyArray<string | RegExp> | undefined;\n        /**\n         * The number of milliseconds after which the test execution will fail.\n         * If unspecified, subtests inherit this value from their parent.\n         * @default Infinity\n         */\n        timeout?: number | undefined;\n        /**\n         * Whether to run in watch mode or not.\n         * @default false\n         */\n        watch?: boolean | undefined;\n        /**\n         * Running tests in a specific shard.\n         * @default undefined\n         */\n        shard?: TestShard | undefined;\n        /**\n         * enable [code coverage](https://nodejs.org/docs/latest-v22.x/api/test.html#collecting-code-coverage) collection.\n         * @since v22.10.0\n         * @default false\n         */\n        coverage?: boolean | undefined;\n        /**\n         * Excludes specific files from code coverage\n         * using a glob pattern, which can match both absolute and relative file paths.\n         * This property is only applicable when `coverage` was set to `true`.\n         * If both `coverageExcludeGlobs` and `coverageIncludeGlobs` are provided,\n         * files must meet **both** criteria to be included in the coverage report.\n         * @since v22.10.0\n         * @default undefined\n         */\n        coverageExcludeGlobs?: string | readonly string[] | undefined;\n        /**\n         * Includes specific files in code coverage\n         * using a glob pattern, which can match both absolute and relative file paths.\n         * This property is only applicable when `coverage` was set to `true`.\n         * If both `coverageExcludeGlobs` and `coverageIncludeGlobs` are provided,\n         * files must meet **both** criteria to be included in the coverage report.\n         * @since v22.10.0\n         * @default undefined\n         */\n        coverageIncludeGlobs?: string | readonly string[] | undefined;\n        /**\n         * Require a minimum percent of covered lines. If code\n         * coverage does not reach the threshold specified, the process will exit with code `1`.\n         * @since v22.10.0\n         * @default 0\n         */\n        lineCoverage?: number | undefined;\n        /**\n         * Require a minimum percent of covered branches. If code\n         * coverage does not reach the threshold specified, the process will exit with code `1`.\n         * @since v22.10.0\n         * @default 0\n         */\n        branchCoverage?: number | undefined;\n        /**\n         * Require a minimum percent of covered functions. If code\n         * coverage does not reach the threshold specified, the process will exit with code `1`.\n         * @since v22.10.0\n         * @default 0\n         */\n        functionCoverage?: number | undefined;\n    }\n    /**\n     * A successful call to `run()` will return a new `TestsStream` object, streaming a series of events representing the execution of the tests.\n     *\n     * Some of the events are guaranteed to be emitted in the same order as the tests are defined, while others are emitted in the order that the tests execute.\n     * @since v18.9.0, v16.19.0\n     */\n    class TestsStream extends Readable implements NodeJS.ReadableStream {\n        addListener(event: \"test:coverage\", listener: (data: TestCoverage) => void): this;\n        addListener(event: \"test:complete\", listener: (data: TestComplete) => void): this;\n        addListener(event: \"test:dequeue\", listener: (data: TestDequeue) => void): this;\n        addListener(event: \"test:diagnostic\", listener: (data: DiagnosticData) => void): this;\n        addListener(event: \"test:enqueue\", listener: (data: TestEnqueue) => void): this;\n        addListener(event: \"test:fail\", listener: (data: TestFail) => void): this;\n        addListener(event: \"test:pass\", listener: (data: TestPass) => void): this;\n        addListener(event: \"test:plan\", listener: (data: TestPlan) => void): this;\n        addListener(event: \"test:start\", listener: (data: TestStart) => void): this;\n        addListener(event: \"test:stderr\", listener: (data: TestStderr) => void): this;\n        addListener(event: \"test:stdout\", listener: (data: TestStdout) => void): this;\n        addListener(event: \"test:summary\", listener: (data: TestSummary) => void): this;\n        addListener(event: \"test:watch:drained\", listener: () => void): this;\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        emit(event: \"test:coverage\", data: TestCoverage): boolean;\n        emit(event: \"test:complete\", data: TestComplete): boolean;\n        emit(event: \"test:dequeue\", data: TestDequeue): boolean;\n        emit(event: \"test:diagnostic\", data: DiagnosticData): boolean;\n        emit(event: \"test:enqueue\", data: TestEnqueue): boolean;\n        emit(event: \"test:fail\", data: TestFail): boolean;\n        emit(event: \"test:pass\", data: TestPass): boolean;\n        emit(event: \"test:plan\", data: TestPlan): boolean;\n        emit(event: \"test:start\", data: TestStart): boolean;\n        emit(event: \"test:stderr\", data: TestStderr): boolean;\n        emit(event: \"test:stdout\", data: TestStdout): boolean;\n        emit(event: \"test:summary\", data: TestSummary): boolean;\n        emit(event: \"test:watch:drained\"): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"test:coverage\", listener: (data: TestCoverage) => void): this;\n        on(event: \"test:complete\", listener: (data: TestComplete) => void): this;\n        on(event: \"test:dequeue\", listener: (data: TestDequeue) => void): this;\n        on(event: \"test:diagnostic\", listener: (data: DiagnosticData) => void): this;\n        on(event: \"test:enqueue\", listener: (data: TestEnqueue) => void): this;\n        on(event: \"test:fail\", listener: (data: TestFail) => void): this;\n        on(event: \"test:pass\", listener: (data: TestPass) => void): this;\n        on(event: \"test:plan\", listener: (data: TestPlan) => void): this;\n        on(event: \"test:start\", listener: (data: TestStart) => void): this;\n        on(event: \"test:stderr\", listener: (data: TestStderr) => void): this;\n        on(event: \"test:stdout\", listener: (data: TestStdout) => void): this;\n        on(event: \"test:summary\", listener: (data: TestSummary) => void): this;\n        on(event: \"test:watch:drained\", listener: () => void): this;\n        on(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"test:coverage\", listener: (data: TestCoverage) => void): this;\n        once(event: \"test:complete\", listener: (data: TestComplete) => void): this;\n        once(event: \"test:dequeue\", listener: (data: TestDequeue) => void): this;\n        once(event: \"test:diagnostic\", listener: (data: DiagnosticData) => void): this;\n        once(event: \"test:enqueue\", listener: (data: TestEnqueue) => void): this;\n        once(event: \"test:fail\", listener: (data: TestFail) => void): this;\n        once(event: \"test:pass\", listener: (data: TestPass) => void): this;\n        once(event: \"test:plan\", listener: (data: TestPlan) => void): this;\n        once(event: \"test:start\", listener: (data: TestStart) => void): this;\n        once(event: \"test:stderr\", listener: (data: TestStderr) => void): this;\n        once(event: \"test:stdout\", listener: (data: TestStdout) => void): this;\n        once(event: \"test:summary\", listener: (data: TestSummary) => void): this;\n        once(event: \"test:watch:drained\", listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"test:coverage\", listener: (data: TestCoverage) => void): this;\n        prependListener(event: \"test:complete\", listener: (data: TestComplete) => void): this;\n        prependListener(event: \"test:dequeue\", listener: (data: TestDequeue) => void): this;\n        prependListener(event: \"test:diagnostic\", listener: (data: DiagnosticData) => void): this;\n        prependListener(event: \"test:enqueue\", listener: (data: TestEnqueue) => void): this;\n        prependListener(event: \"test:fail\", listener: (data: TestFail) => void): this;\n        prependListener(event: \"test:pass\", listener: (data: TestPass) => void): this;\n        prependListener(event: \"test:plan\", listener: (data: TestPlan) => void): this;\n        prependListener(event: \"test:start\", listener: (data: TestStart) => void): this;\n        prependListener(event: \"test:stderr\", listener: (data: TestStderr) => void): this;\n        prependListener(event: \"test:stdout\", listener: (data: TestStdout) => void): this;\n        prependListener(event: \"test:summary\", listener: (data: TestSummary) => void): this;\n        prependListener(event: \"test:watch:drained\", listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"test:coverage\", listener: (data: TestCoverage) => void): this;\n        prependOnceListener(event: \"test:complete\", listener: (data: TestComplete) => void): this;\n        prependOnceListener(event: \"test:dequeue\", listener: (data: TestDequeue) => void): this;\n        prependOnceListener(event: \"test:diagnostic\", listener: (data: DiagnosticData) => void): this;\n        prependOnceListener(event: \"test:enqueue\", listener: (data: TestEnqueue) => void): this;\n        prependOnceListener(event: \"test:fail\", listener: (data: TestFail) => void): this;\n        prependOnceListener(event: \"test:pass\", listener: (data: TestPass) => void): this;\n        prependOnceListener(event: \"test:plan\", listener: (data: TestPlan) => void): this;\n        prependOnceListener(event: \"test:start\", listener: (data: TestStart) => void): this;\n        prependOnceListener(event: \"test:stderr\", listener: (data: TestStderr) => void): this;\n        prependOnceListener(event: \"test:stdout\", listener: (data: TestStdout) => void): this;\n        prependOnceListener(event: \"test:summary\", listener: (data: TestSummary) => void): this;\n        prependOnceListener(event: \"test:watch:drained\", listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n    }\n    /**\n     * An instance of `TestContext` is passed to each test function in order to\n     * interact with the test runner. However, the `TestContext` constructor is not\n     * exposed as part of the API.\n     * @since v18.0.0, v16.17.0\n     */\n    class TestContext {\n        /**\n         * An object containing assertion methods bound to the test context.\n         * The top-level functions from the `node:assert` module are exposed here for the purpose of creating test plans.\n         *\n         * **Note:** Some of the functions from `node:assert` contain type assertions. If these are called via the\n         * TestContext `assert` object, then the context parameter in the test's function signature **must be explicitly typed**\n         * (ie. the parameter must have a type annotation), otherwise an error will be raised by the TypeScript compiler:\n         * ```ts\n         * import { test, type TestContext } from 'node:test';\n         *\n         * // The test function's context parameter must have a type annotation.\n         * test('example', (t: TestContext) => {\n         *   t.assert.deepStrictEqual(actual, expected);\n         * });\n         *\n         * // Omitting the type annotation will result in a compilation error.\n         * test('example', t => {\n         *   t.assert.deepStrictEqual(actual, expected); // Error: 't' needs an explicit type annotation.\n         * });\n         * ```\n         * @since v22.2.0, v20.15.0\n         */\n        readonly assert: TestContextAssert;\n        /**\n         * This function is used to create a hook running before subtest of the current test.\n         * @param fn The hook function. The first argument to this function is a `TestContext` object.\n         * If the hook uses callbacks, the callback function is passed as the second argument.\n         * @param options Configuration options for the hook.\n         * @since v20.1.0, v18.17.0\n         */\n        before(fn?: TestContextHookFn, options?: HookOptions): void;\n        /**\n         * This function is used to create a hook running before each subtest of the current test.\n         * @param fn The hook function. The first argument to this function is a `TestContext` object.\n         * If the hook uses callbacks, the callback function is passed as the second argument.\n         * @param options Configuration options for the hook.\n         * @since v18.8.0\n         */\n        beforeEach(fn?: TestContextHookFn, options?: HookOptions): void;\n        /**\n         * This function is used to create a hook that runs after the current test finishes.\n         * @param fn The hook function. The first argument to this function is a `TestContext` object.\n         * If the hook uses callbacks, the callback function is passed as the second argument.\n         * @param options Configuration options for the hook.\n         * @since v18.13.0\n         */\n        after(fn?: TestContextHookFn, options?: HookOptions): void;\n        /**\n         * This function is used to create a hook running after each subtest of the current test.\n         * @param fn The hook function. The first argument to this function is a `TestContext` object.\n         * If the hook uses callbacks, the callback function is passed as the second argument.\n         * @param options Configuration options for the hook.\n         * @since v18.8.0\n         */\n        afterEach(fn?: TestContextHookFn, options?: HookOptions): void;\n        /**\n         * This function is used to write diagnostics to the output. Any diagnostic\n         * information is included at the end of the test's results. This function does\n         * not return a value.\n         *\n         * ```js\n         * test('top level test', (t) => {\n         *   t.diagnostic('A diagnostic message');\n         * });\n         * ```\n         * @since v18.0.0, v16.17.0\n         * @param message Message to be reported.\n         */\n        diagnostic(message: string): void;\n        /**\n         * The absolute path of the test file that created the current test. If a test file imports\n         * additional modules that generate tests, the imported tests will return the path of the root test file.\n         * @since v22.6.0\n         */\n        readonly filePath: string | undefined;\n        /**\n         * The name of the test and each of its ancestors, separated by `>`.\n         * @since v22.3.0\n         */\n        readonly fullName: string;\n        /**\n         * The name of the test.\n         * @since v18.8.0, v16.18.0\n         */\n        readonly name: string;\n        /**\n         * This function is used to set the number of assertions and subtests that are expected to run\n         * within the test. If the number of assertions and subtests that run does not match the\n         * expected count, the test will fail.\n         *\n         * > Note: To make sure assertions are tracked, `t.assert` must be used instead of `assert` directly.\n         *\n         * ```js\n         * test('top level test', (t) => {\n         *   t.plan(2);\n         *   t.assert.ok('some relevant assertion here');\n         *   t.test('subtest', () => {});\n         * });\n         * ```\n         *\n         * When working with asynchronous code, the `plan` function can be used to ensure that the\n         * correct number of assertions are run:\n         *\n         * ```js\n         * test('planning with streams', (t, done) => {\n         *   function* generate() {\n         *     yield 'a';\n         *     yield 'b';\n         *     yield 'c';\n         *   }\n         *   const expected = ['a', 'b', 'c'];\n         *   t.plan(expected.length);\n         *   const stream = Readable.from(generate());\n         *   stream.on('data', (chunk) => {\n         *     t.assert.strictEqual(chunk, expected.shift());\n         *   });\n         *\n         *   stream.on('end', () => {\n         *     done();\n         *   });\n         * });\n         * ```\n         *\n         * When using the `wait` option, you can control how long the test will wait for the expected assertions.\n         * For example, setting a maximum wait time ensures that the test will wait for asynchronous assertions\n         * to complete within the specified timeframe:\n         *\n         * ```js\n         * test('plan with wait: 2000 waits for async assertions', (t) => {\n         *   t.plan(1, { wait: 2000 }); // Waits for up to 2 seconds for the assertion to complete.\n         *\n         *   const asyncActivity = () => {\n         *     setTimeout(() => {\n         *          *       t.assert.ok(true, 'Async assertion completed within the wait time');\n         *     }, 1000); // Completes after 1 second, within the 2-second wait time.\n         *   };\n         *\n         *   asyncActivity(); // The test will pass because the assertion is completed in time.\n         * });\n         * ```\n         *\n         * Note: If a `wait` timeout is specified, it begins counting down only after the test function finishes executing.\n         * @since v22.2.0\n         */\n        plan(count: number, options?: TestContextPlanOptions): void;\n        /**\n         * If `shouldRunOnlyTests` is truthy, the test context will only run tests that\n         * have the `only` option set. Otherwise, all tests are run. If Node.js was not\n         * started with the `--test-only` command-line option, this function is a\n         * no-op.\n         *\n         * ```js\n         * test('top level test', (t) => {\n         *   // The test context can be set to run subtests with the 'only' option.\n         *   t.runOnly(true);\n         *   return Promise.all([\n         *     t.test('this subtest is now skipped'),\n         *     t.test('this subtest is run', { only: true }),\n         *   ]);\n         * });\n         * ```\n         * @since v18.0.0, v16.17.0\n         * @param shouldRunOnlyTests Whether or not to run `only` tests.\n         */\n        runOnly(shouldRunOnlyTests: boolean): void;\n        /**\n         * ```js\n         * test('top level test', async (t) => {\n         *   await fetch('some/uri', { signal: t.signal });\n         * });\n         * ```\n         * @since v18.7.0, v16.17.0\n         */\n        readonly signal: AbortSignal;\n        /**\n         * This function causes the test's output to indicate the test as skipped. If `message` is provided, it is included in the output. Calling `skip()` does\n         * not terminate execution of the test function. This function does not return a\n         * value.\n         *\n         * ```js\n         * test('top level test', (t) => {\n         *   // Make sure to return here as well if the test contains additional logic.\n         *   t.skip('this is skipped');\n         * });\n         * ```\n         * @since v18.0.0, v16.17.0\n         * @param message Optional skip message.\n         */\n        skip(message?: string): void;\n        /**\n         * This function adds a `TODO` directive to the test's output. If `message` is\n         * provided, it is included in the output. Calling `todo()` does not terminate\n         * execution of the test function. This function does not return a value.\n         *\n         * ```js\n         * test('top level test', (t) => {\n         *   // This test is marked as `TODO`\n         *   t.todo('this is a todo');\n         * });\n         * ```\n         * @since v18.0.0, v16.17.0\n         * @param message Optional `TODO` message.\n         */\n        todo(message?: string): void;\n        /**\n         * This function is used to create subtests under the current test. This function behaves in\n         * the same fashion as the top level {@link test} function.\n         * @since v18.0.0\n         * @param name The name of the test, which is displayed when reporting test results.\n         * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.\n         * @param options Configuration options for the test.\n         * @param fn The function under test. This first argument to this function is a {@link TestContext} object.\n         * If the test uses callbacks, the callback function is passed as the second argument.\n         * @returns A {@link Promise} resolved with `undefined` once the test completes.\n         */\n        test: typeof test;\n        /**\n         * This method polls a `condition` function until that function either returns\n         * successfully or the operation times out.\n         * @since v22.14.0\n         * @param condition An assertion function that is invoked\n         * periodically until it completes successfully or the defined polling timeout\n         * elapses. Successful completion is defined as not throwing or rejecting. This\n         * function does not accept any arguments, and is allowed to return any value.\n         * @param options An optional configuration object for the polling operation.\n         * @returns Fulfilled with the value returned by `condition`.\n         */\n        waitFor<T>(condition: () => T, options?: TestContextWaitForOptions): Promise<Awaited<T>>;\n        /**\n         * Each test provides its own MockTracker instance.\n         */\n        readonly mock: MockTracker;\n    }\n    interface TestContextAssert extends\n        Pick<\n            typeof import(\"assert\"),\n            | \"deepEqual\"\n            | \"deepStrictEqual\"\n            | \"doesNotMatch\"\n            | \"doesNotReject\"\n            | \"doesNotThrow\"\n            | \"equal\"\n            | \"fail\"\n            | \"ifError\"\n            | \"match\"\n            | \"notDeepEqual\"\n            | \"notDeepStrictEqual\"\n            | \"notEqual\"\n            | \"notStrictEqual\"\n            | \"ok\"\n            | \"partialDeepStrictEqual\"\n            | \"rejects\"\n            | \"strictEqual\"\n            | \"throws\"\n        >\n    {\n        /**\n         * This function serializes `value` and writes it to the file specified by `path`.\n         *\n         * ```js\n         * test('snapshot test with default serialization', (t) => {\n         *   t.assert.fileSnapshot({ value1: 1, value2: 2 }, './snapshots/snapshot.json');\n         * });\n         * ```\n         *\n         * This function differs from `context.assert.snapshot()` in the following ways:\n         *\n         * * The snapshot file path is explicitly provided by the user.\n         * * Each snapshot file is limited to a single snapshot value.\n         * * No additional escaping is performed by the test runner.\n         *\n         * These differences allow snapshot files to better support features such as syntax\n         * highlighting.\n         * @since v22.14.0\n         * @param value A value to serialize to a string. If Node.js was started with\n         * the [`--test-update-snapshots`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--test-update-snapshots)\n         * flag, the serialized value is written to\n         * `path`. Otherwise, the serialized value is compared to the contents of the\n         * existing snapshot file.\n         * @param path The file where the serialized `value` is written.\n         * @param options Optional configuration options.\n         */\n        fileSnapshot(value: any, path: string, options?: AssertSnapshotOptions): void;\n        /**\n         * This function implements assertions for snapshot testing.\n         * ```js\n         * test('snapshot test with default serialization', (t) => {\n         *   t.assert.snapshot({ value1: 1, value2: 2 });\n         * });\n         *\n         * test('snapshot test with custom serialization', (t) => {\n         *   t.assert.snapshot({ value3: 3, value4: 4 }, {\n         *     serializers: [(value) => JSON.stringify(value)]\n         *   });\n         * });\n         * ```\n         * @since v22.3.0\n         * @param value A value to serialize to a string. If Node.js was started with\n         * the [`--test-update-snapshots`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--test-update-snapshots)\n         * flag, the serialized value is written to\n         * the snapshot file. Otherwise, the serialized value is compared to the\n         * corresponding value in the existing snapshot file.\n         */\n        snapshot(value: any, options?: AssertSnapshotOptions): void;\n        /**\n         * A custom assertion function registered with `assert.register()`.\n         */\n        [name: string]: (...args: any[]) => void;\n    }\n    interface AssertSnapshotOptions {\n        /**\n         * An array of synchronous functions used to serialize `value` into a string.\n         * `value` is passed as the only argument to the first serializer function.\n         * The return value of each serializer is passed as input to the next serializer.\n         * Once all serializers have run, the resulting value is coerced to a string.\n         *\n         * If no serializers are provided, the test runner's default serializers are used.\n         */\n        serializers?: ReadonlyArray<(value: any) => any> | undefined;\n    }\n    interface TestContextPlanOptions {\n        /**\n         * The wait time for the plan:\n         * * If `true`, the plan waits indefinitely for all assertions and subtests to run.\n         * * If `false`, the plan performs an immediate check after the test function completes,\n         * without waiting for any pending assertions or subtests.\n         * Any assertions or subtests that complete after this check will not be counted towards the plan.\n         * * If a number, it specifies the maximum wait time in milliseconds\n         * before timing out while waiting for expected assertions and subtests to be matched.\n         * If the timeout is reached, the test will fail.\n         * @default false\n         */\n        wait?: boolean | number | undefined;\n    }\n    interface TestContextWaitForOptions {\n        /**\n         * The number of milliseconds to wait after an unsuccessful\n         * invocation of `condition` before trying again.\n         * @default 50\n         */\n        interval?: number | undefined;\n        /**\n         * The poll timeout in milliseconds. If `condition` has not\n         * succeeded by the time this elapses, an error occurs.\n         * @default 1000\n         */\n        timeout?: number | undefined;\n    }\n\n    /**\n     * An instance of `SuiteContext` is passed to each suite function in order to\n     * interact with the test runner. However, the `SuiteContext` constructor is not\n     * exposed as part of the API.\n     * @since v18.7.0, v16.17.0\n     */\n    class SuiteContext {\n        /**\n         * The absolute path of the test file that created the current suite. If a test file imports\n         * additional modules that generate suites, the imported suites will return the path of the root test file.\n         * @since v22.6.0\n         */\n        readonly filePath: string | undefined;\n        /**\n         * The name of the suite.\n         * @since v18.8.0, v16.18.0\n         */\n        readonly name: string;\n        /**\n         * Can be used to abort test subtasks when the test has been aborted.\n         * @since v18.7.0, v16.17.0\n         */\n        readonly signal: AbortSignal;\n    }\n    interface TestOptions {\n        /**\n         * If a number is provided, then that many tests would run in parallel.\n         * If truthy, it would run (number of cpu cores - 1) tests in parallel.\n         * For subtests, it will be `Infinity` tests in parallel.\n         * If falsy, it would only run one test at a time.\n         * If unspecified, subtests inherit this value from their parent.\n         * @default false\n         */\n        concurrency?: number | boolean | undefined;\n        /**\n         * If truthy, and the test context is configured to run `only` tests, then this test will be\n         * run. Otherwise, the test is skipped.\n         * @default false\n         */\n        only?: boolean | undefined;\n        /**\n         * Allows aborting an in-progress test.\n         * @since v18.8.0\n         */\n        signal?: AbortSignal | undefined;\n        /**\n         * If truthy, the test is skipped. If a string is provided, that string is displayed in the\n         * test results as the reason for skipping the test.\n         * @default false\n         */\n        skip?: boolean | string | undefined;\n        /**\n         * A number of milliseconds the test will fail after. If unspecified, subtests inherit this\n         * value from their parent.\n         * @default Infinity\n         * @since v18.7.0\n         */\n        timeout?: number | undefined;\n        /**\n         * If truthy, the test marked as `TODO`. If a string is provided, that string is displayed in\n         * the test results as the reason why the test is `TODO`.\n         * @default false\n         */\n        todo?: boolean | string | undefined;\n        /**\n         * The number of assertions and subtests expected to be run in the test.\n         * If the number of assertions run in the test does not match the number\n         * specified in the plan, the test will fail.\n         * @default undefined\n         * @since v22.2.0\n         */\n        plan?: number | undefined;\n    }\n    /**\n     * This function creates a hook that runs before executing a suite.\n     *\n     * ```js\n     * describe('tests', async () => {\n     *   before(() => console.log('about to run some test'));\n     *   it('is a subtest', () => {\n     *     assert.ok('some relevant assertion here');\n     *   });\n     * });\n     * ```\n     * @since v18.8.0, v16.18.0\n     * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.\n     * @param options Configuration options for the hook.\n     */\n    function before(fn?: HookFn, options?: HookOptions): void;\n    /**\n     * This function creates a hook that runs after executing a suite.\n     *\n     * ```js\n     * describe('tests', async () => {\n     *   after(() => console.log('finished running tests'));\n     *   it('is a subtest', () => {\n     *     assert.ok('some relevant assertion here');\n     *   });\n     * });\n     * ```\n     * @since v18.8.0, v16.18.0\n     * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.\n     * @param options Configuration options for the hook.\n     */\n    function after(fn?: HookFn, options?: HookOptions): void;\n    /**\n     * This function creates a hook that runs before each test in the current suite.\n     *\n     * ```js\n     * describe('tests', async () => {\n     *   beforeEach(() => console.log('about to run a test'));\n     *   it('is a subtest', () => {\n     *     assert.ok('some relevant assertion here');\n     *   });\n     * });\n     * ```\n     * @since v18.8.0, v16.18.0\n     * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.\n     * @param options Configuration options for the hook.\n     */\n    function beforeEach(fn?: HookFn, options?: HookOptions): void;\n    /**\n     * This function creates a hook that runs after each test in the current suite.\n     * The `afterEach()` hook is run even if the test fails.\n     *\n     * ```js\n     * describe('tests', async () => {\n     *   afterEach(() => console.log('finished running a test'));\n     *   it('is a subtest', () => {\n     *     assert.ok('some relevant assertion here');\n     *   });\n     * });\n     * ```\n     * @since v18.8.0, v16.18.0\n     * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.\n     * @param options Configuration options for the hook.\n     */\n    function afterEach(fn?: HookFn, options?: HookOptions): void;\n    /**\n     * The hook function. The first argument is the context in which the hook is called.\n     * If the hook uses callbacks, the callback function is passed as the second argument.\n     */\n    type HookFn = (c: TestContext | SuiteContext, done: (result?: any) => void) => any;\n    /**\n     * The hook function. The first argument is a `TestContext` object.\n     * If the hook uses callbacks, the callback function is passed as the second argument.\n     */\n    type TestContextHookFn = (t: TestContext, done: (result?: any) => void) => any;\n    /**\n     * Configuration options for hooks.\n     * @since v18.8.0\n     */\n    interface HookOptions {\n        /**\n         * Allows aborting an in-progress hook.\n         */\n        signal?: AbortSignal | undefined;\n        /**\n         * A number of milliseconds the hook will fail after. If unspecified, subtests inherit this\n         * value from their parent.\n         * @default Infinity\n         */\n        timeout?: number | undefined;\n    }\n    interface MockFunctionOptions {\n        /**\n         * The number of times that the mock will use the behavior of `implementation`.\n         * Once the mock function has been called `times` times,\n         * it will automatically restore the behavior of `original`.\n         * This value must be an integer greater than zero.\n         * @default Infinity\n         */\n        times?: number | undefined;\n    }\n    interface MockMethodOptions extends MockFunctionOptions {\n        /**\n         * If `true`, `object[methodName]` is treated as a getter.\n         * This option cannot be used with the `setter` option.\n         */\n        getter?: boolean | undefined;\n        /**\n         * If `true`, `object[methodName]` is treated as a setter.\n         * This option cannot be used with the `getter` option.\n         */\n        setter?: boolean | undefined;\n    }\n    type Mock<F extends Function> = F & {\n        mock: MockFunctionContext<F>;\n    };\n    type NoOpFunction = (...args: any[]) => undefined;\n    type FunctionPropertyNames<T> = {\n        [K in keyof T]: T[K] extends Function ? K : never;\n    }[keyof T];\n    interface MockModuleOptions {\n        /**\n         * If false, each call to `require()` or `import()` generates a new mock module.\n         * If true, subsequent calls will return the same module mock, and the mock module is inserted into the CommonJS cache.\n         * @default false\n         */\n        cache?: boolean | undefined;\n        /**\n         * The value to use as the mocked module's default export.\n         *\n         * If this value is not provided, ESM mocks do not include a default export.\n         * If the mock is a CommonJS or builtin module, this setting is used as the value of `module.exports`.\n         * If this value is not provided, CJS and builtin mocks use an empty object as the value of `module.exports`.\n         */\n        defaultExport?: any;\n        /**\n         * An object whose keys and values are used to create the named exports of the mock module.\n         *\n         * If the mock is a CommonJS or builtin module, these values are copied onto `module.exports`.\n         * Therefore, if a mock is created with both named exports and a non-object default export,\n         * the mock will throw an exception when used as a CJS or builtin module.\n         */\n        namedExports?: object | undefined;\n    }\n    /**\n     * The `MockTracker` class is used to manage mocking functionality. The test runner\n     * module provides a top level `mock` export which is a `MockTracker` instance.\n     * Each test also provides its own `MockTracker` instance via the test context's `mock` property.\n     * @since v19.1.0, v18.13.0\n     */\n    class MockTracker {\n        /**\n         * This function is used to create a mock function.\n         *\n         * The following example creates a mock function that increments a counter by one\n         * on each invocation. The `times` option is used to modify the mock behavior such\n         * that the first two invocations add two to the counter instead of one.\n         *\n         * ```js\n         * test('mocks a counting function', (t) => {\n         *   let cnt = 0;\n         *\n         *   function addOne() {\n         *     cnt++;\n         *     return cnt;\n         *   }\n         *\n         *   function addTwo() {\n         *     cnt += 2;\n         *     return cnt;\n         *   }\n         *\n         *   const fn = t.mock.fn(addOne, addTwo, { times: 2 });\n         *\n         *   assert.strictEqual(fn(), 2);\n         *   assert.strictEqual(fn(), 4);\n         *   assert.strictEqual(fn(), 5);\n         *   assert.strictEqual(fn(), 6);\n         * });\n         * ```\n         * @since v19.1.0, v18.13.0\n         * @param original An optional function to create a mock on.\n         * @param implementation An optional function used as the mock implementation for `original`. This is useful for creating mocks that exhibit one behavior for a specified number of calls and\n         * then restore the behavior of `original`.\n         * @param options Optional configuration options for the mock function.\n         * @return The mocked function. The mocked function contains a special `mock` property, which is an instance of {@link MockFunctionContext}, and can be used for inspecting and changing the\n         * behavior of the mocked function.\n         */\n        fn<F extends Function = NoOpFunction>(original?: F, options?: MockFunctionOptions): Mock<F>;\n        fn<F extends Function = NoOpFunction, Implementation extends Function = F>(\n            original?: F,\n            implementation?: Implementation,\n            options?: MockFunctionOptions,\n        ): Mock<F | Implementation>;\n        /**\n         * This function is used to create a mock on an existing object method. The\n         * following example demonstrates how a mock is created on an existing object\n         * method.\n         *\n         * ```js\n         * test('spies on an object method', (t) => {\n         *   const number = {\n         *     value: 5,\n         *     subtract(a) {\n         *       return this.value - a;\n         *     },\n         *   };\n         *\n         *   t.mock.method(number, 'subtract');\n         *   assert.strictEqual(number.subtract.mock.calls.length, 0);\n         *   assert.strictEqual(number.subtract(3), 2);\n         *   assert.strictEqual(number.subtract.mock.calls.length, 1);\n         *\n         *   const call = number.subtract.mock.calls[0];\n         *\n         *   assert.deepStrictEqual(call.arguments, [3]);\n         *   assert.strictEqual(call.result, 2);\n         *   assert.strictEqual(call.error, undefined);\n         *   assert.strictEqual(call.target, undefined);\n         *   assert.strictEqual(call.this, number);\n         * });\n         * ```\n         * @since v19.1.0, v18.13.0\n         * @param object The object whose method is being mocked.\n         * @param methodName The identifier of the method on `object` to mock. If `object[methodName]` is not a function, an error is thrown.\n         * @param implementation An optional function used as the mock implementation for `object[methodName]`.\n         * @param options Optional configuration options for the mock method.\n         * @return The mocked method. The mocked method contains a special `mock` property, which is an instance of {@link MockFunctionContext}, and can be used for inspecting and changing the\n         * behavior of the mocked method.\n         */\n        method<\n            MockedObject extends object,\n            MethodName extends FunctionPropertyNames<MockedObject>,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            options?: MockFunctionOptions,\n        ): MockedObject[MethodName] extends Function ? Mock<MockedObject[MethodName]>\n            : never;\n        method<\n            MockedObject extends object,\n            MethodName extends FunctionPropertyNames<MockedObject>,\n            Implementation extends Function,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            implementation: Implementation,\n            options?: MockFunctionOptions,\n        ): MockedObject[MethodName] extends Function ? Mock<MockedObject[MethodName] | Implementation>\n            : never;\n        method<MockedObject extends object>(\n            object: MockedObject,\n            methodName: keyof MockedObject,\n            options: MockMethodOptions,\n        ): Mock<Function>;\n        method<MockedObject extends object>(\n            object: MockedObject,\n            methodName: keyof MockedObject,\n            implementation: Function,\n            options: MockMethodOptions,\n        ): Mock<Function>;\n\n        /**\n         * This function is syntax sugar for `MockTracker.method` with `options.getter` set to `true`.\n         * @since v19.3.0, v18.13.0\n         */\n        getter<\n            MockedObject extends object,\n            MethodName extends keyof MockedObject,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            options?: MockFunctionOptions,\n        ): Mock<() => MockedObject[MethodName]>;\n        getter<\n            MockedObject extends object,\n            MethodName extends keyof MockedObject,\n            Implementation extends Function,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            implementation?: Implementation,\n            options?: MockFunctionOptions,\n        ): Mock<(() => MockedObject[MethodName]) | Implementation>;\n        /**\n         * This function is syntax sugar for `MockTracker.method` with `options.setter` set to `true`.\n         * @since v19.3.0, v18.13.0\n         */\n        setter<\n            MockedObject extends object,\n            MethodName extends keyof MockedObject,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            options?: MockFunctionOptions,\n        ): Mock<(value: MockedObject[MethodName]) => void>;\n        setter<\n            MockedObject extends object,\n            MethodName extends keyof MockedObject,\n            Implementation extends Function,\n        >(\n            object: MockedObject,\n            methodName: MethodName,\n            implementation?: Implementation,\n            options?: MockFunctionOptions,\n        ): Mock<((value: MockedObject[MethodName]) => void) | Implementation>;\n\n        /**\n         * This function is used to mock the exports of ECMAScript modules, CommonJS modules, and Node.js builtin modules.\n         * Any references to the original module prior to mocking are not impacted.\n         *\n         * Only available through the [--experimental-test-module-mocks](https://nodejs.org/api/cli.html#--experimental-test-module-mocks) flag.\n         * @since v22.3.0\n         * @experimental\n         * @param specifier A string identifying the module to mock.\n         * @param options Optional configuration options for the mock module.\n         */\n        module(specifier: string, options?: MockModuleOptions): MockModuleContext;\n\n        /**\n         * This function restores the default behavior of all mocks that were previously\n         * created by this `MockTracker` and disassociates the mocks from the `MockTracker` instance. Once disassociated, the mocks can still be used, but the `MockTracker` instance can no longer be\n         * used to reset their behavior or\n         * otherwise interact with them.\n         *\n         * After each test completes, this function is called on the test context's `MockTracker`. If the global `MockTracker` is used extensively, calling this\n         * function manually is recommended.\n         * @since v19.1.0, v18.13.0\n         */\n        reset(): void;\n        /**\n         * This function restores the default behavior of all mocks that were previously\n         * created by this `MockTracker`. Unlike `mock.reset()`, `mock.restoreAll()` does\n         * not disassociate the mocks from the `MockTracker` instance.\n         * @since v19.1.0, v18.13.0\n         */\n        restoreAll(): void;\n\n        timers: MockTimers;\n    }\n    const mock: MockTracker;\n    interface MockFunctionCall<\n        F extends Function,\n        ReturnType = F extends (...args: any) => infer T ? T\n            : F extends abstract new(...args: any) => infer T ? T\n            : unknown,\n        Args = F extends (...args: infer Y) => any ? Y\n            : F extends abstract new(...args: infer Y) => any ? Y\n            : unknown[],\n    > {\n        /**\n         * An array of the arguments passed to the mock function.\n         */\n        arguments: Args;\n        /**\n         * If the mocked function threw then this property contains the thrown value.\n         */\n        error: unknown | undefined;\n        /**\n         * The value returned by the mocked function.\n         *\n         * If the mocked function threw, it will be `undefined`.\n         */\n        result: ReturnType | undefined;\n        /**\n         * An `Error` object whose stack can be used to determine the callsite of the mocked function invocation.\n         */\n        stack: Error;\n        /**\n         * If the mocked function is a constructor, this field contains the class being constructed.\n         * Otherwise this will be `undefined`.\n         */\n        target: F extends abstract new(...args: any) => any ? F : undefined;\n        /**\n         * The mocked function's `this` value.\n         */\n        this: unknown;\n    }\n    /**\n     * The `MockFunctionContext` class is used to inspect or manipulate the behavior of\n     * mocks created via the `MockTracker` APIs.\n     * @since v19.1.0, v18.13.0\n     */\n    class MockFunctionContext<F extends Function> {\n        /**\n         * A getter that returns a copy of the internal array used to track calls to the\n         * mock. Each entry in the array is an object with the following properties.\n         * @since v19.1.0, v18.13.0\n         */\n        readonly calls: Array<MockFunctionCall<F>>;\n        /**\n         * This function returns the number of times that this mock has been invoked. This\n         * function is more efficient than checking `ctx.calls.length` because `ctx.calls` is a getter that creates a copy of the internal call tracking array.\n         * @since v19.1.0, v18.13.0\n         * @return The number of times that this mock has been invoked.\n         */\n        callCount(): number;\n        /**\n         * This function is used to change the behavior of an existing mock.\n         *\n         * The following example creates a mock function using `t.mock.fn()`, calls the\n         * mock function, and then changes the mock implementation to a different function.\n         *\n         * ```js\n         * test('changes a mock behavior', (t) => {\n         *   let cnt = 0;\n         *\n         *   function addOne() {\n         *     cnt++;\n         *     return cnt;\n         *   }\n         *\n         *   function addTwo() {\n         *     cnt += 2;\n         *     return cnt;\n         *   }\n         *\n         *   const fn = t.mock.fn(addOne);\n         *\n         *   assert.strictEqual(fn(), 1);\n         *   fn.mock.mockImplementation(addTwo);\n         *   assert.strictEqual(fn(), 3);\n         *   assert.strictEqual(fn(), 5);\n         * });\n         * ```\n         * @since v19.1.0, v18.13.0\n         * @param implementation The function to be used as the mock's new implementation.\n         */\n        mockImplementation(implementation: F): void;\n        /**\n         * This function is used to change the behavior of an existing mock for a single\n         * invocation. Once invocation `onCall` has occurred, the mock will revert to\n         * whatever behavior it would have used had `mockImplementationOnce()` not been\n         * called.\n         *\n         * The following example creates a mock function using `t.mock.fn()`, calls the\n         * mock function, changes the mock implementation to a different function for the\n         * next invocation, and then resumes its previous behavior.\n         *\n         * ```js\n         * test('changes a mock behavior once', (t) => {\n         *   let cnt = 0;\n         *\n         *   function addOne() {\n         *     cnt++;\n         *     return cnt;\n         *   }\n         *\n         *   function addTwo() {\n         *     cnt += 2;\n         *     return cnt;\n         *   }\n         *\n         *   const fn = t.mock.fn(addOne);\n         *\n         *   assert.strictEqual(fn(), 1);\n         *   fn.mock.mockImplementationOnce(addTwo);\n         *   assert.strictEqual(fn(), 3);\n         *   assert.strictEqual(fn(), 4);\n         * });\n         * ```\n         * @since v19.1.0, v18.13.0\n         * @param implementation The function to be used as the mock's implementation for the invocation number specified by `onCall`.\n         * @param onCall The invocation number that will use `implementation`. If the specified invocation has already occurred then an exception is thrown.\n         */\n        mockImplementationOnce(implementation: F, onCall?: number): void;\n        /**\n         * Resets the call history of the mock function.\n         * @since v19.3.0, v18.13.0\n         */\n        resetCalls(): void;\n        /**\n         * Resets the implementation of the mock function to its original behavior. The\n         * mock can still be used after calling this function.\n         * @since v19.1.0, v18.13.0\n         */\n        restore(): void;\n    }\n    /**\n     * @since v22.3.0\n     * @experimental\n     */\n    class MockModuleContext {\n        /**\n         * Resets the implementation of the mock module.\n         * @since v22.3.0\n         */\n        restore(): void;\n    }\n\n    type Timer = \"setInterval\" | \"setTimeout\" | \"setImmediate\" | \"Date\";\n    interface MockTimersOptions {\n        apis: Timer[];\n        now?: number | Date | undefined;\n    }\n    /**\n     * Mocking timers is a technique commonly used in software testing to simulate and\n     * control the behavior of timers, such as `setInterval` and `setTimeout`,\n     * without actually waiting for the specified time intervals.\n     *\n     * The MockTimers API also allows for mocking of the `Date` constructor and\n     * `setImmediate`/`clearImmediate` functions.\n     *\n     * The `MockTracker` provides a top-level `timers` export\n     * which is a `MockTimers` instance.\n     * @since v20.4.0\n     * @experimental\n     */\n    class MockTimers {\n        /**\n         * Enables timer mocking for the specified timers.\n         *\n         * **Note:** When you enable mocking for a specific timer, its associated\n         * clear function will also be implicitly mocked.\n         *\n         * **Note:** Mocking `Date` will affect the behavior of the mocked timers\n         * as they use the same internal clock.\n         *\n         * Example usage without setting initial time:\n         *\n         * ```js\n         * import { mock } from 'node:test';\n         * mock.timers.enable({ apis: ['setInterval', 'Date'], now: 1234 });\n         * ```\n         *\n         * The above example enables mocking for the `Date` constructor, `setInterval` timer and\n         * implicitly mocks the `clearInterval` function. Only the `Date` constructor from `globalThis`,\n         * `setInterval` and `clearInterval` functions from `node:timers`, `node:timers/promises`, and `globalThis` will be mocked.\n         *\n         * Example usage with initial time set\n         *\n         * ```js\n         * import { mock } from 'node:test';\n         * mock.timers.enable({ apis: ['Date'], now: 1000 });\n         * ```\n         *\n         * Example usage with initial Date object as time set\n         *\n         * ```js\n         * import { mock } from 'node:test';\n         * mock.timers.enable({ apis: ['Date'], now: new Date() });\n         * ```\n         *\n         * Alternatively, if you call `mock.timers.enable()` without any parameters:\n         *\n         * All timers (`'setInterval'`, `'clearInterval'`, `'Date'`, `'setImmediate'`, `'clearImmediate'`, `'setTimeout'`, and `'clearTimeout'`)\n         * will be mocked.\n         *\n         * The `setInterval`, `clearInterval`, `setTimeout`, and `clearTimeout` functions from `node:timers`, `node:timers/promises`,\n         * and `globalThis` will be mocked.\n         * The `Date` constructor from `globalThis` will be mocked.\n         *\n         * If there is no initial epoch set, the initial date will be based on 0 in the Unix epoch. This is `January 1st, 1970, 00:00:00 UTC`. You can\n         * set an initial date by passing a now property to the `.enable()` method. This value will be used as the initial date for the mocked Date\n         * object. It can either be a positive integer, or another Date object.\n         * @since v20.4.0\n         */\n        enable(options?: MockTimersOptions): void;\n        /**\n         * You can use the `.setTime()` method to manually move the mocked date to another time. This method only accepts a positive integer.\n         * Note: This method will execute any mocked timers that are in the past from the new time.\n         * In the below example we are setting a new time for the mocked date.\n         * ```js\n         * import assert from 'node:assert';\n         * import { test } from 'node:test';\n         * test('sets the time of a date object', (context) => {\n         *   // Optionally choose what to mock\n         *   context.mock.timers.enable({ apis: ['Date'], now: 100 });\n         *   assert.strictEqual(Date.now(), 100);\n         *   // Advance in time will also advance the date\n         *   context.mock.timers.setTime(1000);\n         *   context.mock.timers.tick(200);\n         *   assert.strictEqual(Date.now(), 1200);\n         * });\n         * ```\n         */\n        setTime(time: number): void;\n        /**\n         * This function restores the default behavior of all mocks that were previously\n         * created by this `MockTimers` instance and disassociates the mocks\n         * from the `MockTracker` instance.\n         *\n         * **Note:** After each test completes, this function is called on\n         * the test context's `MockTracker`.\n         *\n         * ```js\n         * import { mock } from 'node:test';\n         * mock.timers.reset();\n         * ```\n         * @since v20.4.0\n         */\n        reset(): void;\n        /**\n         * Advances time for all mocked timers.\n         *\n         * **Note:** This diverges from how `setTimeout` in Node.js behaves and accepts\n         * only positive numbers. In Node.js, `setTimeout` with negative numbers is\n         * only supported for web compatibility reasons.\n         *\n         * The following example mocks a `setTimeout` function and\n         * by using `.tick` advances in\n         * time triggering all pending timers.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         * import { test } from 'node:test';\n         *\n         * test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {\n         *   const fn = context.mock.fn();\n         *\n         *   context.mock.timers.enable({ apis: ['setTimeout'] });\n         *\n         *   setTimeout(fn, 9999);\n         *\n         *   assert.strictEqual(fn.mock.callCount(), 0);\n         *\n         *   // Advance in time\n         *   context.mock.timers.tick(9999);\n         *\n         *   assert.strictEqual(fn.mock.callCount(), 1);\n         * });\n         * ```\n         *\n         * Alternativelly, the `.tick` function can be called many times\n         *\n         * ```js\n         * import assert from 'node:assert';\n         * import { test } from 'node:test';\n         *\n         * test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {\n         *   const fn = context.mock.fn();\n         *   context.mock.timers.enable({ apis: ['setTimeout'] });\n         *   const nineSecs = 9000;\n         *   setTimeout(fn, nineSecs);\n         *\n         *   const twoSeconds = 3000;\n         *   context.mock.timers.tick(twoSeconds);\n         *   context.mock.timers.tick(twoSeconds);\n         *   context.mock.timers.tick(twoSeconds);\n         *\n         *   assert.strictEqual(fn.mock.callCount(), 1);\n         * });\n         * ```\n         *\n         * Advancing time using `.tick` will also advance the time for any `Date` object\n         * created after the mock was enabled (if `Date` was also set to be mocked).\n         *\n         * ```js\n         * import assert from 'node:assert';\n         * import { test } from 'node:test';\n         *\n         * test('mocks setTimeout to be executed synchronously without having to actually wait for it', (context) => {\n         *   const fn = context.mock.fn();\n         *\n         *   context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });\n         *   setTimeout(fn, 9999);\n         *\n         *   assert.strictEqual(fn.mock.callCount(), 0);\n         *   assert.strictEqual(Date.now(), 0);\n         *\n         *   // Advance in time\n         *   context.mock.timers.tick(9999);\n         *   assert.strictEqual(fn.mock.callCount(), 1);\n         *   assert.strictEqual(Date.now(), 9999);\n         * });\n         * ```\n         * @since v20.4.0\n         */\n        tick(milliseconds: number): void;\n        /**\n         * Triggers all pending mocked timers immediately. If the `Date` object is also\n         * mocked, it will also advance the `Date` object to the furthest timer's time.\n         *\n         * The example below triggers all pending timers immediately,\n         * causing them to execute without any delay.\n         *\n         * ```js\n         * import assert from 'node:assert';\n         * import { test } from 'node:test';\n         *\n         * test('runAll functions following the given order', (context) => {\n         *   context.mock.timers.enable({ apis: ['setTimeout', 'Date'] });\n         *   const results = [];\n         *   setTimeout(() => results.push(1), 9999);\n         *\n         *   // Notice that if both timers have the same timeout,\n         *   // the order of execution is guaranteed\n         *   setTimeout(() => results.push(3), 8888);\n         *   setTimeout(() => results.push(2), 8888);\n         *\n         *   assert.deepStrictEqual(results, []);\n         *\n         *   context.mock.timers.runAll();\n         *   assert.deepStrictEqual(results, [3, 2, 1]);\n         *   // The Date object is also advanced to the furthest timer's time\n         *   assert.strictEqual(Date.now(), 9999);\n         * });\n         * ```\n         *\n         * **Note:** The `runAll()` function is specifically designed for\n         * triggering timers in the context of timer mocking.\n         * It does not have any effect on real-time system\n         * clocks or actual timers outside of the mocking environment.\n         * @since v20.4.0\n         */\n        runAll(): void;\n        /**\n         * Calls {@link MockTimers.reset()}.\n         */\n        [Symbol.dispose](): void;\n    }\n    /**\n     * An object whose methods are used to configure available assertions on the\n     * `TestContext` objects in the current process. The methods from `node:assert`\n     * and snapshot testing functions are available by default.\n     *\n     * It is possible to apply the same configuration to all files by placing common\n     * configuration code in a module\n     * preloaded with `--require` or `--import`.\n     * @since v22.14.0\n     */\n    namespace assert {\n        /**\n         * Defines a new assertion function with the provided name and function. If an\n         * assertion already exists with the same name, it is overwritten.\n         * @since v22.14.0\n         */\n        function register(name: string, fn: (this: TestContext, ...args: any[]) => void): void;\n    }\n    /**\n     * @since v22.3.0\n     */\n    namespace snapshot {\n        /**\n         * This function is used to customize the default serialization mechanism used by the test runner.\n         *\n         * By default, the test runner performs serialization by calling `JSON.stringify(value, null, 2)` on the provided value.\n         * `JSON.stringify()` does have limitations regarding circular structures and supported data types.\n         * If a more robust serialization mechanism is required, this function should be used to specify a list of custom serializers.\n         *\n         * Serializers are called in order, with the output of the previous serializer passed as input to the next.\n         * The final result must be a string value.\n         * @since v22.3.0\n         * @param serializers An array of synchronous functions used as the default serializers for snapshot tests.\n         */\n        function setDefaultSnapshotSerializers(serializers: ReadonlyArray<(value: any) => any>): void;\n        /**\n         * This function is used to set a custom resolver for the location of the snapshot file used for snapshot testing.\n         * By default, the snapshot filename is the same as the entry point filename with `.snapshot` appended.\n         * @since v22.3.0\n         * @param fn A function used to compute the location of the snapshot file.\n         * The function receives the path of the test file as its only argument. If the\n         * test is not associated with a file (for example in the REPL), the input is\n         * undefined. `fn()` must return a string specifying the location of the snapshot file.\n         */\n        function setResolveSnapshotPath(fn: (path: string | undefined) => string): void;\n    }\n    export {\n        after,\n        afterEach,\n        assert,\n        before,\n        beforeEach,\n        describe,\n        it,\n        Mock,\n        mock,\n        only,\n        run,\n        skip,\n        snapshot,\n        suite,\n        SuiteContext,\n        test,\n        test as default,\n        TestContext,\n        todo,\n    };\n}\n\ninterface TestError extends Error {\n    cause: Error;\n}\ninterface TestLocationInfo {\n    /**\n     * The column number where the test is defined, or\n     * `undefined` if the test was run through the REPL.\n     */\n    column?: number;\n    /**\n     * The path of the test file, `undefined` if test was run through the REPL.\n     */\n    file?: string;\n    /**\n     * The line number where the test is defined, or `undefined` if the test was run through the REPL.\n     */\n    line?: number;\n}\ninterface DiagnosticData extends TestLocationInfo {\n    /**\n     * The diagnostic message.\n     */\n    message: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n}\ninterface TestCoverage {\n    /**\n     * An object containing the coverage report.\n     */\n    summary: {\n        /**\n         * An array of coverage reports for individual files.\n         */\n        files: Array<{\n            /**\n             * The absolute path of the file.\n             */\n            path: string;\n            /**\n             * The total number of lines.\n             */\n            totalLineCount: number;\n            /**\n             * The total number of branches.\n             */\n            totalBranchCount: number;\n            /**\n             * The total number of functions.\n             */\n            totalFunctionCount: number;\n            /**\n             * The number of covered lines.\n             */\n            coveredLineCount: number;\n            /**\n             * The number of covered branches.\n             */\n            coveredBranchCount: number;\n            /**\n             * The number of covered functions.\n             */\n            coveredFunctionCount: number;\n            /**\n             * The percentage of lines covered.\n             */\n            coveredLinePercent: number;\n            /**\n             * The percentage of branches covered.\n             */\n            coveredBranchPercent: number;\n            /**\n             * The percentage of functions covered.\n             */\n            coveredFunctionPercent: number;\n            /**\n             * An array of functions representing function coverage.\n             */\n            functions: Array<{\n                /**\n                 * The name of the function.\n                 */\n                name: string;\n                /**\n                 * The line number where the function is defined.\n                 */\n                line: number;\n                /**\n                 * The number of times the function was called.\n                 */\n                count: number;\n            }>;\n            /**\n             * An array of branches representing branch coverage.\n             */\n            branches: Array<{\n                /**\n                 * The line number where the branch is defined.\n                 */\n                line: number;\n                /**\n                 * The number of times the branch was taken.\n                 */\n                count: number;\n            }>;\n            /**\n             * An array of lines representing line numbers and the number of times they were covered.\n             */\n            lines: Array<{\n                /**\n                 * The line number.\n                 */\n                line: number;\n                /**\n                 * The number of times the line was covered.\n                 */\n                count: number;\n            }>;\n        }>;\n        /**\n         * An object containing whether or not the coverage for\n         * each coverage type.\n         * @since v22.9.0\n         */\n        thresholds: {\n            /**\n             * The function coverage threshold.\n             */\n            function: number;\n            /**\n             * The branch coverage threshold.\n             */\n            branch: number;\n            /**\n             * The line coverage threshold.\n             */\n            line: number;\n        };\n        /**\n         * An object containing a summary of coverage for all files.\n         */\n        totals: {\n            /**\n             * The total number of lines.\n             */\n            totalLineCount: number;\n            /**\n             * The total number of branches.\n             */\n            totalBranchCount: number;\n            /**\n             * The total number of functions.\n             */\n            totalFunctionCount: number;\n            /**\n             * The number of covered lines.\n             */\n            coveredLineCount: number;\n            /**\n             * The number of covered branches.\n             */\n            coveredBranchCount: number;\n            /**\n             * The number of covered functions.\n             */\n            coveredFunctionCount: number;\n            /**\n             * The percentage of lines covered.\n             */\n            coveredLinePercent: number;\n            /**\n             * The percentage of branches covered.\n             */\n            coveredBranchPercent: number;\n            /**\n             * The percentage of functions covered.\n             */\n            coveredFunctionPercent: number;\n        };\n        /**\n         * The working directory when code coverage began. This\n         * is useful for displaying relative path names in case\n         * the tests changed the working directory of the Node.js process.\n         */\n        workingDirectory: string;\n    };\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n}\ninterface TestComplete extends TestLocationInfo {\n    /**\n     * Additional execution metadata.\n     */\n    details: {\n        /**\n         * Whether the test passed or not.\n         */\n        passed: boolean;\n        /**\n         * The duration of the test in milliseconds.\n         */\n        duration_ms: number;\n        /**\n         * An error wrapping the error thrown by the test if it did not pass.\n         */\n        error?: TestError;\n        /**\n         * The type of the test, used to denote whether this is a suite.\n         */\n        type?: \"suite\";\n    };\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The ordinal number of the test.\n     */\n    testNumber: number;\n    /**\n     * Present if `context.todo` is called.\n     */\n    todo?: string | boolean;\n    /**\n     * Present if `context.skip` is called.\n     */\n    skip?: string | boolean;\n}\ninterface TestDequeue extends TestLocationInfo {\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The test type. Either `'suite'` or `'test'`.\n     * @since v22.15.0\n     */\n    type: \"suite\" | \"test\";\n}\ninterface TestEnqueue extends TestLocationInfo {\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The test type. Either `'suite'` or `'test'`.\n     * @since v22.15.0\n     */\n    type: \"suite\" | \"test\";\n}\ninterface TestFail extends TestLocationInfo {\n    /**\n     * Additional execution metadata.\n     */\n    details: {\n        /**\n         * The duration of the test in milliseconds.\n         */\n        duration_ms: number;\n        /**\n         * An error wrapping the error thrown by the test.\n         */\n        error: TestError;\n        /**\n         * The type of the test, used to denote whether this is a suite.\n         * @since v20.0.0, v19.9.0, v18.17.0\n         */\n        type?: \"suite\";\n    };\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The ordinal number of the test.\n     */\n    testNumber: number;\n    /**\n     * Present if `context.todo` is called.\n     */\n    todo?: string | boolean;\n    /**\n     * Present if `context.skip` is called.\n     */\n    skip?: string | boolean;\n}\ninterface TestPass extends TestLocationInfo {\n    /**\n     * Additional execution metadata.\n     */\n    details: {\n        /**\n         * The duration of the test in milliseconds.\n         */\n        duration_ms: number;\n        /**\n         * The type of the test, used to denote whether this is a suite.\n         * @since 20.0.0, 19.9.0, 18.17.0\n         */\n        type?: \"suite\";\n    };\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The ordinal number of the test.\n     */\n    testNumber: number;\n    /**\n     * Present if `context.todo` is called.\n     */\n    todo?: string | boolean;\n    /**\n     * Present if `context.skip` is called.\n     */\n    skip?: string | boolean;\n}\ninterface TestPlan extends TestLocationInfo {\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n    /**\n     * The number of subtests that have ran.\n     */\n    count: number;\n}\ninterface TestStart extends TestLocationInfo {\n    /**\n     * The test name.\n     */\n    name: string;\n    /**\n     * The nesting level of the test.\n     */\n    nesting: number;\n}\ninterface TestStderr {\n    /**\n     * The path of the test file.\n     */\n    file: string;\n    /**\n     * The message written to `stderr`.\n     */\n    message: string;\n}\ninterface TestStdout {\n    /**\n     * The path of the test file.\n     */\n    file: string;\n    /**\n     * The message written to `stdout`.\n     */\n    message: string;\n}\ninterface TestSummary {\n    /**\n     * An object containing the counts of various test results.\n     */\n    counts: {\n        /**\n         * The total number of cancelled tests.\n         */\n        cancelled: number;\n        /**\n         * The total number of passed tests.\n         */\n        passed: number;\n        /**\n         * The total number of skipped tests.\n         */\n        skipped: number;\n        /**\n         * The total number of suites run.\n         */\n        suites: number;\n        /**\n         * The total number of tests run, excluding suites.\n         */\n        tests: number;\n        /**\n         * The total number of TODO tests.\n         */\n        todo: number;\n        /**\n         * The total number of top level tests and suites.\n         */\n        topLevel: number;\n    };\n    /**\n     * The duration of the test run in milliseconds.\n     */\n    duration_ms: number;\n    /**\n     * The path of the test file that generated the\n     * summary. If the summary corresponds to multiple files, this value is\n     * `undefined`.\n     */\n    file: string | undefined;\n    /**\n     * Indicates whether or not the test run is considered\n     * successful or not. If any error condition occurs, such as a failing test or\n     * unmet coverage threshold, this value will be set to `false`.\n     */\n    success: boolean;\n}\n\n/**\n * The `node:test/reporters` module exposes the builtin-reporters for `node:test`.\n * To access it:\n *\n * ```js\n * import test from 'node:test/reporters';\n * ```\n *\n * This module is only available under the `node:` scheme. The following will not\n * work:\n *\n * ```js\n * import test from 'node:test/reporters';\n * ```\n * @since v19.9.0\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/test/reporters.js)\n */\ndeclare module \"node:test/reporters\" {\n    import { Transform, TransformOptions } from \"node:stream\";\n\n    type TestEvent =\n        | { type: \"test:coverage\"; data: TestCoverage }\n        | { type: \"test:complete\"; data: TestComplete }\n        | { type: \"test:dequeue\"; data: TestDequeue }\n        | { type: \"test:diagnostic\"; data: DiagnosticData }\n        | { type: \"test:enqueue\"; data: TestEnqueue }\n        | { type: \"test:fail\"; data: TestFail }\n        | { type: \"test:pass\"; data: TestPass }\n        | { type: \"test:plan\"; data: TestPlan }\n        | { type: \"test:start\"; data: TestStart }\n        | { type: \"test:stderr\"; data: TestStderr }\n        | { type: \"test:stdout\"; data: TestStdout }\n        | { type: \"test:summary\"; data: TestSummary }\n        | { type: \"test:watch:drained\"; data: undefined };\n    type TestEventGenerator = AsyncGenerator<TestEvent, void>;\n\n    interface ReporterConstructorWrapper<T extends new(...args: any[]) => Transform> {\n        new(...args: ConstructorParameters<T>): InstanceType<T>;\n        (...args: ConstructorParameters<T>): InstanceType<T>;\n    }\n\n    /**\n     * The `dot` reporter outputs the test results in a compact format,\n     * where each passing test is represented by a `.`,\n     * and each failing test is represented by a `X`.\n     * @since v20.0.0\n     */\n    function dot(source: TestEventGenerator): AsyncGenerator<\"\\n\" | \".\" | \"X\", void>;\n    /**\n     * The `tap` reporter outputs the test results in the [TAP](https://testanything.org/) format.\n     * @since v20.0.0\n     */\n    function tap(source: TestEventGenerator): AsyncGenerator<string, void>;\n    class SpecReporter extends Transform {\n        constructor();\n    }\n    /**\n     * The `spec` reporter outputs the test results in a human-readable format.\n     * @since v20.0.0\n     */\n    const spec: ReporterConstructorWrapper<typeof SpecReporter>;\n    /**\n     * The `junit` reporter outputs test results in a jUnit XML format.\n     * @since v21.0.0\n     */\n    function junit(source: TestEventGenerator): AsyncGenerator<string, void>;\n    class LcovReporter extends Transform {\n        constructor(opts?: Omit<TransformOptions, \"writableObjectMode\">);\n    }\n    /**\n     * The `lcov` reporter outputs test coverage when used with the\n     * [`--experimental-test-coverage`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--experimental-test-coverage) flag.\n     * @since v22.0.0\n     */\n    const lcov: LcovReporter;\n\n    export { dot, junit, lcov, spec, tap, TestEvent };\n}\n",
    "node_modules/@types/node/timers/promises.d.ts": "/**\n * The `timers/promises` API provides an alternative set of timer functions\n * that return `Promise` objects. The API is accessible via\n * `require('node:timers/promises')`.\n *\n * ```js\n * import {\n *   setTimeout,\n *   setImmediate,\n *   setInterval,\n * } from 'node:timers/promises';\n * ```\n * @since v15.0.0\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/timers/promises.js)\n */\ndeclare module \"timers/promises\" {\n    import { TimerOptions } from \"node:timers\";\n    /**\n     * ```js\n     * import {\n     *   setTimeout,\n     * } from 'node:timers/promises';\n     *\n     * const res = await setTimeout(100, 'result');\n     *\n     * console.log(res);  // Prints 'result'\n     * ```\n     * @since v15.0.0\n     * @param delay The number of milliseconds to wait before fulfilling the\n     * promise. **Default:** `1`.\n     * @param value A value with which the promise is fulfilled.\n     */\n    function setTimeout<T = void>(delay?: number, value?: T, options?: TimerOptions): Promise<T>;\n    /**\n     * ```js\n     * import {\n     *   setImmediate,\n     * } from 'node:timers/promises';\n     *\n     * const res = await setImmediate('result');\n     *\n     * console.log(res);  // Prints 'result'\n     * ```\n     * @since v15.0.0\n     * @param value A value with which the promise is fulfilled.\n     */\n    function setImmediate<T = void>(value?: T, options?: TimerOptions): Promise<T>;\n    /**\n     * Returns an async iterator that generates values in an interval of `delay` ms.\n     * If `ref` is `true`, you need to call `next()` of async iterator explicitly\n     * or implicitly to keep the event loop alive.\n     *\n     * ```js\n     * import {\n     *   setInterval,\n     * } from 'node:timers/promises';\n     *\n     * const interval = 100;\n     * for await (const startTime of setInterval(interval, Date.now())) {\n     *   const now = Date.now();\n     *   console.log(now);\n     *   if ((now - startTime) > 1000)\n     *     break;\n     * }\n     * console.log(Date.now());\n     * ```\n     * @since v15.9.0\n     * @param delay The number of milliseconds to wait between iterations.\n     * **Default:** `1`.\n     * @param value A value with which the iterator returns.\n     */\n    function setInterval<T = void>(delay?: number, value?: T, options?: TimerOptions): NodeJS.AsyncIterator<T>;\n    interface Scheduler {\n        /**\n         * An experimental API defined by the [Scheduling APIs](https://github.com/WICG/scheduling-apis) draft specification\n         * being developed as a standard Web Platform API.\n         *\n         * Calling `timersPromises.scheduler.wait(delay, options)` is roughly equivalent\n         * to calling `timersPromises.setTimeout(delay, undefined, options)` except that\n         * the `ref` option is not supported.\n         *\n         * ```js\n         * import { scheduler } from 'node:timers/promises';\n         *\n         * await scheduler.wait(1000); // Wait one second before continuing\n         * ```\n         * @since v17.3.0, v16.14.0\n         * @experimental\n         * @param delay The number of milliseconds to wait before resolving the\n         * promise.\n         */\n        wait(delay: number, options?: { signal?: AbortSignal }): Promise<void>;\n        /**\n         * An experimental API defined by the [Scheduling APIs](https://github.com/WICG/scheduling-apis) draft specification\n         * being developed as a standard Web Platform API.\n         *\n         * Calling `timersPromises.scheduler.yield()` is equivalent to calling\n         * `timersPromises.setImmediate()` with no arguments.\n         * @since v17.3.0, v16.14.0\n         * @experimental\n         */\n        yield(): Promise<void>;\n    }\n    const scheduler: Scheduler;\n}\ndeclare module \"node:timers/promises\" {\n    export * from \"timers/promises\";\n}\n",
    "node_modules/@types/node/timers.d.ts": "/**\n * The `timer` module exposes a global API for scheduling functions to\n * be called at some future period of time. Because the timer functions are\n * globals, there is no need to import `node:timers` to use the API.\n *\n * The timer functions within Node.js implement a similar API as the timers API\n * provided by Web Browsers but use a different internal implementation that is\n * built around the Node.js [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#setimmediate-vs-settimeout).\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/timers.js)\n */\ndeclare module \"timers\" {\n    import { Abortable } from \"node:events\";\n    import * as promises from \"node:timers/promises\";\n    export interface TimerOptions extends Abortable {\n        /**\n         * Set to `false` to indicate that the scheduled `Timeout`\n         * should not require the Node.js event loop to remain active.\n         * @default true\n         */\n        ref?: boolean | undefined;\n    }\n    global {\n        namespace NodeJS {\n            /**\n             * This object is created internally and is returned from `setImmediate()`. It\n             * can be passed to `clearImmediate()` in order to cancel the scheduled\n             * actions.\n             *\n             * By default, when an immediate is scheduled, the Node.js event loop will continue\n             * running as long as the immediate is active. The `Immediate` object returned by\n             * `setImmediate()` exports both `immediate.ref()` and `immediate.unref()`\n             * functions that can be used to control this default behavior.\n             */\n            interface Immediate extends RefCounted, Disposable {\n                /**\n                 * If true, the `Immediate` object will keep the Node.js event loop active.\n                 * @since v11.0.0\n                 */\n                hasRef(): boolean;\n                /**\n                 * When called, requests that the Node.js event loop _not_ exit so long as the\n                 * `Immediate` is active. Calling `immediate.ref()` multiple times will have no\n                 * effect.\n                 *\n                 * By default, all `Immediate` objects are \"ref'ed\", making it normally unnecessary\n                 * to call `immediate.ref()` unless `immediate.unref()` had been called previously.\n                 * @since v9.7.0\n                 * @returns a reference to `immediate`\n                 */\n                ref(): this;\n                /**\n                 * When called, the active `Immediate` object will not require the Node.js event\n                 * loop to remain active. If there is no other activity keeping the event loop\n                 * running, the process may exit before the `Immediate` object's callback is\n                 * invoked. Calling `immediate.unref()` multiple times will have no effect.\n                 * @since v9.7.0\n                 * @returns a reference to `immediate`\n                 */\n                unref(): this;\n                /**\n                 * Cancels the immediate. This is similar to calling `clearImmediate()`.\n                 * @since v20.5.0, v18.18.0\n                 * @experimental\n                 */\n                [Symbol.dispose](): void;\n                _onImmediate(...args: any[]): void;\n            }\n            // Legacy interface used in Node.js v9 and prior\n            // TODO: remove in a future major version bump\n            /** @deprecated Use `NodeJS.Timeout` instead. */\n            interface Timer extends RefCounted {\n                hasRef(): boolean;\n                refresh(): this;\n                [Symbol.toPrimitive](): number;\n            }\n            /**\n             * This object is created internally and is returned from `setTimeout()` and\n             * `setInterval()`. It can be passed to either `clearTimeout()` or\n             * `clearInterval()` in order to cancel the scheduled actions.\n             *\n             * By default, when a timer is scheduled using either `setTimeout()` or\n             * `setInterval()`, the Node.js event loop will continue running as long as the\n             * timer is active. Each of the `Timeout` objects returned by these functions\n             * export both `timeout.ref()` and `timeout.unref()` functions that can be used to\n             * control this default behavior.\n             */\n            interface Timeout extends RefCounted, Disposable, Timer {\n                /**\n                 * Cancels the timeout.\n                 * @since v0.9.1\n                 * @legacy Use `clearTimeout()` instead.\n                 * @returns a reference to `timeout`\n                 */\n                close(): this;\n                /**\n                 * If true, the `Timeout` object will keep the Node.js event loop active.\n                 * @since v11.0.0\n                 */\n                hasRef(): boolean;\n                /**\n                 * When called, requests that the Node.js event loop _not_ exit so long as the\n                 * `Timeout` is active. Calling `timeout.ref()` multiple times will have no effect.\n                 *\n                 * By default, all `Timeout` objects are \"ref'ed\", making it normally unnecessary\n                 * to call `timeout.ref()` unless `timeout.unref()` had been called previously.\n                 * @since v0.9.1\n                 * @returns a reference to `timeout`\n                 */\n                ref(): this;\n                /**\n                 * Sets the timer's start time to the current time, and reschedules the timer to\n                 * call its callback at the previously specified duration adjusted to the current\n                 * time. This is useful for refreshing a timer without allocating a new\n                 * JavaScript object.\n                 *\n                 * Using this on a timer that has already called its callback will reactivate the\n                 * timer.\n                 * @since v10.2.0\n                 * @returns a reference to `timeout`\n                 */\n                refresh(): this;\n                /**\n                 * When called, the active `Timeout` object will not require the Node.js event loop\n                 * to remain active. If there is no other activity keeping the event loop running,\n                 * the process may exit before the `Timeout` object's callback is invoked. Calling\n                 * `timeout.unref()` multiple times will have no effect.\n                 * @since v0.9.1\n                 * @returns a reference to `timeout`\n                 */\n                unref(): this;\n                /**\n                 * Coerce a `Timeout` to a primitive. The primitive can be used to\n                 * clear the `Timeout`. The primitive can only be used in the\n                 * same thread where the timeout was created. Therefore, to use it\n                 * across `worker_threads` it must first be passed to the correct\n                 * thread. This allows enhanced compatibility with browser\n                 * `setTimeout()` and `setInterval()` implementations.\n                 * @since v14.9.0, v12.19.0\n                 */\n                [Symbol.toPrimitive](): number;\n                /**\n                 * Cancels the timeout.\n                 * @since v20.5.0, v18.18.0\n                 * @experimental\n                 */\n                [Symbol.dispose](): void;\n                _onTimeout(...args: any[]): void;\n            }\n        }\n        /**\n         * Schedules the \"immediate\" execution of the `callback` after I/O events'\n         * callbacks.\n         *\n         * When multiple calls to `setImmediate()` are made, the `callback` functions are\n         * queued for execution in the order in which they are created. The entire callback\n         * queue is processed every event loop iteration. If an immediate timer is queued\n         * from inside an executing callback, that timer will not be triggered until the\n         * next event loop iteration.\n         *\n         * If `callback` is not a function, a `TypeError` will be thrown.\n         *\n         * This method has a custom variant for promises that is available using\n         * `timersPromises.setImmediate()`.\n         * @since v0.9.1\n         * @param callback The function to call at the end of this turn of\n         * the Node.js [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#setimmediate-vs-settimeout)\n         * @param args Optional arguments to pass when the `callback` is called.\n         * @returns for use with `clearImmediate()`\n         */\n        function setImmediate<TArgs extends any[]>(\n            callback: (...args: TArgs) => void,\n            ...args: TArgs\n        ): NodeJS.Immediate;\n        // Allow a single void-accepting argument to be optional in arguments lists.\n        // Allows usage such as `new Promise(resolve => setTimeout(resolve, ms))` (#54258)\n        // eslint-disable-next-line @typescript-eslint/no-invalid-void-type\n        function setImmediate(callback: (_: void) => void): NodeJS.Immediate;\n        namespace setImmediate {\n            import __promisify__ = promises.setImmediate;\n            export { __promisify__ };\n        }\n        /**\n         * Schedules repeated execution of `callback` every `delay` milliseconds.\n         *\n         * When `delay` is larger than `2147483647` or less than `1` or `NaN`, the `delay`\n         * will be set to `1`. Non-integer delays are truncated to an integer.\n         *\n         * If `callback` is not a function, a `TypeError` will be thrown.\n         *\n         * This method has a custom variant for promises that is available using\n         * `timersPromises.setInterval()`.\n         * @since v0.0.1\n         * @param callback The function to call when the timer elapses.\n         * @param delay The number of milliseconds to wait before calling the\n         * `callback`. **Default:** `1`.\n         * @param args Optional arguments to pass when the `callback` is called.\n         * @returns for use with `clearInterval()`\n         */\n        function setInterval<TArgs extends any[]>(\n            callback: (...args: TArgs) => void,\n            delay?: number,\n            ...args: TArgs\n        ): NodeJS.Timeout;\n        // Allow a single void-accepting argument to be optional in arguments lists.\n        // Allows usage such as `new Promise(resolve => setTimeout(resolve, ms))` (#54258)\n        // eslint-disable-next-line @typescript-eslint/no-invalid-void-type\n        function setInterval(callback: (_: void) => void, delay?: number): NodeJS.Timeout;\n        /**\n         * Schedules execution of a one-time `callback` after `delay` milliseconds.\n         *\n         * The `callback` will likely not be invoked in precisely `delay` milliseconds.\n         * Node.js makes no guarantees about the exact timing of when callbacks will fire,\n         * nor of their ordering. The callback will be called as close as possible to the\n         * time specified.\n         *\n         * When `delay` is larger than `2147483647` or less than `1` or `NaN`, the `delay`\n         * will be set to `1`. Non-integer delays are truncated to an integer.\n         *\n         * If `callback` is not a function, a `TypeError` will be thrown.\n         *\n         * This method has a custom variant for promises that is available using\n         * `timersPromises.setTimeout()`.\n         * @since v0.0.1\n         * @param callback The function to call when the timer elapses.\n         * @param delay The number of milliseconds to wait before calling the\n         * `callback`. **Default:** `1`.\n         * @param args Optional arguments to pass when the `callback` is called.\n         * @returns for use with `clearTimeout()`\n         */\n        function setTimeout<TArgs extends any[]>(\n            callback: (...args: TArgs) => void,\n            delay?: number,\n            ...args: TArgs\n        ): NodeJS.Timeout;\n        // Allow a single void-accepting argument to be optional in arguments lists.\n        // Allows usage such as `new Promise(resolve => setTimeout(resolve, ms))` (#54258)\n        // eslint-disable-next-line @typescript-eslint/no-invalid-void-type\n        function setTimeout(callback: (_: void) => void, delay?: number): NodeJS.Timeout;\n        namespace setTimeout {\n            import __promisify__ = promises.setTimeout;\n            export { __promisify__ };\n        }\n        /**\n         * Cancels an `Immediate` object created by `setImmediate()`.\n         * @since v0.9.1\n         * @param immediate An `Immediate` object as returned by `setImmediate()`.\n         */\n        function clearImmediate(immediate: NodeJS.Immediate | undefined): void;\n        /**\n         * Cancels a `Timeout` object created by `setInterval()`.\n         * @since v0.0.1\n         * @param timeout A `Timeout` object as returned by `setInterval()`\n         * or the primitive of the `Timeout` object as a string or a number.\n         */\n        function clearInterval(timeout: NodeJS.Timeout | string | number | undefined): void;\n        /**\n         * Cancels a `Timeout` object created by `setTimeout()`.\n         * @since v0.0.1\n         * @param timeout A `Timeout` object as returned by `setTimeout()`\n         * or the primitive of the `Timeout` object as a string or a number.\n         */\n        function clearTimeout(timeout: NodeJS.Timeout | string | number | undefined): void;\n        /**\n         * The `queueMicrotask()` method queues a microtask to invoke `callback`. If\n         * `callback` throws an exception, the `process` object `'uncaughtException'`\n         * event will be emitted.\n         *\n         * The microtask queue is managed by V8 and may be used in a similar manner to\n         * the `process.nextTick()` queue, which is managed by Node.js. The\n         * `process.nextTick()` queue is always processed before the microtask queue\n         * within each turn of the Node.js event loop.\n         * @since v11.0.0\n         * @param callback Function to be queued.\n         */\n        function queueMicrotask(callback: () => void): void;\n    }\n    import clearImmediate = globalThis.clearImmediate;\n    import clearInterval = globalThis.clearInterval;\n    import clearTimeout = globalThis.clearTimeout;\n    import setImmediate = globalThis.setImmediate;\n    import setInterval = globalThis.setInterval;\n    import setTimeout = globalThis.setTimeout;\n    export { clearImmediate, clearInterval, clearTimeout, promises, setImmediate, setInterval, setTimeout };\n}\ndeclare module \"node:timers\" {\n    export * from \"timers\";\n}\n",
    "node_modules/@types/node/tls.d.ts": "/**\n * The `node:tls` module provides an implementation of the Transport Layer Security\n * (TLS) and Secure Socket Layer (SSL) protocols that is built on top of OpenSSL.\n * The module can be accessed using:\n *\n * ```js\n * import tls from 'node:tls';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/tls.js)\n */\ndeclare module \"tls\" {\n    import { X509Certificate } from \"node:crypto\";\n    import * as net from \"node:net\";\n    import * as stream from \"stream\";\n    const CLIENT_RENEG_LIMIT: number;\n    const CLIENT_RENEG_WINDOW: number;\n    interface Certificate {\n        /**\n         * Country code.\n         */\n        C: string;\n        /**\n         * Street.\n         */\n        ST: string;\n        /**\n         * Locality.\n         */\n        L: string;\n        /**\n         * Organization.\n         */\n        O: string;\n        /**\n         * Organizational unit.\n         */\n        OU: string;\n        /**\n         * Common name.\n         */\n        CN: string;\n    }\n    interface PeerCertificate {\n        /**\n         * `true` if a Certificate Authority (CA), `false` otherwise.\n         * @since v18.13.0\n         */\n        ca: boolean;\n        /**\n         * The DER encoded X.509 certificate data.\n         */\n        raw: Buffer;\n        /**\n         * The certificate subject.\n         */\n        subject: Certificate;\n        /**\n         * The certificate issuer, described in the same terms as the `subject`.\n         */\n        issuer: Certificate;\n        /**\n         * The date-time the certificate is valid from.\n         */\n        valid_from: string;\n        /**\n         * The date-time the certificate is valid to.\n         */\n        valid_to: string;\n        /**\n         * The certificate serial number, as a hex string.\n         */\n        serialNumber: string;\n        /**\n         * The SHA-1 digest of the DER encoded certificate.\n         * It is returned as a `:` separated hexadecimal string.\n         */\n        fingerprint: string;\n        /**\n         * The SHA-256 digest of the DER encoded certificate.\n         * It is returned as a `:` separated hexadecimal string.\n         */\n        fingerprint256: string;\n        /**\n         * The SHA-512 digest of the DER encoded certificate.\n         * It is returned as a `:` separated hexadecimal string.\n         */\n        fingerprint512: string;\n        /**\n         * The extended key usage, a set of OIDs.\n         */\n        ext_key_usage?: string[];\n        /**\n         * A string containing concatenated names for the subject,\n         * an alternative to the `subject` names.\n         */\n        subjectaltname?: string;\n        /**\n         * An array describing the AuthorityInfoAccess, used with OCSP.\n         */\n        infoAccess?: NodeJS.Dict<string[]>;\n        /**\n         * For RSA keys: The RSA bit size.\n         *\n         * For EC keys: The key size in bits.\n         */\n        bits?: number;\n        /**\n         * The RSA exponent, as a string in hexadecimal number notation.\n         */\n        exponent?: string;\n        /**\n         * The RSA modulus, as a hexadecimal string.\n         */\n        modulus?: string;\n        /**\n         * The public key.\n         */\n        pubkey?: Buffer;\n        /**\n         * The ASN.1 name of the OID of the elliptic curve.\n         * Well-known curves are identified by an OID.\n         * While it is unusual, it is possible that the curve\n         * is identified by its mathematical properties,\n         * in which case it will not have an OID.\n         */\n        asn1Curve?: string;\n        /**\n         * The NIST name for the elliptic curve, if it has one\n         * (not all well-known curves have been assigned names by NIST).\n         */\n        nistCurve?: string;\n    }\n    interface DetailedPeerCertificate extends PeerCertificate {\n        /**\n         * The issuer certificate object.\n         * For self-signed certificates, this may be a circular reference.\n         */\n        issuerCertificate: DetailedPeerCertificate;\n    }\n    interface CipherNameAndProtocol {\n        /**\n         * The cipher name.\n         */\n        name: string;\n        /**\n         * SSL/TLS protocol version.\n         */\n        version: string;\n        /**\n         * IETF name for the cipher suite.\n         */\n        standardName: string;\n    }\n    interface EphemeralKeyInfo {\n        /**\n         * The supported types are 'DH' and 'ECDH'.\n         */\n        type: string;\n        /**\n         * The name property is available only when type is 'ECDH'.\n         */\n        name?: string | undefined;\n        /**\n         * The size of parameter of an ephemeral key exchange.\n         */\n        size: number;\n    }\n    interface KeyObject {\n        /**\n         * Private keys in PEM format.\n         */\n        pem: string | Buffer;\n        /**\n         * Optional passphrase.\n         */\n        passphrase?: string | undefined;\n    }\n    interface PxfObject {\n        /**\n         * PFX or PKCS12 encoded private key and certificate chain.\n         */\n        buf: string | Buffer;\n        /**\n         * Optional passphrase.\n         */\n        passphrase?: string | undefined;\n    }\n    interface TLSSocketOptions extends SecureContextOptions, CommonConnectionOptions {\n        /**\n         * If true the TLS socket will be instantiated in server-mode.\n         * Defaults to false.\n         */\n        isServer?: boolean | undefined;\n        /**\n         * An optional net.Server instance.\n         */\n        server?: net.Server | undefined;\n        /**\n         * An optional Buffer instance containing a TLS session.\n         */\n        session?: Buffer | undefined;\n        /**\n         * If true, specifies that the OCSP status request extension will be\n         * added to the client hello and an 'OCSPResponse' event will be\n         * emitted on the socket before establishing a secure communication\n         */\n        requestOCSP?: boolean | undefined;\n    }\n    /**\n     * Performs transparent encryption of written data and all required TLS\n     * negotiation.\n     *\n     * Instances of `tls.TLSSocket` implement the duplex `Stream` interface.\n     *\n     * Methods that return TLS connection metadata (e.g.{@link TLSSocket.getPeerCertificate}) will only return data while the\n     * connection is open.\n     * @since v0.11.4\n     */\n    class TLSSocket extends net.Socket {\n        /**\n         * Construct a new tls.TLSSocket object from an existing TCP socket.\n         */\n        constructor(socket: net.Socket | stream.Duplex, options?: TLSSocketOptions);\n        /**\n         * This property is `true` if the peer certificate was signed by one of the CAs\n         * specified when creating the `tls.TLSSocket` instance, otherwise `false`.\n         * @since v0.11.4\n         */\n        authorized: boolean;\n        /**\n         * Returns the reason why the peer's certificate was not been verified. This\n         * property is set only when `tlsSocket.authorized === false`.\n         * @since v0.11.4\n         */\n        authorizationError: Error;\n        /**\n         * Always returns `true`. This may be used to distinguish TLS sockets from regular`net.Socket` instances.\n         * @since v0.11.4\n         */\n        encrypted: true;\n        /**\n         * String containing the selected ALPN protocol.\n         * Before a handshake has completed, this value is always null.\n         * When a handshake is completed but not ALPN protocol was selected, tlsSocket.alpnProtocol equals false.\n         */\n        alpnProtocol: string | false | null;\n        /**\n         * Returns an object representing the local certificate. The returned object has\n         * some properties corresponding to the fields of the certificate.\n         *\n         * See {@link TLSSocket.getPeerCertificate} for an example of the certificate\n         * structure.\n         *\n         * If there is no local certificate, an empty object will be returned. If the\n         * socket has been destroyed, `null` will be returned.\n         * @since v11.2.0\n         */\n        getCertificate(): PeerCertificate | object | null;\n        /**\n         * Returns an object containing information on the negotiated cipher suite.\n         *\n         * For example, a TLSv1.2 protocol with AES256-SHA cipher:\n         *\n         * ```json\n         * {\n         *     \"name\": \"AES256-SHA\",\n         *     \"standardName\": \"TLS_RSA_WITH_AES_256_CBC_SHA\",\n         *     \"version\": \"SSLv3\"\n         * }\n         * ```\n         *\n         * See [SSL\\_CIPHER\\_get\\_name](https://www.openssl.org/docs/man1.1.1/man3/SSL_CIPHER_get_name.html) for more information.\n         * @since v0.11.4\n         */\n        getCipher(): CipherNameAndProtocol;\n        /**\n         * Returns an object representing the type, name, and size of parameter of\n         * an ephemeral key exchange in `perfect forward secrecy` on a client\n         * connection. It returns an empty object when the key exchange is not\n         * ephemeral. As this is only supported on a client socket; `null` is returned\n         * if called on a server socket. The supported types are `'DH'` and `'ECDH'`. The `name` property is available only when type is `'ECDH'`.\n         *\n         * For example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`.\n         * @since v5.0.0\n         */\n        getEphemeralKeyInfo(): EphemeralKeyInfo | object | null;\n        /**\n         * As the `Finished` messages are message digests of the complete handshake\n         * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can\n         * be used for external authentication procedures when the authentication\n         * provided by SSL/TLS is not desired or is not enough.\n         *\n         * Corresponds to the `SSL_get_finished` routine in OpenSSL and may be used\n         * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929).\n         * @since v9.9.0\n         * @return The latest `Finished` message that has been sent to the socket as part of a SSL/TLS handshake, or `undefined` if no `Finished` message has been sent yet.\n         */\n        getFinished(): Buffer | undefined;\n        /**\n         * Returns an object representing the peer's certificate. If the peer does not\n         * provide a certificate, an empty object will be returned. If the socket has been\n         * destroyed, `null` will be returned.\n         *\n         * If the full certificate chain was requested, each certificate will include an`issuerCertificate` property containing an object representing its issuer's\n         * certificate.\n         * @since v0.11.4\n         * @param detailed Include the full certificate chain if `true`, otherwise include just the peer's certificate.\n         * @return A certificate object.\n         */\n        getPeerCertificate(detailed: true): DetailedPeerCertificate;\n        getPeerCertificate(detailed?: false): PeerCertificate;\n        getPeerCertificate(detailed?: boolean): PeerCertificate | DetailedPeerCertificate;\n        /**\n         * As the `Finished` messages are message digests of the complete handshake\n         * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can\n         * be used for external authentication procedures when the authentication\n         * provided by SSL/TLS is not desired or is not enough.\n         *\n         * Corresponds to the `SSL_get_peer_finished` routine in OpenSSL and may be used\n         * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929).\n         * @since v9.9.0\n         * @return The latest `Finished` message that is expected or has actually been received from the socket as part of a SSL/TLS handshake, or `undefined` if there is no `Finished` message so\n         * far.\n         */\n        getPeerFinished(): Buffer | undefined;\n        /**\n         * Returns a string containing the negotiated SSL/TLS protocol version of the\n         * current connection. The value `'unknown'` will be returned for connected\n         * sockets that have not completed the handshaking process. The value `null` will\n         * be returned for server sockets or disconnected client sockets.\n         *\n         * Protocol versions are:\n         *\n         * * `'SSLv3'`\n         * * `'TLSv1'`\n         * * `'TLSv1.1'`\n         * * `'TLSv1.2'`\n         * * `'TLSv1.3'`\n         *\n         * See the OpenSSL [`SSL_get_version`](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_version.html) documentation for more information.\n         * @since v5.7.0\n         */\n        getProtocol(): string | null;\n        /**\n         * Returns the TLS session data or `undefined` if no session was\n         * negotiated. On the client, the data can be provided to the `session` option of {@link connect} to resume the connection. On the server, it may be useful\n         * for debugging.\n         *\n         * See `Session Resumption` for more information.\n         *\n         * Note: `getSession()` works only for TLSv1.2 and below. For TLSv1.3, applications\n         * must use the `'session'` event (it also works for TLSv1.2 and below).\n         * @since v0.11.4\n         */\n        getSession(): Buffer | undefined;\n        /**\n         * See [SSL\\_get\\_shared\\_sigalgs](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_shared_sigalgs.html) for more information.\n         * @since v12.11.0\n         * @return List of signature algorithms shared between the server and the client in the order of decreasing preference.\n         */\n        getSharedSigalgs(): string[];\n        /**\n         * For a client, returns the TLS session ticket if one is available, or`undefined`. For a server, always returns `undefined`.\n         *\n         * It may be useful for debugging.\n         *\n         * See `Session Resumption` for more information.\n         * @since v0.11.4\n         */\n        getTLSTicket(): Buffer | undefined;\n        /**\n         * See `Session Resumption` for more information.\n         * @since v0.5.6\n         * @return `true` if the session was reused, `false` otherwise.\n         */\n        isSessionReused(): boolean;\n        /**\n         * The `tlsSocket.renegotiate()` method initiates a TLS renegotiation process.\n         * Upon completion, the `callback` function will be passed a single argument\n         * that is either an `Error` (if the request failed) or `null`.\n         *\n         * This method can be used to request a peer's certificate after the secure\n         * connection has been established.\n         *\n         * When running as the server, the socket will be destroyed with an error after `handshakeTimeout` timeout.\n         *\n         * For TLSv1.3, renegotiation cannot be initiated, it is not supported by the\n         * protocol.\n         * @since v0.11.8\n         * @param callback If `renegotiate()` returned `true`, callback is attached once to the `'secure'` event. If `renegotiate()` returned `false`, `callback` will be called in the next tick with\n         * an error, unless the `tlsSocket` has been destroyed, in which case `callback` will not be called at all.\n         * @return `true` if renegotiation was initiated, `false` otherwise.\n         */\n        renegotiate(\n            options: {\n                rejectUnauthorized?: boolean | undefined;\n                requestCert?: boolean | undefined;\n            },\n            callback: (err: Error | null) => void,\n        ): undefined | boolean;\n        /**\n         * The `tlsSocket.setKeyCert()` method sets the private key and certificate to use for the socket.\n         * This is mainly useful if you wish to select a server certificate from a TLS server's `ALPNCallback`.\n         * @since v22.5.0, v20.17.0\n         * @param context An object containing at least `key` and `cert` properties from the {@link createSecureContext()} `options`,\n         * or a TLS context object created with {@link createSecureContext()} itself.\n         */\n        setKeyCert(context: SecureContextOptions | SecureContext): void;\n        /**\n         * The `tlsSocket.setMaxSendFragment()` method sets the maximum TLS fragment size.\n         * Returns `true` if setting the limit succeeded; `false` otherwise.\n         *\n         * Smaller fragment sizes decrease the buffering latency on the client: larger\n         * fragments are buffered by the TLS layer until the entire fragment is received\n         * and its integrity is verified; large fragments can span multiple roundtrips\n         * and their processing can be delayed due to packet loss or reordering. However,\n         * smaller fragments add extra TLS framing bytes and CPU overhead, which may\n         * decrease overall server throughput.\n         * @since v0.11.11\n         * @param [size=16384] The maximum TLS fragment size. The maximum value is `16384`.\n         */\n        setMaxSendFragment(size: number): boolean;\n        /**\n         * Disables TLS renegotiation for this `TLSSocket` instance. Once called, attempts\n         * to renegotiate will trigger an `'error'` event on the `TLSSocket`.\n         * @since v8.4.0\n         */\n        disableRenegotiation(): void;\n        /**\n         * When enabled, TLS packet trace information is written to `stderr`. This can be\n         * used to debug TLS connection problems.\n         *\n         * The format of the output is identical to the output of`openssl s_client -trace` or `openssl s_server -trace`. While it is produced by\n         * OpenSSL's `SSL_trace()` function, the format is undocumented, can change\n         * without notice, and should not be relied on.\n         * @since v12.2.0\n         */\n        enableTrace(): void;\n        /**\n         * Returns the peer certificate as an `X509Certificate` object.\n         *\n         * If there is no peer certificate, or the socket has been destroyed,`undefined` will be returned.\n         * @since v15.9.0\n         */\n        getPeerX509Certificate(): X509Certificate | undefined;\n        /**\n         * Returns the local certificate as an `X509Certificate` object.\n         *\n         * If there is no local certificate, or the socket has been destroyed,`undefined` will be returned.\n         * @since v15.9.0\n         */\n        getX509Certificate(): X509Certificate | undefined;\n        /**\n         * Keying material is used for validations to prevent different kind of attacks in\n         * network protocols, for example in the specifications of IEEE 802.1X.\n         *\n         * Example\n         *\n         * ```js\n         * const keyingMaterial = tlsSocket.exportKeyingMaterial(\n         *   128,\n         *   'client finished');\n         *\n         * /*\n         *  Example return value of keyingMaterial:\n         *  <Buffer 76 26 af 99 c5 56 8e 42 09 91 ef 9f 93 cb ad 6c 7b 65 f8 53 f1 d8 d9\n         *     12 5a 33 b8 b5 25 df 7b 37 9f e0 e2 4f b8 67 83 a3 2f cd 5d 41 42 4c 91\n         *     74 ef 2c ... 78 more bytes>\n         *\n         * ```\n         *\n         * See the OpenSSL [`SSL_export_keying_material`](https://www.openssl.org/docs/man1.1.1/man3/SSL_export_keying_material.html) documentation for more\n         * information.\n         * @since v13.10.0, v12.17.0\n         * @param length number of bytes to retrieve from keying material\n         * @param label an application specific label, typically this will be a value from the [IANA Exporter Label\n         * Registry](https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#exporter-labels).\n         * @param context Optionally provide a context.\n         * @return requested bytes of the keying material\n         */\n        exportKeyingMaterial(length: number, label: string, context: Buffer): Buffer;\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"OCSPResponse\", listener: (response: Buffer) => void): this;\n        addListener(event: \"secureConnect\", listener: () => void): this;\n        addListener(event: \"session\", listener: (session: Buffer) => void): this;\n        addListener(event: \"keylog\", listener: (line: Buffer) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"OCSPResponse\", response: Buffer): boolean;\n        emit(event: \"secureConnect\"): boolean;\n        emit(event: \"session\", session: Buffer): boolean;\n        emit(event: \"keylog\", line: Buffer): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"OCSPResponse\", listener: (response: Buffer) => void): this;\n        on(event: \"secureConnect\", listener: () => void): this;\n        on(event: \"session\", listener: (session: Buffer) => void): this;\n        on(event: \"keylog\", listener: (line: Buffer) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"OCSPResponse\", listener: (response: Buffer) => void): this;\n        once(event: \"secureConnect\", listener: () => void): this;\n        once(event: \"session\", listener: (session: Buffer) => void): this;\n        once(event: \"keylog\", listener: (line: Buffer) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"OCSPResponse\", listener: (response: Buffer) => void): this;\n        prependListener(event: \"secureConnect\", listener: () => void): this;\n        prependListener(event: \"session\", listener: (session: Buffer) => void): this;\n        prependListener(event: \"keylog\", listener: (line: Buffer) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"OCSPResponse\", listener: (response: Buffer) => void): this;\n        prependOnceListener(event: \"secureConnect\", listener: () => void): this;\n        prependOnceListener(event: \"session\", listener: (session: Buffer) => void): this;\n        prependOnceListener(event: \"keylog\", listener: (line: Buffer) => void): this;\n    }\n    interface CommonConnectionOptions {\n        /**\n         * An optional TLS context object from tls.createSecureContext()\n         */\n        secureContext?: SecureContext | undefined;\n        /**\n         * When enabled, TLS packet trace information is written to `stderr`. This can be\n         * used to debug TLS connection problems.\n         * @default false\n         */\n        enableTrace?: boolean | undefined;\n        /**\n         * If true the server will request a certificate from clients that\n         * connect and attempt to verify that certificate. Defaults to\n         * false.\n         */\n        requestCert?: boolean | undefined;\n        /**\n         * An array of strings or a Buffer naming possible ALPN protocols.\n         * (Protocols should be ordered by their priority.)\n         */\n        ALPNProtocols?: string[] | Uint8Array[] | Uint8Array | undefined;\n        /**\n         * SNICallback(servername, cb) <Function> A function that will be\n         * called if the client supports SNI TLS extension. Two arguments\n         * will be passed when called: servername and cb. SNICallback should\n         * invoke cb(null, ctx), where ctx is a SecureContext instance.\n         * (tls.createSecureContext(...) can be used to get a proper\n         * SecureContext.) If SNICallback wasn't provided the default callback\n         * with high-level API will be used (see below).\n         */\n        SNICallback?: ((servername: string, cb: (err: Error | null, ctx?: SecureContext) => void) => void) | undefined;\n        /**\n         * If true the server will reject any connection which is not\n         * authorized with the list of supplied CAs. This option only has an\n         * effect if requestCert is true.\n         * @default true\n         */\n        rejectUnauthorized?: boolean | undefined;\n    }\n    interface TlsOptions extends SecureContextOptions, CommonConnectionOptions, net.ServerOpts {\n        /**\n         * Abort the connection if the SSL/TLS handshake does not finish in the\n         * specified number of milliseconds. A 'tlsClientError' is emitted on\n         * the tls.Server object whenever a handshake times out. Default:\n         * 120000 (120 seconds).\n         */\n        handshakeTimeout?: number | undefined;\n        /**\n         * The number of seconds after which a TLS session created by the\n         * server will no longer be resumable. See Session Resumption for more\n         * information. Default: 300.\n         */\n        sessionTimeout?: number | undefined;\n        /**\n         * 48-bytes of cryptographically strong pseudo-random data.\n         */\n        ticketKeys?: Buffer | undefined;\n        /**\n         * @param socket\n         * @param identity identity parameter sent from the client.\n         * @return pre-shared key that must either be\n         * a buffer or `null` to stop the negotiation process. Returned PSK must be\n         * compatible with the selected cipher's digest.\n         *\n         * When negotiating TLS-PSK (pre-shared keys), this function is called\n         * with the identity provided by the client.\n         * If the return value is `null` the negotiation process will stop and an\n         * \"unknown_psk_identity\" alert message will be sent to the other party.\n         * If the server wishes to hide the fact that the PSK identity was not known,\n         * the callback must provide some random data as `psk` to make the connection\n         * fail with \"decrypt_error\" before negotiation is finished.\n         * PSK ciphers are disabled by default, and using TLS-PSK thus\n         * requires explicitly specifying a cipher suite with the `ciphers` option.\n         * More information can be found in the RFC 4279.\n         */\n        pskCallback?(socket: TLSSocket, identity: string): DataView | NodeJS.TypedArray | null;\n        /**\n         * hint to send to a client to help\n         * with selecting the identity during TLS-PSK negotiation. Will be ignored\n         * in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be\n         * emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code.\n         */\n        pskIdentityHint?: string | undefined;\n    }\n    interface PSKCallbackNegotation {\n        psk: DataView | NodeJS.TypedArray;\n        identity: string;\n    }\n    interface ConnectionOptions extends SecureContextOptions, CommonConnectionOptions {\n        host?: string | undefined;\n        port?: number | undefined;\n        path?: string | undefined; // Creates unix socket connection to path. If this option is specified, `host` and `port` are ignored.\n        socket?: stream.Duplex | undefined; // Establish secure connection on a given socket rather than creating a new socket\n        checkServerIdentity?: typeof checkServerIdentity | undefined;\n        servername?: string | undefined; // SNI TLS Extension\n        session?: Buffer | undefined;\n        minDHSize?: number | undefined;\n        lookup?: net.LookupFunction | undefined;\n        timeout?: number | undefined;\n        /**\n         * When negotiating TLS-PSK (pre-shared keys), this function is called\n         * with optional identity `hint` provided by the server or `null`\n         * in case of TLS 1.3 where `hint` was removed.\n         * It will be necessary to provide a custom `tls.checkServerIdentity()`\n         * for the connection as the default one will try to check hostname/IP\n         * of the server against the certificate but that's not applicable for PSK\n         * because there won't be a certificate present.\n         * More information can be found in the RFC 4279.\n         *\n         * @param hint message sent from the server to help client\n         * decide which identity to use during negotiation.\n         * Always `null` if TLS 1.3 is used.\n         * @returns Return `null` to stop the negotiation process. `psk` must be\n         * compatible with the selected cipher's digest.\n         * `identity` must use UTF-8 encoding.\n         */\n        pskCallback?(hint: string | null): PSKCallbackNegotation | null;\n    }\n    /**\n     * Accepts encrypted connections using TLS or SSL.\n     * @since v0.3.2\n     */\n    class Server extends net.Server {\n        constructor(secureConnectionListener?: (socket: TLSSocket) => void);\n        constructor(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void);\n        /**\n         * The `server.addContext()` method adds a secure context that will be used if\n         * the client request's SNI name matches the supplied `hostname` (or wildcard).\n         *\n         * When there are multiple matching contexts, the most recently added one is\n         * used.\n         * @since v0.5.3\n         * @param hostname A SNI host name or wildcard (e.g. `'*'`)\n         * @param context An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc), or a TLS context object created\n         * with {@link createSecureContext} itself.\n         */\n        addContext(hostname: string, context: SecureContextOptions | SecureContext): void;\n        /**\n         * Returns the session ticket keys.\n         *\n         * See `Session Resumption` for more information.\n         * @since v3.0.0\n         * @return A 48-byte buffer containing the session ticket keys.\n         */\n        getTicketKeys(): Buffer;\n        /**\n         * The `server.setSecureContext()` method replaces the secure context of an\n         * existing server. Existing connections to the server are not interrupted.\n         * @since v11.0.0\n         * @param options An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc).\n         */\n        setSecureContext(options: SecureContextOptions): void;\n        /**\n         * Sets the session ticket keys.\n         *\n         * Changes to the ticket keys are effective only for future server connections.\n         * Existing or currently pending server connections will use the previous keys.\n         *\n         * See `Session Resumption` for more information.\n         * @since v3.0.0\n         * @param keys A 48-byte buffer containing the session ticket keys.\n         */\n        setTicketKeys(keys: Buffer): void;\n        /**\n         * events.EventEmitter\n         * 1. tlsClientError\n         * 2. newSession\n         * 3. OCSPRequest\n         * 4. resumeSession\n         * 5. secureConnection\n         * 6. keylog\n         */\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: TLSSocket) => void): this;\n        addListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void,\n        ): this;\n        addListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        addListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void,\n        ): this;\n        addListener(event: \"secureConnection\", listener: (tlsSocket: TLSSocket) => void): this;\n        addListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"tlsClientError\", err: Error, tlsSocket: TLSSocket): boolean;\n        emit(event: \"newSession\", sessionId: Buffer, sessionData: Buffer, callback: () => void): boolean;\n        emit(\n            event: \"OCSPRequest\",\n            certificate: Buffer,\n            issuer: Buffer,\n            callback: (err: Error | null, resp: Buffer) => void,\n        ): boolean;\n        emit(\n            event: \"resumeSession\",\n            sessionId: Buffer,\n            callback: (err: Error | null, sessionData: Buffer | null) => void,\n        ): boolean;\n        emit(event: \"secureConnection\", tlsSocket: TLSSocket): boolean;\n        emit(event: \"keylog\", line: Buffer, tlsSocket: TLSSocket): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"tlsClientError\", listener: (err: Error, tlsSocket: TLSSocket) => void): this;\n        on(event: \"newSession\", listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this;\n        on(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        on(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void,\n        ): this;\n        on(event: \"secureConnection\", listener: (tlsSocket: TLSSocket) => void): this;\n        on(event: \"keylog\", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"tlsClientError\", listener: (err: Error, tlsSocket: TLSSocket) => void): this;\n        once(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void,\n        ): this;\n        once(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        once(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void,\n        ): this;\n        once(event: \"secureConnection\", listener: (tlsSocket: TLSSocket) => void): this;\n        once(event: \"keylog\", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: TLSSocket) => void): this;\n        prependListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void,\n        ): this;\n        prependListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        prependListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void,\n        ): this;\n        prependListener(event: \"secureConnection\", listener: (tlsSocket: TLSSocket) => void): this;\n        prependListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"tlsClientError\", listener: (err: Error, tlsSocket: TLSSocket) => void): this;\n        prependOnceListener(\n            event: \"newSession\",\n            listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void,\n        ): this;\n        prependOnceListener(\n            event: \"OCSPRequest\",\n            listener: (\n                certificate: Buffer,\n                issuer: Buffer,\n                callback: (err: Error | null, resp: Buffer) => void,\n            ) => void,\n        ): this;\n        prependOnceListener(\n            event: \"resumeSession\",\n            listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void,\n        ): this;\n        prependOnceListener(event: \"secureConnection\", listener: (tlsSocket: TLSSocket) => void): this;\n        prependOnceListener(event: \"keylog\", listener: (line: Buffer, tlsSocket: TLSSocket) => void): this;\n    }\n    /**\n     * @deprecated since v0.11.3 Use `tls.TLSSocket` instead.\n     */\n    interface SecurePair {\n        encrypted: TLSSocket;\n        cleartext: TLSSocket;\n    }\n    type SecureVersion = \"TLSv1.3\" | \"TLSv1.2\" | \"TLSv1.1\" | \"TLSv1\";\n    interface SecureContextOptions {\n        /**\n         * If set, this will be called when a client opens a connection using the ALPN extension.\n         * One argument will be passed to the callback: an object containing `servername` and `protocols` fields,\n         * respectively containing the server name from the SNI extension (if any) and an array of\n         * ALPN protocol name strings. The callback must return either one of the strings listed in `protocols`,\n         * which will be returned to the client as the selected ALPN protocol, or `undefined`,\n         * to reject the connection with a fatal alert. If a string is returned that does not match one of\n         * the client's ALPN protocols, an error will be thrown.\n         * This option cannot be used with the `ALPNProtocols` option, and setting both options will throw an error.\n         */\n        ALPNCallback?: ((arg: { servername: string; protocols: string[] }) => string | undefined) | undefined;\n        /**\n         * Treat intermediate (non-self-signed)\n         * certificates in the trust CA certificate list as trusted.\n         * @since v22.9.0, v20.18.0\n         */\n        allowPartialTrustChain?: boolean | undefined;\n        /**\n         * Optionally override the trusted CA certificates. Default is to trust\n         * the well-known CAs curated by Mozilla. Mozilla's CAs are completely\n         * replaced when CAs are explicitly specified using this option.\n         */\n        ca?: string | Buffer | Array<string | Buffer> | undefined;\n        /**\n         *  Cert chains in PEM format. One cert chain should be provided per\n         *  private key. Each cert chain should consist of the PEM formatted\n         *  certificate for a provided private key, followed by the PEM\n         *  formatted intermediate certificates (if any), in order, and not\n         *  including the root CA (the root CA must be pre-known to the peer,\n         *  see ca). When providing multiple cert chains, they do not have to\n         *  be in the same order as their private keys in key. If the\n         *  intermediate certificates are not provided, the peer will not be\n         *  able to validate the certificate, and the handshake will fail.\n         */\n        cert?: string | Buffer | Array<string | Buffer> | undefined;\n        /**\n         *  Colon-separated list of supported signature algorithms. The list\n         *  can contain digest algorithms (SHA256, MD5 etc.), public key\n         *  algorithms (RSA-PSS, ECDSA etc.), combination of both (e.g\n         *  'RSA+SHA384') or TLS v1.3 scheme names (e.g. rsa_pss_pss_sha512).\n         */\n        sigalgs?: string | undefined;\n        /**\n         * Cipher suite specification, replacing the default. For more\n         * information, see modifying the default cipher suite. Permitted\n         * ciphers can be obtained via tls.getCiphers(). Cipher names must be\n         * uppercased in order for OpenSSL to accept them.\n         */\n        ciphers?: string | undefined;\n        /**\n         * Name of an OpenSSL engine which can provide the client certificate.\n         * @deprecated\n         */\n        clientCertEngine?: string | undefined;\n        /**\n         * PEM formatted CRLs (Certificate Revocation Lists).\n         */\n        crl?: string | Buffer | Array<string | Buffer> | undefined;\n        /**\n         * `'auto'` or custom Diffie-Hellman parameters, required for non-ECDHE perfect forward secrecy.\n         * If omitted or invalid, the parameters are silently discarded and DHE ciphers will not be available.\n         * ECDHE-based perfect forward secrecy will still be available.\n         */\n        dhparam?: string | Buffer | undefined;\n        /**\n         * A string describing a named curve or a colon separated list of curve\n         * NIDs or names, for example P-521:P-384:P-256, to use for ECDH key\n         * agreement. Set to auto to select the curve automatically. Use\n         * crypto.getCurves() to obtain a list of available curve names. On\n         * recent releases, openssl ecparam -list_curves will also display the\n         * name and description of each available elliptic curve. Default:\n         * tls.DEFAULT_ECDH_CURVE.\n         */\n        ecdhCurve?: string | undefined;\n        /**\n         * Attempt to use the server's cipher suite preferences instead of the\n         * client's. When true, causes SSL_OP_CIPHER_SERVER_PREFERENCE to be\n         * set in secureOptions\n         */\n        honorCipherOrder?: boolean | undefined;\n        /**\n         * Private keys in PEM format. PEM allows the option of private keys\n         * being encrypted. Encrypted keys will be decrypted with\n         * options.passphrase. Multiple keys using different algorithms can be\n         * provided either as an array of unencrypted key strings or buffers,\n         * or an array of objects in the form {pem: <string|buffer>[,\n         * passphrase: <string>]}. The object form can only occur in an array.\n         * object.passphrase is optional. Encrypted keys will be decrypted with\n         * object.passphrase if provided, or options.passphrase if it is not.\n         */\n        key?: string | Buffer | Array<string | Buffer | KeyObject> | undefined;\n        /**\n         * Name of an OpenSSL engine to get private key from. Should be used\n         * together with privateKeyIdentifier.\n         * @deprecated\n         */\n        privateKeyEngine?: string | undefined;\n        /**\n         * Identifier of a private key managed by an OpenSSL engine. Should be\n         * used together with privateKeyEngine. Should not be set together with\n         * key, because both options define a private key in different ways.\n         * @deprecated\n         */\n        privateKeyIdentifier?: string | undefined;\n        /**\n         * Optionally set the maximum TLS version to allow. One\n         * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the\n         * `secureProtocol` option, use one or the other.\n         * **Default:** `'TLSv1.3'`, unless changed using CLI options. Using\n         * `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to\n         * `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used.\n         */\n        maxVersion?: SecureVersion | undefined;\n        /**\n         * Optionally set the minimum TLS version to allow. One\n         * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the\n         * `secureProtocol` option, use one or the other.  It is not recommended to use\n         * less than TLSv1.2, but it may be required for interoperability.\n         * **Default:** `'TLSv1.2'`, unless changed using CLI options. Using\n         * `--tls-v1.0` sets the default to `'TLSv1'`. Using `--tls-v1.1` sets the default to\n         * `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to\n         * 'TLSv1.3'. If multiple of the options are provided, the lowest minimum is used.\n         */\n        minVersion?: SecureVersion | undefined;\n        /**\n         * Shared passphrase used for a single private key and/or a PFX.\n         */\n        passphrase?: string | undefined;\n        /**\n         * PFX or PKCS12 encoded private key and certificate chain. pfx is an\n         * alternative to providing key and cert individually. PFX is usually\n         * encrypted, if it is, passphrase will be used to decrypt it. Multiple\n         * PFX can be provided either as an array of unencrypted PFX buffers,\n         * or an array of objects in the form {buf: <string|buffer>[,\n         * passphrase: <string>]}. The object form can only occur in an array.\n         * object.passphrase is optional. Encrypted PFX will be decrypted with\n         * object.passphrase if provided, or options.passphrase if it is not.\n         */\n        pfx?: string | Buffer | Array<string | Buffer | PxfObject> | undefined;\n        /**\n         * Optionally affect the OpenSSL protocol behavior, which is not\n         * usually necessary. This should be used carefully if at all! Value is\n         * a numeric bitmask of the SSL_OP_* options from OpenSSL Options\n         */\n        secureOptions?: number | undefined; // Value is a numeric bitmask of the `SSL_OP_*` options\n        /**\n         * Legacy mechanism to select the TLS protocol version to use, it does\n         * not support independent control of the minimum and maximum version,\n         * and does not support limiting the protocol to TLSv1.3. Use\n         * minVersion and maxVersion instead. The possible values are listed as\n         * SSL_METHODS, use the function names as strings. For example, use\n         * 'TLSv1_1_method' to force TLS version 1.1, or 'TLS_method' to allow\n         * any TLS protocol version up to TLSv1.3. It is not recommended to use\n         * TLS versions less than 1.2, but it may be required for\n         * interoperability. Default: none, see minVersion.\n         */\n        secureProtocol?: string | undefined;\n        /**\n         * Opaque identifier used by servers to ensure session state is not\n         * shared between applications. Unused by clients.\n         */\n        sessionIdContext?: string | undefined;\n        /**\n         * 48-bytes of cryptographically strong pseudo-random data.\n         * See Session Resumption for more information.\n         */\n        ticketKeys?: Buffer | undefined;\n        /**\n         * The number of seconds after which a TLS session created by the\n         * server will no longer be resumable. See Session Resumption for more\n         * information. Default: 300.\n         */\n        sessionTimeout?: number | undefined;\n    }\n    interface SecureContext {\n        context: any;\n    }\n    /**\n     * Verifies the certificate `cert` is issued to `hostname`.\n     *\n     * Returns [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object, populating it with `reason`, `host`, and `cert` on\n     * failure. On success, returns [undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type).\n     *\n     * This function is intended to be used in combination with the`checkServerIdentity` option that can be passed to {@link connect} and as\n     * such operates on a `certificate object`. For other purposes, consider using `x509.checkHost()` instead.\n     *\n     * This function can be overwritten by providing an alternative function as the `options.checkServerIdentity` option that is passed to `tls.connect()`. The\n     * overwriting function can call `tls.checkServerIdentity()` of course, to augment\n     * the checks done with additional verification.\n     *\n     * This function is only called if the certificate passed all other checks, such as\n     * being issued by trusted CA (`options.ca`).\n     *\n     * Earlier versions of Node.js incorrectly accepted certificates for a given`hostname` if a matching `uniformResourceIdentifier` subject alternative name\n     * was present (see [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531)). Applications that wish to accept`uniformResourceIdentifier` subject alternative names can use\n     * a custom `options.checkServerIdentity` function that implements the desired behavior.\n     * @since v0.8.4\n     * @param hostname The host name or IP address to verify the certificate against.\n     * @param cert A `certificate object` representing the peer's certificate.\n     */\n    function checkServerIdentity(hostname: string, cert: PeerCertificate): Error | undefined;\n    /**\n     * Creates a new {@link Server}. The `secureConnectionListener`, if provided, is\n     * automatically set as a listener for the `'secureConnection'` event.\n     *\n     * The `ticketKeys` options is automatically shared between `node:cluster` module\n     * workers.\n     *\n     * The following illustrates a simple echo server:\n     *\n     * ```js\n     * import tls from 'node:tls';\n     * import fs from 'node:fs';\n     *\n     * const options = {\n     *   key: fs.readFileSync('server-key.pem'),\n     *   cert: fs.readFileSync('server-cert.pem'),\n     *\n     *   // This is necessary only if using client certificate authentication.\n     *   requestCert: true,\n     *\n     *   // This is necessary only if the client uses a self-signed certificate.\n     *   ca: [ fs.readFileSync('client-cert.pem') ],\n     * };\n     *\n     * const server = tls.createServer(options, (socket) => {\n     *   console.log('server connected',\n     *               socket.authorized ? 'authorized' : 'unauthorized');\n     *   socket.write('welcome!\\n');\n     *   socket.setEncoding('utf8');\n     *   socket.pipe(socket);\n     * });\n     * server.listen(8000, () => {\n     *   console.log('server bound');\n     * });\n     * ```\n     *\n     * The server can be tested by connecting to it using the example client from {@link connect}.\n     * @since v0.3.2\n     */\n    function createServer(secureConnectionListener?: (socket: TLSSocket) => void): Server;\n    function createServer(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void): Server;\n    /**\n     * The `callback` function, if specified, will be added as a listener for the `'secureConnect'` event.\n     *\n     * `tls.connect()` returns a {@link TLSSocket} object.\n     *\n     * Unlike the `https` API, `tls.connect()` does not enable the\n     * SNI (Server Name Indication) extension by default, which may cause some\n     * servers to return an incorrect certificate or reject the connection\n     * altogether. To enable SNI, set the `servername` option in addition\n     * to `host`.\n     *\n     * The following illustrates a client for the echo server example from {@link createServer}:\n     *\n     * ```js\n     * // Assumes an echo server that is listening on port 8000.\n     * import tls from 'node:tls';\n     * import fs from 'node:fs';\n     *\n     * const options = {\n     *   // Necessary only if the server requires client certificate authentication.\n     *   key: fs.readFileSync('client-key.pem'),\n     *   cert: fs.readFileSync('client-cert.pem'),\n     *\n     *   // Necessary only if the server uses a self-signed certificate.\n     *   ca: [ fs.readFileSync('server-cert.pem') ],\n     *\n     *   // Necessary only if the server's cert isn't for \"localhost\".\n     *   checkServerIdentity: () => { return null; },\n     * };\n     *\n     * const socket = tls.connect(8000, options, () => {\n     *   console.log('client connected',\n     *               socket.authorized ? 'authorized' : 'unauthorized');\n     *   process.stdin.pipe(socket);\n     *   process.stdin.resume();\n     * });\n     * socket.setEncoding('utf8');\n     * socket.on('data', (data) => {\n     *   console.log(data);\n     * });\n     * socket.on('end', () => {\n     *   console.log('server ends connection');\n     * });\n     * ```\n     * @since v0.11.3\n     */\n    function connect(options: ConnectionOptions, secureConnectListener?: () => void): TLSSocket;\n    function connect(\n        port: number,\n        host?: string,\n        options?: ConnectionOptions,\n        secureConnectListener?: () => void,\n    ): TLSSocket;\n    function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket;\n    /**\n     * Creates a new secure pair object with two streams, one of which reads and writes\n     * the encrypted data and the other of which reads and writes the cleartext data.\n     * Generally, the encrypted stream is piped to/from an incoming encrypted data\n     * stream and the cleartext one is used as a replacement for the initial encrypted\n     * stream.\n     *\n     * `tls.createSecurePair()` returns a `tls.SecurePair` object with `cleartext` and `encrypted` stream properties.\n     *\n     * Using `cleartext` has the same API as {@link TLSSocket}.\n     *\n     * The `tls.createSecurePair()` method is now deprecated in favor of`tls.TLSSocket()`. For example, the code:\n     *\n     * ```js\n     * pair = tls.createSecurePair(// ... );\n     * pair.encrypted.pipe(socket);\n     * socket.pipe(pair.encrypted);\n     * ```\n     *\n     * can be replaced by:\n     *\n     * ```js\n     * secureSocket = tls.TLSSocket(socket, options);\n     * ```\n     *\n     * where `secureSocket` has the same API as `pair.cleartext`.\n     * @since v0.3.2\n     * @deprecated Since v0.11.3 - Use {@link TLSSocket} instead.\n     * @param context A secure context object as returned by `tls.createSecureContext()`\n     * @param isServer `true` to specify that this TLS connection should be opened as a server.\n     * @param requestCert `true` to specify whether a server should request a certificate from a connecting client. Only applies when `isServer` is `true`.\n     * @param rejectUnauthorized If not `false` a server automatically reject clients with invalid certificates. Only applies when `isServer` is `true`.\n     */\n    function createSecurePair(\n        context?: SecureContext,\n        isServer?: boolean,\n        requestCert?: boolean,\n        rejectUnauthorized?: boolean,\n    ): SecurePair;\n    /**\n     * `{@link createServer}` sets the default value of the `honorCipherOrder` option\n     * to `true`, other APIs that create secure contexts leave it unset.\n     *\n     * `{@link createServer}` uses a 128 bit truncated SHA1 hash value generated\n     * from `process.argv` as the default value of the `sessionIdContext` option, other\n     * APIs that create secure contexts have no default value.\n     *\n     * The `tls.createSecureContext()` method creates a `SecureContext` object. It is\n     * usable as an argument to several `tls` APIs, such as `server.addContext()`,\n     * but has no public methods. The {@link Server} constructor and the {@link createServer} method do not support the `secureContext` option.\n     *\n     * A key is _required_ for ciphers that use certificates. Either `key` or `pfx` can be used to provide it.\n     *\n     * If the `ca` option is not given, then Node.js will default to using [Mozilla's publicly trusted list of\n     * CAs](https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt).\n     *\n     * Custom DHE parameters are discouraged in favor of the new `dhparam: 'auto' `option. When set to `'auto'`, well-known DHE parameters of sufficient strength\n     * will be selected automatically. Otherwise, if necessary, `openssl dhparam` can\n     * be used to create custom parameters. The key length must be greater than or\n     * equal to 1024 bits or else an error will be thrown. Although 1024 bits is\n     * permissible, use 2048 bits or larger for stronger security.\n     * @since v0.11.13\n     */\n    function createSecureContext(options?: SecureContextOptions): SecureContext;\n    /**\n     * Returns an array containing the CA certificates from various sources, depending on `type`:\n     *\n     * * `\"default\"`: return the CA certificates that will be used by the Node.js TLS clients by default.\n     *   * When `--use-bundled-ca` is enabled (default), or `--use-openssl-ca` is not enabled,\n     *     this would include CA certificates from the bundled Mozilla CA store.\n     *   * When `--use-system-ca` is enabled, this would also include certificates from the system's\n     *     trusted store.\n     *   * When `NODE_EXTRA_CA_CERTS` is used, this would also include certificates loaded from the specified\n     *     file.\n     * * `\"system\"`: return the CA certificates that are loaded from the system's trusted store, according\n     *   to rules set by `--use-system-ca`. This can be used to get the certificates from the system\n     *   when `--use-system-ca` is not enabled.\n     * * `\"bundled\"`: return the CA certificates from the bundled Mozilla CA store. This would be the same\n     *   as `tls.rootCertificates`.\n     * * `\"extra\"`: return the CA certificates loaded from `NODE_EXTRA_CA_CERTS`. It's an empty array if\n     *   `NODE_EXTRA_CA_CERTS` is not set.\n     * @since v22.15.0\n     * @param type The type of CA certificates that will be returned. Valid values\n     * are `\"default\"`, `\"system\"`, `\"bundled\"` and `\"extra\"`.\n     * **Default:** `\"default\"`.\n     * @returns An array of PEM-encoded certificates. The array may contain duplicates\n     * if the same certificate is repeatedly stored in multiple sources.\n     */\n    function getCACertificates(type?: \"default\" | \"system\" | \"bundled\" | \"extra\"): string[];\n    /**\n     * Returns an array with the names of the supported TLS ciphers. The names are\n     * lower-case for historical reasons, but must be uppercased to be used in\n     * the `ciphers` option of `{@link createSecureContext}`.\n     *\n     * Not all supported ciphers are enabled by default. See\n     * [Modifying the default TLS cipher suite](https://nodejs.org/docs/latest-v22.x/api/tls.html#modifying-the-default-tls-cipher-suite).\n     *\n     * Cipher names that start with `'tls_'` are for TLSv1.3, all the others are for\n     * TLSv1.2 and below.\n     *\n     * ```js\n     * console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...]\n     * ```\n     * @since v0.10.2\n     */\n    function getCiphers(): string[];\n    /**\n     * The default curve name to use for ECDH key agreement in a tls server.\n     * The default value is `'auto'`. See `{@link createSecureContext()}` for further\n     * information.\n     * @since v0.11.13\n     */\n    let DEFAULT_ECDH_CURVE: string;\n    /**\n     * The default value of the `maxVersion` option of `{@link createSecureContext()}`.\n     * It can be assigned any of the supported TLS protocol versions,\n     * `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. **Default:** `'TLSv1.3'`, unless\n     * changed using CLI options. Using `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using\n     * `--tls-max-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options\n     * are provided, the highest maximum is used.\n     * @since v11.4.0\n     */\n    let DEFAULT_MAX_VERSION: SecureVersion;\n    /**\n     * The default value of the `minVersion` option of `{@link createSecureContext()}`.\n     * It can be assigned any of the supported TLS protocol versions,\n     * `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. **Default:** `'TLSv1.2'`, unless\n     * changed using CLI options. Using `--tls-min-v1.0` sets the default to\n     * `'TLSv1'`. Using `--tls-min-v1.1` sets the default to `'TLSv1.1'`. Using\n     * `--tls-min-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options\n     * are provided, the lowest minimum is used.\n     * @since v11.4.0\n     */\n    let DEFAULT_MIN_VERSION: SecureVersion;\n    /**\n     * The default value of the `ciphers` option of `{@link createSecureContext()}`.\n     * It can be assigned any of the supported OpenSSL ciphers.\n     * Defaults to the content of `crypto.constants.defaultCoreCipherList`, unless\n     * changed using CLI options using `--tls-default-ciphers`.\n     * @since v19.8.0\n     */\n    let DEFAULT_CIPHERS: string;\n    /**\n     * An immutable array of strings representing the root certificates (in PEM format)\n     * from the bundled Mozilla CA store as supplied by the current Node.js version.\n     *\n     * The bundled CA store, as supplied by Node.js, is a snapshot of Mozilla CA store\n     * that is fixed at release time. It is identical on all supported platforms.\n     * @since v12.3.0\n     */\n    const rootCertificates: readonly string[];\n}\ndeclare module \"node:tls\" {\n    export * from \"tls\";\n}\n",
    "node_modules/@types/node/trace_events.d.ts": "/**\n * The `node:trace_events` module provides a mechanism to centralize tracing information\n * generated by V8, Node.js core, and userspace code.\n *\n * Tracing can be enabled with the `--trace-event-categories` command-line flag\n * or by using the `trace_events` module. The `--trace-event-categories` flag\n * accepts a list of comma-separated category names.\n *\n * The available categories are:\n *\n * * `node`: An empty placeholder.\n * * `node.async_hooks`: Enables capture of detailed [`async_hooks`](https://nodejs.org/docs/latest-v22.x/api/async_hooks.html) trace data.\n * The [`async_hooks`](https://nodejs.org/docs/latest-v22.x/api/async_hooks.html) events have a unique `asyncId` and a special `triggerId` `triggerAsyncId` property.\n * * `node.bootstrap`: Enables capture of Node.js bootstrap milestones.\n * * `node.console`: Enables capture of `console.time()` and `console.count()` output.\n * * `node.threadpoolwork.sync`: Enables capture of trace data for threadpool synchronous operations, such as `blob`, `zlib`, `crypto` and `node_api`.\n * * `node.threadpoolwork.async`: Enables capture of trace data for threadpool asynchronous operations, such as `blob`, `zlib`, `crypto` and `node_api`.\n * * `node.dns.native`: Enables capture of trace data for DNS queries.\n * * `node.net.native`: Enables capture of trace data for network.\n * * `node.environment`: Enables capture of Node.js Environment milestones.\n * * `node.fs.sync`: Enables capture of trace data for file system sync methods.\n * * `node.fs_dir.sync`: Enables capture of trace data for file system sync directory methods.\n * * `node.fs.async`: Enables capture of trace data for file system async methods.\n * * `node.fs_dir.async`: Enables capture of trace data for file system async directory methods.\n * * `node.perf`: Enables capture of [Performance API](https://nodejs.org/docs/latest-v22.x/api/perf_hooks.html) measurements.\n *    * `node.perf.usertiming`: Enables capture of only Performance API User Timing\n *    measures and marks.\n *    * `node.perf.timerify`: Enables capture of only Performance API timerify\n *    measurements.\n * * `node.promises.rejections`: Enables capture of trace data tracking the number\n * of unhandled Promise rejections and handled-after-rejections.\n * * `node.vm.script`: Enables capture of trace data for the `node:vm` module's `runInNewContext()`, `runInContext()`, and `runInThisContext()` methods.\n * * `v8`: The [V8](https://nodejs.org/docs/latest-v22.x/api/v8.html) events are GC, compiling, and execution related.\n * * `node.http`: Enables capture of trace data for http request / response.\n *\n * By default the `node`, `node.async_hooks`, and `v8` categories are enabled.\n *\n * ```bash\n * node --trace-event-categories v8,node,node.async_hooks server.js\n * ```\n *\n * Prior versions of Node.js required the use of the `--trace-events-enabled` flag to enable trace events. This requirement has been removed. However, the `--trace-events-enabled` flag _may_ still be\n * used and will enable the `node`, `node.async_hooks`, and `v8` trace event categories by default.\n *\n * ```bash\n * node --trace-events-enabled\n *\n * # is equivalent to\n *\n * node --trace-event-categories v8,node,node.async_hooks\n * ```\n *\n * Alternatively, trace events may be enabled using the `node:trace_events` module:\n *\n * ```js\n * import trace_events from 'node:trace_events';\n * const tracing = trace_events.createTracing({ categories: ['node.perf'] });\n * tracing.enable();  // Enable trace event capture for the 'node.perf' category\n *\n * // do work\n *\n * tracing.disable();  // Disable trace event capture for the 'node.perf' category\n * ```\n *\n * Running Node.js with tracing enabled will produce log files that can be opened\n * in the [`chrome://tracing`](https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) tab of Chrome.\n *\n * The logging file is by default called `node_trace.${rotation}.log`, where `${rotation}` is an incrementing log-rotation id. The filepath pattern can\n * be specified with `--trace-event-file-pattern` that accepts a template\n * string that supports `${rotation}` and `${pid}`:\n *\n * ```bash\n * node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js\n * ```\n *\n * To guarantee that the log file is properly generated after signal events like `SIGINT`, `SIGTERM`, or `SIGBREAK`, make sure to have the appropriate handlers\n * in your code, such as:\n *\n * ```js\n * process.on('SIGINT', function onSigint() {\n *   console.info('Received SIGINT.');\n *   process.exit(130);  // Or applicable exit code depending on OS and signal\n * });\n * ```\n *\n * The tracing system uses the same time source\n * as the one used by `process.hrtime()`.\n * However the trace-event timestamps are expressed in microseconds,\n * unlike `process.hrtime()` which returns nanoseconds.\n *\n * The features from this module are not available in [`Worker`](https://nodejs.org/docs/latest-v22.x/api/worker_threads.html#class-worker) threads.\n * @experimental\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/trace_events.js)\n */\ndeclare module \"trace_events\" {\n    /**\n     * The `Tracing` object is used to enable or disable tracing for sets of\n     * categories. Instances are created using the\n     * `trace_events.createTracing()` method.\n     *\n     * When created, the `Tracing` object is disabled. Calling the\n     * `tracing.enable()` method adds the categories to the set of enabled trace\n     * event categories. Calling `tracing.disable()` will remove the categories\n     * from the set of enabled trace event categories.\n     */\n    interface Tracing {\n        /**\n         * A comma-separated list of the trace event categories covered by this\n         * `Tracing` object.\n         * @since v10.0.0\n         */\n        readonly categories: string;\n        /**\n         * Disables this `Tracing` object.\n         *\n         * Only trace event categories _not_ covered by other enabled `Tracing`\n         * objects and _not_ specified by the `--trace-event-categories` flag\n         * will be disabled.\n         *\n         * ```js\n         * import trace_events from 'node:trace_events';\n         * const t1 = trace_events.createTracing({ categories: ['node', 'v8'] });\n         * const t2 = trace_events.createTracing({ categories: ['node.perf', 'node'] });\n         * t1.enable();\n         * t2.enable();\n         *\n         * // Prints 'node,node.perf,v8'\n         * console.log(trace_events.getEnabledCategories());\n         *\n         * t2.disable(); // Will only disable emission of the 'node.perf' category\n         *\n         * // Prints 'node,v8'\n         * console.log(trace_events.getEnabledCategories());\n         * ```\n         * @since v10.0.0\n         */\n        disable(): void;\n        /**\n         * Enables this `Tracing` object for the set of categories covered by\n         * the `Tracing` object.\n         * @since v10.0.0\n         */\n        enable(): void;\n        /**\n         * `true` only if the `Tracing` object has been enabled.\n         * @since v10.0.0\n         */\n        readonly enabled: boolean;\n    }\n    interface CreateTracingOptions {\n        /**\n         * An array of trace category names. Values included in the array are\n         * coerced to a string when possible. An error will be thrown if the\n         * value cannot be coerced.\n         */\n        categories: string[];\n    }\n    /**\n     * Creates and returns a `Tracing` object for the given set of `categories`.\n     *\n     * ```js\n     * import trace_events from 'node:trace_events';\n     * const categories = ['node.perf', 'node.async_hooks'];\n     * const tracing = trace_events.createTracing({ categories });\n     * tracing.enable();\n     * // do stuff\n     * tracing.disable();\n     * ```\n     * @since v10.0.0\n     */\n    function createTracing(options: CreateTracingOptions): Tracing;\n    /**\n     * Returns a comma-separated list of all currently-enabled trace event\n     * categories. The current set of enabled trace event categories is determined\n     * by the _union_ of all currently-enabled `Tracing` objects and any categories\n     * enabled using the `--trace-event-categories` flag.\n     *\n     * Given the file `test.js` below, the command `node --trace-event-categories node.perf test.js` will print `'node.async_hooks,node.perf'` to the console.\n     *\n     * ```js\n     * import trace_events from 'node:trace_events';\n     * const t1 = trace_events.createTracing({ categories: ['node.async_hooks'] });\n     * const t2 = trace_events.createTracing({ categories: ['node.perf'] });\n     * const t3 = trace_events.createTracing({ categories: ['v8'] });\n     *\n     * t1.enable();\n     * t2.enable();\n     *\n     * console.log(trace_events.getEnabledCategories());\n     * ```\n     * @since v10.0.0\n     */\n    function getEnabledCategories(): string | undefined;\n}\ndeclare module \"node:trace_events\" {\n    export * from \"trace_events\";\n}\n",
    "node_modules/@types/node/ts5.6/buffer.buffer.d.ts": "declare module \"buffer\" {\n    global {\n        interface BufferConstructor {\n            // see ../buffer.d.ts for implementation shared with all TypeScript versions\n\n            /**\n             * Allocates a new buffer containing the given {str}.\n             *\n             * @param str String to store in buffer.\n             * @param encoding encoding to use, optional.  Default is 'utf8'\n             * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead.\n             */\n            new(str: string, encoding?: BufferEncoding): Buffer;\n            /**\n             * Allocates a new buffer of {size} octets.\n             *\n             * @param size count of octets to allocate.\n             * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`).\n             */\n            new(size: number): Buffer;\n            /**\n             * Allocates a new buffer containing the given {array} of octets.\n             *\n             * @param array The octets to store.\n             * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead.\n             */\n            new(array: ArrayLike<number>): Buffer;\n            /**\n             * Produces a Buffer backed by the same allocated memory as\n             * the given {ArrayBuffer}/{SharedArrayBuffer}.\n             *\n             * @param arrayBuffer The ArrayBuffer with which to share memory.\n             * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead.\n             */\n            new(arrayBuffer: ArrayBuffer | SharedArrayBuffer): Buffer;\n            /**\n             * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`.\n             * Array entries outside that range will be truncated to fit into it.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.\n             * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);\n             * ```\n             *\n             * If `array` is an `Array`-like object (that is, one with a `length` property of\n             * type `number`), it is treated as if it is an array, unless it is a `Buffer` or\n             * a `Uint8Array`. This means all other `TypedArray` variants get treated as an\n             * `Array`. To create a `Buffer` from the bytes backing a `TypedArray`, use\n             * `Buffer.copyBytesFrom()`.\n             *\n             * A `TypeError` will be thrown if `array` is not an `Array` or another type\n             * appropriate for `Buffer.from()` variants.\n             *\n             * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal\n             * `Buffer` pool like `Buffer.allocUnsafe()` does.\n             * @since v5.10.0\n             */\n            from(array: WithImplicitCoercion<ArrayLike<number>>): Buffer;\n            /**\n             * This creates a view of the `ArrayBuffer` without copying the underlying\n             * memory. For example, when passed a reference to the `.buffer` property of a\n             * `TypedArray` instance, the newly created `Buffer` will share the same\n             * allocated memory as the `TypedArray`'s underlying `ArrayBuffer`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const arr = new Uint16Array(2);\n             *\n             * arr[0] = 5000;\n             * arr[1] = 4000;\n             *\n             * // Shares memory with `arr`.\n             * const buf = Buffer.from(arr.buffer);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 88 13 a0 0f>\n             *\n             * // Changing the original Uint16Array changes the Buffer also.\n             * arr[1] = 6000;\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 88 13 70 17>\n             * ```\n             *\n             * The optional `byteOffset` and `length` arguments specify a memory range within\n             * the `arrayBuffer` that will be shared by the `Buffer`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const ab = new ArrayBuffer(10);\n             * const buf = Buffer.from(ab, 0, 2);\n             *\n             * console.log(buf.length);\n             * // Prints: 2\n             * ```\n             *\n             * A `TypeError` will be thrown if `arrayBuffer` is not an `ArrayBuffer` or a\n             * `SharedArrayBuffer` or another type appropriate for `Buffer.from()`\n             * variants.\n             *\n             * It is important to remember that a backing `ArrayBuffer` can cover a range\n             * of memory that extends beyond the bounds of a `TypedArray` view. A new\n             * `Buffer` created using the `buffer` property of a `TypedArray` may extend\n             * beyond the range of the `TypedArray`:\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const arrA = Uint8Array.from([0x63, 0x64, 0x65, 0x66]); // 4 elements\n             * const arrB = new Uint8Array(arrA.buffer, 1, 2); // 2 elements\n             * console.log(arrA.buffer === arrB.buffer); // true\n             *\n             * const buf = Buffer.from(arrB.buffer);\n             * console.log(buf);\n             * // Prints: <Buffer 63 64 65 66>\n             * ```\n             * @since v5.10.0\n             * @param arrayBuffer An `ArrayBuffer`, `SharedArrayBuffer`, for example the\n             * `.buffer` property of a `TypedArray`.\n             * @param byteOffset Index of first byte to expose. **Default:** `0`.\n             * @param length Number of bytes to expose. **Default:**\n             * `arrayBuffer.byteLength - byteOffset`.\n             */\n            from(\n                arrayBuffer: WithImplicitCoercion<ArrayBuffer | SharedArrayBuffer>,\n                byteOffset?: number,\n                length?: number,\n            ): Buffer;\n            /**\n             * Creates a new `Buffer` containing `string`. The `encoding` parameter identifies\n             * the character encoding to be used when converting `string` into bytes.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf1 = Buffer.from('this is a tést');\n             * const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');\n             *\n             * console.log(buf1.toString());\n             * // Prints: this is a tést\n             * console.log(buf2.toString());\n             * // Prints: this is a tést\n             * console.log(buf1.toString('latin1'));\n             * // Prints: this is a tÃ©st\n             * ```\n             *\n             * A `TypeError` will be thrown if `string` is not a string or another type\n             * appropriate for `Buffer.from()` variants.\n             *\n             * `Buffer.from(string)` may also use the internal `Buffer` pool like\n             * `Buffer.allocUnsafe()` does.\n             * @since v5.10.0\n             * @param string A string to encode.\n             * @param encoding The encoding of `string`. **Default:** `'utf8'`.\n             */\n            from(string: WithImplicitCoercion<string>, encoding?: BufferEncoding): Buffer;\n            from(arrayOrString: WithImplicitCoercion<ArrayLike<number> | string>): Buffer;\n            /**\n             * Creates a new Buffer using the passed {data}\n             * @param values to create a new Buffer\n             */\n            of(...items: number[]): Buffer;\n            /**\n             * Returns a new `Buffer` which is the result of concatenating all the `Buffer` instances in the `list` together.\n             *\n             * If the list has no items, or if the `totalLength` is 0, then a new zero-length `Buffer` is returned.\n             *\n             * If `totalLength` is not provided, it is calculated from the `Buffer` instances\n             * in `list` by adding their lengths.\n             *\n             * If `totalLength` is provided, it is coerced to an unsigned integer. If the\n             * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is\n             * truncated to `totalLength`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create a single `Buffer` from a list of three `Buffer` instances.\n             *\n             * const buf1 = Buffer.alloc(10);\n             * const buf2 = Buffer.alloc(14);\n             * const buf3 = Buffer.alloc(18);\n             * const totalLength = buf1.length + buf2.length + buf3.length;\n             *\n             * console.log(totalLength);\n             * // Prints: 42\n             *\n             * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength);\n             *\n             * console.log(bufA);\n             * // Prints: <Buffer 00 00 00 00 ...>\n             * console.log(bufA.length);\n             * // Prints: 42\n             * ```\n             *\n             * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does.\n             * @since v0.7.11\n             * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate.\n             * @param totalLength Total length of the `Buffer` instances in `list` when concatenated.\n             */\n            concat(list: readonly Uint8Array[], totalLength?: number): Buffer;\n            /**\n             * Copies the underlying memory of `view` into a new `Buffer`.\n             *\n             * ```js\n             * const u16 = new Uint16Array([0, 0xffff]);\n             * const buf = Buffer.copyBytesFrom(u16, 1, 1);\n             * u16[1] = 0;\n             * console.log(buf.length); // 2\n             * console.log(buf[0]); // 255\n             * console.log(buf[1]); // 255\n             * ```\n             * @since v19.8.0\n             * @param view The {TypedArray} to copy.\n             * @param [offset=0] The starting offset within `view`.\n             * @param [length=view.length - offset] The number of elements from `view` to copy.\n             */\n            copyBytesFrom(view: NodeJS.TypedArray, offset?: number, length?: number): Buffer;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(5);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 00 00 00 00 00>\n             * ```\n             *\n             * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.\n             *\n             * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(5, 'a');\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 61 61 61 61 61>\n             * ```\n             *\n             * If both `fill` and `encoding` are specified, the allocated `Buffer` will be\n             * initialized by calling `buf.fill(fill, encoding)`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 68 65 6c 6c 6f 20 77 6f 72 6c 64>\n             * ```\n             *\n             * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance\n             * contents will never contain sensitive data from previous allocations, including\n             * data that might not have been allocated for `Buffer`s.\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             * @since v5.10.0\n             * @param size The desired length of the new `Buffer`.\n             * @param [fill=0] A value to pre-fill the new `Buffer` with.\n             * @param [encoding='utf8'] If `fill` is a string, this is its encoding.\n             */\n            alloc(size: number, fill?: string | Uint8Array | number, encoding?: BufferEncoding): Buffer;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.\n             *\n             * The underlying memory for `Buffer` instances created in this way is _not_\n             * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.allocUnsafe(10);\n             *\n             * console.log(buf);\n             * // Prints (contents may vary): <Buffer a0 8b 28 3f 01 00 00 00 50 32>\n             *\n             * buf.fill(0);\n             *\n             * console.log(buf);\n             * // Prints: <Buffer 00 00 00 00 00 00 00 00 00 00>\n             * ```\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             *\n             * The `Buffer` module pre-allocates an internal `Buffer` instance of\n             * size `Buffer.poolSize` that is used as a pool for the fast allocation of new `Buffer` instances created using `Buffer.allocUnsafe()`, `Buffer.from(array)`,\n             * and `Buffer.concat()` only when `size` is less than `Buffer.poolSize >>> 1` (floor of `Buffer.poolSize` divided by two).\n             *\n             * Use of this pre-allocated internal memory pool is a key difference between\n             * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`.\n             * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less\n             * than or equal to half `Buffer.poolSize`. The\n             * difference is subtle but can be important when an application requires the\n             * additional performance that `Buffer.allocUnsafe()` provides.\n             * @since v5.10.0\n             * @param size The desired length of the new `Buffer`.\n             */\n            allocUnsafe(size: number): Buffer;\n            /**\n             * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown. A zero-length `Buffer` is created if\n             * `size` is 0.\n             *\n             * The underlying memory for `Buffer` instances created in this way is _not_\n             * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize\n             * such `Buffer` instances with zeroes.\n             *\n             * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances,\n             * allocations under 4 KiB are sliced from a single pre-allocated `Buffer`. This\n             * allows applications to avoid the garbage collection overhead of creating many\n             * individually allocated `Buffer` instances. This approach improves both\n             * performance and memory usage by eliminating the need to track and clean up as\n             * many individual `ArrayBuffer` objects.\n             *\n             * However, in the case where a developer may need to retain a small chunk of\n             * memory from a pool for an indeterminate amount of time, it may be appropriate\n             * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and\n             * then copying out the relevant bits.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Need to keep around a few small chunks of memory.\n             * const store = [];\n             *\n             * socket.on('readable', () => {\n             *   let data;\n             *   while (null !== (data = readable.read())) {\n             *     // Allocate for retained data.\n             *     const sb = Buffer.allocUnsafeSlow(10);\n             *\n             *     // Copy the data into the new allocation.\n             *     data.copy(sb, 0, 0, 10);\n             *\n             *     store.push(sb);\n             *   }\n             * });\n             * ```\n             *\n             * A `TypeError` will be thrown if `size` is not a number.\n             * @since v5.12.0\n             * @param size The desired length of the new `Buffer`.\n             */\n            allocUnsafeSlow(size: number): Buffer;\n        }\n        interface Buffer extends Uint8Array {\n            // see ../buffer.d.ts for implementation shared with all TypeScript versions\n\n            /**\n             * Returns a new `Buffer` that references the same memory as the original, but\n             * offset and cropped by the `start` and `end` indices.\n             *\n             * This method is not compatible with the `Uint8Array.prototype.slice()`,\n             * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('buffer');\n             *\n             * const copiedBuf = Uint8Array.prototype.slice.call(buf);\n             * copiedBuf[0]++;\n             * console.log(copiedBuf.toString());\n             * // Prints: cuffer\n             *\n             * console.log(buf.toString());\n             * // Prints: buffer\n             *\n             * // With buf.slice(), the original buffer is modified.\n             * const notReallyCopiedBuf = buf.slice();\n             * notReallyCopiedBuf[0]++;\n             * console.log(notReallyCopiedBuf.toString());\n             * // Prints: cuffer\n             * console.log(buf.toString());\n             * // Also prints: cuffer (!)\n             * ```\n             * @since v0.3.0\n             * @deprecated Use `subarray` instead.\n             * @param [start=0] Where the new `Buffer` will start.\n             * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).\n             */\n            slice(start?: number, end?: number): Buffer;\n            /**\n             * Returns a new `Buffer` that references the same memory as the original, but\n             * offset and cropped by the `start` and `end` indices.\n             *\n             * Specifying `end` greater than `buf.length` will return the same result as\n             * that of `end` equal to `buf.length`.\n             *\n             * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray).\n             *\n             * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte\n             * // from the original `Buffer`.\n             *\n             * const buf1 = Buffer.allocUnsafe(26);\n             *\n             * for (let i = 0; i < 26; i++) {\n             *   // 97 is the decimal ASCII value for 'a'.\n             *   buf1[i] = i + 97;\n             * }\n             *\n             * const buf2 = buf1.subarray(0, 3);\n             *\n             * console.log(buf2.toString('ascii', 0, buf2.length));\n             * // Prints: abc\n             *\n             * buf1[0] = 33;\n             *\n             * console.log(buf2.toString('ascii', 0, buf2.length));\n             * // Prints: !bc\n             * ```\n             *\n             * Specifying negative indexes causes the slice to be generated relative to the\n             * end of `buf` rather than the beginning.\n             *\n             * ```js\n             * import { Buffer } from 'node:buffer';\n             *\n             * const buf = Buffer.from('buffer');\n             *\n             * console.log(buf.subarray(-6, -1).toString());\n             * // Prints: buffe\n             * // (Equivalent to buf.subarray(0, 5).)\n             *\n             * console.log(buf.subarray(-6, -2).toString());\n             * // Prints: buff\n             * // (Equivalent to buf.subarray(0, 4).)\n             *\n             * console.log(buf.subarray(-5, -2).toString());\n             * // Prints: uff\n             * // (Equivalent to buf.subarray(1, 4).)\n             * ```\n             * @since v3.0.0\n             * @param [start=0] Where the new `Buffer` will start.\n             * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).\n             */\n            subarray(start?: number, end?: number): Buffer;\n        }\n        type NonSharedBuffer = Buffer;\n        type AllowSharedBuffer = Buffer;\n    }\n    /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */\n    var SlowBuffer: {\n        /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */\n        new(size: number): Buffer;\n        prototype: Buffer;\n    };\n}\n",
    "node_modules/@types/node/ts5.6/globals.typedarray.d.ts": "export {}; // Make this a module\n\ndeclare global {\n    namespace NodeJS {\n        type TypedArray =\n            | Uint8Array\n            | Uint8ClampedArray\n            | Uint16Array\n            | Uint32Array\n            | Int8Array\n            | Int16Array\n            | Int32Array\n            | BigUint64Array\n            | BigInt64Array\n            | Float32Array\n            | Float64Array;\n        type ArrayBufferView = TypedArray | DataView;\n    }\n}\n",
    "node_modules/@types/node/ts5.6/index.d.ts": "/**\n * License for programmatically and manually incorporated\n * documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc\n *\n * Copyright Node.js contributors. All rights reserved.\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n// NOTE: These definitions support Node.js and TypeScript 4.9 through 5.6.\n\n// Reference required TypeScript libs:\n/// <reference lib=\"es2020\" />\n\n// TypeScript backwards-compatibility definitions:\n/// <reference path=\"../compatibility/index.d.ts\" />\n\n// Definitions specific to TypeScript 4.9 through 5.6:\n/// <reference path=\"./globals.typedarray.d.ts\" />\n/// <reference path=\"./buffer.buffer.d.ts\" />\n\n// Definitions for Node.js modules that are not specific to any version of TypeScript:\n/// <reference path=\"../globals.d.ts\" />\n/// <reference path=\"../assert.d.ts\" />\n/// <reference path=\"../assert/strict.d.ts\" />\n/// <reference path=\"../async_hooks.d.ts\" />\n/// <reference path=\"../buffer.d.ts\" />\n/// <reference path=\"../child_process.d.ts\" />\n/// <reference path=\"../cluster.d.ts\" />\n/// <reference path=\"../console.d.ts\" />\n/// <reference path=\"../constants.d.ts\" />\n/// <reference path=\"../crypto.d.ts\" />\n/// <reference path=\"../dgram.d.ts\" />\n/// <reference path=\"../diagnostics_channel.d.ts\" />\n/// <reference path=\"../dns.d.ts\" />\n/// <reference path=\"../dns/promises.d.ts\" />\n/// <reference path=\"../dns/promises.d.ts\" />\n/// <reference path=\"../domain.d.ts\" />\n/// <reference path=\"../dom-events.d.ts\" />\n/// <reference path=\"../events.d.ts\" />\n/// <reference path=\"../fs.d.ts\" />\n/// <reference path=\"../fs/promises.d.ts\" />\n/// <reference path=\"../http.d.ts\" />\n/// <reference path=\"../http2.d.ts\" />\n/// <reference path=\"../https.d.ts\" />\n/// <reference path=\"../inspector.d.ts\" />\n/// <reference path=\"../module.d.ts\" />\n/// <reference path=\"../net.d.ts\" />\n/// <reference path=\"../os.d.ts\" />\n/// <reference path=\"../path.d.ts\" />\n/// <reference path=\"../perf_hooks.d.ts\" />\n/// <reference path=\"../process.d.ts\" />\n/// <reference path=\"../punycode.d.ts\" />\n/// <reference path=\"../querystring.d.ts\" />\n/// <reference path=\"../readline.d.ts\" />\n/// <reference path=\"../readline/promises.d.ts\" />\n/// <reference path=\"../repl.d.ts\" />\n/// <reference path=\"../sea.d.ts\" />\n/// <reference path=\"../sqlite.d.ts\" />\n/// <reference path=\"../stream.d.ts\" />\n/// <reference path=\"../stream/promises.d.ts\" />\n/// <reference path=\"../stream/consumers.d.ts\" />\n/// <reference path=\"../stream/web.d.ts\" />\n/// <reference path=\"../string_decoder.d.ts\" />\n/// <reference path=\"../test.d.ts\" />\n/// <reference path=\"../timers.d.ts\" />\n/// <reference path=\"../timers/promises.d.ts\" />\n/// <reference path=\"../tls.d.ts\" />\n/// <reference path=\"../trace_events.d.ts\" />\n/// <reference path=\"../tty.d.ts\" />\n/// <reference path=\"../url.d.ts\" />\n/// <reference path=\"../util.d.ts\" />\n/// <reference path=\"../v8.d.ts\" />\n/// <reference path=\"../vm.d.ts\" />\n/// <reference path=\"../wasi.d.ts\" />\n/// <reference path=\"../worker_threads.d.ts\" />\n/// <reference path=\"../zlib.d.ts\" />\n",
    "node_modules/@types/node/tty.d.ts": "/**\n * The `node:tty` module provides the `tty.ReadStream` and `tty.WriteStream` classes. In most cases, it will not be necessary or possible to use this module\n * directly. However, it can be accessed using:\n *\n * ```js\n * import tty from 'node:tty';\n * ```\n *\n * When Node.js detects that it is being run with a text terminal (\"TTY\")\n * attached, `process.stdin` will, by default, be initialized as an instance of `tty.ReadStream` and both `process.stdout` and `process.stderr` will, by\n * default, be instances of `tty.WriteStream`. The preferred method of determining\n * whether Node.js is being run within a TTY context is to check that the value of\n * the `process.stdout.isTTY` property is `true`:\n *\n * ```console\n * $ node -p -e \"Boolean(process.stdout.isTTY)\"\n * true\n * $ node -p -e \"Boolean(process.stdout.isTTY)\" | cat\n * false\n * ```\n *\n * In most cases, there should be little to no reason for an application to\n * manually create instances of the `tty.ReadStream` and `tty.WriteStream` classes.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/tty.js)\n */\ndeclare module \"tty\" {\n    import * as net from \"node:net\";\n    /**\n     * The `tty.isatty()` method returns `true` if the given `fd` is associated with\n     * a TTY and `false` if it is not, including whenever `fd` is not a non-negative\n     * integer.\n     * @since v0.5.8\n     * @param fd A numeric file descriptor\n     */\n    function isatty(fd: number): boolean;\n    /**\n     * Represents the readable side of a TTY. In normal circumstances `process.stdin` will be the only `tty.ReadStream` instance in a Node.js\n     * process and there should be no reason to create additional instances.\n     * @since v0.5.8\n     */\n    class ReadStream extends net.Socket {\n        constructor(fd: number, options?: net.SocketConstructorOpts);\n        /**\n         * A `boolean` that is `true` if the TTY is currently configured to operate as a\n         * raw device.\n         *\n         * This flag is always `false` when a process starts, even if the terminal is\n         * operating in raw mode. Its value will change with subsequent calls to `setRawMode`.\n         * @since v0.7.7\n         */\n        isRaw: boolean;\n        /**\n         * Allows configuration of `tty.ReadStream` so that it operates as a raw device.\n         *\n         * When in raw mode, input is always available character-by-character, not\n         * including modifiers. Additionally, all special processing of characters by the\n         * terminal is disabled, including echoing input\n         * characters. Ctrl+C will no longer cause a `SIGINT` when\n         * in this mode.\n         * @since v0.7.7\n         * @param mode If `true`, configures the `tty.ReadStream` to operate as a raw device. If `false`, configures the `tty.ReadStream` to operate in its default mode. The `readStream.isRaw`\n         * property will be set to the resulting mode.\n         * @return The read stream instance.\n         */\n        setRawMode(mode: boolean): this;\n        /**\n         * A `boolean` that is always `true` for `tty.ReadStream` instances.\n         * @since v0.5.8\n         */\n        isTTY: boolean;\n    }\n    /**\n     * -1 - to the left from cursor\n     *  0 - the entire line\n     *  1 - to the right from cursor\n     */\n    type Direction = -1 | 0 | 1;\n    /**\n     * Represents the writable side of a TTY. In normal circumstances, `process.stdout` and `process.stderr` will be the only`tty.WriteStream` instances created for a Node.js process and there\n     * should be no reason to create additional instances.\n     * @since v0.5.8\n     */\n    class WriteStream extends net.Socket {\n        constructor(fd: number);\n        addListener(event: string, listener: (...args: any[]) => void): this;\n        addListener(event: \"resize\", listener: () => void): this;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        emit(event: \"resize\"): boolean;\n        on(event: string, listener: (...args: any[]) => void): this;\n        on(event: \"resize\", listener: () => void): this;\n        once(event: string, listener: (...args: any[]) => void): this;\n        once(event: \"resize\", listener: () => void): this;\n        prependListener(event: string, listener: (...args: any[]) => void): this;\n        prependListener(event: \"resize\", listener: () => void): this;\n        prependOnceListener(event: string, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"resize\", listener: () => void): this;\n        /**\n         * `writeStream.clearLine()` clears the current line of this `WriteStream` in a\n         * direction identified by `dir`.\n         * @since v0.7.7\n         * @param callback Invoked once the operation completes.\n         * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n         */\n        clearLine(dir: Direction, callback?: () => void): boolean;\n        /**\n         * `writeStream.clearScreenDown()` clears this `WriteStream` from the current\n         * cursor down.\n         * @since v0.7.7\n         * @param callback Invoked once the operation completes.\n         * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n         */\n        clearScreenDown(callback?: () => void): boolean;\n        /**\n         * `writeStream.cursorTo()` moves this `WriteStream`'s cursor to the specified\n         * position.\n         * @since v0.7.7\n         * @param callback Invoked once the operation completes.\n         * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n         */\n        cursorTo(x: number, y?: number, callback?: () => void): boolean;\n        cursorTo(x: number, callback: () => void): boolean;\n        /**\n         * `writeStream.moveCursor()` moves this `WriteStream`'s cursor _relative_ to its\n         * current position.\n         * @since v0.7.7\n         * @param callback Invoked once the operation completes.\n         * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.\n         */\n        moveCursor(dx: number, dy: number, callback?: () => void): boolean;\n        /**\n         * Returns:\n         *\n         * * `1` for 2,\n         * * `4` for 16,\n         * * `8` for 256,\n         * * `24` for 16,777,216 colors supported.\n         *\n         * Use this to determine what colors the terminal supports. Due to the nature of\n         * colors in terminals it is possible to either have false positives or false\n         * negatives. It depends on process information and the environment variables that\n         * may lie about what terminal is used.\n         * It is possible to pass in an `env` object to simulate the usage of a specific\n         * terminal. This can be useful to check how specific environment settings behave.\n         *\n         * To enforce a specific color support, use one of the below environment settings.\n         *\n         * * 2 colors: `FORCE_COLOR = 0` (Disables colors)\n         * * 16 colors: `FORCE_COLOR = 1`\n         * * 256 colors: `FORCE_COLOR = 2`\n         * * 16,777,216 colors: `FORCE_COLOR = 3`\n         *\n         * Disabling color support is also possible by using the `NO_COLOR` and `NODE_DISABLE_COLORS` environment variables.\n         * @since v9.9.0\n         * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal.\n         */\n        getColorDepth(env?: object): number;\n        /**\n         * Returns `true` if the `writeStream` supports at least as many colors as provided\n         * in `count`. Minimum support is 2 (black and white).\n         *\n         * This has the same false positives and negatives as described in `writeStream.getColorDepth()`.\n         *\n         * ```js\n         * process.stdout.hasColors();\n         * // Returns true or false depending on if `stdout` supports at least 16 colors.\n         * process.stdout.hasColors(256);\n         * // Returns true or false depending on if `stdout` supports at least 256 colors.\n         * process.stdout.hasColors({ TMUX: '1' });\n         * // Returns true.\n         * process.stdout.hasColors(2 ** 24, { TMUX: '1' });\n         * // Returns false (the environment setting pretends to support 2 ** 8 colors).\n         * ```\n         * @since v11.13.0, v10.16.0\n         * @param [count=16] The number of colors that are requested (minimum 2).\n         * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal.\n         */\n        hasColors(count?: number): boolean;\n        hasColors(env?: object): boolean;\n        hasColors(count: number, env?: object): boolean;\n        /**\n         * `writeStream.getWindowSize()` returns the size of the TTY\n         * corresponding to this `WriteStream`. The array is of the type `[numColumns, numRows]` where `numColumns` and `numRows` represent the number\n         * of columns and rows in the corresponding TTY.\n         * @since v0.7.7\n         */\n        getWindowSize(): [number, number];\n        /**\n         * A `number` specifying the number of columns the TTY currently has. This property\n         * is updated whenever the `'resize'` event is emitted.\n         * @since v0.7.7\n         */\n        columns: number;\n        /**\n         * A `number` specifying the number of rows the TTY currently has. This property\n         * is updated whenever the `'resize'` event is emitted.\n         * @since v0.7.7\n         */\n        rows: number;\n        /**\n         * A `boolean` that is always `true`.\n         * @since v0.5.8\n         */\n        isTTY: boolean;\n    }\n}\ndeclare module \"node:tty\" {\n    export * from \"tty\";\n}\n",
    "node_modules/@types/node/url.d.ts": "/**\n * The `node:url` module provides utilities for URL resolution and parsing. It can\n * be accessed using:\n *\n * ```js\n * import url from 'node:url';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/url.js)\n */\ndeclare module \"url\" {\n    import { Blob as NodeBlob } from \"node:buffer\";\n    import { ClientRequestArgs } from \"node:http\";\n    import { ParsedUrlQuery, ParsedUrlQueryInput } from \"node:querystring\";\n    // Input to `url.format`\n    interface UrlObject {\n        auth?: string | null | undefined;\n        hash?: string | null | undefined;\n        host?: string | null | undefined;\n        hostname?: string | null | undefined;\n        href?: string | null | undefined;\n        pathname?: string | null | undefined;\n        protocol?: string | null | undefined;\n        search?: string | null | undefined;\n        slashes?: boolean | null | undefined;\n        port?: string | number | null | undefined;\n        query?: string | null | ParsedUrlQueryInput | undefined;\n    }\n    // Output of `url.parse`\n    interface Url {\n        auth: string | null;\n        hash: string | null;\n        host: string | null;\n        hostname: string | null;\n        href: string;\n        path: string | null;\n        pathname: string | null;\n        protocol: string | null;\n        search: string | null;\n        slashes: boolean | null;\n        port: string | null;\n        query: string | null | ParsedUrlQuery;\n    }\n    interface UrlWithParsedQuery extends Url {\n        query: ParsedUrlQuery;\n    }\n    interface UrlWithStringQuery extends Url {\n        query: string | null;\n    }\n    interface FileUrlToPathOptions {\n        /**\n         * `true` if the `path` should be return as a windows filepath, `false` for posix, and `undefined` for the system default.\n         * @default undefined\n         * @since v22.1.0\n         */\n        windows?: boolean | undefined;\n    }\n    interface PathToFileUrlOptions {\n        /**\n         * `true` if the `path` should be return as a windows filepath, `false` for posix, and `undefined` for the system default.\n         * @default undefined\n         * @since v22.1.0\n         */\n        windows?: boolean | undefined;\n    }\n    /**\n     * The `url.parse()` method takes a URL string, parses it, and returns a URL\n     * object.\n     *\n     * A `TypeError` is thrown if `urlString` is not a string.\n     *\n     * A `URIError` is thrown if the `auth` property is present but cannot be decoded.\n     *\n     * `url.parse()` uses a lenient, non-standard algorithm for parsing URL\n     * strings. It is prone to security issues such as [host name spoofing](https://hackerone.com/reports/678487) and incorrect handling of usernames and passwords. Do not use with untrusted\n     * input. CVEs are not issued for `url.parse()` vulnerabilities. Use the `WHATWG URL` API instead.\n     * @since v0.1.25\n     * @deprecated Use the WHATWG URL API instead.\n     * @param urlString The URL string to parse.\n     * @param [parseQueryString=false] If `true`, the `query` property will always be set to an object returned by the {@link querystring} module's `parse()` method. If `false`, the `query` property\n     * on the returned URL object will be an unparsed, undecoded string.\n     * @param [slashesDenoteHost=false] If `true`, the first token after the literal string `//` and preceding the next `/` will be interpreted as the `host`. For instance, given `//foo/bar`, the\n     * result would be `{host: 'foo', pathname: '/bar'}` rather than `{pathname: '//foo/bar'}`.\n     */\n    function parse(urlString: string): UrlWithStringQuery;\n    function parse(\n        urlString: string,\n        parseQueryString: false | undefined,\n        slashesDenoteHost?: boolean,\n    ): UrlWithStringQuery;\n    function parse(urlString: string, parseQueryString: true, slashesDenoteHost?: boolean): UrlWithParsedQuery;\n    function parse(urlString: string, parseQueryString: boolean, slashesDenoteHost?: boolean): Url;\n    /**\n     * The `url.format()` method returns a formatted URL string derived from `urlObject`.\n     *\n     * ```js\n     * import url from 'node:url';\n     * url.format({\n     *   protocol: 'https',\n     *   hostname: 'example.com',\n     *   pathname: '/some/path',\n     *   query: {\n     *     page: 1,\n     *     format: 'json',\n     *   },\n     * });\n     *\n     * // => 'https://example.com/some/path?page=1&#x26;format=json'\n     * ```\n     *\n     * If `urlObject` is not an object or a string, `url.format()` will throw a `TypeError`.\n     *\n     * The formatting process operates as follows:\n     *\n     * * A new empty string `result` is created.\n     * * If `urlObject.protocol` is a string, it is appended as-is to `result`.\n     * * Otherwise, if `urlObject.protocol` is not `undefined` and is not a string, an `Error` is thrown.\n     * * For all string values of `urlObject.protocol` that _do not end_ with an ASCII\n     * colon (`:`) character, the literal string `:` will be appended to `result`.\n     * * If either of the following conditions is true, then the literal string `//` will be appended to `result`:\n     *    * `urlObject.slashes` property is true;\n     *    * `urlObject.protocol` begins with `http`, `https`, `ftp`, `gopher`, or `file`;\n     * * If the value of the `urlObject.auth` property is truthy, and either `urlObject.host` or `urlObject.hostname` are not `undefined`, the value of `urlObject.auth` will be coerced into a string\n     * and appended to `result` followed by the literal string `@`.\n     * * If the `urlObject.host` property is `undefined` then:\n     *    * If the `urlObject.hostname` is a string, it is appended to `result`.\n     *    * Otherwise, if `urlObject.hostname` is not `undefined` and is not a string,\n     *    an `Error` is thrown.\n     *    * If the `urlObject.port` property value is truthy, and `urlObject.hostname` is not `undefined`:\n     *          * The literal string `:` is appended to `result`, and\n     *          * The value of `urlObject.port` is coerced to a string and appended to `result`.\n     * * Otherwise, if the `urlObject.host` property value is truthy, the value of `urlObject.host` is coerced to a string and appended to `result`.\n     * * If the `urlObject.pathname` property is a string that is not an empty string:\n     *    * If the `urlObject.pathname` _does not start_ with an ASCII forward slash\n     *    (`/`), then the literal string `'/'` is appended to `result`.\n     *    * The value of `urlObject.pathname` is appended to `result`.\n     * * Otherwise, if `urlObject.pathname` is not `undefined` and is not a string, an `Error` is thrown.\n     * * If the `urlObject.search` property is `undefined` and if the `urlObject.query`property is an `Object`, the literal string `?` is appended to `result` followed by the output of calling the\n     * `querystring` module's `stringify()` method passing the value of `urlObject.query`.\n     * * Otherwise, if `urlObject.search` is a string:\n     *    * If the value of `urlObject.search` _does not start_ with the ASCII question\n     *    mark (`?`) character, the literal string `?` is appended to `result`.\n     *    * The value of `urlObject.search` is appended to `result`.\n     * * Otherwise, if `urlObject.search` is not `undefined` and is not a string, an `Error` is thrown.\n     * * If the `urlObject.hash` property is a string:\n     *    * If the value of `urlObject.hash` _does not start_ with the ASCII hash (`#`)\n     *    character, the literal string `#` is appended to `result`.\n     *    * The value of `urlObject.hash` is appended to `result`.\n     * * Otherwise, if the `urlObject.hash` property is not `undefined` and is not a\n     * string, an `Error` is thrown.\n     * * `result` is returned.\n     * @since v0.1.25\n     * @legacy Use the WHATWG URL API instead.\n     * @param urlObject A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`.\n     */\n    function format(urlObject: URL, options?: URLFormatOptions): string;\n    /**\n     * The `url.format()` method returns a formatted URL string derived from `urlObject`.\n     *\n     * ```js\n     * import url from 'node:url';\n     * url.format({\n     *   protocol: 'https',\n     *   hostname: 'example.com',\n     *   pathname: '/some/path',\n     *   query: {\n     *     page: 1,\n     *     format: 'json',\n     *   },\n     * });\n     *\n     * // => 'https://example.com/some/path?page=1&#x26;format=json'\n     * ```\n     *\n     * If `urlObject` is not an object or a string, `url.format()` will throw a `TypeError`.\n     *\n     * The formatting process operates as follows:\n     *\n     * * A new empty string `result` is created.\n     * * If `urlObject.protocol` is a string, it is appended as-is to `result`.\n     * * Otherwise, if `urlObject.protocol` is not `undefined` and is not a string, an `Error` is thrown.\n     * * For all string values of `urlObject.protocol` that _do not end_ with an ASCII\n     * colon (`:`) character, the literal string `:` will be appended to `result`.\n     * * If either of the following conditions is true, then the literal string `//` will be appended to `result`:\n     *    * `urlObject.slashes` property is true;\n     *    * `urlObject.protocol` begins with `http`, `https`, `ftp`, `gopher`, or `file`;\n     * * If the value of the `urlObject.auth` property is truthy, and either `urlObject.host` or `urlObject.hostname` are not `undefined`, the value of `urlObject.auth` will be coerced into a string\n     * and appended to `result` followed by the literal string `@`.\n     * * If the `urlObject.host` property is `undefined` then:\n     *    * If the `urlObject.hostname` is a string, it is appended to `result`.\n     *    * Otherwise, if `urlObject.hostname` is not `undefined` and is not a string,\n     *    an `Error` is thrown.\n     *    * If the `urlObject.port` property value is truthy, and `urlObject.hostname` is not `undefined`:\n     *          * The literal string `:` is appended to `result`, and\n     *          * The value of `urlObject.port` is coerced to a string and appended to `result`.\n     * * Otherwise, if the `urlObject.host` property value is truthy, the value of `urlObject.host` is coerced to a string and appended to `result`.\n     * * If the `urlObject.pathname` property is a string that is not an empty string:\n     *    * If the `urlObject.pathname` _does not start_ with an ASCII forward slash\n     *    (`/`), then the literal string `'/'` is appended to `result`.\n     *    * The value of `urlObject.pathname` is appended to `result`.\n     * * Otherwise, if `urlObject.pathname` is not `undefined` and is not a string, an `Error` is thrown.\n     * * If the `urlObject.search` property is `undefined` and if the `urlObject.query`property is an `Object`, the literal string `?` is appended to `result` followed by the output of calling the\n     * `querystring` module's `stringify()` method passing the value of `urlObject.query`.\n     * * Otherwise, if `urlObject.search` is a string:\n     *    * If the value of `urlObject.search` _does not start_ with the ASCII question\n     *    mark (`?`) character, the literal string `?` is appended to `result`.\n     *    * The value of `urlObject.search` is appended to `result`.\n     * * Otherwise, if `urlObject.search` is not `undefined` and is not a string, an `Error` is thrown.\n     * * If the `urlObject.hash` property is a string:\n     *    * If the value of `urlObject.hash` _does not start_ with the ASCII hash (`#`)\n     *    character, the literal string `#` is appended to `result`.\n     *    * The value of `urlObject.hash` is appended to `result`.\n     * * Otherwise, if the `urlObject.hash` property is not `undefined` and is not a\n     * string, an `Error` is thrown.\n     * * `result` is returned.\n     * @since v0.1.25\n     * @legacy Use the WHATWG URL API instead.\n     * @param urlObject A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`.\n     */\n    function format(urlObject: UrlObject | string): string;\n    /**\n     * The `url.resolve()` method resolves a target URL relative to a base URL in a\n     * manner similar to that of a web browser resolving an anchor tag.\n     *\n     * ```js\n     * import url from 'node:url';\n     * url.resolve('/one/two/three', 'four');         // '/one/two/four'\n     * url.resolve('http://example.com/', '/one');    // 'http://example.com/one'\n     * url.resolve('http://example.com/one', '/two'); // 'http://example.com/two'\n     * ```\n     *\n     * To achieve the same result using the WHATWG URL API:\n     *\n     * ```js\n     * function resolve(from, to) {\n     *   const resolvedUrl = new URL(to, new URL(from, 'resolve://'));\n     *   if (resolvedUrl.protocol === 'resolve:') {\n     *     // `from` is a relative URL.\n     *     const { pathname, search, hash } = resolvedUrl;\n     *     return pathname + search + hash;\n     *   }\n     *   return resolvedUrl.toString();\n     * }\n     *\n     * resolve('/one/two/three', 'four');         // '/one/two/four'\n     * resolve('http://example.com/', '/one');    // 'http://example.com/one'\n     * resolve('http://example.com/one', '/two'); // 'http://example.com/two'\n     * ```\n     * @since v0.1.25\n     * @legacy Use the WHATWG URL API instead.\n     * @param from The base URL to use if `to` is a relative URL.\n     * @param to The target URL to resolve.\n     */\n    function resolve(from: string, to: string): string;\n    /**\n     * Returns the [Punycode](https://tools.ietf.org/html/rfc5891#section-4.4) ASCII serialization of the `domain`. If `domain` is an\n     * invalid domain, the empty string is returned.\n     *\n     * It performs the inverse operation to {@link domainToUnicode}.\n     *\n     * ```js\n     * import url from 'node:url';\n     *\n     * console.log(url.domainToASCII('español.com'));\n     * // Prints xn--espaol-zwa.com\n     * console.log(url.domainToASCII('中文.com'));\n     * // Prints xn--fiq228c.com\n     * console.log(url.domainToASCII('xn--iñvalid.com'));\n     * // Prints an empty string\n     * ```\n     * @since v7.4.0, v6.13.0\n     */\n    function domainToASCII(domain: string): string;\n    /**\n     * Returns the Unicode serialization of the `domain`. If `domain` is an invalid\n     * domain, the empty string is returned.\n     *\n     * It performs the inverse operation to {@link domainToASCII}.\n     *\n     * ```js\n     * import url from 'node:url';\n     *\n     * console.log(url.domainToUnicode('xn--espaol-zwa.com'));\n     * // Prints español.com\n     * console.log(url.domainToUnicode('xn--fiq228c.com'));\n     * // Prints 中文.com\n     * console.log(url.domainToUnicode('xn--iñvalid.com'));\n     * // Prints an empty string\n     * ```\n     * @since v7.4.0, v6.13.0\n     */\n    function domainToUnicode(domain: string): string;\n    /**\n     * This function ensures the correct decodings of percent-encoded characters as\n     * well as ensuring a cross-platform valid absolute path string.\n     *\n     * ```js\n     * import { fileURLToPath } from 'node:url';\n     *\n     * const __filename = fileURLToPath(import.meta.url);\n     *\n     * new URL('file:///C:/path/').pathname;      // Incorrect: /C:/path/\n     * fileURLToPath('file:///C:/path/');         // Correct:   C:\\path\\ (Windows)\n     *\n     * new URL('file://nas/foo.txt').pathname;    // Incorrect: /foo.txt\n     * fileURLToPath('file://nas/foo.txt');       // Correct:   \\\\nas\\foo.txt (Windows)\n     *\n     * new URL('file:///你好.txt').pathname;      // Incorrect: /%E4%BD%A0%E5%A5%BD.txt\n     * fileURLToPath('file:///你好.txt');         // Correct:   /你好.txt (POSIX)\n     *\n     * new URL('file:///hello world').pathname;   // Incorrect: /hello%20world\n     * fileURLToPath('file:///hello world');      // Correct:   /hello world (POSIX)\n     * ```\n     * @since v10.12.0\n     * @param url The file URL string or URL object to convert to a path.\n     * @return The fully-resolved platform-specific Node.js file path.\n     */\n    function fileURLToPath(url: string | URL, options?: FileUrlToPathOptions): string;\n    /**\n     * This function ensures that `path` is resolved absolutely, and that the URL\n     * control characters are correctly encoded when converting into a File URL.\n     *\n     * ```js\n     * import { pathToFileURL } from 'node:url';\n     *\n     * new URL('/foo#1', 'file:');           // Incorrect: file:///foo#1\n     * pathToFileURL('/foo#1');              // Correct:   file:///foo%231 (POSIX)\n     *\n     * new URL('/some/path%.c', 'file:');    // Incorrect: file:///some/path%.c\n     * pathToFileURL('/some/path%.c');       // Correct:   file:///some/path%25.c (POSIX)\n     * ```\n     * @since v10.12.0\n     * @param path The path to convert to a File URL.\n     * @return The file URL object.\n     */\n    function pathToFileURL(path: string, options?: PathToFileUrlOptions): URL;\n    /**\n     * This utility function converts a URL object into an ordinary options object as\n     * expected by the `http.request()` and `https.request()` APIs.\n     *\n     * ```js\n     * import { urlToHttpOptions } from 'node:url';\n     * const myURL = new URL('https://a:b@測試?abc#foo');\n     *\n     * console.log(urlToHttpOptions(myURL));\n     * /*\n     * {\n     *   protocol: 'https:',\n     *   hostname: 'xn--g6w251d',\n     *   hash: '#foo',\n     *   search: '?abc',\n     *   pathname: '/',\n     *   path: '/?abc',\n     *   href: 'https://a:b@xn--g6w251d/?abc#foo',\n     *   auth: 'a:b'\n     * }\n     *\n     * ```\n     * @since v15.7.0, v14.18.0\n     * @param url The `WHATWG URL` object to convert to an options object.\n     * @return Options object\n     */\n    function urlToHttpOptions(url: URL): ClientRequestArgs;\n    interface URLFormatOptions {\n        /**\n         * `true` if the serialized URL string should include the username and password, `false` otherwise.\n         * @default true\n         */\n        auth?: boolean | undefined;\n        /**\n         * `true` if the serialized URL string should include the fragment, `false` otherwise.\n         * @default true\n         */\n        fragment?: boolean | undefined;\n        /**\n         * `true` if the serialized URL string should include the search query, `false` otherwise.\n         * @default true\n         */\n        search?: boolean | undefined;\n        /**\n         * `true` if Unicode characters appearing in the host component of the URL string should be encoded directly as opposed to\n         * being Punycode encoded.\n         * @default false\n         */\n        unicode?: boolean | undefined;\n    }\n    /**\n     * Browser-compatible `URL` class, implemented by following the WHATWG URL\n     * Standard. [Examples of parsed URLs](https://url.spec.whatwg.org/#example-url-parsing) may be found in the Standard itself.\n     * The `URL` class is also available on the global object.\n     *\n     * In accordance with browser conventions, all properties of `URL` objects\n     * are implemented as getters and setters on the class prototype, rather than as\n     * data properties on the object itself. Thus, unlike `legacy urlObject`s,\n     * using the `delete` keyword on any properties of `URL` objects (e.g. `delete myURL.protocol`, `delete myURL.pathname`, etc) has no effect but will still\n     * return `true`.\n     * @since v7.0.0, v6.13.0\n     */\n    class URL {\n        /**\n         * Creates a `'blob:nodedata:...'` URL string that represents the given `Blob` object and can be used to retrieve the `Blob` later.\n         *\n         * ```js\n         * import {\n         *   Blob,\n         *   resolveObjectURL,\n         * } from 'node:buffer';\n         *\n         * const blob = new Blob(['hello']);\n         * const id = URL.createObjectURL(blob);\n         *\n         * // later...\n         *\n         * const otherBlob = resolveObjectURL(id);\n         * console.log(otherBlob.size);\n         * ```\n         *\n         * The data stored by the registered `Blob` will be retained in memory until `URL.revokeObjectURL()` is called to remove it.\n         *\n         * `Blob` objects are registered within the current thread. If using Worker\n         * Threads, `Blob` objects registered within one Worker will not be available\n         * to other workers or the main thread.\n         * @since v16.7.0\n         * @experimental\n         */\n        static createObjectURL(blob: NodeBlob): string;\n        /**\n         * Removes the stored `Blob` identified by the given ID. Attempting to revoke a\n         * ID that isn't registered will silently fail.\n         * @since v16.7.0\n         * @experimental\n         * @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`.\n         */\n        static revokeObjectURL(id: string): void;\n        /**\n         * Checks if an `input` relative to the `base` can be parsed to a `URL`.\n         *\n         * ```js\n         * const isValid = URL.canParse('/foo', 'https://example.org/'); // true\n         *\n         * const isNotValid = URL.canParse('/foo'); // false\n         * ```\n         * @since v19.9.0\n         * @param input The absolute or relative input URL to parse. If `input` is relative, then `base` is required. If `input` is absolute, the `base` is ignored. If `input` is not a string, it is\n         * `converted to a string` first.\n         * @param base The base URL to resolve against if the `input` is not absolute. If `base` is not a string, it is `converted to a string` first.\n         */\n        static canParse(input: string, base?: string): boolean;\n        /**\n         * Parses a string as a URL. If `base` is provided, it will be used as the base URL for the purpose of resolving non-absolute `input` URLs.\n         * Returns `null` if `input` is not a valid.\n         * @param input The absolute or relative input URL to parse. If `input` is relative, then `base` is required. If `input` is absolute, the `base` is ignored. If `input` is not a string, it is\n         * `converted to a string` first.\n         * @param base The base URL to resolve against if the `input` is not absolute. If `base` is not a string, it is `converted to a string` first.\n         * @since v22.1.0\n         */\n        static parse(input: string, base?: string): URL | null;\n        constructor(input: string | { toString: () => string }, base?: string | URL);\n        /**\n         * Gets and sets the fragment portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/foo#bar');\n         * console.log(myURL.hash);\n         * // Prints #bar\n         *\n         * myURL.hash = 'baz';\n         * console.log(myURL.href);\n         * // Prints https://example.org/foo#baz\n         * ```\n         *\n         * Invalid URL characters included in the value assigned to the `hash` property\n         * are `percent-encoded`. The selection of which characters to\n         * percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce.\n         */\n        hash: string;\n        /**\n         * Gets and sets the host portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org:81/foo');\n         * console.log(myURL.host);\n         * // Prints example.org:81\n         *\n         * myURL.host = 'example.com:82';\n         * console.log(myURL.href);\n         * // Prints https://example.com:82/foo\n         * ```\n         *\n         * Invalid host values assigned to the `host` property are ignored.\n         */\n        host: string;\n        /**\n         * Gets and sets the host name portion of the URL. The key difference between`url.host` and `url.hostname` is that `url.hostname` does _not_ include the\n         * port.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org:81/foo');\n         * console.log(myURL.hostname);\n         * // Prints example.org\n         *\n         * // Setting the hostname does not change the port\n         * myURL.hostname = 'example.com';\n         * console.log(myURL.href);\n         * // Prints https://example.com:81/foo\n         *\n         * // Use myURL.host to change the hostname and port\n         * myURL.host = 'example.org:82';\n         * console.log(myURL.href);\n         * // Prints https://example.org:82/foo\n         * ```\n         *\n         * Invalid host name values assigned to the `hostname` property are ignored.\n         */\n        hostname: string;\n        /**\n         * Gets and sets the serialized URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/foo');\n         * console.log(myURL.href);\n         * // Prints https://example.org/foo\n         *\n         * myURL.href = 'https://example.com/bar';\n         * console.log(myURL.href);\n         * // Prints https://example.com/bar\n         * ```\n         *\n         * Getting the value of the `href` property is equivalent to calling {@link toString}.\n         *\n         * Setting the value of this property to a new value is equivalent to creating a\n         * new `URL` object using `new URL(value)`. Each of the `URL` object's properties will be modified.\n         *\n         * If the value assigned to the `href` property is not a valid URL, a `TypeError` will be thrown.\n         */\n        href: string;\n        /**\n         * Gets the read-only serialization of the URL's origin.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/foo/bar?baz');\n         * console.log(myURL.origin);\n         * // Prints https://example.org\n         * ```\n         *\n         * ```js\n         * const idnURL = new URL('https://測試');\n         * console.log(idnURL.origin);\n         * // Prints https://xn--g6w251d\n         *\n         * console.log(idnURL.hostname);\n         * // Prints xn--g6w251d\n         * ```\n         */\n        readonly origin: string;\n        /**\n         * Gets and sets the password portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://abc:xyz@example.com');\n         * console.log(myURL.password);\n         * // Prints xyz\n         *\n         * myURL.password = '123';\n         * console.log(myURL.href);\n         * // Prints https://abc:123@example.com/\n         * ```\n         *\n         * Invalid URL characters included in the value assigned to the `password` property\n         * are `percent-encoded`. The selection of which characters to\n         * percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce.\n         */\n        password: string;\n        /**\n         * Gets and sets the path portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/abc/xyz?123');\n         * console.log(myURL.pathname);\n         * // Prints /abc/xyz\n         *\n         * myURL.pathname = '/abcdef';\n         * console.log(myURL.href);\n         * // Prints https://example.org/abcdef?123\n         * ```\n         *\n         * Invalid URL characters included in the value assigned to the `pathname` property are `percent-encoded`. The selection of which characters\n         * to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce.\n         */\n        pathname: string;\n        /**\n         * Gets and sets the port portion of the URL.\n         *\n         * The port value may be a number or a string containing a number in the range `0` to `65535` (inclusive). Setting the value to the default port of the `URL` objects given `protocol` will\n         * result in the `port` value becoming\n         * the empty string (`''`).\n         *\n         * The port value can be an empty string in which case the port depends on\n         * the protocol/scheme:\n         *\n         * <omitted>\n         *\n         * Upon assigning a value to the port, the value will first be converted to a\n         * string using `.toString()`.\n         *\n         * If that string is invalid but it begins with a number, the leading number is\n         * assigned to `port`.\n         * If the number lies outside the range denoted above, it is ignored.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org:8888');\n         * console.log(myURL.port);\n         * // Prints 8888\n         *\n         * // Default ports are automatically transformed to the empty string\n         * // (HTTPS protocol's default port is 443)\n         * myURL.port = '443';\n         * console.log(myURL.port);\n         * // Prints the empty string\n         * console.log(myURL.href);\n         * // Prints https://example.org/\n         *\n         * myURL.port = 1234;\n         * console.log(myURL.port);\n         * // Prints 1234\n         * console.log(myURL.href);\n         * // Prints https://example.org:1234/\n         *\n         * // Completely invalid port strings are ignored\n         * myURL.port = 'abcd';\n         * console.log(myURL.port);\n         * // Prints 1234\n         *\n         * // Leading numbers are treated as a port number\n         * myURL.port = '5678abcd';\n         * console.log(myURL.port);\n         * // Prints 5678\n         *\n         * // Non-integers are truncated\n         * myURL.port = 1234.5678;\n         * console.log(myURL.port);\n         * // Prints 1234\n         *\n         * // Out-of-range numbers which are not represented in scientific notation\n         * // will be ignored.\n         * myURL.port = 1e10; // 10000000000, will be range-checked as described below\n         * console.log(myURL.port);\n         * // Prints 1234\n         * ```\n         *\n         * Numbers which contain a decimal point,\n         * such as floating-point numbers or numbers in scientific notation,\n         * are not an exception to this rule.\n         * Leading numbers up to the decimal point will be set as the URL's port,\n         * assuming they are valid:\n         *\n         * ```js\n         * myURL.port = 4.567e21;\n         * console.log(myURL.port);\n         * // Prints 4 (because it is the leading number in the string '4.567e21')\n         * ```\n         */\n        port: string;\n        /**\n         * Gets and sets the protocol portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org');\n         * console.log(myURL.protocol);\n         * // Prints https:\n         *\n         * myURL.protocol = 'ftp';\n         * console.log(myURL.href);\n         * // Prints ftp://example.org/\n         * ```\n         *\n         * Invalid URL protocol values assigned to the `protocol` property are ignored.\n         */\n        protocol: string;\n        /**\n         * Gets and sets the serialized query portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/abc?123');\n         * console.log(myURL.search);\n         * // Prints ?123\n         *\n         * myURL.search = 'abc=xyz';\n         * console.log(myURL.href);\n         * // Prints https://example.org/abc?abc=xyz\n         * ```\n         *\n         * Any invalid URL characters appearing in the value assigned the `search` property will be `percent-encoded`. The selection of which\n         * characters to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce.\n         */\n        search: string;\n        /**\n         * Gets the `URLSearchParams` object representing the query parameters of the\n         * URL. This property is read-only but the `URLSearchParams` object it provides\n         * can be used to mutate the URL instance; to replace the entirety of query\n         * parameters of the URL, use the {@link search} setter. See `URLSearchParams` documentation for details.\n         *\n         * Use care when using `.searchParams` to modify the `URL` because,\n         * per the WHATWG specification, the `URLSearchParams` object uses\n         * different rules to determine which characters to percent-encode. For\n         * instance, the `URL` object will not percent encode the ASCII tilde (`~`)\n         * character, while `URLSearchParams` will always encode it:\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/abc?foo=~bar');\n         *\n         * console.log(myURL.search);  // prints ?foo=~bar\n         *\n         * // Modify the URL via searchParams...\n         * myURL.searchParams.sort();\n         *\n         * console.log(myURL.search);  // prints ?foo=%7Ebar\n         * ```\n         */\n        readonly searchParams: URLSearchParams;\n        /**\n         * Gets and sets the username portion of the URL.\n         *\n         * ```js\n         * const myURL = new URL('https://abc:xyz@example.com');\n         * console.log(myURL.username);\n         * // Prints abc\n         *\n         * myURL.username = '123';\n         * console.log(myURL.href);\n         * // Prints https://123:xyz@example.com/\n         * ```\n         *\n         * Any invalid URL characters appearing in the value assigned the `username` property will be `percent-encoded`. The selection of which\n         * characters to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce.\n         */\n        username: string;\n        /**\n         * The `toString()` method on the `URL` object returns the serialized URL. The\n         * value returned is equivalent to that of {@link href} and {@link toJSON}.\n         */\n        toString(): string;\n        /**\n         * The `toJSON()` method on the `URL` object returns the serialized URL. The\n         * value returned is equivalent to that of {@link href} and {@link toString}.\n         *\n         * This method is automatically called when an `URL` object is serialized\n         * with [`JSON.stringify()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify).\n         *\n         * ```js\n         * const myURLs = [\n         *   new URL('https://www.example.com'),\n         *   new URL('https://test.example.org'),\n         * ];\n         * console.log(JSON.stringify(myURLs));\n         * // Prints [\"https://www.example.com/\",\"https://test.example.org/\"]\n         * ```\n         */\n        toJSON(): string;\n    }\n    interface URLSearchParamsIterator<T> extends NodeJS.Iterator<T, NodeJS.BuiltinIteratorReturn, unknown> {\n        [Symbol.iterator](): URLSearchParamsIterator<T>;\n    }\n    /**\n     * The `URLSearchParams` API provides read and write access to the query of a `URL`. The `URLSearchParams` class can also be used standalone with one of the\n     * four following constructors.\n     * The `URLSearchParams` class is also available on the global object.\n     *\n     * The WHATWG `URLSearchParams` interface and the `querystring` module have\n     * similar purpose, but the purpose of the `querystring` module is more\n     * general, as it allows the customization of delimiter characters (`&#x26;` and `=`).\n     * On the other hand, this API is designed purely for URL query strings.\n     *\n     * ```js\n     * const myURL = new URL('https://example.org/?abc=123');\n     * console.log(myURL.searchParams.get('abc'));\n     * // Prints 123\n     *\n     * myURL.searchParams.append('abc', 'xyz');\n     * console.log(myURL.href);\n     * // Prints https://example.org/?abc=123&#x26;abc=xyz\n     *\n     * myURL.searchParams.delete('abc');\n     * myURL.searchParams.set('a', 'b');\n     * console.log(myURL.href);\n     * // Prints https://example.org/?a=b\n     *\n     * const newSearchParams = new URLSearchParams(myURL.searchParams);\n     * // The above is equivalent to\n     * // const newSearchParams = new URLSearchParams(myURL.search);\n     *\n     * newSearchParams.append('a', 'c');\n     * console.log(myURL.href);\n     * // Prints https://example.org/?a=b\n     * console.log(newSearchParams.toString());\n     * // Prints a=b&#x26;a=c\n     *\n     * // newSearchParams.toString() is implicitly called\n     * myURL.search = newSearchParams;\n     * console.log(myURL.href);\n     * // Prints https://example.org/?a=b&#x26;a=c\n     * newSearchParams.delete('a');\n     * console.log(myURL.href);\n     * // Prints https://example.org/?a=b&#x26;a=c\n     * ```\n     * @since v7.5.0, v6.13.0\n     */\n    class URLSearchParams implements Iterable<[string, string]> {\n        constructor(\n            init?:\n                | URLSearchParams\n                | string\n                | Record<string, string | readonly string[]>\n                | Iterable<[string, string]>\n                | ReadonlyArray<[string, string]>,\n        );\n        /**\n         * Append a new name-value pair to the query string.\n         */\n        append(name: string, value: string): void;\n        /**\n         * If `value` is provided, removes all name-value pairs\n         * where name is `name` and value is `value`.\n         *\n         * If `value` is not provided, removes all name-value pairs whose name is `name`.\n         */\n        delete(name: string, value?: string): void;\n        /**\n         * Returns an ES6 `Iterator` over each of the name-value pairs in the query.\n         * Each item of the iterator is a JavaScript `Array`. The first item of the `Array` is the `name`, the second item of the `Array` is the `value`.\n         *\n         * Alias for `urlSearchParams[@@iterator]()`.\n         */\n        entries(): URLSearchParamsIterator<[string, string]>;\n        /**\n         * Iterates over each name-value pair in the query and invokes the given function.\n         *\n         * ```js\n         * const myURL = new URL('https://example.org/?a=b&#x26;c=d');\n         * myURL.searchParams.forEach((value, name, searchParams) => {\n         *   console.log(name, value, myURL.searchParams === searchParams);\n         * });\n         * // Prints:\n         * //   a b true\n         * //   c d true\n         * ```\n         * @param fn Invoked for each name-value pair in the query\n         * @param thisArg To be used as `this` value for when `fn` is called\n         */\n        forEach<TThis = this>(\n            fn: (this: TThis, value: string, name: string, searchParams: URLSearchParams) => void,\n            thisArg?: TThis,\n        ): void;\n        /**\n         * Returns the value of the first name-value pair whose name is `name`. If there\n         * are no such pairs, `null` is returned.\n         * @return or `null` if there is no name-value pair with the given `name`.\n         */\n        get(name: string): string | null;\n        /**\n         * Returns the values of all name-value pairs whose name is `name`. If there are\n         * no such pairs, an empty array is returned.\n         */\n        getAll(name: string): string[];\n        /**\n         * Checks if the `URLSearchParams` object contains key-value pair(s) based on `name` and an optional `value` argument.\n         *\n         * If `value` is provided, returns `true` when name-value pair with\n         * same `name` and `value` exists.\n         *\n         * If `value` is not provided, returns `true` if there is at least one name-value\n         * pair whose name is `name`.\n         */\n        has(name: string, value?: string): boolean;\n        /**\n         * Returns an ES6 `Iterator` over the names of each name-value pair.\n         *\n         * ```js\n         * const params = new URLSearchParams('foo=bar&#x26;foo=baz');\n         * for (const name of params.keys()) {\n         *   console.log(name);\n         * }\n         * // Prints:\n         * //   foo\n         * //   foo\n         * ```\n         */\n        keys(): URLSearchParamsIterator<string>;\n        /**\n         * Sets the value in the `URLSearchParams` object associated with `name` to `value`. If there are any pre-existing name-value pairs whose names are `name`,\n         * set the first such pair's value to `value` and remove all others. If not,\n         * append the name-value pair to the query string.\n         *\n         * ```js\n         * const params = new URLSearchParams();\n         * params.append('foo', 'bar');\n         * params.append('foo', 'baz');\n         * params.append('abc', 'def');\n         * console.log(params.toString());\n         * // Prints foo=bar&#x26;foo=baz&#x26;abc=def\n         *\n         * params.set('foo', 'def');\n         * params.set('xyz', 'opq');\n         * console.log(params.toString());\n         * // Prints foo=def&#x26;abc=def&#x26;xyz=opq\n         * ```\n         */\n        set(name: string, value: string): void;\n        /**\n         * The total number of parameter entries.\n         * @since v19.8.0\n         */\n        readonly size: number;\n        /**\n         * Sort all existing name-value pairs in-place by their names. Sorting is done\n         * with a [stable sorting algorithm](https://en.wikipedia.org/wiki/Sorting_algorithm#Stability), so relative order between name-value pairs\n         * with the same name is preserved.\n         *\n         * This method can be used, in particular, to increase cache hits.\n         *\n         * ```js\n         * const params = new URLSearchParams('query[]=abc&#x26;type=search&#x26;query[]=123');\n         * params.sort();\n         * console.log(params.toString());\n         * // Prints query%5B%5D=abc&#x26;query%5B%5D=123&#x26;type=search\n         * ```\n         * @since v7.7.0, v6.13.0\n         */\n        sort(): void;\n        /**\n         * Returns the search parameters serialized as a string, with characters\n         * percent-encoded where necessary.\n         */\n        toString(): string;\n        /**\n         * Returns an ES6 `Iterator` over the values of each name-value pair.\n         */\n        values(): URLSearchParamsIterator<string>;\n        [Symbol.iterator](): URLSearchParamsIterator<[string, string]>;\n    }\n    import { URL as _URL, URLSearchParams as _URLSearchParams } from \"url\";\n    global {\n        interface URLSearchParams extends _URLSearchParams {}\n        interface URL extends _URL {}\n        interface Global {\n            URL: typeof _URL;\n            URLSearchParams: typeof _URLSearchParams;\n        }\n        /**\n         * `URL` class is a global reference for `import { URL } from 'url'`\n         * https://nodejs.org/api/url.html#the-whatwg-url-api\n         * @since v10.0.0\n         */\n        var URL: typeof globalThis extends {\n            onmessage: any;\n            URL: infer T;\n        } ? T\n            : typeof _URL;\n        /**\n         * `URLSearchParams` class is a global reference for `import { URLSearchParams } from 'node:url'`\n         * https://nodejs.org/api/url.html#class-urlsearchparams\n         * @since v10.0.0\n         */\n        var URLSearchParams: typeof globalThis extends {\n            onmessage: any;\n            URLSearchParams: infer T;\n        } ? T\n            : typeof _URLSearchParams;\n    }\n}\ndeclare module \"node:url\" {\n    export * from \"url\";\n}\n",
    "node_modules/@types/node/util.d.ts": "/**\n * The `node:util` module supports the needs of Node.js internal APIs. Many of the\n * utilities are useful for application and module developers as well. To access\n * it:\n *\n * ```js\n * import util from 'node:util';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/util.js)\n */\ndeclare module \"util\" {\n    import * as types from \"node:util/types\";\n    export interface InspectOptions {\n        /**\n         * If `true`, object's non-enumerable symbols and properties are included in the formatted result.\n         * `WeakMap` and `WeakSet` entries are also included as well as user defined prototype properties (excluding method properties).\n         * @default false\n         */\n        showHidden?: boolean | undefined;\n        /**\n         * Specifies the number of times to recurse while formatting object.\n         * This is useful for inspecting large objects.\n         * To recurse up to the maximum call stack size pass `Infinity` or `null`.\n         * @default 2\n         */\n        depth?: number | null | undefined;\n        /**\n         * If `true`, the output is styled with ANSI color codes. Colors are customizable.\n         */\n        colors?: boolean | undefined;\n        /**\n         * If `false`, `[util.inspect.custom](depth, opts, inspect)` functions are not invoked.\n         * @default true\n         */\n        customInspect?: boolean | undefined;\n        /**\n         * If `true`, `Proxy` inspection includes the target and handler objects.\n         * @default false\n         */\n        showProxy?: boolean | undefined;\n        /**\n         * Specifies the maximum number of `Array`, `TypedArray`, `WeakMap`, and `WeakSet` elements\n         * to include when formatting. Set to `null` or `Infinity` to show all elements.\n         * Set to `0` or negative to show no elements.\n         * @default 100\n         */\n        maxArrayLength?: number | null | undefined;\n        /**\n         * Specifies the maximum number of characters to\n         * include when formatting. Set to `null` or `Infinity` to show all elements.\n         * Set to `0` or negative to show no characters.\n         * @default 10000\n         */\n        maxStringLength?: number | null | undefined;\n        /**\n         * The length at which input values are split across multiple lines.\n         * Set to `Infinity` to format the input as a single line\n         * (in combination with `compact` set to `true` or any number >= `1`).\n         * @default 80\n         */\n        breakLength?: number | undefined;\n        /**\n         * Setting this to `false` causes each object key\n         * to be displayed on a new line. It will also add new lines to text that is\n         * longer than `breakLength`. If set to a number, the most `n` inner elements\n         * are united on a single line as long as all properties fit into\n         * `breakLength`. Short array elements are also grouped together. Note that no\n         * text will be reduced below 16 characters, no matter the `breakLength` size.\n         * For more information, see the example below.\n         * @default true\n         */\n        compact?: boolean | number | undefined;\n        /**\n         * If set to `true` or a function, all properties of an object, and `Set` and `Map`\n         * entries are sorted in the resulting string.\n         * If set to `true` the default sort is used.\n         * If set to a function, it is used as a compare function.\n         */\n        sorted?: boolean | ((a: string, b: string) => number) | undefined;\n        /**\n         * If set to `true`, getters are going to be\n         * inspected as well. If set to `'get'` only getters without setter are going\n         * to be inspected. If set to `'set'` only getters having a corresponding\n         * setter are going to be inspected. This might cause side effects depending on\n         * the getter function.\n         * @default false\n         */\n        getters?: \"get\" | \"set\" | boolean | undefined;\n        /**\n         * If set to `true`, an underscore is used to separate every three digits in all bigints and numbers.\n         * @default false\n         */\n        numericSeparator?: boolean | undefined;\n    }\n    export type Style =\n        | \"special\"\n        | \"number\"\n        | \"bigint\"\n        | \"boolean\"\n        | \"undefined\"\n        | \"null\"\n        | \"string\"\n        | \"symbol\"\n        | \"date\"\n        | \"regexp\"\n        | \"module\";\n    export type CustomInspectFunction = (depth: number, options: InspectOptionsStylized) => any; // TODO: , inspect: inspect\n    export interface InspectOptionsStylized extends InspectOptions {\n        stylize(text: string, styleType: Style): string;\n    }\n    export interface CallSiteObject {\n        /**\n         * Returns the name of the function associated with this call site.\n         */\n        functionName: string;\n        /**\n         * Returns the name of the resource that contains the script for the\n         * function for this call site.\n         */\n        scriptName: string;\n        /**\n         * Returns the unique id of the script, as in Chrome DevTools protocol\n         * [`Runtime.ScriptId`](https://chromedevtools.github.io/devtools-protocol/1-3/Runtime/#type-ScriptId).\n         * @since v22.14.0\n         */\n        scriptId: string;\n        /**\n         * Returns the number, 1-based, of the line for the associate function call.\n         */\n        lineNumber: number;\n        /**\n         * Returns the 1-based column offset on the line for the associated function call.\n         */\n        columnNumber: number;\n    }\n    export type DiffEntry = [operation: -1 | 0 | 1, value: string];\n    /**\n     * `util.diff()` compares two string or array values and returns an array of difference entries.\n     * It uses the Myers diff algorithm to compute minimal differences, which is the same algorithm\n     * used internally by assertion error messages.\n     *\n     * If the values are equal, an empty array is returned.\n     *\n     * ```js\n     * const { diff } = require('node:util');\n     *\n     * // Comparing strings\n     * const actualString = '12345678';\n     * const expectedString = '12!!5!7!';\n     * console.log(diff(actualString, expectedString));\n     * // [\n     * //   [0, '1'],\n     * //   [0, '2'],\n     * //   [1, '3'],\n     * //   [1, '4'],\n     * //   [-1, '!'],\n     * //   [-1, '!'],\n     * //   [0, '5'],\n     * //   [1, '6'],\n     * //   [-1, '!'],\n     * //   [0, '7'],\n     * //   [1, '8'],\n     * //   [-1, '!'],\n     * // ]\n     * // Comparing arrays\n     * const actualArray = ['1', '2', '3'];\n     * const expectedArray = ['1', '3', '4'];\n     * console.log(diff(actualArray, expectedArray));\n     * // [\n     * //   [0, '1'],\n     * //   [1, '2'],\n     * //   [0, '3'],\n     * //   [-1, '4'],\n     * // ]\n     * // Equal values return empty array\n     * console.log(diff('same', 'same'));\n     * // []\n     * ```\n     * @since v22.15.0\n     * @experimental\n     * @param actual The first value to compare\n     * @param expected The second value to compare\n     * @returns An array of difference entries. Each entry is an array with two elements:\n     * * Index 0: `number` Operation code: `-1` for delete, `0` for no-op/unchanged, `1` for insert\n     * * Index 1: `string` The value associated with the operation\n     */\n    export function diff(actual: string | readonly string[], expected: string | readonly string[]): DiffEntry[];\n    /**\n     * The `util.format()` method returns a formatted string using the first argument\n     * as a `printf`-like format string which can contain zero or more format\n     * specifiers. Each specifier is replaced with the converted value from the\n     * corresponding argument. Supported specifiers are:\n     *\n     * If a specifier does not have a corresponding argument, it is not replaced:\n     *\n     * ```js\n     * util.format('%s:%s', 'foo');\n     * // Returns: 'foo:%s'\n     * ```\n     *\n     * Values that are not part of the format string are formatted using `util.inspect()` if their type is not `string`.\n     *\n     * If there are more arguments passed to the `util.format()` method than the\n     * number of specifiers, the extra arguments are concatenated to the returned\n     * string, separated by spaces:\n     *\n     * ```js\n     * util.format('%s:%s', 'foo', 'bar', 'baz');\n     * // Returns: 'foo:bar baz'\n     * ```\n     *\n     * If the first argument does not contain a valid format specifier, `util.format()` returns a string that is the concatenation of all arguments separated by spaces:\n     *\n     * ```js\n     * util.format(1, 2, 3);\n     * // Returns: '1 2 3'\n     * ```\n     *\n     * If only one argument is passed to `util.format()`, it is returned as it is\n     * without any formatting:\n     *\n     * ```js\n     * util.format('%% %s');\n     * // Returns: '%% %s'\n     * ```\n     *\n     * `util.format()` is a synchronous method that is intended as a debugging tool.\n     * Some input values can have a significant performance overhead that can block the\n     * event loop. Use this function with care and never in a hot code path.\n     * @since v0.5.3\n     * @param format A `printf`-like format string.\n     */\n    export function format(format?: any, ...param: any[]): string;\n    /**\n     * This function is identical to {@link format}, except in that it takes\n     * an `inspectOptions` argument which specifies options that are passed along to {@link inspect}.\n     *\n     * ```js\n     * util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });\n     * // Returns 'See object { foo: 42 }', where `42` is colored as a number\n     * // when printed to a terminal.\n     * ```\n     * @since v10.0.0\n     */\n    export function formatWithOptions(inspectOptions: InspectOptions, format?: any, ...param: any[]): string;\n    interface GetCallSitesOptions {\n        /**\n         * Reconstruct the original location in the stacktrace from the source-map.\n         * Enabled by default with the flag `--enable-source-maps`.\n         */\n        sourceMap?: boolean | undefined;\n    }\n    /**\n     * Returns an array of call site objects containing the stack of\n     * the caller function.\n     *\n     * ```js\n     * import { getCallSites } from 'node:util';\n     *\n     * function exampleFunction() {\n     *   const callSites = getCallSites();\n     *\n     *   console.log('Call Sites:');\n     *   callSites.forEach((callSite, index) => {\n     *     console.log(`CallSite ${index + 1}:`);\n     *     console.log(`Function Name: ${callSite.functionName}`);\n     *     console.log(`Script Name: ${callSite.scriptName}`);\n     *     console.log(`Line Number: ${callSite.lineNumber}`);\n     *     console.log(`Column Number: ${callSite.column}`);\n     *   });\n     *   // CallSite 1:\n     *   // Function Name: exampleFunction\n     *   // Script Name: /home/example.js\n     *   // Line Number: 5\n     *   // Column Number: 26\n     *\n     *   // CallSite 2:\n     *   // Function Name: anotherFunction\n     *   // Script Name: /home/example.js\n     *   // Line Number: 22\n     *   // Column Number: 3\n     *\n     *   // ...\n     * }\n     *\n     * // A function to simulate another stack layer\n     * function anotherFunction() {\n     *   exampleFunction();\n     * }\n     *\n     * anotherFunction();\n     * ```\n     *\n     * It is possible to reconstruct the original locations by setting the option `sourceMap` to `true`.\n     * If the source map is not available, the original location will be the same as the current location.\n     * When the `--enable-source-maps` flag is enabled, for example when using `--experimental-transform-types`,\n     * `sourceMap` will be true by default.\n     *\n     * ```ts\n     * import { getCallSites } from 'node:util';\n     *\n     * interface Foo {\n     *   foo: string;\n     * }\n     *\n     * const callSites = getCallSites({ sourceMap: true });\n     *\n     * // With sourceMap:\n     * // Function Name: ''\n     * // Script Name: example.js\n     * // Line Number: 7\n     * // Column Number: 26\n     *\n     * // Without sourceMap:\n     * // Function Name: ''\n     * // Script Name: example.js\n     * // Line Number: 2\n     * // Column Number: 26\n     * ```\n     * @param frameCount Number of frames to capture as call site objects.\n     * **Default:** `10`. Allowable range is between 1 and 200.\n     * @return An array of call site objects\n     * @since v22.9.0\n     */\n    export function getCallSites(frameCount?: number, options?: GetCallSitesOptions): CallSiteObject[];\n    export function getCallSites(options: GetCallSitesOptions): CallSiteObject[];\n    /**\n     * Returns the string name for a numeric error code that comes from a Node.js API.\n     * The mapping between error codes and error names is platform-dependent.\n     * See `Common System Errors` for the names of common errors.\n     *\n     * ```js\n     * fs.access('file/that/does/not/exist', (err) => {\n     *   const name = util.getSystemErrorName(err.errno);\n     *   console.error(name);  // ENOENT\n     * });\n     * ```\n     * @since v9.7.0\n     */\n    export function getSystemErrorName(err: number): string;\n    /**\n     * Returns a Map of all system error codes available from the Node.js API.\n     * The mapping between error codes and error names is platform-dependent.\n     * See `Common System Errors` for the names of common errors.\n     *\n     * ```js\n     * fs.access('file/that/does/not/exist', (err) => {\n     *   const errorMap = util.getSystemErrorMap();\n     *   const name = errorMap.get(err.errno);\n     *   console.error(name);  // ENOENT\n     * });\n     * ```\n     * @since v16.0.0, v14.17.0\n     */\n    export function getSystemErrorMap(): Map<number, [string, string]>;\n    /**\n     * Returns the string message for a numeric error code that comes from a Node.js\n     * API.\n     * The mapping between error codes and string messages is platform-dependent.\n     *\n     * ```js\n     * fs.access('file/that/does/not/exist', (err) => {\n     *   const message = util.getSystemErrorMessage(err.errno);\n     *   console.error(message);  // no such file or directory\n     * });\n     * ```\n     * @since v22.12.0\n     */\n    export function getSystemErrorMessage(err: number): string;\n    /**\n     * The `util.log()` method prints the given `string` to `stdout` with an included\n     * timestamp.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.log('Timestamped message.');\n     * ```\n     * @since v0.3.0\n     * @deprecated Since v6.0.0 - Use a third party module instead.\n     */\n    export function log(string: string): void;\n    /**\n     * Returns the `string` after replacing any surrogate code points\n     * (or equivalently, any unpaired surrogate code units) with the\n     * Unicode \"replacement character\" U+FFFD.\n     * @since v16.8.0, v14.18.0\n     */\n    export function toUSVString(string: string): string;\n    /**\n     * Creates and returns an `AbortController` instance whose `AbortSignal` is marked\n     * as transferable and can be used with `structuredClone()` or `postMessage()`.\n     * @since v18.11.0\n     * @returns A transferable AbortController\n     */\n    export function transferableAbortController(): AbortController;\n    /**\n     * Marks the given `AbortSignal` as transferable so that it can be used with`structuredClone()` and `postMessage()`.\n     *\n     * ```js\n     * const signal = transferableAbortSignal(AbortSignal.timeout(100));\n     * const channel = new MessageChannel();\n     * channel.port2.postMessage(signal, [signal]);\n     * ```\n     * @since v18.11.0\n     * @param signal The AbortSignal\n     * @returns The same AbortSignal\n     */\n    export function transferableAbortSignal(signal: AbortSignal): AbortSignal;\n    /**\n     * Listens to abort event on the provided `signal` and returns a promise that resolves when the `signal` is aborted.\n     * If `resource` is provided, it weakly references the operation's associated object,\n     * so if `resource` is garbage collected before the `signal` aborts,\n     * then returned promise shall remain pending.\n     * This prevents memory leaks in long-running or non-cancelable operations.\n     *\n     * ```js\n     * import { aborted } from 'node:util';\n     *\n     * // Obtain an object with an abortable signal, like a custom resource or operation.\n     * const dependent = obtainSomethingAbortable();\n     *\n     * // Pass `dependent` as the resource, indicating the promise should only resolve\n     * // if `dependent` is still in memory when the signal is aborted.\n     * aborted(dependent.signal, dependent).then(() => {\n     *   // This code runs when `dependent` is aborted.\n     *   console.log('Dependent resource was aborted.');\n     * });\n     *\n     * // Simulate an event that triggers the abort.\n     * dependent.on('event', () => {\n     *   dependent.abort(); // This will cause the `aborted` promise to resolve.\n     * });\n     * ```\n     * @since v19.7.0\n     * @experimental\n     * @param resource Any non-null object tied to the abortable operation and held weakly.\n     * If `resource` is garbage collected before the `signal` aborts, the promise remains pending,\n     * allowing Node.js to stop tracking it.\n     * This helps prevent memory leaks in long-running or non-cancelable operations.\n     */\n    export function aborted(signal: AbortSignal, resource: any): Promise<void>;\n    /**\n     * The `util.inspect()` method returns a string representation of `object` that is\n     * intended for debugging. The output of `util.inspect` may change at any time\n     * and should not be depended upon programmatically. Additional `options` may be\n     * passed that alter the result.\n     * `util.inspect()` will use the constructor's name and/or `@@toStringTag` to make\n     * an identifiable tag for an inspected value.\n     *\n     * ```js\n     * class Foo {\n     *   get [Symbol.toStringTag]() {\n     *     return 'bar';\n     *   }\n     * }\n     *\n     * class Bar {}\n     *\n     * const baz = Object.create(null, { [Symbol.toStringTag]: { value: 'foo' } });\n     *\n     * util.inspect(new Foo()); // 'Foo [bar] {}'\n     * util.inspect(new Bar()); // 'Bar {}'\n     * util.inspect(baz);       // '[foo] {}'\n     * ```\n     *\n     * Circular references point to their anchor by using a reference index:\n     *\n     * ```js\n     * import { inspect } from 'node:util';\n     *\n     * const obj = {};\n     * obj.a = [obj];\n     * obj.b = {};\n     * obj.b.inner = obj.b;\n     * obj.b.obj = obj;\n     *\n     * console.log(inspect(obj));\n     * // <ref *1> {\n     * //   a: [ [Circular *1] ],\n     * //   b: <ref *2> { inner: [Circular *2], obj: [Circular *1] }\n     * // }\n     * ```\n     *\n     * The following example inspects all properties of the `util` object:\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * console.log(util.inspect(util, { showHidden: true, depth: null }));\n     * ```\n     *\n     * The following example highlights the effect of the `compact` option:\n     *\n     * ```js\n     * import { inspect } from 'node:util';\n     *\n     * const o = {\n     *   a: [1, 2, [[\n     *     'Lorem ipsum dolor sit amet,\\nconsectetur adipiscing elit, sed do ' +\n     *       'eiusmod \\ntempor incididunt ut labore et dolore magna aliqua.',\n     *     'test',\n     *     'foo']], 4],\n     *   b: new Map([['za', 1], ['zb', 'test']]),\n     * };\n     * console.log(inspect(o, { compact: true, depth: 5, breakLength: 80 }));\n     *\n     * // { a:\n     * //   [ 1,\n     * //     2,\n     * //     [ [ 'Lorem ipsum dolor sit amet,\\nconsectetur [...]', // A long line\n     * //           'test',\n     * //           'foo' ] ],\n     * //     4 ],\n     * //   b: Map(2) { 'za' => 1, 'zb' => 'test' } }\n     *\n     * // Setting `compact` to false or an integer creates more reader friendly output.\n     * console.log(inspect(o, { compact: false, depth: 5, breakLength: 80 }));\n     *\n     * // {\n     * //   a: [\n     * //     1,\n     * //     2,\n     * //     [\n     * //       [\n     * //         'Lorem ipsum dolor sit amet,\\n' +\n     * //           'consectetur adipiscing elit, sed do eiusmod \\n' +\n     * //           'tempor incididunt ut labore et dolore magna aliqua.',\n     * //         'test',\n     * //         'foo'\n     * //       ]\n     * //     ],\n     * //     4\n     * //   ],\n     * //   b: Map(2) {\n     * //     'za' => 1,\n     * //     'zb' => 'test'\n     * //   }\n     * // }\n     *\n     * // Setting `breakLength` to e.g. 150 will print the \"Lorem ipsum\" text in a\n     * // single line.\n     * ```\n     *\n     * The `showHidden` option allows `WeakMap` and `WeakSet` entries to be\n     * inspected. If there are more entries than `maxArrayLength`, there is no\n     * guarantee which entries are displayed. That means retrieving the same\n     * `WeakSet` entries twice may result in different output. Furthermore, entries\n     * with no remaining strong references may be garbage collected at any time.\n     *\n     * ```js\n     * import { inspect } from 'node:util';\n     *\n     * const obj = { a: 1 };\n     * const obj2 = { b: 2 };\n     * const weakSet = new WeakSet([obj, obj2]);\n     *\n     * console.log(inspect(weakSet, { showHidden: true }));\n     * // WeakSet { { a: 1 }, { b: 2 } }\n     * ```\n     *\n     * The `sorted` option ensures that an object's property insertion order does not\n     * impact the result of `util.inspect()`.\n     *\n     * ```js\n     * import { inspect } from 'node:util';\n     * import assert from 'node:assert';\n     *\n     * const o1 = {\n     *   b: [2, 3, 1],\n     *   a: '`a` comes before `b`',\n     *   c: new Set([2, 3, 1]),\n     * };\n     * console.log(inspect(o1, { sorted: true }));\n     * // { a: '`a` comes before `b`', b: [ 2, 3, 1 ], c: Set(3) { 1, 2, 3 } }\n     * console.log(inspect(o1, { sorted: (a, b) => b.localeCompare(a) }));\n     * // { c: Set(3) { 3, 2, 1 }, b: [ 2, 3, 1 ], a: '`a` comes before `b`' }\n     *\n     * const o2 = {\n     *   c: new Set([2, 1, 3]),\n     *   a: '`a` comes before `b`',\n     *   b: [2, 3, 1],\n     * };\n     * assert.strict.equal(\n     *   inspect(o1, { sorted: true }),\n     *   inspect(o2, { sorted: true }),\n     * );\n     * ```\n     *\n     * The `numericSeparator` option adds an underscore every three digits to all\n     * numbers.\n     *\n     * ```js\n     * import { inspect } from 'node:util';\n     *\n     * const thousand = 1000;\n     * const million = 1000000;\n     * const bigNumber = 123456789n;\n     * const bigDecimal = 1234.12345;\n     *\n     * console.log(inspect(thousand, { numericSeparator: true }));\n     * // 1_000\n     * console.log(inspect(million, { numericSeparator: true }));\n     * // 1_000_000\n     * console.log(inspect(bigNumber, { numericSeparator: true }));\n     * // 123_456_789n\n     * console.log(inspect(bigDecimal, { numericSeparator: true }));\n     * // 1_234.123_45\n     * ```\n     *\n     * `util.inspect()` is a synchronous method intended for debugging. Its maximum\n     * output length is approximately 128 MiB. Inputs that result in longer output will\n     * be truncated.\n     * @since v0.3.0\n     * @param object Any JavaScript primitive or `Object`.\n     * @return The representation of `object`.\n     */\n    export function inspect(object: any, showHidden?: boolean, depth?: number | null, color?: boolean): string;\n    export function inspect(object: any, options?: InspectOptions): string;\n    export namespace inspect {\n        let colors: NodeJS.Dict<[number, number]>;\n        let styles: {\n            [K in Style]: string;\n        };\n        let defaultOptions: InspectOptions;\n        /**\n         * Allows changing inspect settings from the repl.\n         */\n        let replDefaults: InspectOptions;\n        /**\n         * That can be used to declare custom inspect functions.\n         */\n        const custom: unique symbol;\n    }\n    /**\n     * Alias for [`Array.isArray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray).\n     *\n     * Returns `true` if the given `object` is an `Array`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isArray([]);\n     * // Returns: true\n     * util.isArray(new Array());\n     * // Returns: true\n     * util.isArray({});\n     * // Returns: false\n     * ```\n     * @since v0.6.0\n     * @deprecated Since v4.0.0 - Use `isArray` instead.\n     */\n    export function isArray(object: unknown): object is unknown[];\n    /**\n     * Returns `true` if the given `object` is a `RegExp`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isRegExp(/some regexp/);\n     * // Returns: true\n     * util.isRegExp(new RegExp('another regexp'));\n     * // Returns: true\n     * util.isRegExp({});\n     * // Returns: false\n     * ```\n     * @since v0.6.0\n     * @deprecated Since v4.0.0 - Deprecated\n     */\n    export function isRegExp(object: unknown): object is RegExp;\n    /**\n     * Returns `true` if the given `object` is a `Date`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isDate(new Date());\n     * // Returns: true\n     * util.isDate(Date());\n     * // false (without 'new' returns a String)\n     * util.isDate({});\n     * // Returns: false\n     * ```\n     * @since v0.6.0\n     * @deprecated Since v4.0.0 - Use {@link types.isDate} instead.\n     */\n    export function isDate(object: unknown): object is Date;\n    /**\n     * Returns `true` if the given `object` is an `Error`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isError(new Error());\n     * // Returns: true\n     * util.isError(new TypeError());\n     * // Returns: true\n     * util.isError({ name: 'Error', message: 'an error occurred' });\n     * // Returns: false\n     * ```\n     *\n     * This method relies on `Object.prototype.toString()` behavior. It is\n     * possible to obtain an incorrect result when the `object` argument manipulates `@@toStringTag`.\n     *\n     * ```js\n     * import util from 'node:util';\n     * const obj = { name: 'Error', message: 'an error occurred' };\n     *\n     * util.isError(obj);\n     * // Returns: false\n     * obj[Symbol.toStringTag] = 'Error';\n     * util.isError(obj);\n     * // Returns: true\n     * ```\n     * @since v0.6.0\n     * @deprecated Since v4.0.0 - Use {@link types.isNativeError} instead.\n     */\n    export function isError(object: unknown): object is Error;\n    /**\n     * Usage of `util.inherits()` is discouraged. Please use the ES6 `class` and\n     * `extends` keywords to get language level inheritance support. Also note\n     * that the two styles are [semantically incompatible](https://github.com/nodejs/node/issues/4179).\n     *\n     * Inherit the prototype methods from one\n     * [constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor) into another. The\n     * prototype of `constructor` will be set to a new object created from\n     * `superConstructor`.\n     *\n     * This mainly adds some input validation on top of\n     * `Object.setPrototypeOf(constructor.prototype, superConstructor.prototype)`.\n     * As an additional convenience, `superConstructor` will be accessible\n     * through the `constructor.super_` property.\n     *\n     * ```js\n     * const util = require('node:util');\n     * const EventEmitter = require('node:events');\n     *\n     * function MyStream() {\n     *   EventEmitter.call(this);\n     * }\n     *\n     * util.inherits(MyStream, EventEmitter);\n     *\n     * MyStream.prototype.write = function(data) {\n     *   this.emit('data', data);\n     * };\n     *\n     * const stream = new MyStream();\n     *\n     * console.log(stream instanceof EventEmitter); // true\n     * console.log(MyStream.super_ === EventEmitter); // true\n     *\n     * stream.on('data', (data) => {\n     *   console.log(`Received data: \"${data}\"`);\n     * });\n     * stream.write('It works!'); // Received data: \"It works!\"\n     * ```\n     *\n     * ES6 example using `class` and `extends`:\n     *\n     * ```js\n     * import EventEmitter from 'node:events';\n     *\n     * class MyStream extends EventEmitter {\n     *   write(data) {\n     *     this.emit('data', data);\n     *   }\n     * }\n     *\n     * const stream = new MyStream();\n     *\n     * stream.on('data', (data) => {\n     *   console.log(`Received data: \"${data}\"`);\n     * });\n     * stream.write('With ES6');\n     * ```\n     * @since v0.3.0\n     * @legacy Use ES2015 class syntax and `extends` keyword instead.\n     */\n    export function inherits(constructor: unknown, superConstructor: unknown): void;\n    export type DebugLoggerFunction = (msg: string, ...param: unknown[]) => void;\n    export interface DebugLogger extends DebugLoggerFunction {\n        /**\n         * The `util.debuglog().enabled` getter is used to create a test that can be used\n         * in conditionals based on the existence of the `NODE_DEBUG` environment variable.\n         * If the `section` name appears within the value of that environment variable,\n         * then the returned value will be `true`. If not, then the returned value will be\n         * `false`.\n         *\n         * ```js\n         * import { debuglog } from 'node:util';\n         * const enabled = debuglog('foo').enabled;\n         * if (enabled) {\n         *   console.log('hello from foo [%d]', 123);\n         * }\n         * ```\n         *\n         * If this program is run with `NODE_DEBUG=foo` in the environment, then it will\n         * output something like:\n         *\n         * ```console\n         * hello from foo [123]\n         * ```\n         */\n        enabled: boolean;\n    }\n    /**\n     * The `util.debuglog()` method is used to create a function that conditionally\n     * writes debug messages to `stderr` based on the existence of the `NODE_DEBUG`\n     * environment variable. If the `section` name appears within the value of that\n     * environment variable, then the returned function operates similar to\n     * `console.error()`. If not, then the returned function is a no-op.\n     *\n     * ```js\n     * import { debuglog } from 'node:util';\n     * const log = debuglog('foo');\n     *\n     * log('hello from foo [%d]', 123);\n     * ```\n     *\n     * If this program is run with `NODE_DEBUG=foo` in the environment, then\n     * it will output something like:\n     *\n     * ```console\n     * FOO 3245: hello from foo [123]\n     * ```\n     *\n     * where `3245` is the process id. If it is not run with that\n     * environment variable set, then it will not print anything.\n     *\n     * The `section` supports wildcard also:\n     *\n     * ```js\n     * import { debuglog } from 'node:util';\n     * const log = debuglog('foo');\n     *\n     * log('hi there, it\\'s foo-bar [%d]', 2333);\n     * ```\n     *\n     * if it is run with `NODE_DEBUG=foo*` in the environment, then it will output\n     * something like:\n     *\n     * ```console\n     * FOO-BAR 3257: hi there, it's foo-bar [2333]\n     * ```\n     *\n     * Multiple comma-separated `section` names may be specified in the `NODE_DEBUG`\n     * environment variable: `NODE_DEBUG=fs,net,tls`.\n     *\n     * The optional `callback` argument can be used to replace the logging function\n     * with a different function that doesn't have any initialization or\n     * unnecessary wrapping.\n     *\n     * ```js\n     * import { debuglog } from 'node:util';\n     * let log = debuglog('internals', (debug) => {\n     *   // Replace with a logging function that optimizes out\n     *   // testing if the section is enabled\n     *   log = debug;\n     * });\n     * ```\n     * @since v0.11.3\n     * @param section A string identifying the portion of the application for which the `debuglog` function is being created.\n     * @param callback A callback invoked the first time the logging function is called with a function argument that is a more optimized logging function.\n     * @return The logging function\n     */\n    export function debuglog(section: string, callback?: (fn: DebugLoggerFunction) => void): DebugLogger;\n    export { debuglog as debug };\n    /**\n     * Returns `true` if the given `object` is a `Boolean`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isBoolean(1);\n     * // Returns: false\n     * util.isBoolean(0);\n     * // Returns: false\n     * util.isBoolean(false);\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `typeof value === 'boolean'` instead.\n     */\n    export function isBoolean(object: unknown): object is boolean;\n    /**\n     * Returns `true` if the given `object` is a `Buffer`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isBuffer({ length: 0 });\n     * // Returns: false\n     * util.isBuffer([]);\n     * // Returns: false\n     * util.isBuffer(Buffer.from('hello world'));\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `isBuffer` instead.\n     */\n    export function isBuffer(object: unknown): object is Buffer;\n    /**\n     * Returns `true` if the given `object` is a `Function`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * function Foo() {}\n     * const Bar = () => {};\n     *\n     * util.isFunction({});\n     * // Returns: false\n     * util.isFunction(Foo);\n     * // Returns: true\n     * util.isFunction(Bar);\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `typeof value === 'function'` instead.\n     */\n    export function isFunction(object: unknown): boolean;\n    /**\n     * Returns `true` if the given `object` is strictly `null`. Otherwise, returns`false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isNull(0);\n     * // Returns: false\n     * util.isNull(undefined);\n     * // Returns: false\n     * util.isNull(null);\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `value === null` instead.\n     */\n    export function isNull(object: unknown): object is null;\n    /**\n     * Returns `true` if the given `object` is `null` or `undefined`. Otherwise,\n     * returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isNullOrUndefined(0);\n     * // Returns: false\n     * util.isNullOrUndefined(undefined);\n     * // Returns: true\n     * util.isNullOrUndefined(null);\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `value === undefined || value === null` instead.\n     */\n    export function isNullOrUndefined(object: unknown): object is null | undefined;\n    /**\n     * Returns `true` if the given `object` is a `Number`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isNumber(false);\n     * // Returns: false\n     * util.isNumber(Infinity);\n     * // Returns: true\n     * util.isNumber(0);\n     * // Returns: true\n     * util.isNumber(NaN);\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `typeof value === 'number'` instead.\n     */\n    export function isNumber(object: unknown): object is number;\n    /**\n     * Returns `true` if the given `object` is strictly an `Object`**and** not a`Function` (even though functions are objects in JavaScript).\n     * Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isObject(5);\n     * // Returns: false\n     * util.isObject(null);\n     * // Returns: false\n     * util.isObject({});\n     * // Returns: true\n     * util.isObject(() => {});\n     * // Returns: false\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `value !== null && typeof value === 'object'` instead.\n     */\n    export function isObject(object: unknown): boolean;\n    /**\n     * Returns `true` if the given `object` is a primitive type. Otherwise, returns`false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isPrimitive(5);\n     * // Returns: true\n     * util.isPrimitive('foo');\n     * // Returns: true\n     * util.isPrimitive(false);\n     * // Returns: true\n     * util.isPrimitive(null);\n     * // Returns: true\n     * util.isPrimitive(undefined);\n     * // Returns: true\n     * util.isPrimitive({});\n     * // Returns: false\n     * util.isPrimitive(() => {});\n     * // Returns: false\n     * util.isPrimitive(/^$/);\n     * // Returns: false\n     * util.isPrimitive(new Date());\n     * // Returns: false\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `(typeof value !== 'object' && typeof value !== 'function') || value === null` instead.\n     */\n    export function isPrimitive(object: unknown): boolean;\n    /**\n     * Returns `true` if the given `object` is a `string`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isString('');\n     * // Returns: true\n     * util.isString('foo');\n     * // Returns: true\n     * util.isString(String('foo'));\n     * // Returns: true\n     * util.isString(5);\n     * // Returns: false\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `typeof value === 'string'` instead.\n     */\n    export function isString(object: unknown): object is string;\n    /**\n     * Returns `true` if the given `object` is a `Symbol`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * util.isSymbol(5);\n     * // Returns: false\n     * util.isSymbol('foo');\n     * // Returns: false\n     * util.isSymbol(Symbol('foo'));\n     * // Returns: true\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `typeof value === 'symbol'` instead.\n     */\n    export function isSymbol(object: unknown): object is symbol;\n    /**\n     * Returns `true` if the given `object` is `undefined`. Otherwise, returns `false`.\n     *\n     * ```js\n     * import util from 'node:util';\n     *\n     * const foo = undefined;\n     * util.isUndefined(5);\n     * // Returns: false\n     * util.isUndefined(foo);\n     * // Returns: true\n     * util.isUndefined(null);\n     * // Returns: false\n     * ```\n     * @since v0.11.5\n     * @deprecated Since v4.0.0 - Use `value === undefined` instead.\n     */\n    export function isUndefined(object: unknown): object is undefined;\n    /**\n     * The `util.deprecate()` method wraps `fn` (which may be a function or class) in\n     * such a way that it is marked as deprecated.\n     *\n     * ```js\n     * import { deprecate } from 'node:util';\n     *\n     * export const obsoleteFunction = deprecate(() => {\n     *   // Do something here.\n     * }, 'obsoleteFunction() is deprecated. Use newShinyFunction() instead.');\n     * ```\n     *\n     * When called, `util.deprecate()` will return a function that will emit a\n     * `DeprecationWarning` using the `'warning'` event. The warning will\n     * be emitted and printed to `stderr` the first time the returned function is\n     * called. After the warning is emitted, the wrapped function is called without\n     * emitting a warning.\n     *\n     * If the same optional `code` is supplied in multiple calls to `util.deprecate()`,\n     * the warning will be emitted only once for that `code`.\n     *\n     * ```js\n     * import { deprecate } from 'node:util';\n     *\n     * const fn1 = deprecate(\n     *   () => 'a value',\n     *   'deprecation message',\n     *   'DEP0001',\n     * );\n     * const fn2 = deprecate(\n     *   () => 'a  different value',\n     *   'other dep message',\n     *   'DEP0001',\n     * );\n     * fn1(); // Emits a deprecation warning with code DEP0001\n     * fn2(); // Does not emit a deprecation warning because it has the same code\n     * ```\n     *\n     * If either the `--no-deprecation` or `--no-warnings` command-line flags are\n     * used, or if the `process.noDeprecation` property is set to `true` _prior_ to\n     * the first deprecation warning, the `util.deprecate()` method does nothing.\n     *\n     * If the `--trace-deprecation` or `--trace-warnings` command-line flags are set,\n     * or the `process.traceDeprecation` property is set to `true`, a warning and a\n     * stack trace are printed to `stderr` the first time the deprecated function is\n     * called.\n     *\n     * If the `--throw-deprecation` command-line flag is set, or the\n     * `process.throwDeprecation` property is set to `true`, then an exception will be\n     * thrown when the deprecated function is called.\n     *\n     * The `--throw-deprecation` command-line flag and `process.throwDeprecation`\n     * property take precedence over `--trace-deprecation` and\n     * `process.traceDeprecation`.\n     * @since v0.8.0\n     * @param fn The function that is being deprecated.\n     * @param msg A warning message to display when the deprecated function is invoked.\n     * @param code A deprecation code. See the `list of deprecated APIs` for a list of codes.\n     * @return The deprecated function wrapped to emit a warning.\n     */\n    export function deprecate<T extends Function>(fn: T, msg: string, code?: string): T;\n    /**\n     * Returns `true` if there is deep strict equality between `val1` and `val2`.\n     * Otherwise, returns `false`.\n     *\n     * See `assert.deepStrictEqual()` for more information about deep strict\n     * equality.\n     * @since v9.0.0\n     */\n    export function isDeepStrictEqual(val1: unknown, val2: unknown): boolean;\n    /**\n     * Returns `str` with any ANSI escape codes removed.\n     *\n     * ```js\n     * console.log(util.stripVTControlCharacters('\\u001B[4mvalue\\u001B[0m'));\n     * // Prints \"value\"\n     * ```\n     * @since v16.11.0\n     */\n    export function stripVTControlCharacters(str: string): string;\n    /**\n     * Takes an `async` function (or a function that returns a `Promise`) and returns a\n     * function following the error-first callback style, i.e. taking\n     * an `(err, value) => ...` callback as the last argument. In the callback, the\n     * first argument will be the rejection reason (or `null` if the `Promise`\n     * resolved), and the second argument will be the resolved value.\n     *\n     * ```js\n     * import { callbackify } from 'node:util';\n     *\n     * async function fn() {\n     *   return 'hello world';\n     * }\n     * const callbackFunction = callbackify(fn);\n     *\n     * callbackFunction((err, ret) => {\n     *   if (err) throw err;\n     *   console.log(ret);\n     * });\n     * ```\n     *\n     * Will print:\n     *\n     * ```text\n     * hello world\n     * ```\n     *\n     * The callback is executed asynchronously, and will have a limited stack trace.\n     * If the callback throws, the process will emit an `'uncaughtException'`\n     * event, and if not handled will exit.\n     *\n     * Since `null` has a special meaning as the first argument to a callback, if a\n     * wrapped function rejects a `Promise` with a falsy value as a reason, the value\n     * is wrapped in an `Error` with the original value stored in a field named\n     * `reason`.\n     *\n     * ```js\n     * function fn() {\n     *   return Promise.reject(null);\n     * }\n     * const callbackFunction = util.callbackify(fn);\n     *\n     * callbackFunction((err, ret) => {\n     *   // When the Promise was rejected with `null` it is wrapped with an Error and\n     *   // the original value is stored in `reason`.\n     *   err && Object.hasOwn(err, 'reason') && err.reason === null;  // true\n     * });\n     * ```\n     * @since v8.2.0\n     * @param fn An `async` function\n     * @return a callback style function\n     */\n    export function callbackify(fn: () => Promise<void>): (callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<TResult>(\n        fn: () => Promise<TResult>,\n    ): (callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void;\n    export function callbackify<T1>(\n        fn: (arg1: T1) => Promise<void>,\n    ): (arg1: T1, callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<T1, TResult>(\n        fn: (arg1: T1) => Promise<TResult>,\n    ): (arg1: T1, callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void;\n    export function callbackify<T1, T2>(\n        fn: (arg1: T1, arg2: T2) => Promise<void>,\n    ): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<T1, T2, TResult>(\n        fn: (arg1: T1, arg2: T2) => Promise<TResult>,\n    ): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;\n    export function callbackify<T1, T2, T3>(\n        fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<void>,\n    ): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<T1, T2, T3, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>,\n    ): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;\n    export function callbackify<T1, T2, T3, T4>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<T1, T2, T3, T4, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>,\n    ): (\n        arg1: T1,\n        arg2: T2,\n        arg3: T3,\n        arg4: T4,\n        callback: (err: NodeJS.ErrnoException | null, result: TResult) => void,\n    ) => void;\n    export function callbackify<T1, T2, T3, T4, T5>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException) => void) => void;\n    export function callbackify<T1, T2, T3, T4, T5, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>,\n    ): (\n        arg1: T1,\n        arg2: T2,\n        arg3: T3,\n        arg4: T4,\n        arg5: T5,\n        callback: (err: NodeJS.ErrnoException | null, result: TResult) => void,\n    ) => void;\n    export function callbackify<T1, T2, T3, T4, T5, T6>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<void>,\n    ): (\n        arg1: T1,\n        arg2: T2,\n        arg3: T3,\n        arg4: T4,\n        arg5: T5,\n        arg6: T6,\n        callback: (err: NodeJS.ErrnoException) => void,\n    ) => void;\n    export function callbackify<T1, T2, T3, T4, T5, T6, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<TResult>,\n    ): (\n        arg1: T1,\n        arg2: T2,\n        arg3: T3,\n        arg4: T4,\n        arg5: T5,\n        arg6: T6,\n        callback: (err: NodeJS.ErrnoException | null, result: TResult) => void,\n    ) => void;\n    export interface CustomPromisifyLegacy<TCustom extends Function> extends Function {\n        __promisify__: TCustom;\n    }\n    export interface CustomPromisifySymbol<TCustom extends Function> extends Function {\n        [promisify.custom]: TCustom;\n    }\n    export type CustomPromisify<TCustom extends Function> =\n        | CustomPromisifySymbol<TCustom>\n        | CustomPromisifyLegacy<TCustom>;\n    /**\n     * Takes a function following the common error-first callback style, i.e. taking\n     * an `(err, value) => ...` callback as the last argument, and returns a version\n     * that returns promises.\n     *\n     * ```js\n     * import { promisify } from 'node:util';\n     * import { stat } from 'node:fs';\n     *\n     * const promisifiedStat = promisify(stat);\n     * promisifiedStat('.').then((stats) => {\n     *   // Do something with `stats`\n     * }).catch((error) => {\n     *   // Handle the error.\n     * });\n     * ```\n     *\n     * Or, equivalently using `async function`s:\n     *\n     * ```js\n     * import { promisify } from 'node:util';\n     * import { stat } from 'node:fs';\n     *\n     * const promisifiedStat = promisify(stat);\n     *\n     * async function callStat() {\n     *   const stats = await promisifiedStat('.');\n     *   console.log(`This directory is owned by ${stats.uid}`);\n     * }\n     *\n     * callStat();\n     * ```\n     *\n     * If there is an `original[util.promisify.custom]` property present, `promisify`\n     * will return its value, see [Custom promisified functions](https://nodejs.org/docs/latest-v22.x/api/util.html#custom-promisified-functions).\n     *\n     * `promisify()` assumes that `original` is a function taking a callback as its\n     * final argument in all cases. If `original` is not a function, `promisify()`\n     * will throw an error. If `original` is a function but its last argument is not\n     * an error-first callback, it will still be passed an error-first\n     * callback as its last argument.\n     *\n     * Using `promisify()` on class methods or other methods that use `this` may not\n     * work as expected unless handled specially:\n     *\n     * ```js\n     * import { promisify } from 'node:util';\n     *\n     * class Foo {\n     *   constructor() {\n     *     this.a = 42;\n     *   }\n     *\n     *   bar(callback) {\n     *     callback(null, this.a);\n     *   }\n     * }\n     *\n     * const foo = new Foo();\n     *\n     * const naiveBar = promisify(foo.bar);\n     * // TypeError: Cannot read properties of undefined (reading 'a')\n     * // naiveBar().then(a => console.log(a));\n     *\n     * naiveBar.call(foo).then((a) => console.log(a)); // '42'\n     *\n     * const bindBar = naiveBar.bind(foo);\n     * bindBar().then((a) => console.log(a)); // '42'\n     * ```\n     * @since v8.0.0\n     */\n    export function promisify<TCustom extends Function>(fn: CustomPromisify<TCustom>): TCustom;\n    export function promisify<TResult>(\n        fn: (callback: (err: any, result: TResult) => void) => void,\n    ): () => Promise<TResult>;\n    export function promisify(fn: (callback: (err?: any) => void) => void): () => Promise<void>;\n    export function promisify<T1, TResult>(\n        fn: (arg1: T1, callback: (err: any, result: TResult) => void) => void,\n    ): (arg1: T1) => Promise<TResult>;\n    export function promisify<T1>(fn: (arg1: T1, callback: (err?: any) => void) => void): (arg1: T1) => Promise<void>;\n    export function promisify<T1, T2, TResult>(\n        fn: (arg1: T1, arg2: T2, callback: (err: any, result: TResult) => void) => void,\n    ): (arg1: T1, arg2: T2) => Promise<TResult>;\n    export function promisify<T1, T2>(\n        fn: (arg1: T1, arg2: T2, callback: (err?: any) => void) => void,\n    ): (arg1: T1, arg2: T2) => Promise<void>;\n    export function promisify<T1, T2, T3, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err: any, result: TResult) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>;\n    export function promisify<T1, T2, T3>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err?: any) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3) => Promise<void>;\n    export function promisify<T1, T2, T3, T4, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: any, result: TResult) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>;\n    export function promisify<T1, T2, T3, T4>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err?: any) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>;\n    export function promisify<T1, T2, T3, T4, T5, TResult>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: any, result: TResult) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>;\n    export function promisify<T1, T2, T3, T4, T5>(\n        fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err?: any) => void) => void,\n    ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>;\n    export function promisify(fn: Function): Function;\n    export namespace promisify {\n        /**\n         * That can be used to declare custom promisified variants of functions.\n         */\n        const custom: unique symbol;\n    }\n    /**\n     * Stability: 1.1 - Active development\n     * Given an example `.env` file:\n     *\n     * ```js\n     * import { parseEnv } from 'node:util';\n     *\n     * parseEnv('HELLO=world\\nHELLO=oh my\\n');\n     * // Returns: { HELLO: 'oh my' }\n     * ```\n     * @param content The raw contents of a `.env` file.\n     * @since v20.12.0\n     */\n    export function parseEnv(content: string): NodeJS.Dict<string>;\n    // https://nodejs.org/docs/latest/api/util.html#foreground-colors\n    type ForegroundColors =\n        | \"black\"\n        | \"blackBright\"\n        | \"blue\"\n        | \"blueBright\"\n        | \"cyan\"\n        | \"cyanBright\"\n        | \"gray\"\n        | \"green\"\n        | \"greenBright\"\n        | \"grey\"\n        | \"magenta\"\n        | \"magentaBright\"\n        | \"red\"\n        | \"redBright\"\n        | \"white\"\n        | \"whiteBright\"\n        | \"yellow\"\n        | \"yellowBright\";\n    // https://nodejs.org/docs/latest/api/util.html#background-colors\n    type BackgroundColors =\n        | \"bgBlack\"\n        | \"bgBlackBright\"\n        | \"bgBlue\"\n        | \"bgBlueBright\"\n        | \"bgCyan\"\n        | \"bgCyanBright\"\n        | \"bgGray\"\n        | \"bgGreen\"\n        | \"bgGreenBright\"\n        | \"bgGrey\"\n        | \"bgMagenta\"\n        | \"bgMagentaBright\"\n        | \"bgRed\"\n        | \"bgRedBright\"\n        | \"bgWhite\"\n        | \"bgWhiteBright\"\n        | \"bgYellow\"\n        | \"bgYellowBright\";\n    // https://nodejs.org/docs/latest/api/util.html#modifiers\n    type Modifiers =\n        | \"blink\"\n        | \"bold\"\n        | \"dim\"\n        | \"doubleunderline\"\n        | \"framed\"\n        | \"hidden\"\n        | \"inverse\"\n        | \"italic\"\n        | \"overlined\"\n        | \"reset\"\n        | \"strikethrough\"\n        | \"underline\";\n    export interface StyleTextOptions {\n        /**\n         * When true, `stream` is checked to see if it can handle colors.\n         * @default true\n         */\n        validateStream?: boolean | undefined;\n        /**\n         * A stream that will be validated if it can be colored.\n         * @default process.stdout\n         */\n        stream?: NodeJS.WritableStream | undefined;\n    }\n    /**\n     * This function returns a formatted text considering the `format` passed\n     * for printing in a terminal. It is aware of the terminal's capabilities\n     * and acts according to the configuration set via `NO_COLORS`,\n     * `NODE_DISABLE_COLORS` and `FORCE_COLOR` environment variables.\n     *\n     * ```js\n     * import { styleText } from 'node:util';\n     * import { stderr } from 'node:process';\n     *\n     * const successMessage = styleText('green', 'Success!');\n     * console.log(successMessage);\n     *\n     * const errorMessage = styleText(\n     *   'red',\n     *   'Error! Error!',\n     *   // Validate if process.stderr has TTY\n     *   { stream: stderr },\n     * );\n     * console.error(errorMessage);\n     * ```\n     *\n     * `util.inspect.colors` also provides text formats such as `italic`, and\n     * `underline` and you can combine both:\n     *\n     * ```js\n     * console.log(\n     *   util.styleText(['underline', 'italic'], 'My italic underlined message'),\n     * );\n     * ```\n     *\n     * When passing an array of formats, the order of the format applied\n     * is left to right so the following style might overwrite the previous one.\n     *\n     * ```js\n     * console.log(\n     *   util.styleText(['red', 'green'], 'text'), // green\n     * );\n     * ```\n     *\n     * The full list of formats can be found in [modifiers](https://nodejs.org/docs/latest-v22.x/api/util.html#modifiers).\n     * @param format A text format or an Array of text formats defined in `util.inspect.colors`.\n     * @param text The text to to be formatted.\n     * @since v20.12.0\n     */\n    export function styleText(\n        format:\n            | ForegroundColors\n            | BackgroundColors\n            | Modifiers\n            | Array<ForegroundColors | BackgroundColors | Modifiers>,\n        text: string,\n        options?: StyleTextOptions,\n    ): string;\n    /**\n     * An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextDecoder` API.\n     *\n     * ```js\n     * const decoder = new TextDecoder();\n     * const u8arr = new Uint8Array([72, 101, 108, 108, 111]);\n     * console.log(decoder.decode(u8arr)); // Hello\n     * ```\n     * @since v8.3.0\n     */\n    export class TextDecoder {\n        /**\n         * The encoding supported by the `TextDecoder` instance.\n         */\n        readonly encoding: string;\n        /**\n         * The value will be `true` if decoding errors result in a `TypeError` being\n         * thrown.\n         */\n        readonly fatal: boolean;\n        /**\n         * The value will be `true` if the decoding result will include the byte order\n         * mark.\n         */\n        readonly ignoreBOM: boolean;\n        constructor(\n            encoding?: string,\n            options?: {\n                fatal?: boolean | undefined;\n                ignoreBOM?: boolean | undefined;\n            },\n        );\n        /**\n         * Decodes the `input` and returns a string. If `options.stream` is `true`, any\n         * incomplete byte sequences occurring at the end of the `input` are buffered\n         * internally and emitted after the next call to `textDecoder.decode()`.\n         *\n         * If `textDecoder.fatal` is `true`, decoding errors that occur will result in a `TypeError` being thrown.\n         * @param input An `ArrayBuffer`, `DataView`, or `TypedArray` instance containing the encoded data.\n         */\n        decode(\n            input?: NodeJS.ArrayBufferView | ArrayBuffer | null,\n            options?: {\n                stream?: boolean | undefined;\n            },\n        ): string;\n    }\n    export interface EncodeIntoResult {\n        /**\n         * The read Unicode code units of input.\n         */\n        read: number;\n        /**\n         * The written UTF-8 bytes of output.\n         */\n        written: number;\n    }\n    export { types };\n\n    //// TextEncoder/Decoder\n    /**\n     * An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextEncoder` API. All\n     * instances of `TextEncoder` only support UTF-8 encoding.\n     *\n     * ```js\n     * const encoder = new TextEncoder();\n     * const uint8array = encoder.encode('this is some data');\n     * ```\n     *\n     * The `TextEncoder` class is also available on the global object.\n     * @since v8.3.0\n     */\n    export class TextEncoder {\n        /**\n         * The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`.\n         */\n        readonly encoding: string;\n        /**\n         * UTF-8 encodes the `input` string and returns a `Uint8Array` containing the\n         * encoded bytes.\n         * @param [input='an empty string'] The text to encode.\n         */\n        encode(input?: string): Uint8Array;\n        /**\n         * UTF-8 encodes the `src` string to the `dest` Uint8Array and returns an object\n         * containing the read Unicode code units and written UTF-8 bytes.\n         *\n         * ```js\n         * const encoder = new TextEncoder();\n         * const src = 'this is some data';\n         * const dest = new Uint8Array(10);\n         * const { read, written } = encoder.encodeInto(src, dest);\n         * ```\n         * @param src The text to encode.\n         * @param dest The array to hold the encode result.\n         */\n        encodeInto(src: string, dest: Uint8Array): EncodeIntoResult;\n    }\n    import { TextDecoder as _TextDecoder, TextEncoder as _TextEncoder } from \"util\";\n    global {\n        /**\n         * `TextDecoder` class is a global reference for `import { TextDecoder } from 'node:util'`\n         * https://nodejs.org/api/globals.html#textdecoder\n         * @since v11.0.0\n         */\n        var TextDecoder: typeof globalThis extends {\n            onmessage: any;\n            TextDecoder: infer TextDecoder;\n        } ? TextDecoder\n            : typeof _TextDecoder;\n        /**\n         * `TextEncoder` class is a global reference for `import { TextEncoder } from 'node:util'`\n         * https://nodejs.org/api/globals.html#textencoder\n         * @since v11.0.0\n         */\n        var TextEncoder: typeof globalThis extends {\n            onmessage: any;\n            TextEncoder: infer TextEncoder;\n        } ? TextEncoder\n            : typeof _TextEncoder;\n    }\n\n    //// parseArgs\n    /**\n     * Provides a higher level API for command-line argument parsing than interacting\n     * with `process.argv` directly. Takes a specification for the expected arguments\n     * and returns a structured object with the parsed options and positionals.\n     *\n     * ```js\n     * import { parseArgs } from 'node:util';\n     * const args = ['-f', '--bar', 'b'];\n     * const options = {\n     *   foo: {\n     *     type: 'boolean',\n     *     short: 'f',\n     *   },\n     *   bar: {\n     *     type: 'string',\n     *   },\n     * };\n     * const {\n     *   values,\n     *   positionals,\n     * } = parseArgs({ args, options });\n     * console.log(values, positionals);\n     * // Prints: [Object: null prototype] { foo: true, bar: 'b' } []\n     * ```\n     * @since v18.3.0, v16.17.0\n     * @param config Used to provide arguments for parsing and to configure the parser. `config` supports the following properties:\n     * @return The parsed command line arguments:\n     */\n    export function parseArgs<T extends ParseArgsConfig>(config?: T): ParsedResults<T>;\n\n    /**\n     * Type of argument used in {@link parseArgs}.\n     */\n    export type ParseArgsOptionsType = \"boolean\" | \"string\";\n\n    export interface ParseArgsOptionDescriptor {\n        /**\n         * Type of argument.\n         */\n        type: ParseArgsOptionsType;\n        /**\n         * Whether this option can be provided multiple times.\n         * If `true`, all values will be collected in an array.\n         * If `false`, values for the option are last-wins.\n         * @default false.\n         */\n        multiple?: boolean | undefined;\n        /**\n         * A single character alias for the option.\n         */\n        short?: string | undefined;\n        /**\n         * The default value to\n         * be used if (and only if) the option does not appear in the arguments to be\n         * parsed. It must be of the same type as the `type` property. When `multiple`\n         * is `true`, it must be an array.\n         * @since v18.11.0\n         */\n        default?: string | boolean | string[] | boolean[] | undefined;\n    }\n    export interface ParseArgsOptionsConfig {\n        [longOption: string]: ParseArgsOptionDescriptor;\n    }\n    export interface ParseArgsConfig {\n        /**\n         * Array of argument strings.\n         */\n        args?: string[] | undefined;\n        /**\n         * Used to describe arguments known to the parser.\n         */\n        options?: ParseArgsOptionsConfig | undefined;\n        /**\n         * Should an error be thrown when unknown arguments are encountered,\n         * or when arguments are passed that do not match the `type` configured in `options`.\n         * @default true\n         */\n        strict?: boolean | undefined;\n        /**\n         * Whether this command accepts positional arguments.\n         */\n        allowPositionals?: boolean | undefined;\n        /**\n         * If `true`, allows explicitly setting boolean options to `false` by prefixing the option name with `--no-`.\n         * @default false\n         * @since v22.4.0\n         */\n        allowNegative?: boolean | undefined;\n        /**\n         * Return the parsed tokens. This is useful for extending the built-in behavior,\n         * from adding additional checks through to reprocessing the tokens in different ways.\n         * @default false\n         */\n        tokens?: boolean | undefined;\n    }\n    /*\n    IfDefaultsTrue and IfDefaultsFalse are helpers to handle default values for missing boolean properties.\n    TypeScript does not have exact types for objects: https://github.com/microsoft/TypeScript/issues/12936\n    This means it is impossible to distinguish between \"field X is definitely not present\" and \"field X may or may not be present\".\n    But we expect users to generally provide their config inline or `as const`, which means TS will always know whether a given field is present.\n    So this helper treats \"not definitely present\" (i.e., not `extends boolean`) as being \"definitely not present\", i.e. it should have its default value.\n    This is technically incorrect but is a much nicer UX for the common case.\n    The IfDefaultsTrue version is for things which default to true; the IfDefaultsFalse version is for things which default to false.\n    */\n    type IfDefaultsTrue<T, IfTrue, IfFalse> = T extends true ? IfTrue\n        : T extends false ? IfFalse\n        : IfTrue;\n\n    // we put the `extends false` condition first here because `undefined` compares like `any` when `strictNullChecks: false`\n    type IfDefaultsFalse<T, IfTrue, IfFalse> = T extends false ? IfFalse\n        : T extends true ? IfTrue\n        : IfFalse;\n\n    type ExtractOptionValue<T extends ParseArgsConfig, O extends ParseArgsOptionDescriptor> = IfDefaultsTrue<\n        T[\"strict\"],\n        O[\"type\"] extends \"string\" ? string : O[\"type\"] extends \"boolean\" ? boolean : string | boolean,\n        string | boolean\n    >;\n\n    type ApplyOptionalModifiers<O extends ParseArgsOptionsConfig, V extends Record<keyof O, unknown>> = (\n        & { -readonly [LongOption in keyof O]?: V[LongOption] }\n        & { [LongOption in keyof O as O[LongOption][\"default\"] extends {} ? LongOption : never]: V[LongOption] }\n    ) extends infer P ? { [K in keyof P]: P[K] } : never; // resolve intersection to object\n\n    type ParsedValues<T extends ParseArgsConfig> =\n        & IfDefaultsTrue<T[\"strict\"], unknown, { [longOption: string]: undefined | string | boolean }>\n        & (T[\"options\"] extends ParseArgsOptionsConfig ? ApplyOptionalModifiers<\n                T[\"options\"],\n                {\n                    [LongOption in keyof T[\"options\"]]: IfDefaultsFalse<\n                        T[\"options\"][LongOption][\"multiple\"],\n                        Array<ExtractOptionValue<T, T[\"options\"][LongOption]>>,\n                        ExtractOptionValue<T, T[\"options\"][LongOption]>\n                    >;\n                }\n            >\n            : {});\n\n    type ParsedPositionals<T extends ParseArgsConfig> = IfDefaultsTrue<\n        T[\"strict\"],\n        IfDefaultsFalse<T[\"allowPositionals\"], string[], []>,\n        IfDefaultsTrue<T[\"allowPositionals\"], string[], []>\n    >;\n\n    type PreciseTokenForOptions<\n        K extends string,\n        O extends ParseArgsOptionDescriptor,\n    > = O[\"type\"] extends \"string\" ? {\n            kind: \"option\";\n            index: number;\n            name: K;\n            rawName: string;\n            value: string;\n            inlineValue: boolean;\n        }\n        : O[\"type\"] extends \"boolean\" ? {\n                kind: \"option\";\n                index: number;\n                name: K;\n                rawName: string;\n                value: undefined;\n                inlineValue: undefined;\n            }\n        : OptionToken & { name: K };\n\n    type TokenForOptions<\n        T extends ParseArgsConfig,\n        K extends keyof T[\"options\"] = keyof T[\"options\"],\n    > = K extends unknown\n        ? T[\"options\"] extends ParseArgsOptionsConfig ? PreciseTokenForOptions<K & string, T[\"options\"][K]>\n        : OptionToken\n        : never;\n\n    type ParsedOptionToken<T extends ParseArgsConfig> = IfDefaultsTrue<T[\"strict\"], TokenForOptions<T>, OptionToken>;\n\n    type ParsedPositionalToken<T extends ParseArgsConfig> = IfDefaultsTrue<\n        T[\"strict\"],\n        IfDefaultsFalse<T[\"allowPositionals\"], { kind: \"positional\"; index: number; value: string }, never>,\n        IfDefaultsTrue<T[\"allowPositionals\"], { kind: \"positional\"; index: number; value: string }, never>\n    >;\n\n    type ParsedTokens<T extends ParseArgsConfig> = Array<\n        ParsedOptionToken<T> | ParsedPositionalToken<T> | { kind: \"option-terminator\"; index: number }\n    >;\n\n    type PreciseParsedResults<T extends ParseArgsConfig> = IfDefaultsFalse<\n        T[\"tokens\"],\n        {\n            values: ParsedValues<T>;\n            positionals: ParsedPositionals<T>;\n            tokens: ParsedTokens<T>;\n        },\n        {\n            values: ParsedValues<T>;\n            positionals: ParsedPositionals<T>;\n        }\n    >;\n\n    type OptionToken =\n        | { kind: \"option\"; index: number; name: string; rawName: string; value: string; inlineValue: boolean }\n        | {\n            kind: \"option\";\n            index: number;\n            name: string;\n            rawName: string;\n            value: undefined;\n            inlineValue: undefined;\n        };\n\n    type Token =\n        | OptionToken\n        | { kind: \"positional\"; index: number; value: string }\n        | { kind: \"option-terminator\"; index: number };\n\n    // If ParseArgsConfig extends T, then the user passed config constructed elsewhere.\n    // So we can't rely on the `\"not definitely present\" implies \"definitely not present\"` assumption mentioned above.\n    type ParsedResults<T extends ParseArgsConfig> = ParseArgsConfig extends T ? {\n            values: {\n                [longOption: string]: undefined | string | boolean | Array<string | boolean>;\n            };\n            positionals: string[];\n            tokens?: Token[];\n        }\n        : PreciseParsedResults<T>;\n\n    /**\n     * An implementation of [the MIMEType class](https://bmeck.github.io/node-proposal-mime-api/).\n     *\n     * In accordance with browser conventions, all properties of `MIMEType` objects\n     * are implemented as getters and setters on the class prototype, rather than as\n     * data properties on the object itself.\n     *\n     * A MIME string is a structured string containing multiple meaningful\n     * components. When parsed, a `MIMEType` object is returned containing\n     * properties for each of these components.\n     * @since v19.1.0, v18.13.0\n     */\n    export class MIMEType {\n        /**\n         * Creates a new MIMEType object by parsing the input.\n         *\n         * A `TypeError` will be thrown if the `input` is not a valid MIME.\n         * Note that an effort will be made to coerce the given values into strings.\n         * @param input The input MIME to parse.\n         */\n        constructor(input: string | { toString: () => string });\n\n        /**\n         * Gets and sets the type portion of the MIME.\n         *\n         * ```js\n         * import { MIMEType } from 'node:util';\n         *\n         * const myMIME = new MIMEType('text/javascript');\n         * console.log(myMIME.type);\n         * // Prints: text\n         * myMIME.type = 'application';\n         * console.log(myMIME.type);\n         * // Prints: application\n         * console.log(String(myMIME));\n         * // Prints: application/javascript\n         * ```\n         */\n        type: string;\n        /**\n         * Gets and sets the subtype portion of the MIME.\n         *\n         * ```js\n         * import { MIMEType } from 'node:util';\n         *\n         * const myMIME = new MIMEType('text/ecmascript');\n         * console.log(myMIME.subtype);\n         * // Prints: ecmascript\n         * myMIME.subtype = 'javascript';\n         * console.log(myMIME.subtype);\n         * // Prints: javascript\n         * console.log(String(myMIME));\n         * // Prints: text/javascript\n         * ```\n         */\n        subtype: string;\n        /**\n         * Gets the essence of the MIME. This property is read only.\n         * Use `mime.type` or `mime.subtype` to alter the MIME.\n         *\n         * ```js\n         * import { MIMEType } from 'node:util';\n         *\n         * const myMIME = new MIMEType('text/javascript;key=value');\n         * console.log(myMIME.essence);\n         * // Prints: text/javascript\n         * myMIME.type = 'application';\n         * console.log(myMIME.essence);\n         * // Prints: application/javascript\n         * console.log(String(myMIME));\n         * // Prints: application/javascript;key=value\n         * ```\n         */\n        readonly essence: string;\n        /**\n         * Gets the `MIMEParams` object representing the\n         * parameters of the MIME. This property is read-only. See `MIMEParams` documentation for details.\n         */\n        readonly params: MIMEParams;\n        /**\n         * The `toString()` method on the `MIMEType` object returns the serialized MIME.\n         *\n         * Because of the need for standard compliance, this method does not allow users\n         * to customize the serialization process of the MIME.\n         */\n        toString(): string;\n    }\n    /**\n     * The `MIMEParams` API provides read and write access to the parameters of a `MIMEType`.\n     * @since v19.1.0, v18.13.0\n     */\n    export class MIMEParams {\n        /**\n         * Remove all name-value pairs whose name is `name`.\n         */\n        delete(name: string): void;\n        /**\n         * Returns an iterator over each of the name-value pairs in the parameters.\n         * Each item of the iterator is a JavaScript `Array`. The first item of the array\n         * is the `name`, the second item of the array is the `value`.\n         */\n        entries(): NodeJS.Iterator<[name: string, value: string]>;\n        /**\n         * Returns the value of the first name-value pair whose name is `name`. If there\n         * are no such pairs, `null` is returned.\n         * @return or `null` if there is no name-value pair with the given `name`.\n         */\n        get(name: string): string | null;\n        /**\n         * Returns `true` if there is at least one name-value pair whose name is `name`.\n         */\n        has(name: string): boolean;\n        /**\n         * Returns an iterator over the names of each name-value pair.\n         *\n         * ```js\n         * import { MIMEType } from 'node:util';\n         *\n         * const { params } = new MIMEType('text/plain;foo=0;bar=1');\n         * for (const name of params.keys()) {\n         *   console.log(name);\n         * }\n         * // Prints:\n         * //   foo\n         * //   bar\n         * ```\n         */\n        keys(): NodeJS.Iterator<string>;\n        /**\n         * Sets the value in the `MIMEParams` object associated with `name` to `value`. If there are any pre-existing name-value pairs whose names are `name`,\n         * set the first such pair's value to `value`.\n         *\n         * ```js\n         * import { MIMEType } from 'node:util';\n         *\n         * const { params } = new MIMEType('text/plain;foo=0;bar=1');\n         * params.set('foo', 'def');\n         * params.set('baz', 'xyz');\n         * console.log(params.toString());\n         * // Prints: foo=def;bar=1;baz=xyz\n         * ```\n         */\n        set(name: string, value: string): void;\n        /**\n         * Returns an iterator over the values of each name-value pair.\n         */\n        values(): NodeJS.Iterator<string>;\n        /**\n         * Returns an iterator over each of the name-value pairs in the parameters.\n         */\n        [Symbol.iterator](): NodeJS.Iterator<[name: string, value: string]>;\n    }\n}\ndeclare module \"util/types\" {\n    import { KeyObject, webcrypto } from \"node:crypto\";\n    /**\n     * Returns `true` if the value is a built-in [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) or\n     * [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instance.\n     *\n     * See also `util.types.isArrayBuffer()` and `util.types.isSharedArrayBuffer()`.\n     *\n     * ```js\n     * util.types.isAnyArrayBuffer(new ArrayBuffer());  // Returns true\n     * util.types.isAnyArrayBuffer(new SharedArrayBuffer());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isAnyArrayBuffer(object: unknown): object is ArrayBufferLike;\n    /**\n     * Returns `true` if the value is an `arguments` object.\n     *\n     * ```js\n     * function foo() {\n     *   util.types.isArgumentsObject(arguments);  // Returns true\n     * }\n     * ```\n     * @since v10.0.0\n     */\n    function isArgumentsObject(object: unknown): object is IArguments;\n    /**\n     * Returns `true` if the value is a built-in [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) instance.\n     * This does _not_ include [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instances. Usually, it is\n     * desirable to test for both; See `util.types.isAnyArrayBuffer()` for that.\n     *\n     * ```js\n     * util.types.isArrayBuffer(new ArrayBuffer());  // Returns true\n     * util.types.isArrayBuffer(new SharedArrayBuffer());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isArrayBuffer(object: unknown): object is ArrayBuffer;\n    /**\n     * Returns `true` if the value is an instance of one of the [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) views, such as typed\n     * array objects or [`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView). Equivalent to\n     * [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView).\n     *\n     * ```js\n     * util.types.isArrayBufferView(new Int8Array());  // true\n     * util.types.isArrayBufferView(Buffer.from('hello world')); // true\n     * util.types.isArrayBufferView(new DataView(new ArrayBuffer(16)));  // true\n     * util.types.isArrayBufferView(new ArrayBuffer());  // false\n     * ```\n     * @since v10.0.0\n     */\n    function isArrayBufferView(object: unknown): object is NodeJS.ArrayBufferView;\n    /**\n     * Returns `true` if the value is an [async function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function).\n     * This only reports back what the JavaScript engine is seeing;\n     * in particular, the return value may not match the original source code if\n     * a transpilation tool was used.\n     *\n     * ```js\n     * util.types.isAsyncFunction(function foo() {});  // Returns false\n     * util.types.isAsyncFunction(async function foo() {});  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isAsyncFunction(object: unknown): boolean;\n    /**\n     * Returns `true` if the value is a `BigInt64Array` instance.\n     *\n     * ```js\n     * util.types.isBigInt64Array(new BigInt64Array());   // Returns true\n     * util.types.isBigInt64Array(new BigUint64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isBigInt64Array(value: unknown): value is BigInt64Array;\n    /**\n     * Returns `true` if the value is a BigInt object, e.g. created\n     * by `Object(BigInt(123))`.\n     *\n     * ```js\n     * util.types.isBigIntObject(Object(BigInt(123)));   // Returns true\n     * util.types.isBigIntObject(BigInt(123));   // Returns false\n     * util.types.isBigIntObject(123);  // Returns false\n     * ```\n     * @since v10.4.0\n     */\n    function isBigIntObject(object: unknown): object is BigInt;\n    /**\n     * Returns `true` if the value is a `BigUint64Array` instance.\n     *\n     * ```js\n     * util.types.isBigUint64Array(new BigInt64Array());   // Returns false\n     * util.types.isBigUint64Array(new BigUint64Array());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isBigUint64Array(value: unknown): value is BigUint64Array;\n    /**\n     * Returns `true` if the value is a boolean object, e.g. created\n     * by `new Boolean()`.\n     *\n     * ```js\n     * util.types.isBooleanObject(false);  // Returns false\n     * util.types.isBooleanObject(true);   // Returns false\n     * util.types.isBooleanObject(new Boolean(false)); // Returns true\n     * util.types.isBooleanObject(new Boolean(true));  // Returns true\n     * util.types.isBooleanObject(Boolean(false)); // Returns false\n     * util.types.isBooleanObject(Boolean(true));  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isBooleanObject(object: unknown): object is Boolean;\n    /**\n     * Returns `true` if the value is any boxed primitive object, e.g. created\n     * by `new Boolean()`, `new String()` or `Object(Symbol())`.\n     *\n     * For example:\n     *\n     * ```js\n     * util.types.isBoxedPrimitive(false); // Returns false\n     * util.types.isBoxedPrimitive(new Boolean(false)); // Returns true\n     * util.types.isBoxedPrimitive(Symbol('foo')); // Returns false\n     * util.types.isBoxedPrimitive(Object(Symbol('foo'))); // Returns true\n     * util.types.isBoxedPrimitive(Object(BigInt(5))); // Returns true\n     * ```\n     * @since v10.11.0\n     */\n    function isBoxedPrimitive(object: unknown): object is String | Number | BigInt | Boolean | Symbol;\n    /**\n     * Returns `true` if the value is a built-in [`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView) instance.\n     *\n     * ```js\n     * const ab = new ArrayBuffer(20);\n     * util.types.isDataView(new DataView(ab));  // Returns true\n     * util.types.isDataView(new Float64Array());  // Returns false\n     * ```\n     *\n     * See also [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView).\n     * @since v10.0.0\n     */\n    function isDataView(object: unknown): object is DataView;\n    /**\n     * Returns `true` if the value is a built-in [`Date`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) instance.\n     *\n     * ```js\n     * util.types.isDate(new Date());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isDate(object: unknown): object is Date;\n    /**\n     * Returns `true` if the value is a native `External` value.\n     *\n     * A native `External` value is a special type of object that contains a\n     * raw C++ pointer (`void*`) for access from native code, and has no other\n     * properties. Such objects are created either by Node.js internals or native\n     * addons. In JavaScript, they are\n     * [frozen](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze) objects with a\n     * `null` prototype.\n     *\n     * ```c\n     * #include <js_native_api.h>\n     * #include <stdlib.h>\n     * napi_value result;\n     * static napi_value MyNapi(napi_env env, napi_callback_info info) {\n     *   int* raw = (int*) malloc(1024);\n     *   napi_status status = napi_create_external(env, (void*) raw, NULL, NULL, &result);\n     *   if (status != napi_ok) {\n     *     napi_throw_error(env, NULL, \"napi_create_external failed\");\n     *     return NULL;\n     *   }\n     *   return result;\n     * }\n     * ...\n     * DECLARE_NAPI_PROPERTY(\"myNapi\", MyNapi)\n     * ...\n     * ```\n     *\n     * ```js\n     * import native from 'napi_addon.node';\n     * import { types } from 'node:util';\n     *\n     * const data = native.myNapi();\n     * types.isExternal(data); // returns true\n     * types.isExternal(0); // returns false\n     * types.isExternal(new String('foo')); // returns false\n     * ```\n     *\n     * For further information on `napi_create_external`, refer to\n     * [`napi_create_external()`](https://nodejs.org/docs/latest-v22.x/api/n-api.html#napi_create_external).\n     * @since v10.0.0\n     */\n    function isExternal(object: unknown): boolean;\n    /**\n     * Returns `true` if the value is a built-in [`Float32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array) instance.\n     *\n     * ```js\n     * util.types.isFloat32Array(new ArrayBuffer());  // Returns false\n     * util.types.isFloat32Array(new Float32Array());  // Returns true\n     * util.types.isFloat32Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isFloat32Array(object: unknown): object is Float32Array;\n    /**\n     * Returns `true` if the value is a built-in [`Float64Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array) instance.\n     *\n     * ```js\n     * util.types.isFloat64Array(new ArrayBuffer());  // Returns false\n     * util.types.isFloat64Array(new Uint8Array());  // Returns false\n     * util.types.isFloat64Array(new Float64Array());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isFloat64Array(object: unknown): object is Float64Array;\n    /**\n     * Returns `true` if the value is a generator function.\n     * This only reports back what the JavaScript engine is seeing;\n     * in particular, the return value may not match the original source code if\n     * a transpilation tool was used.\n     *\n     * ```js\n     * util.types.isGeneratorFunction(function foo() {});  // Returns false\n     * util.types.isGeneratorFunction(function* foo() {});  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isGeneratorFunction(object: unknown): object is GeneratorFunction;\n    /**\n     * Returns `true` if the value is a generator object as returned from a\n     * built-in generator function.\n     * This only reports back what the JavaScript engine is seeing;\n     * in particular, the return value may not match the original source code if\n     * a transpilation tool was used.\n     *\n     * ```js\n     * function* foo() {}\n     * const generator = foo();\n     * util.types.isGeneratorObject(generator);  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isGeneratorObject(object: unknown): object is Generator;\n    /**\n     * Returns `true` if the value is a built-in [`Int8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array) instance.\n     *\n     * ```js\n     * util.types.isInt8Array(new ArrayBuffer());  // Returns false\n     * util.types.isInt8Array(new Int8Array());  // Returns true\n     * util.types.isInt8Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isInt8Array(object: unknown): object is Int8Array;\n    /**\n     * Returns `true` if the value is a built-in [`Int16Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array) instance.\n     *\n     * ```js\n     * util.types.isInt16Array(new ArrayBuffer());  // Returns false\n     * util.types.isInt16Array(new Int16Array());  // Returns true\n     * util.types.isInt16Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isInt16Array(object: unknown): object is Int16Array;\n    /**\n     * Returns `true` if the value is a built-in [`Int32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array) instance.\n     *\n     * ```js\n     * util.types.isInt32Array(new ArrayBuffer());  // Returns false\n     * util.types.isInt32Array(new Int32Array());  // Returns true\n     * util.types.isInt32Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isInt32Array(object: unknown): object is Int32Array;\n    /**\n     * Returns `true` if the value is a built-in [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) instance.\n     *\n     * ```js\n     * util.types.isMap(new Map());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isMap<T>(\n        object: T | {},\n    ): object is T extends ReadonlyMap<any, any> ? (unknown extends T ? never : ReadonlyMap<any, any>)\n        : Map<unknown, unknown>;\n    /**\n     * Returns `true` if the value is an iterator returned for a built-in [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) instance.\n     *\n     * ```js\n     * const map = new Map();\n     * util.types.isMapIterator(map.keys());  // Returns true\n     * util.types.isMapIterator(map.values());  // Returns true\n     * util.types.isMapIterator(map.entries());  // Returns true\n     * util.types.isMapIterator(map[Symbol.iterator]());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isMapIterator(object: unknown): boolean;\n    /**\n     * Returns `true` if the value is an instance of a [Module Namespace Object](https://tc39.github.io/ecma262/#sec-module-namespace-exotic-objects).\n     *\n     * ```js\n     * import * as ns from './a.js';\n     *\n     * util.types.isModuleNamespaceObject(ns);  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isModuleNamespaceObject(value: unknown): boolean;\n    /**\n     * Returns `true` if the value was returned by the constructor of a\n     * [built-in `Error` type](https://tc39.es/ecma262/#sec-error-objects).\n     *\n     * ```js\n     * console.log(util.types.isNativeError(new Error()));  // true\n     * console.log(util.types.isNativeError(new TypeError()));  // true\n     * console.log(util.types.isNativeError(new RangeError()));  // true\n     * ```\n     *\n     * Subclasses of the native error types are also native errors:\n     *\n     * ```js\n     * class MyError extends Error {}\n     * console.log(util.types.isNativeError(new MyError()));  // true\n     * ```\n     *\n     * A value being `instanceof` a native error class is not equivalent to `isNativeError()`\n     * returning `true` for that value. `isNativeError()` returns `true` for errors\n     * which come from a different [realm](https://tc39.es/ecma262/#realm) while `instanceof Error` returns `false`\n     * for these errors:\n     *\n     * ```js\n     * import { createContext, runInContext } from 'node:vm';\n     * import { types } from 'node:util';\n     *\n     * const context = createContext({});\n     * const myError = runInContext('new Error()', context);\n     * console.log(types.isNativeError(myError)); // true\n     * console.log(myError instanceof Error); // false\n     * ```\n     *\n     * Conversely, `isNativeError()` returns `false` for all objects which were not\n     * returned by the constructor of a native error. That includes values\n     * which are `instanceof` native errors:\n     *\n     * ```js\n     * const myError = { __proto__: Error.prototype };\n     * console.log(util.types.isNativeError(myError)); // false\n     * console.log(myError instanceof Error); // true\n     * ```\n     * @since v10.0.0\n     */\n    function isNativeError(object: unknown): object is Error;\n    /**\n     * Returns `true` if the value is a number object, e.g. created\n     * by `new Number()`.\n     *\n     * ```js\n     * util.types.isNumberObject(0);  // Returns false\n     * util.types.isNumberObject(new Number(0));   // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isNumberObject(object: unknown): object is Number;\n    /**\n     * Returns `true` if the value is a built-in [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).\n     *\n     * ```js\n     * util.types.isPromise(Promise.resolve(42));  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isPromise(object: unknown): object is Promise<unknown>;\n    /**\n     * Returns `true` if the value is a [`Proxy`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) instance.\n     *\n     * ```js\n     * const target = {};\n     * const proxy = new Proxy(target, {});\n     * util.types.isProxy(target);  // Returns false\n     * util.types.isProxy(proxy);  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isProxy(object: unknown): boolean;\n    /**\n     * Returns `true` if the value is a regular expression object.\n     *\n     * ```js\n     * util.types.isRegExp(/abc/);  // Returns true\n     * util.types.isRegExp(new RegExp('abc'));  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isRegExp(object: unknown): object is RegExp;\n    /**\n     * Returns `true` if the value is a built-in [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instance.\n     *\n     * ```js\n     * util.types.isSet(new Set());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isSet<T>(\n        object: T | {},\n    ): object is T extends ReadonlySet<any> ? (unknown extends T ? never : ReadonlySet<any>) : Set<unknown>;\n    /**\n     * Returns `true` if the value is an iterator returned for a built-in [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instance.\n     *\n     * ```js\n     * const set = new Set();\n     * util.types.isSetIterator(set.keys());  // Returns true\n     * util.types.isSetIterator(set.values());  // Returns true\n     * util.types.isSetIterator(set.entries());  // Returns true\n     * util.types.isSetIterator(set[Symbol.iterator]());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isSetIterator(object: unknown): boolean;\n    /**\n     * Returns `true` if the value is a built-in [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instance.\n     * This does _not_ include [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) instances. Usually, it is\n     * desirable to test for both; See `util.types.isAnyArrayBuffer()` for that.\n     *\n     * ```js\n     * util.types.isSharedArrayBuffer(new ArrayBuffer());  // Returns false\n     * util.types.isSharedArrayBuffer(new SharedArrayBuffer());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isSharedArrayBuffer(object: unknown): object is SharedArrayBuffer;\n    /**\n     * Returns `true` if the value is a string object, e.g. created\n     * by `new String()`.\n     *\n     * ```js\n     * util.types.isStringObject('foo');  // Returns false\n     * util.types.isStringObject(new String('foo'));   // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isStringObject(object: unknown): object is String;\n    /**\n     * Returns `true` if the value is a symbol object, created\n     * by calling `Object()` on a `Symbol` primitive.\n     *\n     * ```js\n     * const symbol = Symbol('foo');\n     * util.types.isSymbolObject(symbol);  // Returns false\n     * util.types.isSymbolObject(Object(symbol));   // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isSymbolObject(object: unknown): object is Symbol;\n    /**\n     * Returns `true` if the value is a built-in [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) instance.\n     *\n     * ```js\n     * util.types.isTypedArray(new ArrayBuffer());  // Returns false\n     * util.types.isTypedArray(new Uint8Array());  // Returns true\n     * util.types.isTypedArray(new Float64Array());  // Returns true\n     * ```\n     *\n     * See also [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView).\n     * @since v10.0.0\n     */\n    function isTypedArray(object: unknown): object is NodeJS.TypedArray;\n    /**\n     * Returns `true` if the value is a built-in [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) instance.\n     *\n     * ```js\n     * util.types.isUint8Array(new ArrayBuffer());  // Returns false\n     * util.types.isUint8Array(new Uint8Array());  // Returns true\n     * util.types.isUint8Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isUint8Array(object: unknown): object is Uint8Array;\n    /**\n     * Returns `true` if the value is a built-in [`Uint8ClampedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray) instance.\n     *\n     * ```js\n     * util.types.isUint8ClampedArray(new ArrayBuffer());  // Returns false\n     * util.types.isUint8ClampedArray(new Uint8ClampedArray());  // Returns true\n     * util.types.isUint8ClampedArray(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isUint8ClampedArray(object: unknown): object is Uint8ClampedArray;\n    /**\n     * Returns `true` if the value is a built-in [`Uint16Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array) instance.\n     *\n     * ```js\n     * util.types.isUint16Array(new ArrayBuffer());  // Returns false\n     * util.types.isUint16Array(new Uint16Array());  // Returns true\n     * util.types.isUint16Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isUint16Array(object: unknown): object is Uint16Array;\n    /**\n     * Returns `true` if the value is a built-in [`Uint32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array) instance.\n     *\n     * ```js\n     * util.types.isUint32Array(new ArrayBuffer());  // Returns false\n     * util.types.isUint32Array(new Uint32Array());  // Returns true\n     * util.types.isUint32Array(new Float64Array());  // Returns false\n     * ```\n     * @since v10.0.0\n     */\n    function isUint32Array(object: unknown): object is Uint32Array;\n    /**\n     * Returns `true` if the value is a built-in [`WeakMap`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap) instance.\n     *\n     * ```js\n     * util.types.isWeakMap(new WeakMap());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isWeakMap(object: unknown): object is WeakMap<object, unknown>;\n    /**\n     * Returns `true` if the value is a built-in [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) instance.\n     *\n     * ```js\n     * util.types.isWeakSet(new WeakSet());  // Returns true\n     * ```\n     * @since v10.0.0\n     */\n    function isWeakSet(object: unknown): object is WeakSet<object>;\n    /**\n     * Returns `true` if `value` is a `KeyObject`, `false` otherwise.\n     * @since v16.2.0\n     */\n    function isKeyObject(object: unknown): object is KeyObject;\n    /**\n     * Returns `true` if `value` is a `CryptoKey`, `false` otherwise.\n     * @since v16.2.0\n     */\n    function isCryptoKey(object: unknown): object is webcrypto.CryptoKey;\n}\ndeclare module \"node:util\" {\n    export * from \"util\";\n}\ndeclare module \"node:util/types\" {\n    export * from \"util/types\";\n}\n",
    "node_modules/@types/node/v8.d.ts": "/**\n * The `node:v8` module exposes APIs that are specific to the version of [V8](https://developers.google.com/v8/) built into the Node.js binary. It can be accessed using:\n *\n * ```js\n * import v8 from 'node:v8';\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/v8.js)\n */\ndeclare module \"v8\" {\n    import { Readable } from \"node:stream\";\n    interface HeapSpaceInfo {\n        space_name: string;\n        space_size: number;\n        space_used_size: number;\n        space_available_size: number;\n        physical_space_size: number;\n    }\n    // ** Signifies if the --zap_code_space option is enabled or not.  1 == enabled, 0 == disabled. */\n    type DoesZapCodeSpaceFlag = 0 | 1;\n    interface HeapInfo {\n        total_heap_size: number;\n        total_heap_size_executable: number;\n        total_physical_size: number;\n        total_available_size: number;\n        used_heap_size: number;\n        heap_size_limit: number;\n        malloced_memory: number;\n        peak_malloced_memory: number;\n        does_zap_garbage: DoesZapCodeSpaceFlag;\n        number_of_native_contexts: number;\n        number_of_detached_contexts: number;\n        total_global_handles_size: number;\n        used_global_handles_size: number;\n        external_memory: number;\n    }\n    interface HeapCodeStatistics {\n        code_and_metadata_size: number;\n        bytecode_and_metadata_size: number;\n        external_script_source_size: number;\n    }\n    interface HeapSnapshotOptions {\n        /**\n         * If true, expose internals in the heap snapshot.\n         * @default false\n         */\n        exposeInternals?: boolean;\n        /**\n         * If true, expose numeric values in artificial fields.\n         * @default false\n         */\n        exposeNumericValues?: boolean;\n    }\n    /**\n     * Returns an integer representing a version tag derived from the V8 version,\n     * command-line flags, and detected CPU features. This is useful for determining\n     * whether a `vm.Script` `cachedData` buffer is compatible with this instance\n     * of V8.\n     *\n     * ```js\n     * console.log(v8.cachedDataVersionTag()); // 3947234607\n     * // The value returned by v8.cachedDataVersionTag() is derived from the V8\n     * // version, command-line flags, and detected CPU features. Test that the value\n     * // does indeed update when flags are toggled.\n     * v8.setFlagsFromString('--allow_natives_syntax');\n     * console.log(v8.cachedDataVersionTag()); // 183726201\n     * ```\n     * @since v8.0.0\n     */\n    function cachedDataVersionTag(): number;\n    /**\n     * Returns an object with the following properties:\n     *\n     * `does_zap_garbage` is a 0/1 boolean, which signifies whether the `--zap_code_space` option is enabled or not. This makes V8 overwrite heap\n     * garbage with a bit pattern. The RSS footprint (resident set size) gets bigger\n     * because it continuously touches all heap pages and that makes them less likely\n     * to get swapped out by the operating system.\n     *\n     * `number_of_native_contexts` The value of native\\_context is the number of the\n     * top-level contexts currently active. Increase of this number over time indicates\n     * a memory leak.\n     *\n     * `number_of_detached_contexts` The value of detached\\_context is the number\n     * of contexts that were detached and not yet garbage collected. This number\n     * being non-zero indicates a potential memory leak.\n     *\n     * `total_global_handles_size` The value of total\\_global\\_handles\\_size is the\n     * total memory size of V8 global handles.\n     *\n     * `used_global_handles_size` The value of used\\_global\\_handles\\_size is the\n     * used memory size of V8 global handles.\n     *\n     * `external_memory` The value of external\\_memory is the memory size of array\n     * buffers and external strings.\n     *\n     * ```js\n     * {\n     *   total_heap_size: 7326976,\n     *   total_heap_size_executable: 4194304,\n     *   total_physical_size: 7326976,\n     *   total_available_size: 1152656,\n     *   used_heap_size: 3476208,\n     *   heap_size_limit: 1535115264,\n     *   malloced_memory: 16384,\n     *   peak_malloced_memory: 1127496,\n     *   does_zap_garbage: 0,\n     *   number_of_native_contexts: 1,\n     *   number_of_detached_contexts: 0,\n     *   total_global_handles_size: 8192,\n     *   used_global_handles_size: 3296,\n     *   external_memory: 318824\n     * }\n     * ```\n     * @since v1.0.0\n     */\n    function getHeapStatistics(): HeapInfo;\n    /**\n     * It returns an object with a structure similar to the\n     * [`cppgc::HeapStatistics`](https://v8docs.nodesource.com/node-22.4/d7/d51/heap-statistics_8h_source.html)\n     * object. See the [V8 documentation](https://v8docs.nodesource.com/node-22.4/df/d2f/structcppgc_1_1_heap_statistics.html)\n     * for more information about the properties of the object.\n     *\n     * ```js\n     * // Detailed\n     * ({\n     *   committed_size_bytes: 131072,\n     *   resident_size_bytes: 131072,\n     *   used_size_bytes: 152,\n     *   space_statistics: [\n     *     {\n     *       name: 'NormalPageSpace0',\n     *       committed_size_bytes: 0,\n     *       resident_size_bytes: 0,\n     *       used_size_bytes: 0,\n     *       page_stats: [{}],\n     *       free_list_stats: {},\n     *     },\n     *     {\n     *       name: 'NormalPageSpace1',\n     *       committed_size_bytes: 131072,\n     *       resident_size_bytes: 131072,\n     *       used_size_bytes: 152,\n     *       page_stats: [{}],\n     *       free_list_stats: {},\n     *     },\n     *     {\n     *       name: 'NormalPageSpace2',\n     *       committed_size_bytes: 0,\n     *       resident_size_bytes: 0,\n     *       used_size_bytes: 0,\n     *       page_stats: [{}],\n     *       free_list_stats: {},\n     *     },\n     *     {\n     *       name: 'NormalPageSpace3',\n     *       committed_size_bytes: 0,\n     *       resident_size_bytes: 0,\n     *       used_size_bytes: 0,\n     *       page_stats: [{}],\n     *       free_list_stats: {},\n     *     },\n     *     {\n     *       name: 'LargePageSpace',\n     *       committed_size_bytes: 0,\n     *       resident_size_bytes: 0,\n     *       used_size_bytes: 0,\n     *       page_stats: [{}],\n     *       free_list_stats: {},\n     *     },\n     *   ],\n     *   type_names: [],\n     *   detail_level: 'detailed',\n     * });\n     * ```\n     *\n     * ```js\n     * // Brief\n     * ({\n     *   committed_size_bytes: 131072,\n     *   resident_size_bytes: 131072,\n     *   used_size_bytes: 128864,\n     *   space_statistics: [],\n     *   type_names: [],\n     *   detail_level: 'brief',\n     * });\n     * ```\n     * @since v22.15.0\n     * @param detailLevel **Default:** `'detailed'`. Specifies the level of detail in the returned statistics.\n     * Accepted values are:\n     * * `'brief'`:  Brief statistics contain only the top-level\n     * allocated and used\n     * memory statistics for the entire heap.\n     * * `'detailed'`: Detailed statistics also contain a break\n     * down per space and page, as well as freelist statistics\n     * and object type histograms.\n     */\n    function getCppHeapStatistics(detailLevel?: \"brief\" | \"detailed\"): object;\n    /**\n     * Returns statistics about the V8 heap spaces, i.e. the segments which make up\n     * the V8 heap. Neither the ordering of heap spaces, nor the availability of a\n     * heap space can be guaranteed as the statistics are provided via the\n     * V8 [`GetHeapSpaceStatistics`](https://v8docs.nodesource.com/node-13.2/d5/dda/classv8_1_1_isolate.html#ac673576f24fdc7a33378f8f57e1d13a4) function and may change from one V8 version to the\n     * next.\n     *\n     * The value returned is an array of objects containing the following properties:\n     *\n     * ```json\n     * [\n     *   {\n     *     \"space_name\": \"new_space\",\n     *     \"space_size\": 2063872,\n     *     \"space_used_size\": 951112,\n     *     \"space_available_size\": 80824,\n     *     \"physical_space_size\": 2063872\n     *   },\n     *   {\n     *     \"space_name\": \"old_space\",\n     *     \"space_size\": 3090560,\n     *     \"space_used_size\": 2493792,\n     *     \"space_available_size\": 0,\n     *     \"physical_space_size\": 3090560\n     *   },\n     *   {\n     *     \"space_name\": \"code_space\",\n     *     \"space_size\": 1260160,\n     *     \"space_used_size\": 644256,\n     *     \"space_available_size\": 960,\n     *     \"physical_space_size\": 1260160\n     *   },\n     *   {\n     *     \"space_name\": \"map_space\",\n     *     \"space_size\": 1094160,\n     *     \"space_used_size\": 201608,\n     *     \"space_available_size\": 0,\n     *     \"physical_space_size\": 1094160\n     *   },\n     *   {\n     *     \"space_name\": \"large_object_space\",\n     *     \"space_size\": 0,\n     *     \"space_used_size\": 0,\n     *     \"space_available_size\": 1490980608,\n     *     \"physical_space_size\": 0\n     *   }\n     * ]\n     * ```\n     * @since v6.0.0\n     */\n    function getHeapSpaceStatistics(): HeapSpaceInfo[];\n    /**\n     * The `v8.setFlagsFromString()` method can be used to programmatically set\n     * V8 command-line flags. This method should be used with care. Changing settings\n     * after the VM has started may result in unpredictable behavior, including\n     * crashes and data loss; or it may simply do nothing.\n     *\n     * The V8 options available for a version of Node.js may be determined by running `node --v8-options`.\n     *\n     * Usage:\n     *\n     * ```js\n     * // Print GC events to stdout for one minute.\n     * import v8 from 'node:v8';\n     * v8.setFlagsFromString('--trace_gc');\n     * setTimeout(() => { v8.setFlagsFromString('--notrace_gc'); }, 60e3);\n     * ```\n     * @since v1.0.0\n     */\n    function setFlagsFromString(flags: string): void;\n    /**\n     * This is similar to the [`queryObjects()` console API](https://developer.chrome.com/docs/devtools/console/utilities#queryObjects-function)\n     * provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain\n     * in the heap after a full garbage collection, which can be useful for memory leak regression tests. To avoid surprising results, users should\n     * avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the\n     * application.\n     *\n     * To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects\n     * found. If `options.format` is `'summary'`, it returns an array containing brief string representations for each object. The visibility provided\n     * in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filter the\n     * target objects during the search.\n     *\n     * Only objects created in the current execution context are included in the results.\n     *\n     * ```js\n     * import { queryObjects } from 'node:v8';\n     * class A { foo = 'bar'; }\n     * console.log(queryObjects(A)); // 0\n     * const a = new A();\n     * console.log(queryObjects(A)); // 1\n     * // [ \"A { foo: 'bar' }\" ]\n     * console.log(queryObjects(A, { format: 'summary' }));\n     *\n     * class B extends A { bar = 'qux'; }\n     * const b = new B();\n     * console.log(queryObjects(B)); // 1\n     * // [ \"B { foo: 'bar', bar: 'qux' }\" ]\n     * console.log(queryObjects(B, { format: 'summary' }));\n     *\n     * // Note that, when there are child classes inheriting from a constructor,\n     * // the constructor also shows up in the prototype chain of the child\n     * // classes's prototoype, so the child classes's prototoype would also be\n     * // included in the result.\n     * console.log(queryObjects(A));  // 3\n     * // [ \"B { foo: 'bar', bar: 'qux' }\", 'A {}', \"A { foo: 'bar' }\" ]\n     * console.log(queryObjects(A, { format: 'summary' }));\n     * ```\n     * @param ctor The constructor that can be used to search on the prototype chain in order to filter target objects in the heap.\n     * @since v20.13.0\n     * @experimental\n     */\n    function queryObjects(ctor: Function): number | string[];\n    function queryObjects(ctor: Function, options: { format: \"count\" }): number;\n    function queryObjects(ctor: Function, options: { format: \"summary\" }): string[];\n    /**\n     * Generates a snapshot of the current V8 heap and returns a Readable\n     * Stream that may be used to read the JSON serialized representation.\n     * This JSON stream format is intended to be used with tools such as\n     * Chrome DevTools. The JSON schema is undocumented and specific to the\n     * V8 engine. Therefore, the schema may change from one version of V8 to the next.\n     *\n     * Creating a heap snapshot requires memory about twice the size of the heap at\n     * the time the snapshot is created. This results in the risk of OOM killers\n     * terminating the process.\n     *\n     * Generating a snapshot is a synchronous operation which blocks the event loop\n     * for a duration depending on the heap size.\n     *\n     * ```js\n     * // Print heap snapshot to the console\n     * import v8 from 'node:v8';\n     * const stream = v8.getHeapSnapshot();\n     * stream.pipe(process.stdout);\n     * ```\n     * @since v11.13.0\n     * @return A Readable containing the V8 heap snapshot.\n     */\n    function getHeapSnapshot(options?: HeapSnapshotOptions): Readable;\n    /**\n     * Generates a snapshot of the current V8 heap and writes it to a JSON\n     * file. This file is intended to be used with tools such as Chrome\n     * DevTools. The JSON schema is undocumented and specific to the V8\n     * engine, and may change from one version of V8 to the next.\n     *\n     * A heap snapshot is specific to a single V8 isolate. When using `worker threads`, a heap snapshot generated from the main thread will\n     * not contain any information about the workers, and vice versa.\n     *\n     * Creating a heap snapshot requires memory about twice the size of the heap at\n     * the time the snapshot is created. This results in the risk of OOM killers\n     * terminating the process.\n     *\n     * Generating a snapshot is a synchronous operation which blocks the event loop\n     * for a duration depending on the heap size.\n     *\n     * ```js\n     * import { writeHeapSnapshot } from 'node:v8';\n     * import {\n     *   Worker,\n     *   isMainThread,\n     *   parentPort,\n     * } from 'node:worker_threads';\n     *\n     * if (isMainThread) {\n     *   const worker = new Worker(__filename);\n     *\n     *   worker.once('message', (filename) => {\n     *     console.log(`worker heapdump: ${filename}`);\n     *     // Now get a heapdump for the main thread.\n     *     console.log(`main thread heapdump: ${writeHeapSnapshot()}`);\n     *   });\n     *\n     *   // Tell the worker to create a heapdump.\n     *   worker.postMessage('heapdump');\n     * } else {\n     *   parentPort.once('message', (message) => {\n     *     if (message === 'heapdump') {\n     *       // Generate a heapdump for the worker\n     *       // and return the filename to the parent.\n     *       parentPort.postMessage(writeHeapSnapshot());\n     *     }\n     *   });\n     * }\n     * ```\n     * @since v11.13.0\n     * @param filename The file path where the V8 heap snapshot is to be saved. If not specified, a file name with the pattern `'Heap-${yyyymmdd}-${hhmmss}-${pid}-${thread_id}.heapsnapshot'` will be\n     * generated, where `{pid}` will be the PID of the Node.js process, `{thread_id}` will be `0` when `writeHeapSnapshot()` is called from the main Node.js thread or the id of a\n     * worker thread.\n     * @return The filename where the snapshot was saved.\n     */\n    function writeHeapSnapshot(filename?: string, options?: HeapSnapshotOptions): string;\n    /**\n     * Get statistics about code and its metadata in the heap, see\n     * V8 [`GetHeapCodeAndMetadataStatistics`](https://v8docs.nodesource.com/node-13.2/d5/dda/classv8_1_1_isolate.html#a6079122af17612ef54ef3348ce170866) API. Returns an object with the\n     * following properties:\n     *\n     * ```js\n     * {\n     *   code_and_metadata_size: 212208,\n     *   bytecode_and_metadata_size: 161368,\n     *   external_script_source_size: 1410794,\n     *   cpu_profiler_metadata_size: 0,\n     * }\n     * ```\n     * @since v12.8.0\n     */\n    function getHeapCodeStatistics(): HeapCodeStatistics;\n    /**\n     * V8 only supports `Latin-1/ISO-8859-1` and `UTF16` as the underlying representation of a string.\n     * If the `content` uses `Latin-1/ISO-8859-1` as the underlying representation, this function will return true;\n     * otherwise, it returns false.\n     *\n     * If this method returns false, that does not mean that the string contains some characters not in `Latin-1/ISO-8859-1`.\n     * Sometimes a `Latin-1` string may also be represented as `UTF16`.\n     *\n     * ```js\n     * const { isStringOneByteRepresentation } = require('node:v8');\n     *\n     * const Encoding = {\n     *   latin1: 1,\n     *   utf16le: 2,\n     * };\n     * const buffer = Buffer.alloc(100);\n     * function writeString(input) {\n     *   if (isStringOneByteRepresentation(input)) {\n     *     buffer.writeUint8(Encoding.latin1);\n     *     buffer.writeUint32LE(input.length, 1);\n     *     buffer.write(input, 5, 'latin1');\n     *   } else {\n     *     buffer.writeUint8(Encoding.utf16le);\n     *     buffer.writeUint32LE(input.length * 2, 1);\n     *     buffer.write(input, 5, 'utf16le');\n     *   }\n     * }\n     * writeString('hello');\n     * writeString('你好');\n     * ```\n     * @since v22.15.0\n     */\n    function isStringOneByteRepresentation(content: string): boolean;\n    /**\n     * @since v8.0.0\n     */\n    class Serializer {\n        /**\n         * Writes out a header, which includes the serialization format version.\n         */\n        writeHeader(): void;\n        /**\n         * Serializes a JavaScript value and adds the serialized representation to the\n         * internal buffer.\n         *\n         * This throws an error if `value` cannot be serialized.\n         */\n        writeValue(val: any): boolean;\n        /**\n         * Returns the stored internal buffer. This serializer should not be used once\n         * the buffer is released. Calling this method results in undefined behavior\n         * if a previous write has failed.\n         */\n        releaseBuffer(): Buffer;\n        /**\n         * Marks an `ArrayBuffer` as having its contents transferred out of band.\n         * Pass the corresponding `ArrayBuffer` in the deserializing context to `deserializer.transferArrayBuffer()`.\n         * @param id A 32-bit unsigned integer.\n         * @param arrayBuffer An `ArrayBuffer` instance.\n         */\n        transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void;\n        /**\n         * Write a raw 32-bit unsigned integer.\n         * For use inside of a custom `serializer._writeHostObject()`.\n         */\n        writeUint32(value: number): void;\n        /**\n         * Write a raw 64-bit unsigned integer, split into high and low 32-bit parts.\n         * For use inside of a custom `serializer._writeHostObject()`.\n         */\n        writeUint64(hi: number, lo: number): void;\n        /**\n         * Write a JS `number` value.\n         * For use inside of a custom `serializer._writeHostObject()`.\n         */\n        writeDouble(value: number): void;\n        /**\n         * Write raw bytes into the serializer's internal buffer. The deserializer\n         * will require a way to compute the length of the buffer.\n         * For use inside of a custom `serializer._writeHostObject()`.\n         */\n        writeRawBytes(buffer: NodeJS.TypedArray): void;\n    }\n    /**\n     * A subclass of `Serializer` that serializes `TypedArray`(in particular `Buffer`) and `DataView` objects as host objects, and only\n     * stores the part of their underlying `ArrayBuffer`s that they are referring to.\n     * @since v8.0.0\n     */\n    class DefaultSerializer extends Serializer {}\n    /**\n     * @since v8.0.0\n     */\n    class Deserializer {\n        constructor(data: NodeJS.TypedArray);\n        /**\n         * Reads and validates a header (including the format version).\n         * May, for example, reject an invalid or unsupported wire format. In that case,\n         * an `Error` is thrown.\n         */\n        readHeader(): boolean;\n        /**\n         * Deserializes a JavaScript value from the buffer and returns it.\n         */\n        readValue(): any;\n        /**\n         * Marks an `ArrayBuffer` as having its contents transferred out of band.\n         * Pass the corresponding `ArrayBuffer` in the serializing context to `serializer.transferArrayBuffer()` (or return the `id` from `serializer._getSharedArrayBufferId()` in the case of\n         * `SharedArrayBuffer`s).\n         * @param id A 32-bit unsigned integer.\n         * @param arrayBuffer An `ArrayBuffer` instance.\n         */\n        transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void;\n        /**\n         * Reads the underlying wire format version. Likely mostly to be useful to\n         * legacy code reading old wire format versions. May not be called before `.readHeader()`.\n         */\n        getWireFormatVersion(): number;\n        /**\n         * Read a raw 32-bit unsigned integer and return it.\n         * For use inside of a custom `deserializer._readHostObject()`.\n         */\n        readUint32(): number;\n        /**\n         * Read a raw 64-bit unsigned integer and return it as an array `[hi, lo]` with two 32-bit unsigned integer entries.\n         * For use inside of a custom `deserializer._readHostObject()`.\n         */\n        readUint64(): [number, number];\n        /**\n         * Read a JS `number` value.\n         * For use inside of a custom `deserializer._readHostObject()`.\n         */\n        readDouble(): number;\n        /**\n         * Read raw bytes from the deserializer's internal buffer. The `length` parameter\n         * must correspond to the length of the buffer that was passed to `serializer.writeRawBytes()`.\n         * For use inside of a custom `deserializer._readHostObject()`.\n         */\n        readRawBytes(length: number): Buffer;\n    }\n    /**\n     * A subclass of `Deserializer` corresponding to the format written by `DefaultSerializer`.\n     * @since v8.0.0\n     */\n    class DefaultDeserializer extends Deserializer {}\n    /**\n     * Uses a `DefaultSerializer` to serialize `value` into a buffer.\n     *\n     * `ERR_BUFFER_TOO_LARGE` will be thrown when trying to\n     * serialize a huge object which requires buffer\n     * larger than `buffer.constants.MAX_LENGTH`.\n     * @since v8.0.0\n     */\n    function serialize(value: any): Buffer;\n    /**\n     * Uses a `DefaultDeserializer` with default options to read a JS value\n     * from a buffer.\n     * @since v8.0.0\n     * @param buffer A buffer returned by {@link serialize}.\n     */\n    function deserialize(buffer: NodeJS.ArrayBufferView): any;\n    /**\n     * The `v8.takeCoverage()` method allows the user to write the coverage started by `NODE_V8_COVERAGE` to disk on demand. This method can be invoked multiple\n     * times during the lifetime of the process. Each time the execution counter will\n     * be reset and a new coverage report will be written to the directory specified\n     * by `NODE_V8_COVERAGE`.\n     *\n     * When the process is about to exit, one last coverage will still be written to\n     * disk unless {@link stopCoverage} is invoked before the process exits.\n     * @since v15.1.0, v14.18.0, v12.22.0\n     */\n    function takeCoverage(): void;\n    /**\n     * The `v8.stopCoverage()` method allows the user to stop the coverage collection\n     * started by `NODE_V8_COVERAGE`, so that V8 can release the execution count\n     * records and optimize code. This can be used in conjunction with {@link takeCoverage} if the user wants to collect the coverage on demand.\n     * @since v15.1.0, v14.18.0, v12.22.0\n     */\n    function stopCoverage(): void;\n    /**\n     * The API is a no-op if `--heapsnapshot-near-heap-limit` is already set from the command line or the API is called more than once.\n     * `limit` must be a positive integer. See [`--heapsnapshot-near-heap-limit`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--heapsnapshot-near-heap-limitmax_count) for more information.\n     * @experimental\n     * @since v18.10.0, v16.18.0\n     */\n    function setHeapSnapshotNearHeapLimit(limit: number): void;\n    /**\n     * This API collects GC data in current thread.\n     * @since v19.6.0, v18.15.0\n     */\n    class GCProfiler {\n        /**\n         * Start collecting GC data.\n         * @since v19.6.0, v18.15.0\n         */\n        start(): void;\n        /**\n         * Stop collecting GC data and return an object. The content of object\n         * is as follows.\n         *\n         * ```json\n         * {\n         *   \"version\": 1,\n         *   \"startTime\": 1674059033862,\n         *   \"statistics\": [\n         *     {\n         *       \"gcType\": \"Scavenge\",\n         *       \"beforeGC\": {\n         *         \"heapStatistics\": {\n         *           \"totalHeapSize\": 5005312,\n         *           \"totalHeapSizeExecutable\": 524288,\n         *           \"totalPhysicalSize\": 5226496,\n         *           \"totalAvailableSize\": 4341325216,\n         *           \"totalGlobalHandlesSize\": 8192,\n         *           \"usedGlobalHandlesSize\": 2112,\n         *           \"usedHeapSize\": 4883840,\n         *           \"heapSizeLimit\": 4345298944,\n         *           \"mallocedMemory\": 254128,\n         *           \"externalMemory\": 225138,\n         *           \"peakMallocedMemory\": 181760\n         *         },\n         *         \"heapSpaceStatistics\": [\n         *           {\n         *             \"spaceName\": \"read_only_space\",\n         *             \"spaceSize\": 0,\n         *             \"spaceUsedSize\": 0,\n         *             \"spaceAvailableSize\": 0,\n         *             \"physicalSpaceSize\": 0\n         *           }\n         *         ]\n         *       },\n         *       \"cost\": 1574.14,\n         *       \"afterGC\": {\n         *         \"heapStatistics\": {\n         *           \"totalHeapSize\": 6053888,\n         *           \"totalHeapSizeExecutable\": 524288,\n         *           \"totalPhysicalSize\": 5500928,\n         *           \"totalAvailableSize\": 4341101384,\n         *           \"totalGlobalHandlesSize\": 8192,\n         *           \"usedGlobalHandlesSize\": 2112,\n         *           \"usedHeapSize\": 4059096,\n         *           \"heapSizeLimit\": 4345298944,\n         *           \"mallocedMemory\": 254128,\n         *           \"externalMemory\": 225138,\n         *           \"peakMallocedMemory\": 181760\n         *         },\n         *         \"heapSpaceStatistics\": [\n         *           {\n         *             \"spaceName\": \"read_only_space\",\n         *             \"spaceSize\": 0,\n         *             \"spaceUsedSize\": 0,\n         *             \"spaceAvailableSize\": 0,\n         *             \"physicalSpaceSize\": 0\n         *           }\n         *         ]\n         *       }\n         *     }\n         *   ],\n         *   \"endTime\": 1674059036865\n         * }\n         * ```\n         *\n         * Here's an example.\n         *\n         * ```js\n         * import { GCProfiler } from 'node:v8';\n         * const profiler = new GCProfiler();\n         * profiler.start();\n         * setTimeout(() => {\n         *   console.log(profiler.stop());\n         * }, 1000);\n         * ```\n         * @since v19.6.0, v18.15.0\n         */\n        stop(): GCProfilerResult;\n    }\n    interface GCProfilerResult {\n        version: number;\n        startTime: number;\n        endTime: number;\n        statistics: Array<{\n            gcType: string;\n            cost: number;\n            beforeGC: {\n                heapStatistics: HeapStatistics;\n                heapSpaceStatistics: HeapSpaceStatistics[];\n            };\n            afterGC: {\n                heapStatistics: HeapStatistics;\n                heapSpaceStatistics: HeapSpaceStatistics[];\n            };\n        }>;\n    }\n    interface HeapStatistics {\n        totalHeapSize: number;\n        totalHeapSizeExecutable: number;\n        totalPhysicalSize: number;\n        totalAvailableSize: number;\n        totalGlobalHandlesSize: number;\n        usedGlobalHandlesSize: number;\n        usedHeapSize: number;\n        heapSizeLimit: number;\n        mallocedMemory: number;\n        externalMemory: number;\n        peakMallocedMemory: number;\n    }\n    interface HeapSpaceStatistics {\n        spaceName: string;\n        spaceSize: number;\n        spaceUsedSize: number;\n        spaceAvailableSize: number;\n        physicalSpaceSize: number;\n    }\n    /**\n     * Called when a promise is constructed. This does not mean that corresponding before/after events will occur, only that the possibility exists. This will\n     * happen if a promise is created without ever getting a continuation.\n     * @since v17.1.0, v16.14.0\n     * @param promise The promise being created.\n     * @param parent The promise continued from, if applicable.\n     */\n    interface Init {\n        (promise: Promise<unknown>, parent: Promise<unknown>): void;\n    }\n    /**\n     * Called before a promise continuation executes. This can be in the form of `then()`, `catch()`, or `finally()` handlers or an await resuming.\n     *\n     * The before callback will be called 0 to N times. The before callback will typically be called 0 times if no continuation was ever made for the promise.\n     * The before callback may be called many times in the case where many continuations have been made from the same promise.\n     * @since v17.1.0, v16.14.0\n     */\n    interface Before {\n        (promise: Promise<unknown>): void;\n    }\n    /**\n     * Called immediately after a promise continuation executes. This may be after a `then()`, `catch()`, or `finally()` handler or before an await after another await.\n     * @since v17.1.0, v16.14.0\n     */\n    interface After {\n        (promise: Promise<unknown>): void;\n    }\n    /**\n     * Called when the promise receives a resolution or rejection value. This may occur synchronously in the case of {@link Promise.resolve()} or\n     * {@link Promise.reject()}.\n     * @since v17.1.0, v16.14.0\n     */\n    interface Settled {\n        (promise: Promise<unknown>): void;\n    }\n    /**\n     * Key events in the lifetime of a promise have been categorized into four areas: creation of a promise, before/after a continuation handler is called or\n     * around an await, and when the promise resolves or rejects.\n     *\n     * Because promises are asynchronous resources whose lifecycle is tracked via the promise hooks mechanism, the `init()`, `before()`, `after()`, and\n     * `settled()` callbacks must not be async functions as they create more promises which would produce an infinite loop.\n     * @since v17.1.0, v16.14.0\n     */\n    interface HookCallbacks {\n        init?: Init;\n        before?: Before;\n        after?: After;\n        settled?: Settled;\n    }\n    interface PromiseHooks {\n        /**\n         * The `init` hook must be a plain function. Providing an async function will throw as it would produce an infinite microtask loop.\n         * @since v17.1.0, v16.14.0\n         * @param init The {@link Init | `init` callback} to call when a promise is created.\n         * @return Call to stop the hook.\n         */\n        onInit: (init: Init) => Function;\n        /**\n         * The `settled` hook must be a plain function. Providing an async function will throw as it would produce an infinite microtask loop.\n         * @since v17.1.0, v16.14.0\n         * @param settled The {@link Settled | `settled` callback} to call when a promise is created.\n         * @return Call to stop the hook.\n         */\n        onSettled: (settled: Settled) => Function;\n        /**\n         * The `before` hook must be a plain function. Providing an async function will throw as it would produce an infinite microtask loop.\n         * @since v17.1.0, v16.14.0\n         * @param before The {@link Before | `before` callback} to call before a promise continuation executes.\n         * @return Call to stop the hook.\n         */\n        onBefore: (before: Before) => Function;\n        /**\n         * The `after` hook must be a plain function. Providing an async function will throw as it would produce an infinite microtask loop.\n         * @since v17.1.0, v16.14.0\n         * @param after The {@link After | `after` callback} to call after a promise continuation executes.\n         * @return Call to stop the hook.\n         */\n        onAfter: (after: After) => Function;\n        /**\n         * Registers functions to be called for different lifetime events of each promise.\n         * The callbacks `init()`/`before()`/`after()`/`settled()` are called for the respective events during a promise's lifetime.\n         * All callbacks are optional. For example, if only promise creation needs to be tracked, then only the init callback needs to be passed.\n         * The hook callbacks must be plain functions. Providing async functions will throw as it would produce an infinite microtask loop.\n         * @since v17.1.0, v16.14.0\n         * @param callbacks The {@link HookCallbacks | Hook Callbacks} to register\n         * @return Used for disabling hooks\n         */\n        createHook: (callbacks: HookCallbacks) => Function;\n    }\n    /**\n     * The `promiseHooks` interface can be used to track promise lifecycle events.\n     * @since v17.1.0, v16.14.0\n     */\n    const promiseHooks: PromiseHooks;\n    type StartupSnapshotCallbackFn = (args: any) => any;\n    interface StartupSnapshot {\n        /**\n         * Add a callback that will be called when the Node.js instance is about to get serialized into a snapshot and exit.\n         * This can be used to release resources that should not or cannot be serialized or to convert user data into a form more suitable for serialization.\n         * @since v18.6.0, v16.17.0\n         */\n        addSerializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;\n        /**\n         * Add a callback that will be called when the Node.js instance is deserialized from a snapshot.\n         * The `callback` and the `data` (if provided) will be serialized into the snapshot, they can be used to re-initialize the state of the application or\n         * to re-acquire resources that the application needs when the application is restarted from the snapshot.\n         * @since v18.6.0, v16.17.0\n         */\n        addDeserializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;\n        /**\n         * This sets the entry point of the Node.js application when it is deserialized from a snapshot. This can be called only once in the snapshot building script.\n         * If called, the deserialized application no longer needs an additional entry point script to start up and will simply invoke the callback along with the deserialized\n         * data (if provided), otherwise an entry point script still needs to be provided to the deserialized application.\n         * @since v18.6.0, v16.17.0\n         */\n        setDeserializeMainFunction(callback: StartupSnapshotCallbackFn, data?: any): void;\n        /**\n         * Returns true if the Node.js instance is run to build a snapshot.\n         * @since v18.6.0, v16.17.0\n         */\n        isBuildingSnapshot(): boolean;\n    }\n    /**\n     * The `v8.startupSnapshot` interface can be used to add serialization and deserialization hooks for custom startup snapshots.\n     *\n     * ```bash\n     * $ node --snapshot-blob snapshot.blob --build-snapshot entry.js\n     * # This launches a process with the snapshot\n     * $ node --snapshot-blob snapshot.blob\n     * ```\n     *\n     * In the example above, `entry.js` can use methods from the `v8.startupSnapshot` interface to specify how to save information for custom objects\n     * in the snapshot during serialization and how the information can be used to synchronize these objects during deserialization of the snapshot.\n     * For example, if the `entry.js` contains the following script:\n     *\n     * ```js\n     * 'use strict';\n     *\n     * import fs from 'node:fs';\n     * import zlib from 'node:zlib';\n     * import path from 'node:path';\n     * import assert from 'node:assert';\n     *\n     * import v8 from 'node:v8';\n     *\n     * class BookShelf {\n     *   storage = new Map();\n     *\n     *   // Reading a series of files from directory and store them into storage.\n     *   constructor(directory, books) {\n     *     for (const book of books) {\n     *       this.storage.set(book, fs.readFileSync(path.join(directory, book)));\n     *     }\n     *   }\n     *\n     *   static compressAll(shelf) {\n     *     for (const [ book, content ] of shelf.storage) {\n     *       shelf.storage.set(book, zlib.gzipSync(content));\n     *     }\n     *   }\n     *\n     *   static decompressAll(shelf) {\n     *     for (const [ book, content ] of shelf.storage) {\n     *       shelf.storage.set(book, zlib.gunzipSync(content));\n     *     }\n     *   }\n     * }\n     *\n     * // __dirname here is where the snapshot script is placed\n     * // during snapshot building time.\n     * const shelf = new BookShelf(__dirname, [\n     *   'book1.en_US.txt',\n     *   'book1.es_ES.txt',\n     *   'book2.zh_CN.txt',\n     * ]);\n     *\n     * assert(v8.startupSnapshot.isBuildingSnapshot());\n     * // On snapshot serialization, compress the books to reduce size.\n     * v8.startupSnapshot.addSerializeCallback(BookShelf.compressAll, shelf);\n     * // On snapshot deserialization, decompress the books.\n     * v8.startupSnapshot.addDeserializeCallback(BookShelf.decompressAll, shelf);\n     * v8.startupSnapshot.setDeserializeMainFunction((shelf) => {\n     *   // process.env and process.argv are refreshed during snapshot\n     *   // deserialization.\n     *   const lang = process.env.BOOK_LANG || 'en_US';\n     *   const book = process.argv[1];\n     *   const name = `${book}.${lang}.txt`;\n     *   console.log(shelf.storage.get(name));\n     * }, shelf);\n     * ```\n     *\n     * The resulted binary will get print the data deserialized from the snapshot during start up, using the refreshed `process.env` and `process.argv` of the launched process:\n     *\n     * ```bash\n     * $ BOOK_LANG=es_ES node --snapshot-blob snapshot.blob book1\n     * # Prints content of book1.es_ES.txt deserialized from the snapshot.\n     * ```\n     *\n     * Currently the application deserialized from a user-land snapshot cannot be snapshotted again, so these APIs are only available to applications that are not deserialized from a user-land snapshot.\n     *\n     * @experimental\n     * @since v18.6.0, v16.17.0\n     */\n    const startupSnapshot: StartupSnapshot;\n}\ndeclare module \"node:v8\" {\n    export * from \"v8\";\n}\n",
    "node_modules/@types/node/vm.d.ts": "/**\n * The `node:vm` module enables compiling and running code within V8 Virtual\n * Machine contexts.\n *\n * **The `node:vm` module is not a security**\n * **mechanism. Do not use it to run untrusted code.**\n *\n * JavaScript code can be compiled and run immediately or\n * compiled, saved, and run later.\n *\n * A common use case is to run the code in a different V8 Context. This means\n * invoked code has a different global object than the invoking code.\n *\n * One can provide the context by `contextifying` an\n * object. The invoked code treats any property in the context like a\n * global variable. Any changes to global variables caused by the invoked\n * code are reflected in the context object.\n *\n * ```js\n * import vm from 'node:vm';\n *\n * const x = 1;\n *\n * const context = { x: 2 };\n * vm.createContext(context); // Contextify the object.\n *\n * const code = 'x += 40; var y = 17;';\n * // `x` and `y` are global variables in the context.\n * // Initially, x has the value 2 because that is the value of context.x.\n * vm.runInContext(code, context);\n *\n * console.log(context.x); // 42\n * console.log(context.y); // 17\n *\n * console.log(x); // 1; y is not defined.\n * ```\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/vm.js)\n */\ndeclare module \"vm\" {\n    import { ImportAttributes } from \"node:module\";\n    interface Context extends NodeJS.Dict<any> {}\n    interface BaseOptions {\n        /**\n         * Specifies the filename used in stack traces produced by this script.\n         * @default ''\n         */\n        filename?: string | undefined;\n        /**\n         * Specifies the line number offset that is displayed in stack traces produced by this script.\n         * @default 0\n         */\n        lineOffset?: number | undefined;\n        /**\n         * Specifies the column number offset that is displayed in stack traces produced by this script.\n         * @default 0\n         */\n        columnOffset?: number | undefined;\n    }\n    type DynamicModuleLoader<T> = (\n        specifier: string,\n        referrer: T,\n        importAttributes: ImportAttributes,\n    ) => Module | Promise<Module>;\n    interface ScriptOptions extends BaseOptions {\n        /**\n         * Provides an optional data with V8's code cache data for the supplied source.\n         */\n        cachedData?: Buffer | NodeJS.ArrayBufferView | undefined;\n        /** @deprecated in favor of `script.createCachedData()` */\n        produceCachedData?: boolean | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?:\n            | DynamicModuleLoader<Script>\n            | typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER\n            | undefined;\n    }\n    interface RunningScriptOptions extends BaseOptions {\n        /**\n         * When `true`, if an `Error` occurs while compiling the `code`, the line of code causing the error is attached to the stack trace.\n         * @default true\n         */\n        displayErrors?: boolean | undefined;\n        /**\n         * Specifies the number of milliseconds to execute code before terminating execution.\n         * If execution is terminated, an `Error` will be thrown. This value must be a strictly positive integer.\n         */\n        timeout?: number | undefined;\n        /**\n         * If `true`, the execution will be terminated when `SIGINT` (Ctrl+C) is received.\n         * Existing handlers for the event that have been attached via `process.on('SIGINT')` will be disabled during script execution, but will continue to work after that.\n         * If execution is terminated, an `Error` will be thrown.\n         * @default false\n         */\n        breakOnSigint?: boolean | undefined;\n    }\n    interface RunningScriptInNewContextOptions extends RunningScriptOptions {\n        /**\n         * Human-readable name of the newly created context.\n         */\n        contextName?: CreateContextOptions[\"name\"];\n        /**\n         * Origin corresponding to the newly created context for display purposes. The origin should be formatted like a URL,\n         * but with only the scheme, host, and port (if necessary), like the value of the `url.origin` property of a `URL` object.\n         * Most notably, this string should omit the trailing slash, as that denotes a path.\n         */\n        contextOrigin?: CreateContextOptions[\"origin\"];\n        contextCodeGeneration?: CreateContextOptions[\"codeGeneration\"];\n        /**\n         * If set to `afterEvaluate`, microtasks will be run immediately after the script has run.\n         */\n        microtaskMode?: CreateContextOptions[\"microtaskMode\"];\n    }\n    interface RunningCodeOptions extends RunningScriptOptions {\n        /**\n         * Provides an optional data with V8's code cache data for the supplied source.\n         */\n        cachedData?: ScriptOptions[\"cachedData\"] | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?:\n            | DynamicModuleLoader<Script>\n            | typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER\n            | undefined;\n    }\n    interface RunningCodeInNewContextOptions extends RunningScriptInNewContextOptions {\n        /**\n         * Provides an optional data with V8's code cache data for the supplied source.\n         */\n        cachedData?: ScriptOptions[\"cachedData\"] | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?:\n            | DynamicModuleLoader<Script>\n            | typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER\n            | undefined;\n    }\n    interface CompileFunctionOptions extends BaseOptions {\n        /**\n         * Provides an optional data with V8's code cache data for the supplied source.\n         */\n        cachedData?: ScriptOptions[\"cachedData\"] | undefined;\n        /**\n         * Specifies whether to produce new cache data.\n         * @default false\n         */\n        produceCachedData?: boolean | undefined;\n        /**\n         * The sandbox/context in which the said function should be compiled in.\n         */\n        parsingContext?: Context | undefined;\n        /**\n         * An array containing a collection of context extensions (objects wrapping the current scope) to be applied while compiling\n         */\n        contextExtensions?: Object[] | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?:\n            | DynamicModuleLoader<ReturnType<typeof compileFunction>>\n            | typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER\n            | undefined;\n    }\n    interface CreateContextOptions {\n        /**\n         * Human-readable name of the newly created context.\n         * @default 'VM Context i' Where i is an ascending numerical index of the created context.\n         */\n        name?: string | undefined;\n        /**\n         * Corresponds to the newly created context for display purposes.\n         * The origin should be formatted like a `URL`, but with only the scheme, host, and port (if necessary),\n         * like the value of the `url.origin` property of a URL object.\n         * Most notably, this string should omit the trailing slash, as that denotes a path.\n         * @default ''\n         */\n        origin?: string | undefined;\n        codeGeneration?:\n            | {\n                /**\n                 * If set to false any calls to eval or function constructors (Function, GeneratorFunction, etc)\n                 * will throw an EvalError.\n                 * @default true\n                 */\n                strings?: boolean | undefined;\n                /**\n                 * If set to false any attempt to compile a WebAssembly module will throw a WebAssembly.CompileError.\n                 * @default true\n                 */\n                wasm?: boolean | undefined;\n            }\n            | undefined;\n        /**\n         * If set to `afterEvaluate`, microtasks will be run immediately after the script has run.\n         */\n        microtaskMode?: \"afterEvaluate\" | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?:\n            | DynamicModuleLoader<Context>\n            | typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER\n            | undefined;\n    }\n    type MeasureMemoryMode = \"summary\" | \"detailed\";\n    interface MeasureMemoryOptions {\n        /**\n         * @default 'summary'\n         */\n        mode?: MeasureMemoryMode | undefined;\n        /**\n         * @default 'default'\n         */\n        execution?: \"default\" | \"eager\" | undefined;\n    }\n    interface MemoryMeasurement {\n        total: {\n            jsMemoryEstimate: number;\n            jsMemoryRange: [number, number];\n        };\n    }\n    /**\n     * Instances of the `vm.Script` class contain precompiled scripts that can be\n     * executed in specific contexts.\n     * @since v0.3.1\n     */\n    class Script {\n        constructor(code: string, options?: ScriptOptions | string);\n        /**\n         * Runs the compiled code contained by the `vm.Script` object within the given `contextifiedObject` and returns the result. Running code does not have access\n         * to local scope.\n         *\n         * The following example compiles code that increments a global variable, sets\n         * the value of another global variable, then execute the code multiple times.\n         * The globals are contained in the `context` object.\n         *\n         * ```js\n         * import vm from 'node:vm';\n         *\n         * const context = {\n         *   animal: 'cat',\n         *   count: 2,\n         * };\n         *\n         * const script = new vm.Script('count += 1; name = \"kitty\";');\n         *\n         * vm.createContext(context);\n         * for (let i = 0; i < 10; ++i) {\n         *   script.runInContext(context);\n         * }\n         *\n         * console.log(context);\n         * // Prints: { animal: 'cat', count: 12, name: 'kitty' }\n         * ```\n         *\n         * Using the `timeout` or `breakOnSigint` options will result in new event loops\n         * and corresponding threads being started, which have a non-zero performance\n         * overhead.\n         * @since v0.3.1\n         * @param contextifiedObject A `contextified` object as returned by the `vm.createContext()` method.\n         * @return the result of the very last statement executed in the script.\n         */\n        runInContext(contextifiedObject: Context, options?: RunningScriptOptions): any;\n        /**\n         * This method is a shortcut to `script.runInContext(vm.createContext(options), options)`.\n         * It does several things at once:\n         *\n         * 1. Creates a new context.\n         * 2. If `contextObject` is an object, contextifies it with the new context.\n         *    If  `contextObject` is undefined, creates a new object and contextifies it.\n         *    If `contextObject` is `vm.constants.DONT_CONTEXTIFY`, don't contextify anything.\n         * 3. Runs the compiled code contained by the `vm.Script` object within the created context. The code\n         *    does not have access to the scope in which this method is called.\n         * 4. Returns the result.\n         *\n         * The following example compiles code that sets a global variable, then executes\n         * the code multiple times in different contexts. The globals are set on and\n         * contained within each individual `context`.\n         *\n         * ```js\n         * const vm = require('node:vm');\n         *\n         * const script = new vm.Script('globalVar = \"set\"');\n         *\n         * const contexts = [{}, {}, {}];\n         * contexts.forEach((context) => {\n         *   script.runInNewContext(context);\n         * });\n         *\n         * console.log(contexts);\n         * // Prints: [{ globalVar: 'set' }, { globalVar: 'set' }, { globalVar: 'set' }]\n         *\n         * // This would throw if the context is created from a contextified object.\n         * // vm.constants.DONT_CONTEXTIFY allows creating contexts with ordinary\n         * // global objects that can be frozen.\n         * const freezeScript = new vm.Script('Object.freeze(globalThis); globalThis;');\n         * const frozenContext = freezeScript.runInNewContext(vm.constants.DONT_CONTEXTIFY);\n         * ```\n         * @since v0.3.1\n         * @param contextObject Either `vm.constants.DONT_CONTEXTIFY` or an object that will be contextified.\n         * If `undefined`, an empty contextified object will be created for backwards compatibility.\n         * @return the result of the very last statement executed in the script.\n         */\n        runInNewContext(\n            contextObject?: Context | typeof constants.DONT_CONTEXTIFY,\n            options?: RunningScriptInNewContextOptions,\n        ): any;\n        /**\n         * Runs the compiled code contained by the `vm.Script` within the context of the\n         * current `global` object. Running code does not have access to local scope, but _does_ have access to the current `global` object.\n         *\n         * The following example compiles code that increments a `global` variable then\n         * executes that code multiple times:\n         *\n         * ```js\n         * import vm from 'node:vm';\n         *\n         * global.globalVar = 0;\n         *\n         * const script = new vm.Script('globalVar += 1', { filename: 'myfile.vm' });\n         *\n         * for (let i = 0; i < 1000; ++i) {\n         *   script.runInThisContext();\n         * }\n         *\n         * console.log(globalVar);\n         *\n         * // 1000\n         * ```\n         * @since v0.3.1\n         * @return the result of the very last statement executed in the script.\n         */\n        runInThisContext(options?: RunningScriptOptions): any;\n        /**\n         * Creates a code cache that can be used with the `Script` constructor's `cachedData` option. Returns a `Buffer`. This method may be called at any\n         * time and any number of times.\n         *\n         * The code cache of the `Script` doesn't contain any JavaScript observable\n         * states. The code cache is safe to be saved along side the script source and\n         * used to construct new `Script` instances multiple times.\n         *\n         * Functions in the `Script` source can be marked as lazily compiled and they are\n         * not compiled at construction of the `Script`. These functions are going to be\n         * compiled when they are invoked the first time. The code cache serializes the\n         * metadata that V8 currently knows about the `Script` that it can use to speed up\n         * future compilations.\n         *\n         * ```js\n         * const script = new vm.Script(`\n         * function add(a, b) {\n         *   return a + b;\n         * }\n         *\n         * const x = add(1, 2);\n         * `);\n         *\n         * const cacheWithoutAdd = script.createCachedData();\n         * // In `cacheWithoutAdd` the function `add()` is marked for full compilation\n         * // upon invocation.\n         *\n         * script.runInThisContext();\n         *\n         * const cacheWithAdd = script.createCachedData();\n         * // `cacheWithAdd` contains fully compiled function `add()`.\n         * ```\n         * @since v10.6.0\n         */\n        createCachedData(): Buffer;\n        /** @deprecated in favor of `script.createCachedData()` */\n        cachedDataProduced?: boolean | undefined;\n        /**\n         * When `cachedData` is supplied to create the `vm.Script`, this value will be set\n         * to either `true` or `false` depending on acceptance of the data by V8.\n         * Otherwise the value is `undefined`.\n         * @since v5.7.0\n         */\n        cachedDataRejected?: boolean | undefined;\n        cachedData?: Buffer | undefined;\n        /**\n         * When the script is compiled from a source that contains a source map magic\n         * comment, this property will be set to the URL of the source map.\n         *\n         * ```js\n         * import vm from 'node:vm';\n         *\n         * const script = new vm.Script(`\n         * function myFunc() {}\n         * //# sourceMappingURL=sourcemap.json\n         * `);\n         *\n         * console.log(script.sourceMapURL);\n         * // Prints: sourcemap.json\n         * ```\n         * @since v19.1.0, v18.13.0\n         */\n        sourceMapURL?: string | undefined;\n    }\n    /**\n     * If the given `contextObject` is an object, the `vm.createContext()` method will\n     * [prepare that object](https://nodejs.org/docs/latest-v22.x/api/vm.html#what-does-it-mean-to-contextify-an-object)\n     * and return a reference to it so that it can be used in calls to {@link runInContext} or\n     * [`script.runInContext()`](https://nodejs.org/docs/latest-v22.x/api/vm.html#scriptrunincontextcontextifiedobject-options).\n     * Inside such scripts, the global object will be wrapped by the `contextObject`, retaining all of its\n     * existing properties but also having the built-in objects and functions any standard\n     * [global object](https://es5.github.io/#x15.1) has. Outside of scripts run by the vm module, global\n     * variables will remain unchanged.\n     *\n     * ```js\n     * const vm = require('node:vm');\n     *\n     * global.globalVar = 3;\n     *\n     * const context = { globalVar: 1 };\n     * vm.createContext(context);\n     *\n     * vm.runInContext('globalVar *= 2;', context);\n     *\n     * console.log(context);\n     * // Prints: { globalVar: 2 }\n     *\n     * console.log(global.globalVar);\n     * // Prints: 3\n     * ```\n     *\n     * If `contextObject` is omitted (or passed explicitly as `undefined`), a new,\n     * empty contextified object will be returned.\n     *\n     * When the global object in the newly created context is contextified, it has some quirks\n     * compared to ordinary global objects. For example, it cannot be frozen. To create a context\n     * without the contextifying quirks, pass `vm.constants.DONT_CONTEXTIFY` as the `contextObject`\n     * argument. See the documentation of `vm.constants.DONT_CONTEXTIFY` for details.\n     *\n     * The `vm.createContext()` method is primarily useful for creating a single\n     * context that can be used to run multiple scripts. For instance, if emulating a\n     * web browser, the method can be used to create a single context representing a\n     * window's global object, then run all `<script>` tags together within that\n     * context.\n     *\n     * The provided `name` and `origin` of the context are made visible through the\n     * Inspector API.\n     * @since v0.3.1\n     * @param contextObject Either `vm.constants.DONT_CONTEXTIFY` or an object that will be contextified.\n     * If `undefined`, an empty contextified object will be created for backwards compatibility.\n     * @return contextified object.\n     */\n    function createContext(\n        contextObject?: Context | typeof constants.DONT_CONTEXTIFY,\n        options?: CreateContextOptions,\n    ): Context;\n    /**\n     * Returns `true` if the given `object` object has been contextified using {@link createContext},\n     * or if it's the global object of a context created using `vm.constants.DONT_CONTEXTIFY`.\n     * @since v0.11.7\n     */\n    function isContext(sandbox: Context): boolean;\n    /**\n     * The `vm.runInContext()` method compiles `code`, runs it within the context of\n     * the `contextifiedObject`, then returns the result. Running code does not have\n     * access to the local scope. The `contextifiedObject` object _must_ have been\n     * previously `contextified` using the {@link createContext} method.\n     *\n     * If `options` is a string, then it specifies the filename.\n     *\n     * The following example compiles and executes different scripts using a single `contextified` object:\n     *\n     * ```js\n     * import vm from 'node:vm';\n     *\n     * const contextObject = { globalVar: 1 };\n     * vm.createContext(contextObject);\n     *\n     * for (let i = 0; i < 10; ++i) {\n     *   vm.runInContext('globalVar *= 2;', contextObject);\n     * }\n     * console.log(contextObject);\n     * // Prints: { globalVar: 1024 }\n     * ```\n     * @since v0.3.1\n     * @param code The JavaScript code to compile and run.\n     * @param contextifiedObject The `contextified` object that will be used as the `global` when the `code` is compiled and run.\n     * @return the result of the very last statement executed in the script.\n     */\n    function runInContext(code: string, contextifiedObject: Context, options?: RunningCodeOptions | string): any;\n    /**\n     * This method is a shortcut to\n     * `(new vm.Script(code, options)).runInContext(vm.createContext(options), options)`.\n     * If `options` is a string, then it specifies the filename.\n     *\n     * It does several things at once:\n     *\n     * 1. Creates a new context.\n     * 2. If `contextObject` is an object, contextifies it with the new context.\n     *    If  `contextObject` is undefined, creates a new object and contextifies it.\n     *    If `contextObject` is `vm.constants.DONT_CONTEXTIFY`, don't contextify anything.\n     * 3. Compiles the code as a`vm.Script`\n     * 4. Runs the compield code within the created context. The code does not have access to the scope in\n     *    which this method is called.\n     * 5. Returns the result.\n     *\n     * The following example compiles and executes code that increments a global\n     * variable and sets a new one. These globals are contained in the `contextObject`.\n     *\n     * ```js\n     * const vm = require('node:vm');\n     *\n     * const contextObject = {\n     *   animal: 'cat',\n     *   count: 2,\n     * };\n     *\n     * vm.runInNewContext('count += 1; name = \"kitty\"', contextObject);\n     * console.log(contextObject);\n     * // Prints: { animal: 'cat', count: 3, name: 'kitty' }\n     *\n     * // This would throw if the context is created from a contextified object.\n     * // vm.constants.DONT_CONTEXTIFY allows creating contexts with ordinary global objects that\n     * // can be frozen.\n     * const frozenContext = vm.runInNewContext('Object.freeze(globalThis); globalThis;', vm.constants.DONT_CONTEXTIFY);\n     * ```\n     * @since v0.3.1\n     * @param code The JavaScript code to compile and run.\n     * @param contextObject Either `vm.constants.DONT_CONTEXTIFY` or an object that will be contextified.\n     * If `undefined`, an empty contextified object will be created for backwards compatibility.\n     * @return the result of the very last statement executed in the script.\n     */\n    function runInNewContext(\n        code: string,\n        contextObject?: Context | typeof constants.DONT_CONTEXTIFY,\n        options?: RunningCodeInNewContextOptions | string,\n    ): any;\n    /**\n     * `vm.runInThisContext()` compiles `code`, runs it within the context of the\n     * current `global` and returns the result. Running code does not have access to\n     * local scope, but does have access to the current `global` object.\n     *\n     * If `options` is a string, then it specifies the filename.\n     *\n     * The following example illustrates using both `vm.runInThisContext()` and\n     * the JavaScript [`eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) function to run the same code:\n     *\n     * ```js\n     * import vm from 'node:vm';\n     * let localVar = 'initial value';\n     *\n     * const vmResult = vm.runInThisContext('localVar = \"vm\";');\n     * console.log(`vmResult: '${vmResult}', localVar: '${localVar}'`);\n     * // Prints: vmResult: 'vm', localVar: 'initial value'\n     *\n     * const evalResult = eval('localVar = \"eval\";');\n     * console.log(`evalResult: '${evalResult}', localVar: '${localVar}'`);\n     * // Prints: evalResult: 'eval', localVar: 'eval'\n     * ```\n     *\n     * Because `vm.runInThisContext()` does not have access to the local scope, `localVar` is unchanged. In contrast,\n     * [`eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) _does_ have access to the\n     * local scope, so the value `localVar` is changed. In this way `vm.runInThisContext()` is much like an [indirect `eval()` call](https://es5.github.io/#x10.4.2), e.g.`(0,eval)('code')`.\n     *\n     * ## Example: Running an HTTP server within a VM\n     *\n     * When using either `script.runInThisContext()` or {@link runInThisContext}, the code is executed within the current V8 global\n     * context. The code passed to this VM context will have its own isolated scope.\n     *\n     * In order to run a simple web server using the `node:http` module the code passed\n     * to the context must either import `node:http` on its own, or have a\n     * reference to the `node:http` module passed to it. For instance:\n     *\n     * ```js\n     * 'use strict';\n     * import vm from 'node:vm';\n     *\n     * const code = `\n     * ((require) => {\n     * const http = require('node:http');\n     *\n     *   http.createServer((request, response) => {\n     *     response.writeHead(200, { 'Content-Type': 'text/plain' });\n     *     response.end('Hello World\\\\n');\n     *   }).listen(8124);\n     *\n     *   console.log('Server running at http://127.0.0.1:8124/');\n     * })`;\n     *\n     * vm.runInThisContext(code)(require);\n     * ```\n     *\n     * The `require()` in the above case shares the state with the context it is\n     * passed from. This may introduce risks when untrusted code is executed, e.g.\n     * altering objects in the context in unwanted ways.\n     * @since v0.3.1\n     * @param code The JavaScript code to compile and run.\n     * @return the result of the very last statement executed in the script.\n     */\n    function runInThisContext(code: string, options?: RunningCodeOptions | string): any;\n    /**\n     * Compiles the given code into the provided context (if no context is\n     * supplied, the current context is used), and returns it wrapped inside a\n     * function with the given `params`.\n     * @since v10.10.0\n     * @param code The body of the function to compile.\n     * @param params An array of strings containing all parameters for the function.\n     */\n    function compileFunction(\n        code: string,\n        params?: readonly string[],\n        options?: CompileFunctionOptions,\n    ): Function & {\n        cachedData?: Script[\"cachedData\"] | undefined;\n        cachedDataProduced?: Script[\"cachedDataProduced\"] | undefined;\n        cachedDataRejected?: Script[\"cachedDataRejected\"] | undefined;\n    };\n    /**\n     * Measure the memory known to V8 and used by all contexts known to the\n     * current V8 isolate, or the main context.\n     *\n     * The format of the object that the returned Promise may resolve with is\n     * specific to the V8 engine and may change from one version of V8 to the next.\n     *\n     * The returned result is different from the statistics returned by `v8.getHeapSpaceStatistics()` in that `vm.measureMemory()` measure the\n     * memory reachable by each V8 specific contexts in the current instance of\n     * the V8 engine, while the result of `v8.getHeapSpaceStatistics()` measure\n     * the memory occupied by each heap space in the current V8 instance.\n     *\n     * ```js\n     * import vm from 'node:vm';\n     * // Measure the memory used by the main context.\n     * vm.measureMemory({ mode: 'summary' })\n     *   // This is the same as vm.measureMemory()\n     *   .then((result) => {\n     *     // The current format is:\n     *     // {\n     *     //   total: {\n     *     //      jsMemoryEstimate: 2418479, jsMemoryRange: [ 2418479, 2745799 ]\n     *     //    }\n     *     // }\n     *     console.log(result);\n     *   });\n     *\n     * const context = vm.createContext({ a: 1 });\n     * vm.measureMemory({ mode: 'detailed', execution: 'eager' })\n     *   .then((result) => {\n     *     // Reference the context here so that it won't be GC'ed\n     *     // until the measurement is complete.\n     *     console.log(context.a);\n     *     // {\n     *     //   total: {\n     *     //     jsMemoryEstimate: 2574732,\n     *     //     jsMemoryRange: [ 2574732, 2904372 ]\n     *     //   },\n     *     //   current: {\n     *     //     jsMemoryEstimate: 2438996,\n     *     //     jsMemoryRange: [ 2438996, 2768636 ]\n     *     //   },\n     *     //   other: [\n     *     //     {\n     *     //       jsMemoryEstimate: 135736,\n     *     //       jsMemoryRange: [ 135736, 465376 ]\n     *     //     }\n     *     //   ]\n     *     // }\n     *     console.log(result);\n     *   });\n     * ```\n     * @since v13.10.0\n     * @experimental\n     */\n    function measureMemory(options?: MeasureMemoryOptions): Promise<MemoryMeasurement>;\n    interface ModuleEvaluateOptions {\n        timeout?: RunningScriptOptions[\"timeout\"] | undefined;\n        breakOnSigint?: RunningScriptOptions[\"breakOnSigint\"] | undefined;\n    }\n    type ModuleLinker = (\n        specifier: string,\n        referencingModule: Module,\n        extra: {\n            attributes: ImportAttributes;\n        },\n    ) => Module | Promise<Module>;\n    type ModuleStatus = \"unlinked\" | \"linking\" | \"linked\" | \"evaluating\" | \"evaluated\" | \"errored\";\n    /**\n     * This feature is only available with the `--experimental-vm-modules` command\n     * flag enabled.\n     *\n     * The `vm.Module` class provides a low-level interface for using\n     * ECMAScript modules in VM contexts. It is the counterpart of the `vm.Script` class that closely mirrors [Module Record](https://262.ecma-international.org/14.0/#sec-abstract-module-records) s as\n     * defined in the ECMAScript\n     * specification.\n     *\n     * Unlike `vm.Script` however, every `vm.Module` object is bound to a context from\n     * its creation. Operations on `vm.Module` objects are intrinsically asynchronous,\n     * in contrast with the synchronous nature of `vm.Script` objects. The use of\n     * 'async' functions can help with manipulating `vm.Module` objects.\n     *\n     * Using a `vm.Module` object requires three distinct steps: creation/parsing,\n     * linking, and evaluation. These three steps are illustrated in the following\n     * example.\n     *\n     * This implementation lies at a lower level than the `ECMAScript Module\n     * loader`. There is also no way to interact with the Loader yet, though\n     * support is planned.\n     *\n     * ```js\n     * import vm from 'node:vm';\n     *\n     * const contextifiedObject = vm.createContext({\n     *   secret: 42,\n     *   print: console.log,\n     * });\n     *\n     * // Step 1\n     * //\n     * // Create a Module by constructing a new `vm.SourceTextModule` object. This\n     * // parses the provided source text, throwing a `SyntaxError` if anything goes\n     * // wrong. By default, a Module is created in the top context. But here, we\n     * // specify `contextifiedObject` as the context this Module belongs to.\n     * //\n     * // Here, we attempt to obtain the default export from the module \"foo\", and\n     * // put it into local binding \"secret\".\n     *\n     * const bar = new vm.SourceTextModule(`\n     *   import s from 'foo';\n     *   s;\n     *   print(s);\n     * `, { context: contextifiedObject });\n     *\n     * // Step 2\n     * //\n     * // \"Link\" the imported dependencies of this Module to it.\n     * //\n     * // The provided linking callback (the \"linker\") accepts two arguments: the\n     * // parent module (`bar` in this case) and the string that is the specifier of\n     * // the imported module. The callback is expected to return a Module that\n     * // corresponds to the provided specifier, with certain requirements documented\n     * // in `module.link()`.\n     * //\n     * // If linking has not started for the returned Module, the same linker\n     * // callback will be called on the returned Module.\n     * //\n     * // Even top-level Modules without dependencies must be explicitly linked. The\n     * // callback provided would never be called, however.\n     * //\n     * // The link() method returns a Promise that will be resolved when all the\n     * // Promises returned by the linker resolve.\n     * //\n     * // Note: This is a contrived example in that the linker function creates a new\n     * // \"foo\" module every time it is called. In a full-fledged module system, a\n     * // cache would probably be used to avoid duplicated modules.\n     *\n     * async function linker(specifier, referencingModule) {\n     *   if (specifier === 'foo') {\n     *     return new vm.SourceTextModule(`\n     *       // The \"secret\" variable refers to the global variable we added to\n     *       // \"contextifiedObject\" when creating the context.\n     *       export default secret;\n     *     `, { context: referencingModule.context });\n     *\n     *     // Using `contextifiedObject` instead of `referencingModule.context`\n     *     // here would work as well.\n     *   }\n     *   throw new Error(`Unable to resolve dependency: ${specifier}`);\n     * }\n     * await bar.link(linker);\n     *\n     * // Step 3\n     * //\n     * // Evaluate the Module. The evaluate() method returns a promise which will\n     * // resolve after the module has finished evaluating.\n     *\n     * // Prints 42.\n     * await bar.evaluate();\n     * ```\n     * @since v13.0.0, v12.16.0\n     * @experimental\n     */\n    class Module {\n        /**\n         * The specifiers of all dependencies of this module. The returned array is frozen\n         * to disallow any changes to it.\n         *\n         * Corresponds to the `[[RequestedModules]]` field of [Cyclic Module Record](https://tc39.es/ecma262/#sec-cyclic-module-records) s in\n         * the ECMAScript specification.\n         */\n        dependencySpecifiers: readonly string[];\n        /**\n         * If the `module.status` is `'errored'`, this property contains the exception\n         * thrown by the module during evaluation. If the status is anything else,\n         * accessing this property will result in a thrown exception.\n         *\n         * The value `undefined` cannot be used for cases where there is not a thrown\n         * exception due to possible ambiguity with `throw undefined;`.\n         *\n         * Corresponds to the `[[EvaluationError]]` field of [Cyclic Module Record](https://tc39.es/ecma262/#sec-cyclic-module-records) s\n         * in the ECMAScript specification.\n         */\n        error: any;\n        /**\n         * The identifier of the current module, as set in the constructor.\n         */\n        identifier: string;\n        context: Context;\n        /**\n         * The namespace object of the module. This is only available after linking\n         * (`module.link()`) has completed.\n         *\n         * Corresponds to the [GetModuleNamespace](https://tc39.es/ecma262/#sec-getmodulenamespace) abstract operation in the ECMAScript\n         * specification.\n         */\n        namespace: Object;\n        /**\n         * The current status of the module. Will be one of:\n         *\n         * * `'unlinked'`: `module.link()` has not yet been called.\n         * * `'linking'`: `module.link()` has been called, but not all Promises returned\n         * by the linker function have been resolved yet.\n         * * `'linked'`: The module has been linked successfully, and all of its\n         * dependencies are linked, but `module.evaluate()` has not yet been called.\n         * * `'evaluating'`: The module is being evaluated through a `module.evaluate()` on\n         * itself or a parent module.\n         * * `'evaluated'`: The module has been successfully evaluated.\n         * * `'errored'`: The module has been evaluated, but an exception was thrown.\n         *\n         * Other than `'errored'`, this status string corresponds to the specification's [Cyclic Module Record](https://tc39.es/ecma262/#sec-cyclic-module-records)'s `[[Status]]` field. `'errored'`\n         * corresponds to `'evaluated'` in the specification, but with `[[EvaluationError]]` set to a\n         * value that is not `undefined`.\n         */\n        status: ModuleStatus;\n        /**\n         * Evaluate the module.\n         *\n         * This must be called after the module has been linked; otherwise it will reject.\n         * It could be called also when the module has already been evaluated, in which\n         * case it will either do nothing if the initial evaluation ended in success\n         * (`module.status` is `'evaluated'`) or it will re-throw the exception that the\n         * initial evaluation resulted in (`module.status` is `'errored'`).\n         *\n         * This method cannot be called while the module is being evaluated\n         * (`module.status` is `'evaluating'`).\n         *\n         * Corresponds to the [Evaluate() concrete method](https://tc39.es/ecma262/#sec-moduleevaluation) field of [Cyclic Module Record](https://tc39.es/ecma262/#sec-cyclic-module-records) s in the\n         * ECMAScript specification.\n         * @return Fulfills with `undefined` upon success.\n         */\n        evaluate(options?: ModuleEvaluateOptions): Promise<void>;\n        /**\n         * Link module dependencies. This method must be called before evaluation, and\n         * can only be called once per module.\n         *\n         * The function is expected to return a `Module` object or a `Promise` that\n         * eventually resolves to a `Module` object. The returned `Module` must satisfy the\n         * following two invariants:\n         *\n         * * It must belong to the same context as the parent `Module`.\n         * * Its `status` must not be `'errored'`.\n         *\n         * If the returned `Module`'s `status` is `'unlinked'`, this method will be\n         * recursively called on the returned `Module` with the same provided `linker` function.\n         *\n         * `link()` returns a `Promise` that will either get resolved when all linking\n         * instances resolve to a valid `Module`, or rejected if the linker function either\n         * throws an exception or returns an invalid `Module`.\n         *\n         * The linker function roughly corresponds to the implementation-defined [HostResolveImportedModule](https://tc39.es/ecma262/#sec-hostresolveimportedmodule) abstract operation in the\n         * ECMAScript\n         * specification, with a few key differences:\n         *\n         * * The linker function is allowed to be asynchronous while [HostResolveImportedModule](https://tc39.es/ecma262/#sec-hostresolveimportedmodule) is synchronous.\n         *\n         * The actual [HostResolveImportedModule](https://tc39.es/ecma262/#sec-hostresolveimportedmodule) implementation used during module\n         * linking is one that returns the modules linked during linking. Since at\n         * that point all modules would have been fully linked already, the [HostResolveImportedModule](https://tc39.es/ecma262/#sec-hostresolveimportedmodule) implementation is fully synchronous per\n         * specification.\n         *\n         * Corresponds to the [Link() concrete method](https://tc39.es/ecma262/#sec-moduledeclarationlinking) field of [Cyclic Module Record](https://tc39.es/ecma262/#sec-cyclic-module-records) s in\n         * the ECMAScript specification.\n         */\n        link(linker: ModuleLinker): Promise<void>;\n    }\n    interface SourceTextModuleOptions {\n        /**\n         * String used in stack traces.\n         * @default 'vm:module(i)' where i is a context-specific ascending index.\n         */\n        identifier?: string | undefined;\n        /**\n         * Provides an optional data with V8's code cache data for the supplied source.\n         */\n        cachedData?: ScriptOptions[\"cachedData\"] | undefined;\n        context?: Context | undefined;\n        lineOffset?: BaseOptions[\"lineOffset\"] | undefined;\n        columnOffset?: BaseOptions[\"columnOffset\"] | undefined;\n        /**\n         * Called during evaluation of this module to initialize the `import.meta`.\n         */\n        initializeImportMeta?: ((meta: ImportMeta, module: SourceTextModule) => void) | undefined;\n        /**\n         * Used to specify how the modules should be loaded during the evaluation of this script when `import()` is called. This option is\n         * part of the experimental modules API. We do not recommend using it in a production environment. For detailed information, see\n         * [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         */\n        importModuleDynamically?: DynamicModuleLoader<SourceTextModule> | undefined;\n    }\n    /**\n     * This feature is only available with the `--experimental-vm-modules` command\n     * flag enabled.\n     *\n     * The `vm.SourceTextModule` class provides the [Source Text Module Record](https://tc39.es/ecma262/#sec-source-text-module-records) as\n     * defined in the ECMAScript specification.\n     * @since v9.6.0\n     * @experimental\n     */\n    class SourceTextModule extends Module {\n        /**\n         * Creates a new `SourceTextModule` instance.\n         * @param code JavaScript Module code to parse\n         */\n        constructor(code: string, options?: SourceTextModuleOptions);\n    }\n    interface SyntheticModuleOptions {\n        /**\n         * String used in stack traces.\n         * @default 'vm:module(i)' where i is a context-specific ascending index.\n         */\n        identifier?: string | undefined;\n        /**\n         * The contextified object as returned by the `vm.createContext()` method, to compile and evaluate this module in.\n         */\n        context?: Context | undefined;\n    }\n    /**\n     * This feature is only available with the `--experimental-vm-modules` command\n     * flag enabled.\n     *\n     * The `vm.SyntheticModule` class provides the [Synthetic Module Record](https://heycam.github.io/webidl/#synthetic-module-records) as\n     * defined in the WebIDL specification. The purpose of synthetic modules is to\n     * provide a generic interface for exposing non-JavaScript sources to ECMAScript\n     * module graphs.\n     *\n     * ```js\n     * import vm from 'node:vm';\n     *\n     * const source = '{ \"a\": 1 }';\n     * const module = new vm.SyntheticModule(['default'], function() {\n     *   const obj = JSON.parse(source);\n     *   this.setExport('default', obj);\n     * });\n     *\n     * // Use `module` in linking...\n     * ```\n     * @since v13.0.0, v12.16.0\n     * @experimental\n     */\n    class SyntheticModule extends Module {\n        /**\n         * Creates a new `SyntheticModule` instance.\n         * @param exportNames Array of names that will be exported from the module.\n         * @param evaluateCallback Called when the module is evaluated.\n         */\n        constructor(\n            exportNames: string[],\n            evaluateCallback: (this: SyntheticModule) => void,\n            options?: SyntheticModuleOptions,\n        );\n        /**\n         * This method is used after the module is linked to set the values of exports. If\n         * it is called before the module is linked, an `ERR_VM_MODULE_STATUS` error\n         * will be thrown.\n         *\n         * ```js\n         * import vm from 'node:vm';\n         *\n         * const m = new vm.SyntheticModule(['x'], () => {\n         *   m.setExport('x', 1);\n         * });\n         *\n         * await m.link(() => {});\n         * await m.evaluate();\n         *\n         * assert.strictEqual(m.namespace.x, 1);\n         * ```\n         * @since v13.0.0, v12.16.0\n         * @param name Name of the export to set.\n         * @param value The value to set the export to.\n         */\n        setExport(name: string, value: any): void;\n    }\n    /**\n     * Returns an object containing commonly used constants for VM operations.\n     * @since v21.7.0, v20.12.0\n     */\n    namespace constants {\n        /**\n         * A constant that can be used as the `importModuleDynamically` option to `vm.Script`\n         * and `vm.compileFunction()` so that Node.js uses the default ESM loader from the main\n         * context to load the requested module.\n         *\n         * For detailed information, see [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v22.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).\n         * @since v21.7.0, v20.12.0\n         */\n        const USE_MAIN_CONTEXT_DEFAULT_LOADER: number;\n        /**\n         * This constant, when used as the `contextObject` argument in vm APIs, instructs Node.js to create\n         * a context without wrapping its global object with another object in a Node.js-specific manner.\n         * As a result, the `globalThis` value inside the new context would behave more closely to an ordinary\n         * one.\n         *\n         * When `vm.constants.DONT_CONTEXTIFY` is used as the `contextObject` argument to {@link createContext},\n         * the returned object is a proxy-like object to the global object in the newly created context with\n         * fewer Node.js-specific quirks. It is reference equal to the `globalThis` value in the new context,\n         * can be modified from outside the context, and can be used to access built-ins in the new context directly.\n         * @since v22.8.0\n         */\n        const DONT_CONTEXTIFY: number;\n    }\n}\ndeclare module \"node:vm\" {\n    export * from \"vm\";\n}\n",
    "node_modules/@types/node/wasi.d.ts": "/**\n * **The `node:wasi` module does not currently provide the**\n * **comprehensive file system security properties provided by some WASI runtimes.**\n * **Full support for secure file system sandboxing may or may not be implemented in**\n * **future. In the mean time, do not rely on it to run untrusted code.**\n *\n * The WASI API provides an implementation of the [WebAssembly System Interface](https://wasi.dev/) specification. WASI gives WebAssembly applications access to the underlying\n * operating system via a collection of POSIX-like functions.\n *\n * ```js\n * import { readFile } from 'node:fs/promises';\n * import { WASI } from 'node:wasi';\n * import { argv, env } from 'node:process';\n *\n * const wasi = new WASI({\n *   version: 'preview1',\n *   args: argv,\n *   env,\n *   preopens: {\n *     '/local': '/some/real/path/that/wasm/can/access',\n *   },\n * });\n *\n * const wasm = await WebAssembly.compile(\n *   await readFile(new URL('./demo.wasm', import.meta.url)),\n * );\n * const instance = await WebAssembly.instantiate(wasm, wasi.getImportObject());\n *\n * wasi.start(instance);\n * ```\n *\n * To run the above example, create a new WebAssembly text format file named `demo.wat`:\n *\n * ```text\n * (module\n *     ;; Import the required fd_write WASI function which will write the given io vectors to stdout\n *     ;; The function signature for fd_write is:\n *     ;; (File Descriptor, *iovs, iovs_len, nwritten) -> Returns number of bytes written\n *     (import \"wasi_snapshot_preview1\" \"fd_write\" (func $fd_write (param i32 i32 i32 i32) (result i32)))\n *\n *     (memory 1)\n *     (export \"memory\" (memory 0))\n *\n *     ;; Write 'hello world\\n' to memory at an offset of 8 bytes\n *     ;; Note the trailing newline which is required for the text to appear\n *     (data (i32.const 8) \"hello world\\n\")\n *\n *     (func $main (export \"_start\")\n *         ;; Creating a new io vector within linear memory\n *         (i32.store (i32.const 0) (i32.const 8))  ;; iov.iov_base - This is a pointer to the start of the 'hello world\\n' string\n *         (i32.store (i32.const 4) (i32.const 12))  ;; iov.iov_len - The length of the 'hello world\\n' string\n *\n *         (call $fd_write\n *             (i32.const 1) ;; file_descriptor - 1 for stdout\n *             (i32.const 0) ;; *iovs - The pointer to the iov array, which is stored at memory location 0\n *             (i32.const 1) ;; iovs_len - We're printing 1 string stored in an iov - so one.\n *             (i32.const 20) ;; nwritten - A place in memory to store the number of bytes written\n *         )\n *         drop ;; Discard the number of bytes written from the top of the stack\n *     )\n * )\n * ```\n *\n * Use [wabt](https://github.com/WebAssembly/wabt) to compile `.wat` to `.wasm`\n *\n * ```bash\n * wat2wasm demo.wat\n * ```\n * @experimental\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/wasi.js)\n */\ndeclare module \"wasi\" {\n    interface WASIOptions {\n        /**\n         * An array of strings that the WebAssembly application will\n         * see as command line arguments. The first argument is the virtual path to the\n         * WASI command itself.\n         * @default []\n         */\n        args?: string[] | undefined;\n        /**\n         * An object similar to `process.env` that the WebAssembly\n         * application will see as its environment.\n         * @default {}\n         */\n        env?: object | undefined;\n        /**\n         * This object represents the WebAssembly application's\n         * sandbox directory structure. The string keys of `preopens` are treated as\n         * directories within the sandbox. The corresponding values in `preopens` are\n         * the real paths to those directories on the host machine.\n         */\n        preopens?: NodeJS.Dict<string> | undefined;\n        /**\n         * By default, when WASI applications call `__wasi_proc_exit()`\n         * `wasi.start()` will return with the exit code specified rather than terminatng the process.\n         * Setting this option to `false` will cause the Node.js process to exit with\n         * the specified exit code instead.\n         * @default true\n         */\n        returnOnExit?: boolean | undefined;\n        /**\n         * The file descriptor used as standard input in the WebAssembly application.\n         * @default 0\n         */\n        stdin?: number | undefined;\n        /**\n         * The file descriptor used as standard output in the WebAssembly application.\n         * @default 1\n         */\n        stdout?: number | undefined;\n        /**\n         * The file descriptor used as standard error in the WebAssembly application.\n         * @default 2\n         */\n        stderr?: number | undefined;\n        /**\n         * The version of WASI requested.\n         * Currently the only supported versions are `'unstable'` and `'preview1'`. This option is mandatory.\n         * @since v19.8.0\n         */\n        version: \"unstable\" | \"preview1\";\n    }\n    /**\n     * The `WASI` class provides the WASI system call API and additional convenience\n     * methods for working with WASI-based applications. Each `WASI` instance\n     * represents a distinct environment.\n     * @since v13.3.0, v12.16.0\n     */\n    class WASI {\n        constructor(options?: WASIOptions);\n        /**\n         * Return an import object that can be passed to `WebAssembly.instantiate()` if no other WASM imports are needed beyond those provided by WASI.\n         *\n         * If version `unstable` was passed into the constructor it will return:\n         *\n         * ```js\n         * { wasi_unstable: wasi.wasiImport }\n         * ```\n         *\n         * If version `preview1` was passed into the constructor or no version was specified it will return:\n         *\n         * ```js\n         * { wasi_snapshot_preview1: wasi.wasiImport }\n         * ```\n         * @since v19.8.0\n         */\n        getImportObject(): object;\n        /**\n         * Attempt to begin execution of `instance` as a WASI command by invoking its `_start()` export. If `instance` does not contain a `_start()` export, or if `instance` contains an `_initialize()`\n         * export, then an exception is thrown.\n         *\n         * `start()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named `memory`. If\n         * `instance` does not have a `memory` export an exception is thrown.\n         *\n         * If `start()` is called more than once, an exception is thrown.\n         * @since v13.3.0, v12.16.0\n         */\n        start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.\n        /**\n         * Attempt to initialize `instance` as a WASI reactor by invoking its `_initialize()` export, if it is present. If `instance` contains a `_start()` export, then an exception is thrown.\n         *\n         * `initialize()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named `memory`.\n         * If `instance` does not have a `memory` export an exception is thrown.\n         *\n         * If `initialize()` is called more than once, an exception is thrown.\n         * @since v14.6.0, v12.19.0\n         */\n        initialize(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib.\n        /**\n         * `wasiImport` is an object that implements the WASI system call API. This object\n         * should be passed as the `wasi_snapshot_preview1` import during the instantiation\n         * of a [`WebAssembly.Instance`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance).\n         * @since v13.3.0, v12.16.0\n         */\n        readonly wasiImport: NodeJS.Dict<any>; // TODO: Narrow to DOM types\n    }\n}\ndeclare module \"node:wasi\" {\n    export * from \"wasi\";\n}\n",
    "node_modules/@types/node/worker_threads.d.ts": "/**\n * The `node:worker_threads` module enables the use of threads that execute\n * JavaScript in parallel. To access it:\n *\n * ```js\n * import worker from 'node:worker_threads';\n * ```\n *\n * Workers (threads) are useful for performing CPU-intensive JavaScript operations.\n * They do not help much with I/O-intensive work. The Node.js built-in\n * asynchronous I/O operations are more efficient than Workers can be.\n *\n * Unlike `child_process` or `cluster`, `worker_threads` can share memory. They do\n * so by transferring `ArrayBuffer` instances or sharing `SharedArrayBuffer` instances.\n *\n * ```js\n * import {\n *   Worker, isMainThread, parentPort, workerData,\n * } from 'node:worker_threads';\n * import { parse } from 'some-js-parsing-library';\n *\n * if (isMainThread) {\n *   module.exports = function parseJSAsync(script) {\n *     return new Promise((resolve, reject) => {\n *       const worker = new Worker(__filename, {\n *         workerData: script,\n *       });\n *       worker.on('message', resolve);\n *       worker.on('error', reject);\n *       worker.on('exit', (code) => {\n *         if (code !== 0)\n *           reject(new Error(`Worker stopped with exit code ${code}`));\n *       });\n *     });\n *   };\n * } else {\n *   const script = workerData;\n *   parentPort.postMessage(parse(script));\n * }\n * ```\n *\n * The above example spawns a Worker thread for each `parseJSAsync()` call. In\n * practice, use a pool of Workers for these kinds of tasks. Otherwise, the\n * overhead of creating Workers would likely exceed their benefit.\n *\n * When implementing a worker pool, use the `AsyncResource` API to inform\n * diagnostic tools (e.g. to provide asynchronous stack traces) about the\n * correlation between tasks and their outcomes. See `\"Using AsyncResource for a Worker thread pool\"` in the `async_hooks` documentation for an example implementation.\n *\n * Worker threads inherit non-process-specific options by default. Refer to `Worker constructor options` to know how to customize worker thread options,\n * specifically `argv` and `execArgv` options.\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/worker_threads.js)\n */\ndeclare module \"worker_threads\" {\n    import { Context } from \"node:vm\";\n    import { EventEmitter } from \"node:events\";\n    import { EventLoopUtilityFunction } from \"node:perf_hooks\";\n    import { FileHandle } from \"node:fs/promises\";\n    import { Readable, Writable } from \"node:stream\";\n    import { ReadableStream, TransformStream, WritableStream } from \"node:stream/web\";\n    import { URL } from \"node:url\";\n    const isInternalThread: boolean;\n    const isMainThread: boolean;\n    const parentPort: null | MessagePort;\n    const resourceLimits: ResourceLimits;\n    const SHARE_ENV: unique symbol;\n    const threadId: number;\n    const workerData: any;\n    /**\n     * Instances of the `worker.MessageChannel` class represent an asynchronous,\n     * two-way communications channel.\n     * The `MessageChannel` has no methods of its own. `new MessageChannel()` yields an object with `port1` and `port2` properties, which refer to linked `MessagePort` instances.\n     *\n     * ```js\n     * import { MessageChannel } from 'node:worker_threads';\n     *\n     * const { port1, port2 } = new MessageChannel();\n     * port1.on('message', (message) => console.log('received', message));\n     * port2.postMessage({ foo: 'bar' });\n     * // Prints: received { foo: 'bar' } from the `port1.on('message')` listener\n     * ```\n     * @since v10.5.0\n     */\n    class MessageChannel {\n        readonly port1: MessagePort;\n        readonly port2: MessagePort;\n    }\n    interface WorkerPerformance {\n        eventLoopUtilization: EventLoopUtilityFunction;\n    }\n    type Transferable =\n        | ArrayBuffer\n        | MessagePort\n        | AbortSignal\n        | FileHandle\n        | ReadableStream\n        | WritableStream\n        | TransformStream;\n    /** @deprecated Use `import { Transferable } from \"node:worker_threads\"` instead. */\n    type TransferListItem = Transferable;\n    /**\n     * Instances of the `worker.MessagePort` class represent one end of an\n     * asynchronous, two-way communications channel. It can be used to transfer\n     * structured data, memory regions and other `MessagePort`s between different `Worker`s.\n     *\n     * This implementation matches [browser `MessagePort`](https://developer.mozilla.org/en-US/docs/Web/API/MessagePort) s.\n     * @since v10.5.0\n     */\n    class MessagePort extends EventEmitter {\n        /**\n         * Disables further sending of messages on either side of the connection.\n         * This method can be called when no further communication will happen over this `MessagePort`.\n         *\n         * The `'close' event` is emitted on both `MessagePort` instances that\n         * are part of the channel.\n         * @since v10.5.0\n         */\n        close(): void;\n        /**\n         * Sends a JavaScript value to the receiving side of this channel. `value` is transferred in a way which is compatible with\n         * the [HTML structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm).\n         *\n         * In particular, the significant differences to `JSON` are:\n         *\n         * * `value` may contain circular references.\n         * * `value` may contain instances of builtin JS types such as `RegExp`s, `BigInt`s, `Map`s, `Set`s, etc.\n         * * `value` may contain typed arrays, both using `ArrayBuffer`s\n         * and `SharedArrayBuffer`s.\n         * * `value` may contain [`WebAssembly.Module`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module) instances.\n         * * `value` may not contain native (C++-backed) objects other than:\n         *\n         * ```js\n         * import { MessageChannel } from 'node:worker_threads';\n         * const { port1, port2 } = new MessageChannel();\n         *\n         * port1.on('message', (message) => console.log(message));\n         *\n         * const circularData = {};\n         * circularData.foo = circularData;\n         * // Prints: { foo: [Circular] }\n         * port2.postMessage(circularData);\n         * ```\n         *\n         * `transferList` may be a list of [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer), `MessagePort`, and `FileHandle` objects.\n         * After transferring, they are not usable on the sending side of the channel\n         * anymore (even if they are not contained in `value`). Unlike with `child processes`, transferring handles such as network sockets is currently\n         * not supported.\n         *\n         * If `value` contains [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instances, those are accessible\n         * from either thread. They cannot be listed in `transferList`.\n         *\n         * `value` may still contain `ArrayBuffer` instances that are not in `transferList`; in that case, the underlying memory is copied rather than moved.\n         *\n         * ```js\n         * import { MessageChannel } from 'node:worker_threads';\n         * const { port1, port2 } = new MessageChannel();\n         *\n         * port1.on('message', (message) => console.log(message));\n         *\n         * const uint8Array = new Uint8Array([ 1, 2, 3, 4 ]);\n         * // This posts a copy of `uint8Array`:\n         * port2.postMessage(uint8Array);\n         * // This does not copy data, but renders `uint8Array` unusable:\n         * port2.postMessage(uint8Array, [ uint8Array.buffer ]);\n         *\n         * // The memory for the `sharedUint8Array` is accessible from both the\n         * // original and the copy received by `.on('message')`:\n         * const sharedUint8Array = new Uint8Array(new SharedArrayBuffer(4));\n         * port2.postMessage(sharedUint8Array);\n         *\n         * // This transfers a freshly created message port to the receiver.\n         * // This can be used, for example, to create communication channels between\n         * // multiple `Worker` threads that are children of the same parent thread.\n         * const otherChannel = new MessageChannel();\n         * port2.postMessage({ port: otherChannel.port1 }, [ otherChannel.port1 ]);\n         * ```\n         *\n         * The message object is cloned immediately, and can be modified after\n         * posting without having side effects.\n         *\n         * For more information on the serialization and deserialization mechanisms\n         * behind this API, see the `serialization API of the node:v8 module`.\n         * @since v10.5.0\n         */\n        postMessage(value: any, transferList?: readonly Transferable[]): void;\n        /**\n         * Opposite of `unref()`. Calling `ref()` on a previously `unref()`ed port does _not_ let the program exit if it's the only active handle left (the default\n         * behavior). If the port is `ref()`ed, calling `ref()` again has no effect.\n         *\n         * If listeners are attached or removed using `.on('message')`, the port\n         * is `ref()`ed and `unref()`ed automatically depending on whether\n         * listeners for the event exist.\n         * @since v10.5.0\n         */\n        ref(): void;\n        /**\n         * Calling `unref()` on a port allows the thread to exit if this is the only\n         * active handle in the event system. If the port is already `unref()`ed calling `unref()` again has no effect.\n         *\n         * If listeners are attached or removed using `.on('message')`, the port is `ref()`ed and `unref()`ed automatically depending on whether\n         * listeners for the event exist.\n         * @since v10.5.0\n         */\n        unref(): void;\n        /**\n         * Starts receiving messages on this `MessagePort`. When using this port\n         * as an event emitter, this is called automatically once `'message'` listeners are attached.\n         *\n         * This method exists for parity with the Web `MessagePort` API. In Node.js,\n         * it is only useful for ignoring messages when no event listener is present.\n         * Node.js also diverges in its handling of `.onmessage`. Setting it\n         * automatically calls `.start()`, but unsetting it lets messages queue up\n         * until a new handler is set or the port is discarded.\n         * @since v10.5.0\n         */\n        start(): void;\n        addListener(event: \"close\", listener: () => void): this;\n        addListener(event: \"message\", listener: (value: any) => void): this;\n        addListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"close\"): boolean;\n        emit(event: \"message\", value: any): boolean;\n        emit(event: \"messageerror\", error: Error): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"close\", listener: () => void): this;\n        on(event: \"message\", listener: (value: any) => void): this;\n        on(event: \"messageerror\", listener: (error: Error) => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"close\", listener: () => void): this;\n        once(event: \"message\", listener: (value: any) => void): this;\n        once(event: \"messageerror\", listener: (error: Error) => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"close\", listener: () => void): this;\n        prependListener(event: \"message\", listener: (value: any) => void): this;\n        prependListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"close\", listener: () => void): this;\n        prependOnceListener(event: \"message\", listener: (value: any) => void): this;\n        prependOnceListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        removeListener(event: \"close\", listener: () => void): this;\n        removeListener(event: \"message\", listener: (value: any) => void): this;\n        removeListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        removeListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        off(event: \"close\", listener: () => void): this;\n        off(event: \"message\", listener: (value: any) => void): this;\n        off(event: \"messageerror\", listener: (error: Error) => void): this;\n        off(event: string | symbol, listener: (...args: any[]) => void): this;\n        addEventListener: EventTarget[\"addEventListener\"];\n        dispatchEvent: EventTarget[\"dispatchEvent\"];\n        removeEventListener: EventTarget[\"removeEventListener\"];\n    }\n    interface WorkerOptions {\n        /**\n         * List of arguments which would be stringified and appended to\n         * `process.argv` in the worker. This is mostly similar to the `workerData`\n         * but the values will be available on the global `process.argv` as if they\n         * were passed as CLI options to the script.\n         */\n        argv?: any[] | undefined;\n        env?: NodeJS.Dict<string> | typeof SHARE_ENV | undefined;\n        eval?: boolean | undefined;\n        workerData?: any;\n        stdin?: boolean | undefined;\n        stdout?: boolean | undefined;\n        stderr?: boolean | undefined;\n        execArgv?: string[] | undefined;\n        resourceLimits?: ResourceLimits | undefined;\n        /**\n         * Additional data to send in the first worker message.\n         */\n        transferList?: Transferable[] | undefined;\n        /**\n         * @default true\n         */\n        trackUnmanagedFds?: boolean | undefined;\n        /**\n         * An optional `name` to be appended to the worker title\n         * for debugging/identification purposes, making the final title as\n         * `[worker ${id}] ${name}`.\n         */\n        name?: string | undefined;\n    }\n    interface ResourceLimits {\n        /**\n         * The maximum size of a heap space for recently created objects.\n         */\n        maxYoungGenerationSizeMb?: number | undefined;\n        /**\n         * The maximum size of the main heap in MB.\n         */\n        maxOldGenerationSizeMb?: number | undefined;\n        /**\n         * The size of a pre-allocated memory range used for generated code.\n         */\n        codeRangeSizeMb?: number | undefined;\n        /**\n         * The default maximum stack size for the thread. Small values may lead to unusable Worker instances.\n         * @default 4\n         */\n        stackSizeMb?: number | undefined;\n    }\n    /**\n     * The `Worker` class represents an independent JavaScript execution thread.\n     * Most Node.js APIs are available inside of it.\n     *\n     * Notable differences inside a Worker environment are:\n     *\n     * * The `process.stdin`, `process.stdout`, and `process.stderr` streams may be redirected by the parent thread.\n     * * The `import { isMainThread } from 'node:worker_threads'` variable is set to `false`.\n     * * The `import { parentPort } from 'node:worker_threads'` message port is available.\n     * * `process.exit()` does not stop the whole program, just the single thread,\n     * and `process.abort()` is not available.\n     * * `process.chdir()` and `process` methods that set group or user ids\n     * are not available.\n     * * `process.env` is a copy of the parent thread's environment variables,\n     * unless otherwise specified. Changes to one copy are not visible in other\n     * threads, and are not visible to native add-ons (unless `worker.SHARE_ENV` is passed as the `env` option to the `Worker` constructor). On Windows, unlike the main thread, a copy of the\n     * environment variables operates in a case-sensitive manner.\n     * * `process.title` cannot be modified.\n     * * Signals are not delivered through `process.on('...')`.\n     * * Execution may stop at any point as a result of `worker.terminate()` being invoked.\n     * * IPC channels from parent processes are not accessible.\n     * * The `trace_events` module is not supported.\n     * * Native add-ons can only be loaded from multiple threads if they fulfill `certain conditions`.\n     *\n     * Creating `Worker` instances inside of other `Worker`s is possible.\n     *\n     * Like [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API) and the `node:cluster module`, two-way communication\n     * can be achieved through inter-thread message passing. Internally, a `Worker` has\n     * a built-in pair of `MessagePort` s that are already associated with each\n     * other when the `Worker` is created. While the `MessagePort` object on the parent\n     * side is not directly exposed, its functionalities are exposed through `worker.postMessage()` and the `worker.on('message')` event\n     * on the `Worker` object for the parent thread.\n     *\n     * To create custom messaging channels (which is encouraged over using the default\n     * global channel because it facilitates separation of concerns), users can create\n     * a `MessageChannel` object on either thread and pass one of the`MessagePort`s on that `MessageChannel` to the other thread through a\n     * pre-existing channel, such as the global one.\n     *\n     * See `port.postMessage()` for more information on how messages are passed,\n     * and what kind of JavaScript values can be successfully transported through\n     * the thread barrier.\n     *\n     * ```js\n     * import assert from 'node:assert';\n     * import {\n     *   Worker, MessageChannel, MessagePort, isMainThread, parentPort,\n     * } from 'node:worker_threads';\n     * if (isMainThread) {\n     *   const worker = new Worker(__filename);\n     *   const subChannel = new MessageChannel();\n     *   worker.postMessage({ hereIsYourPort: subChannel.port1 }, [subChannel.port1]);\n     *   subChannel.port2.on('message', (value) => {\n     *     console.log('received:', value);\n     *   });\n     * } else {\n     *   parentPort.once('message', (value) => {\n     *     assert(value.hereIsYourPort instanceof MessagePort);\n     *     value.hereIsYourPort.postMessage('the worker is sending this');\n     *     value.hereIsYourPort.close();\n     *   });\n     * }\n     * ```\n     * @since v10.5.0\n     */\n    class Worker extends EventEmitter {\n        /**\n         * If `stdin: true` was passed to the `Worker` constructor, this is a\n         * writable stream. The data written to this stream will be made available in\n         * the worker thread as `process.stdin`.\n         * @since v10.5.0\n         */\n        readonly stdin: Writable | null;\n        /**\n         * This is a readable stream which contains data written to `process.stdout` inside the worker thread. If `stdout: true` was not passed to the `Worker` constructor, then data is piped to the\n         * parent thread's `process.stdout` stream.\n         * @since v10.5.0\n         */\n        readonly stdout: Readable;\n        /**\n         * This is a readable stream which contains data written to `process.stderr` inside the worker thread. If `stderr: true` was not passed to the `Worker` constructor, then data is piped to the\n         * parent thread's `process.stderr` stream.\n         * @since v10.5.0\n         */\n        readonly stderr: Readable;\n        /**\n         * An integer identifier for the referenced thread. Inside the worker thread,\n         * it is available as `import { threadId } from 'node:worker_threads'`.\n         * This value is unique for each `Worker` instance inside a single process.\n         * @since v10.5.0\n         */\n        readonly threadId: number;\n        /**\n         * Provides the set of JS engine resource constraints for this Worker thread.\n         * If the `resourceLimits` option was passed to the `Worker` constructor,\n         * this matches its values.\n         *\n         * If the worker has stopped, the return value is an empty object.\n         * @since v13.2.0, v12.16.0\n         */\n        readonly resourceLimits?: ResourceLimits | undefined;\n        /**\n         * An object that can be used to query performance information from a worker\n         * instance. Similar to `perf_hooks.performance`.\n         * @since v15.1.0, v14.17.0, v12.22.0\n         */\n        readonly performance: WorkerPerformance;\n        /**\n         * @param filename  The path to the Worker’s main script or module.\n         *                  Must be either an absolute path or a relative path (i.e. relative to the current working directory) starting with ./ or ../,\n         *                  or a WHATWG URL object using file: protocol. If options.eval is true, this is a string containing JavaScript code rather than a path.\n         */\n        constructor(filename: string | URL, options?: WorkerOptions);\n        /**\n         * Send a message to the worker that is received via `require('node:worker_threads').parentPort.on('message')`.\n         * See `port.postMessage()` for more details.\n         * @since v10.5.0\n         */\n        postMessage(value: any, transferList?: readonly Transferable[]): void;\n        /**\n         * Sends a value to another worker, identified by its thread ID.\n         * @param threadId The target thread ID. If the thread ID is invalid, a `ERR_WORKER_MESSAGING_FAILED` error will be thrown.\n         * If the target thread ID is the current thread ID, a `ERR_WORKER_MESSAGING_SAME_THREAD` error will be thrown.\n         * @param value The value to send.\n         * @param transferList If one or more `MessagePort`-like objects are passed in value, a `transferList` is required for those items\n         * or `ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST` is thrown. See `port.postMessage()` for more information.\n         * @param timeout Time to wait for the message to be delivered in milliseconds. By default it's `undefined`, which means wait forever.\n         * If the operation times out, a `ERR_WORKER_MESSAGING_TIMEOUT` error is thrown.\n         * @since v22.5.0\n         */\n        postMessageToThread(threadId: number, value: any, timeout?: number): Promise<void>;\n        postMessageToThread(\n            threadId: number,\n            value: any,\n            transferList: readonly Transferable[],\n            timeout?: number,\n        ): Promise<void>;\n        /**\n         * Opposite of `unref()`, calling `ref()` on a previously `unref()`ed worker does _not_ let the program exit if it's the only active handle left (the default\n         * behavior). If the worker is `ref()`ed, calling `ref()` again has\n         * no effect.\n         * @since v10.5.0\n         */\n        ref(): void;\n        /**\n         * Calling `unref()` on a worker allows the thread to exit if this is the only\n         * active handle in the event system. If the worker is already `unref()`ed calling `unref()` again has no effect.\n         * @since v10.5.0\n         */\n        unref(): void;\n        /**\n         * Stop all JavaScript execution in the worker thread as soon as possible.\n         * Returns a Promise for the exit code that is fulfilled when the `'exit' event` is emitted.\n         * @since v10.5.0\n         */\n        terminate(): Promise<number>;\n        /**\n         * Returns a readable stream for a V8 snapshot of the current state of the Worker.\n         * See `v8.getHeapSnapshot()` for more details.\n         *\n         * If the Worker thread is no longer running, which may occur before the `'exit' event` is emitted, the returned `Promise` is rejected\n         * immediately with an `ERR_WORKER_NOT_RUNNING` error.\n         * @since v13.9.0, v12.17.0\n         * @return A promise for a Readable Stream containing a V8 heap snapshot\n         */\n        getHeapSnapshot(): Promise<Readable>;\n        addListener(event: \"error\", listener: (err: Error) => void): this;\n        addListener(event: \"exit\", listener: (exitCode: number) => void): this;\n        addListener(event: \"message\", listener: (value: any) => void): this;\n        addListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        addListener(event: \"online\", listener: () => void): this;\n        addListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        emit(event: \"error\", err: Error): boolean;\n        emit(event: \"exit\", exitCode: number): boolean;\n        emit(event: \"message\", value: any): boolean;\n        emit(event: \"messageerror\", error: Error): boolean;\n        emit(event: \"online\"): boolean;\n        emit(event: string | symbol, ...args: any[]): boolean;\n        on(event: \"error\", listener: (err: Error) => void): this;\n        on(event: \"exit\", listener: (exitCode: number) => void): this;\n        on(event: \"message\", listener: (value: any) => void): this;\n        on(event: \"messageerror\", listener: (error: Error) => void): this;\n        on(event: \"online\", listener: () => void): this;\n        on(event: string | symbol, listener: (...args: any[]) => void): this;\n        once(event: \"error\", listener: (err: Error) => void): this;\n        once(event: \"exit\", listener: (exitCode: number) => void): this;\n        once(event: \"message\", listener: (value: any) => void): this;\n        once(event: \"messageerror\", listener: (error: Error) => void): this;\n        once(event: \"online\", listener: () => void): this;\n        once(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependListener(event: \"error\", listener: (err: Error) => void): this;\n        prependListener(event: \"exit\", listener: (exitCode: number) => void): this;\n        prependListener(event: \"message\", listener: (value: any) => void): this;\n        prependListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        prependListener(event: \"online\", listener: () => void): this;\n        prependListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        prependOnceListener(event: \"error\", listener: (err: Error) => void): this;\n        prependOnceListener(event: \"exit\", listener: (exitCode: number) => void): this;\n        prependOnceListener(event: \"message\", listener: (value: any) => void): this;\n        prependOnceListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        prependOnceListener(event: \"online\", listener: () => void): this;\n        prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        removeListener(event: \"error\", listener: (err: Error) => void): this;\n        removeListener(event: \"exit\", listener: (exitCode: number) => void): this;\n        removeListener(event: \"message\", listener: (value: any) => void): this;\n        removeListener(event: \"messageerror\", listener: (error: Error) => void): this;\n        removeListener(event: \"online\", listener: () => void): this;\n        removeListener(event: string | symbol, listener: (...args: any[]) => void): this;\n        off(event: \"error\", listener: (err: Error) => void): this;\n        off(event: \"exit\", listener: (exitCode: number) => void): this;\n        off(event: \"message\", listener: (value: any) => void): this;\n        off(event: \"messageerror\", listener: (error: Error) => void): this;\n        off(event: \"online\", listener: () => void): this;\n        off(event: string | symbol, listener: (...args: any[]) => void): this;\n    }\n    interface BroadcastChannel extends NodeJS.RefCounted {}\n    /**\n     * Instances of `BroadcastChannel` allow asynchronous one-to-many communication\n     * with all other `BroadcastChannel` instances bound to the same channel name.\n     *\n     * ```js\n     * 'use strict';\n     *\n     * import {\n     *   isMainThread,\n     *   BroadcastChannel,\n     *   Worker,\n     * } from 'node:worker_threads';\n     *\n     * const bc = new BroadcastChannel('hello');\n     *\n     * if (isMainThread) {\n     *   let c = 0;\n     *   bc.onmessage = (event) => {\n     *     console.log(event.data);\n     *     if (++c === 10) bc.close();\n     *   };\n     *   for (let n = 0; n < 10; n++)\n     *     new Worker(__filename);\n     * } else {\n     *   bc.postMessage('hello from every worker');\n     *   bc.close();\n     * }\n     * ```\n     * @since v15.4.0\n     */\n    class BroadcastChannel {\n        readonly name: string;\n        /**\n         * Invoked with a single \\`MessageEvent\\` argument when a message is received.\n         * @since v15.4.0\n         */\n        onmessage: (message: unknown) => void;\n        /**\n         * Invoked with a received message cannot be deserialized.\n         * @since v15.4.0\n         */\n        onmessageerror: (message: unknown) => void;\n        constructor(name: string);\n        /**\n         * Closes the `BroadcastChannel` connection.\n         * @since v15.4.0\n         */\n        close(): void;\n        /**\n         * @since v15.4.0\n         * @param message Any cloneable JavaScript value.\n         */\n        postMessage(message: unknown): void;\n    }\n    /**\n     * Mark an object as not transferable. If `object` occurs in the transfer list of\n     * a `port.postMessage()` call, it is ignored.\n     *\n     * In particular, this makes sense for objects that can be cloned, rather than\n     * transferred, and which are used by other objects on the sending side.\n     * For example, Node.js marks the `ArrayBuffer`s it uses for its `Buffer pool` with this.\n     *\n     * This operation cannot be undone.\n     *\n     * ```js\n     * import { MessageChannel, markAsUntransferable } from 'node:worker_threads';\n     *\n     * const pooledBuffer = new ArrayBuffer(8);\n     * const typedArray1 = new Uint8Array(pooledBuffer);\n     * const typedArray2 = new Float64Array(pooledBuffer);\n     *\n     * markAsUntransferable(pooledBuffer);\n     *\n     * const { port1 } = new MessageChannel();\n     * port1.postMessage(typedArray1, [ typedArray1.buffer ]);\n     *\n     * // The following line prints the contents of typedArray1 -- it still owns\n     * // its memory and has been cloned, not transferred. Without\n     * // `markAsUntransferable()`, this would print an empty Uint8Array.\n     * // typedArray2 is intact as well.\n     * console.log(typedArray1);\n     * console.log(typedArray2);\n     * ```\n     *\n     * There is no equivalent to this API in browsers.\n     * @since v14.5.0, v12.19.0\n     */\n    function markAsUntransferable(object: object): void;\n    /**\n     * Check if an object is marked as not transferable with\n     * {@link markAsUntransferable}.\n     * @since v21.0.0\n     */\n    function isMarkedAsUntransferable(object: object): boolean;\n    /**\n     * Mark an object as not cloneable. If `object` is used as `message` in\n     * a `port.postMessage()` call, an error is thrown. This is a no-op if `object` is a\n     * primitive value.\n     *\n     * This has no effect on `ArrayBuffer`, or any `Buffer` like objects.\n     *\n     * This operation cannot be undone.\n     *\n     * ```js\n     * const { markAsUncloneable } = require('node:worker_threads');\n     *\n     * const anyObject = { foo: 'bar' };\n     * markAsUncloneable(anyObject);\n     * const { port1 } = new MessageChannel();\n     * try {\n     *   // This will throw an error, because anyObject is not cloneable.\n     *   port1.postMessage(anyObject)\n     * } catch (error) {\n     *   // error.name === 'DataCloneError'\n     * }\n     * ```\n     *\n     * There is no equivalent to this API in browsers.\n     * @since v22.10.0\n     */\n    function markAsUncloneable(object: object): void;\n    /**\n     * Transfer a `MessagePort` to a different `vm` Context. The original `port` object is rendered unusable, and the returned `MessagePort` instance\n     * takes its place.\n     *\n     * The returned `MessagePort` is an object in the target context and\n     * inherits from its global `Object` class. Objects passed to the [`port.onmessage()`](https://developer.mozilla.org/en-US/docs/Web/API/MessagePort/onmessage) listener are also created in the\n     * target context\n     * and inherit from its global `Object` class.\n     *\n     * However, the created `MessagePort` no longer inherits from [`EventTarget`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget), and only\n     * [`port.onmessage()`](https://developer.mozilla.org/en-US/docs/Web/API/MessagePort/onmessage) can be used to receive\n     * events using it.\n     * @since v11.13.0\n     * @param port The message port to transfer.\n     * @param contextifiedSandbox A `contextified` object as returned by the `vm.createContext()` method.\n     */\n    function moveMessagePortToContext(port: MessagePort, contextifiedSandbox: Context): MessagePort;\n    /**\n     * Receive a single message from a given `MessagePort`. If no message is available,`undefined` is returned, otherwise an object with a single `message` property\n     * that contains the message payload, corresponding to the oldest message in the `MessagePort`'s queue.\n     *\n     * ```js\n     * import { MessageChannel, receiveMessageOnPort } from 'node:worker_threads';\n     * const { port1, port2 } = new MessageChannel();\n     * port1.postMessage({ hello: 'world' });\n     *\n     * console.log(receiveMessageOnPort(port2));\n     * // Prints: { message: { hello: 'world' } }\n     * console.log(receiveMessageOnPort(port2));\n     * // Prints: undefined\n     * ```\n     *\n     * When this function is used, no `'message'` event is emitted and the `onmessage` listener is not invoked.\n     * @since v12.3.0\n     */\n    function receiveMessageOnPort(port: MessagePort):\n        | {\n            message: any;\n        }\n        | undefined;\n    type Serializable = string | object | number | boolean | bigint;\n    /**\n     * Within a worker thread, `worker.getEnvironmentData()` returns a clone\n     * of data passed to the spawning thread's `worker.setEnvironmentData()`.\n     * Every new `Worker` receives its own copy of the environment data\n     * automatically.\n     *\n     * ```js\n     * import {\n     *   Worker,\n     *   isMainThread,\n     *   setEnvironmentData,\n     *   getEnvironmentData,\n     * } from 'node:worker_threads';\n     *\n     * if (isMainThread) {\n     *   setEnvironmentData('Hello', 'World!');\n     *   const worker = new Worker(__filename);\n     * } else {\n     *   console.log(getEnvironmentData('Hello'));  // Prints 'World!'.\n     * }\n     * ```\n     * @since v15.12.0, v14.18.0\n     * @param key Any arbitrary, cloneable JavaScript value that can be used as a {Map} key.\n     */\n    function getEnvironmentData(key: Serializable): Serializable;\n    /**\n     * The `worker.setEnvironmentData()` API sets the content of `worker.getEnvironmentData()` in the current thread and all new `Worker` instances spawned from the current context.\n     * @since v15.12.0, v14.18.0\n     * @param key Any arbitrary, cloneable JavaScript value that can be used as a {Map} key.\n     * @param value Any arbitrary, cloneable JavaScript value that will be cloned and passed automatically to all new `Worker` instances. If `value` is passed as `undefined`, any previously set value\n     * for the `key` will be deleted.\n     */\n    function setEnvironmentData(key: Serializable, value?: Serializable): void;\n\n    import {\n        BroadcastChannel as _BroadcastChannel,\n        MessageChannel as _MessageChannel,\n        MessagePort as _MessagePort,\n    } from \"worker_threads\";\n    global {\n        function structuredClone<T>(\n            value: T,\n            options?: { transfer?: Transferable[] },\n        ): T;\n        /**\n         * `BroadcastChannel` class is a global reference for `import { BroadcastChannel } from 'worker_threads'`\n         * https://nodejs.org/api/globals.html#broadcastchannel\n         * @since v18.0.0\n         */\n        var BroadcastChannel: typeof globalThis extends {\n            onmessage: any;\n            BroadcastChannel: infer T;\n        } ? T\n            : typeof _BroadcastChannel;\n        /**\n         * `MessageChannel` class is a global reference for `import { MessageChannel } from 'worker_threads'`\n         * https://nodejs.org/api/globals.html#messagechannel\n         * @since v15.0.0\n         */\n        var MessageChannel: typeof globalThis extends {\n            onmessage: any;\n            MessageChannel: infer T;\n        } ? T\n            : typeof _MessageChannel;\n        /**\n         * `MessagePort` class is a global reference for `import { MessagePort } from 'worker_threads'`\n         * https://nodejs.org/api/globals.html#messageport\n         * @since v15.0.0\n         */\n        var MessagePort: typeof globalThis extends {\n            onmessage: any;\n            MessagePort: infer T;\n        } ? T\n            : typeof _MessagePort;\n    }\n}\ndeclare module \"node:worker_threads\" {\n    export * from \"worker_threads\";\n}\n",
    "node_modules/@types/node/zlib.d.ts": "/**\n * The `node:zlib` module provides compression functionality implemented using\n * Gzip, Deflate/Inflate, and Brotli.\n *\n * To access it:\n *\n * ```js\n * import zlib from 'node:zlib';\n * ```\n *\n * Compression and decompression are built around the Node.js\n * [Streams API](https://nodejs.org/docs/latest-v22.x/api/stream.html).\n *\n * Compressing or decompressing a stream (such as a file) can be accomplished by\n * piping the source stream through a `zlib` `Transform` stream into a destination\n * stream:\n *\n * ```js\n * import { createGzip } from 'node:zlib';\n * import { pipeline } from 'node:stream';\n * import {\n *   createReadStream,\n *   createWriteStream,\n * } from 'node:fs';\n *\n * const gzip = createGzip();\n * const source = createReadStream('input.txt');\n * const destination = createWriteStream('input.txt.gz');\n *\n * pipeline(source, gzip, destination, (err) => {\n *   if (err) {\n *     console.error('An error occurred:', err);\n *     process.exitCode = 1;\n *   }\n * });\n *\n * // Or, Promisified\n *\n * import { promisify } from 'node:util';\n * const pipe = promisify(pipeline);\n *\n * async function do_gzip(input, output) {\n *   const gzip = createGzip();\n *   const source = createReadStream(input);\n *   const destination = createWriteStream(output);\n *   await pipe(source, gzip, destination);\n * }\n *\n * do_gzip('input.txt', 'input.txt.gz')\n *   .catch((err) => {\n *     console.error('An error occurred:', err);\n *     process.exitCode = 1;\n *   });\n * ```\n *\n * It is also possible to compress or decompress data in a single step:\n *\n * ```js\n * import { deflate, unzip } from 'node:zlib';\n *\n * const input = '.................................';\n * deflate(input, (err, buffer) => {\n *   if (err) {\n *     console.error('An error occurred:', err);\n *     process.exitCode = 1;\n *   }\n *   console.log(buffer.toString('base64'));\n * });\n *\n * const buffer = Buffer.from('eJzT0yMAAGTvBe8=', 'base64');\n * unzip(buffer, (err, buffer) => {\n *   if (err) {\n *     console.error('An error occurred:', err);\n *     process.exitCode = 1;\n *   }\n *   console.log(buffer.toString());\n * });\n *\n * // Or, Promisified\n *\n * import { promisify } from 'node:util';\n * const do_unzip = promisify(unzip);\n *\n * do_unzip(buffer)\n *   .then((buf) => console.log(buf.toString()))\n *   .catch((err) => {\n *     console.error('An error occurred:', err);\n *     process.exitCode = 1;\n *   });\n * ```\n * @since v0.5.8\n * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/zlib.js)\n */\ndeclare module \"zlib\" {\n    import * as stream from \"node:stream\";\n    interface ZlibOptions {\n        /**\n         * @default constants.Z_NO_FLUSH\n         */\n        flush?: number | undefined;\n        /**\n         * @default constants.Z_FINISH\n         */\n        finishFlush?: number | undefined;\n        /**\n         * @default 16*1024\n         */\n        chunkSize?: number | undefined;\n        windowBits?: number | undefined;\n        level?: number | undefined; // compression only\n        memLevel?: number | undefined; // compression only\n        strategy?: number | undefined; // compression only\n        dictionary?: NodeJS.ArrayBufferView | ArrayBuffer | undefined; // deflate/inflate only, empty dictionary by default\n        /**\n         * If `true`, returns an object with `buffer` and `engine`.\n         */\n        info?: boolean | undefined;\n        /**\n         * Limits output size when using convenience methods.\n         * @default buffer.kMaxLength\n         */\n        maxOutputLength?: number | undefined;\n    }\n    interface BrotliOptions {\n        /**\n         * @default constants.BROTLI_OPERATION_PROCESS\n         */\n        flush?: number | undefined;\n        /**\n         * @default constants.BROTLI_OPERATION_FINISH\n         */\n        finishFlush?: number | undefined;\n        /**\n         * @default 16*1024\n         */\n        chunkSize?: number | undefined;\n        params?:\n            | {\n                /**\n                 * Each key is a `constants.BROTLI_*` constant.\n                 */\n                [key: number]: boolean | number;\n            }\n            | undefined;\n        /**\n         * Limits output size when using [convenience methods](https://nodejs.org/docs/latest-v22.x/api/zlib.html#convenience-methods).\n         * @default buffer.kMaxLength\n         */\n        maxOutputLength?: number | undefined;\n    }\n    interface ZstdOptions {\n        /**\n         * @default constants.ZSTD_e_continue\n         */\n        flush?: number | undefined;\n        /**\n         * @default constants.ZSTD_e_end\n         */\n        finishFlush?: number | undefined;\n        /**\n         * @default 16 * 1024\n         */\n        chunkSize?: number | undefined;\n        /**\n         * Key-value object containing indexed\n         * [Zstd parameters](https://nodejs.org/docs/latest-v22.x/api/zlib.html#zstd-constants).\n         */\n        params?: { [key: number]: number | boolean } | undefined;\n        /**\n         * Limits output size when using\n         * [convenience methods](https://nodejs.org/docs/latest-v22.x/api/zlib.html#convenience-methods).\n         * @default buffer.kMaxLength\n         */\n        maxOutputLength?: number | undefined;\n    }\n    interface Zlib {\n        /** @deprecated Use bytesWritten instead. */\n        readonly bytesRead: number;\n        readonly bytesWritten: number;\n        shell?: boolean | string | undefined;\n        close(callback?: () => void): void;\n        flush(kind?: number, callback?: () => void): void;\n        flush(callback?: () => void): void;\n    }\n    interface ZlibParams {\n        params(level: number, strategy: number, callback: () => void): void;\n    }\n    interface ZlibReset {\n        reset(): void;\n    }\n    interface BrotliCompress extends stream.Transform, Zlib {}\n    interface BrotliDecompress extends stream.Transform, Zlib {}\n    interface Gzip extends stream.Transform, Zlib {}\n    interface Gunzip extends stream.Transform, Zlib {}\n    interface Deflate extends stream.Transform, Zlib, ZlibReset, ZlibParams {}\n    interface Inflate extends stream.Transform, Zlib, ZlibReset {}\n    interface DeflateRaw extends stream.Transform, Zlib, ZlibReset, ZlibParams {}\n    interface InflateRaw extends stream.Transform, Zlib, ZlibReset {}\n    interface Unzip extends stream.Transform, Zlib {}\n    /**\n     * @since v22.15.0\n     * @experimental\n     */\n    interface ZstdCompress extends stream.Transform, Zlib {}\n    /**\n     * @since v22.15.0\n     * @experimental\n     */\n    interface ZstdDecompress extends stream.Transform, Zlib {}\n    /**\n     * Computes a 32-bit [Cyclic Redundancy Check](https://en.wikipedia.org/wiki/Cyclic_redundancy_check) checksum of `data`.\n     * If `value` is specified, it is used as the starting value of the checksum, otherwise, 0 is used as the starting value.\n     * @param data When `data` is a string, it will be encoded as UTF-8 before being used for computation.\n     * @param value An optional starting value. It must be a 32-bit unsigned integer. @default 0\n     * @returns A 32-bit unsigned integer containing the checksum.\n     * @since v22.2.0\n     */\n    function crc32(data: string | Buffer | NodeJS.ArrayBufferView, value?: number): number;\n    /**\n     * Creates and returns a new `BrotliCompress` object.\n     * @since v11.7.0, v10.16.0\n     */\n    function createBrotliCompress(options?: BrotliOptions): BrotliCompress;\n    /**\n     * Creates and returns a new `BrotliDecompress` object.\n     * @since v11.7.0, v10.16.0\n     */\n    function createBrotliDecompress(options?: BrotliOptions): BrotliDecompress;\n    /**\n     * Creates and returns a new `Gzip` object.\n     * See `example`.\n     * @since v0.5.8\n     */\n    function createGzip(options?: ZlibOptions): Gzip;\n    /**\n     * Creates and returns a new `Gunzip` object.\n     * @since v0.5.8\n     */\n    function createGunzip(options?: ZlibOptions): Gunzip;\n    /**\n     * Creates and returns a new `Deflate` object.\n     * @since v0.5.8\n     */\n    function createDeflate(options?: ZlibOptions): Deflate;\n    /**\n     * Creates and returns a new `Inflate` object.\n     * @since v0.5.8\n     */\n    function createInflate(options?: ZlibOptions): Inflate;\n    /**\n     * Creates and returns a new `DeflateRaw` object.\n     *\n     * An upgrade of zlib from 1.2.8 to 1.2.11 changed behavior when `windowBits` is set to 8 for raw deflate streams. zlib would automatically set `windowBits` to 9 if was initially set to 8. Newer\n     * versions of zlib will throw an exception,\n     * so Node.js restored the original behavior of upgrading a value of 8 to 9,\n     * since passing `windowBits = 9` to zlib actually results in a compressed stream\n     * that effectively uses an 8-bit window only.\n     * @since v0.5.8\n     */\n    function createDeflateRaw(options?: ZlibOptions): DeflateRaw;\n    /**\n     * Creates and returns a new `InflateRaw` object.\n     * @since v0.5.8\n     */\n    function createInflateRaw(options?: ZlibOptions): InflateRaw;\n    /**\n     * Creates and returns a new `Unzip` object.\n     * @since v0.5.8\n     */\n    function createUnzip(options?: ZlibOptions): Unzip;\n    /**\n     * Creates and returns a new `ZstdCompress` object.\n     * @since v22.15.0\n     */\n    function createZstdCompress(options?: ZstdOptions): ZstdCompress;\n    /**\n     * Creates and returns a new `ZstdDecompress` object.\n     * @since v22.15.0\n     */\n    function createZstdDecompress(options?: ZstdOptions): ZstdDecompress;\n    type InputType = string | ArrayBuffer | NodeJS.ArrayBufferView;\n    type CompressCallback = (error: Error | null, result: Buffer) => void;\n    /**\n     * @since v11.7.0, v10.16.0\n     */\n    function brotliCompress(buf: InputType, options: BrotliOptions, callback: CompressCallback): void;\n    function brotliCompress(buf: InputType, callback: CompressCallback): void;\n    namespace brotliCompress {\n        function __promisify__(buffer: InputType, options?: BrotliOptions): Promise<Buffer>;\n    }\n    /**\n     * Compress a chunk of data with `BrotliCompress`.\n     * @since v11.7.0, v10.16.0\n     */\n    function brotliCompressSync(buf: InputType, options?: BrotliOptions): Buffer;\n    /**\n     * @since v11.7.0, v10.16.0\n     */\n    function brotliDecompress(buf: InputType, options: BrotliOptions, callback: CompressCallback): void;\n    function brotliDecompress(buf: InputType, callback: CompressCallback): void;\n    namespace brotliDecompress {\n        function __promisify__(buffer: InputType, options?: BrotliOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `BrotliDecompress`.\n     * @since v11.7.0, v10.16.0\n     */\n    function brotliDecompressSync(buf: InputType, options?: BrotliOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function deflate(buf: InputType, callback: CompressCallback): void;\n    function deflate(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace deflate {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Compress a chunk of data with `Deflate`.\n     * @since v0.11.12\n     */\n    function deflateSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function deflateRaw(buf: InputType, callback: CompressCallback): void;\n    function deflateRaw(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace deflateRaw {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Compress a chunk of data with `DeflateRaw`.\n     * @since v0.11.12\n     */\n    function deflateRawSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function gzip(buf: InputType, callback: CompressCallback): void;\n    function gzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace gzip {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Compress a chunk of data with `Gzip`.\n     * @since v0.11.12\n     */\n    function gzipSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function gunzip(buf: InputType, callback: CompressCallback): void;\n    function gunzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace gunzip {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `Gunzip`.\n     * @since v0.11.12\n     */\n    function gunzipSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function inflate(buf: InputType, callback: CompressCallback): void;\n    function inflate(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace inflate {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `Inflate`.\n     * @since v0.11.12\n     */\n    function inflateSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function inflateRaw(buf: InputType, callback: CompressCallback): void;\n    function inflateRaw(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace inflateRaw {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `InflateRaw`.\n     * @since v0.11.12\n     */\n    function inflateRawSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v0.6.0\n     */\n    function unzip(buf: InputType, callback: CompressCallback): void;\n    function unzip(buf: InputType, options: ZlibOptions, callback: CompressCallback): void;\n    namespace unzip {\n        function __promisify__(buffer: InputType, options?: ZlibOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `Unzip`.\n     * @since v0.11.12\n     */\n    function unzipSync(buf: InputType, options?: ZlibOptions): Buffer;\n    /**\n     * @since v22.15.0\n     * @experimental\n     */\n    function zstdCompress(buf: InputType, callback: CompressCallback): void;\n    function zstdCompress(buf: InputType, options: ZstdOptions, callback: CompressCallback): void;\n    namespace zstdCompress {\n        function __promisify__(buffer: InputType, options?: ZstdOptions): Promise<Buffer>;\n    }\n    /**\n     * Compress a chunk of data with `ZstdCompress`.\n     * @since v22.15.0\n     * @experimental\n     */\n    function zstdCompressSync(buf: InputType, options?: ZstdOptions): Buffer;\n    /**\n     * @since v22.15.0\n     * @experimental\n     */\n    function zstdDecompress(buf: InputType, callback: CompressCallback): void;\n    function zstdDecompress(buf: InputType, options: ZstdOptions, callback: CompressCallback): void;\n    namespace zstdDecompress {\n        function __promisify__(buffer: InputType, options?: ZstdOptions): Promise<Buffer>;\n    }\n    /**\n     * Decompress a chunk of data with `ZstdDecompress`.\n     * @since v22.15.0\n     * @experimental\n     */\n    function zstdDecompressSync(buf: InputType, options?: ZstdOptions): Buffer;\n    namespace constants {\n        const BROTLI_DECODE: number;\n        const BROTLI_DECODER_ERROR_ALLOC_BLOCK_TYPE_TREES: number;\n        const BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MAP: number;\n        const BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MODES: number;\n        const BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_1: number;\n        const BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_2: number;\n        const BROTLI_DECODER_ERROR_ALLOC_TREE_GROUPS: number;\n        const BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET: number;\n        const BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_1: number;\n        const BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_2: number;\n        const BROTLI_DECODER_ERROR_FORMAT_CL_SPACE: number;\n        const BROTLI_DECODER_ERROR_FORMAT_CONTEXT_MAP_REPEAT: number;\n        const BROTLI_DECODER_ERROR_FORMAT_DICTIONARY: number;\n        const BROTLI_DECODER_ERROR_FORMAT_DISTANCE: number;\n        const BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_META_NIBBLE: number;\n        const BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_NIBBLE: number;\n        const BROTLI_DECODER_ERROR_FORMAT_HUFFMAN_SPACE: number;\n        const BROTLI_DECODER_ERROR_FORMAT_PADDING_1: number;\n        const BROTLI_DECODER_ERROR_FORMAT_PADDING_2: number;\n        const BROTLI_DECODER_ERROR_FORMAT_RESERVED: number;\n        const BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_ALPHABET: number;\n        const BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_SAME: number;\n        const BROTLI_DECODER_ERROR_FORMAT_TRANSFORM: number;\n        const BROTLI_DECODER_ERROR_FORMAT_WINDOW_BITS: number;\n        const BROTLI_DECODER_ERROR_INVALID_ARGUMENTS: number;\n        const BROTLI_DECODER_ERROR_UNREACHABLE: number;\n        const BROTLI_DECODER_NEEDS_MORE_INPUT: number;\n        const BROTLI_DECODER_NEEDS_MORE_OUTPUT: number;\n        const BROTLI_DECODER_NO_ERROR: number;\n        const BROTLI_DECODER_PARAM_DISABLE_RING_BUFFER_REALLOCATION: number;\n        const BROTLI_DECODER_PARAM_LARGE_WINDOW: number;\n        const BROTLI_DECODER_RESULT_ERROR: number;\n        const BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT: number;\n        const BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT: number;\n        const BROTLI_DECODER_RESULT_SUCCESS: number;\n        const BROTLI_DECODER_SUCCESS: number;\n        const BROTLI_DEFAULT_MODE: number;\n        const BROTLI_DEFAULT_QUALITY: number;\n        const BROTLI_DEFAULT_WINDOW: number;\n        const BROTLI_ENCODE: number;\n        const BROTLI_LARGE_MAX_WINDOW_BITS: number;\n        const BROTLI_MAX_INPUT_BLOCK_BITS: number;\n        const BROTLI_MAX_QUALITY: number;\n        const BROTLI_MAX_WINDOW_BITS: number;\n        const BROTLI_MIN_INPUT_BLOCK_BITS: number;\n        const BROTLI_MIN_QUALITY: number;\n        const BROTLI_MIN_WINDOW_BITS: number;\n        const BROTLI_MODE_FONT: number;\n        const BROTLI_MODE_GENERIC: number;\n        const BROTLI_MODE_TEXT: number;\n        const BROTLI_OPERATION_EMIT_METADATA: number;\n        const BROTLI_OPERATION_FINISH: number;\n        const BROTLI_OPERATION_FLUSH: number;\n        const BROTLI_OPERATION_PROCESS: number;\n        const BROTLI_PARAM_DISABLE_LITERAL_CONTEXT_MODELING: number;\n        const BROTLI_PARAM_LARGE_WINDOW: number;\n        const BROTLI_PARAM_LGBLOCK: number;\n        const BROTLI_PARAM_LGWIN: number;\n        const BROTLI_PARAM_MODE: number;\n        const BROTLI_PARAM_NDIRECT: number;\n        const BROTLI_PARAM_NPOSTFIX: number;\n        const BROTLI_PARAM_QUALITY: number;\n        const BROTLI_PARAM_SIZE_HINT: number;\n        const DEFLATE: number;\n        const DEFLATERAW: number;\n        const GUNZIP: number;\n        const GZIP: number;\n        const INFLATE: number;\n        const INFLATERAW: number;\n        const UNZIP: number;\n        const ZLIB_VERNUM: number;\n        const ZSTD_CLEVEL_DEFAULT: number;\n        const ZSTD_COMPRESS: number;\n        const ZSTD_DECOMPRESS: number;\n        const ZSTD_btlazy2: number;\n        const ZSTD_btopt: number;\n        const ZSTD_btultra: number;\n        const ZSTD_btultra2: number;\n        const ZSTD_c_chainLog: number;\n        const ZSTD_c_checksumFlag: number;\n        const ZSTD_c_compressionLevel: number;\n        const ZSTD_c_contentSizeFlag: number;\n        const ZSTD_c_dictIDFlag: number;\n        const ZSTD_c_enableLongDistanceMatching: number;\n        const ZSTD_c_hashLog: number;\n        const ZSTD_c_jobSize: number;\n        const ZSTD_c_ldmBucketSizeLog: number;\n        const ZSTD_c_ldmHashLog: number;\n        const ZSTD_c_ldmHashRateLog: number;\n        const ZSTD_c_ldmMinMatch: number;\n        const ZSTD_c_minMatch: number;\n        const ZSTD_c_nbWorkers: number;\n        const ZSTD_c_overlapLog: number;\n        const ZSTD_c_searchLog: number;\n        const ZSTD_c_strategy: number;\n        const ZSTD_c_targetLength: number;\n        const ZSTD_c_windowLog: number;\n        const ZSTD_d_windowLogMax: number;\n        const ZSTD_dfast: number;\n        const ZSTD_e_continue: number;\n        const ZSTD_e_end: number;\n        const ZSTD_e_flush: number;\n        const ZSTD_error_GENERIC: number;\n        const ZSTD_error_checksum_wrong: number;\n        const ZSTD_error_corruption_detected: number;\n        const ZSTD_error_dictionaryCreation_failed: number;\n        const ZSTD_error_dictionary_corrupted: number;\n        const ZSTD_error_dictionary_wrong: number;\n        const ZSTD_error_dstBuffer_null: number;\n        const ZSTD_error_dstSize_tooSmall: number;\n        const ZSTD_error_frameParameter_unsupported: number;\n        const ZSTD_error_frameParameter_windowTooLarge: number;\n        const ZSTD_error_init_missing: number;\n        const ZSTD_error_literals_headerWrong: number;\n        const ZSTD_error_maxSymbolValue_tooLarge: number;\n        const ZSTD_error_maxSymbolValue_tooSmall: number;\n        const ZSTD_error_memory_allocation: number;\n        const ZSTD_error_noForwardProgress_destFull: number;\n        const ZSTD_error_noForwardProgress_inputEmpty: number;\n        const ZSTD_error_no_error: number;\n        const ZSTD_error_parameter_combination_unsupported: number;\n        const ZSTD_error_parameter_outOfBound: number;\n        const ZSTD_error_parameter_unsupported: number;\n        const ZSTD_error_prefix_unknown: number;\n        const ZSTD_error_srcSize_wrong: number;\n        const ZSTD_error_stabilityCondition_notRespected: number;\n        const ZSTD_error_stage_wrong: number;\n        const ZSTD_error_tableLog_tooLarge: number;\n        const ZSTD_error_version_unsupported: number;\n        const ZSTD_error_workSpace_tooSmall: number;\n        const ZSTD_fast: number;\n        const ZSTD_greedy: number;\n        const ZSTD_lazy: number;\n        const ZSTD_lazy2: number;\n        const Z_BEST_COMPRESSION: number;\n        const Z_BEST_SPEED: number;\n        const Z_BLOCK: number;\n        const Z_BUF_ERROR: number;\n        const Z_DATA_ERROR: number;\n        const Z_DEFAULT_CHUNK: number;\n        const Z_DEFAULT_COMPRESSION: number;\n        const Z_DEFAULT_LEVEL: number;\n        const Z_DEFAULT_MEMLEVEL: number;\n        const Z_DEFAULT_STRATEGY: number;\n        const Z_DEFAULT_WINDOWBITS: number;\n        const Z_ERRNO: number;\n        const Z_FILTERED: number;\n        const Z_FINISH: number;\n        const Z_FIXED: number;\n        const Z_FULL_FLUSH: number;\n        const Z_HUFFMAN_ONLY: number;\n        const Z_MAX_CHUNK: number;\n        const Z_MAX_LEVEL: number;\n        const Z_MAX_MEMLEVEL: number;\n        const Z_MAX_WINDOWBITS: number;\n        const Z_MEM_ERROR: number;\n        const Z_MIN_CHUNK: number;\n        const Z_MIN_LEVEL: number;\n        const Z_MIN_MEMLEVEL: number;\n        const Z_MIN_WINDOWBITS: number;\n        const Z_NEED_DICT: number;\n        const Z_NO_COMPRESSION: number;\n        const Z_NO_FLUSH: number;\n        const Z_OK: number;\n        const Z_PARTIAL_FLUSH: number;\n        const Z_RLE: number;\n        const Z_STREAM_END: number;\n        const Z_STREAM_ERROR: number;\n        const Z_SYNC_FLUSH: number;\n        const Z_VERSION_ERROR: number;\n    }\n    // Allowed flush values.\n    /** @deprecated Use `constants.Z_NO_FLUSH` */\n    const Z_NO_FLUSH: number;\n    /** @deprecated Use `constants.Z_PARTIAL_FLUSH` */\n    const Z_PARTIAL_FLUSH: number;\n    /** @deprecated Use `constants.Z_SYNC_FLUSH` */\n    const Z_SYNC_FLUSH: number;\n    /** @deprecated Use `constants.Z_FULL_FLUSH` */\n    const Z_FULL_FLUSH: number;\n    /** @deprecated Use `constants.Z_FINISH` */\n    const Z_FINISH: number;\n    /** @deprecated Use `constants.Z_BLOCK` */\n    const Z_BLOCK: number;\n    /** @deprecated Use `constants.Z_TREES` */\n    const Z_TREES: number;\n    // Return codes for the compression/decompression functions.\n    // Negative values are errors, positive values are used for special but normal events.\n    /** @deprecated Use `constants.Z_OK` */\n    const Z_OK: number;\n    /** @deprecated Use `constants.Z_STREAM_END` */\n    const Z_STREAM_END: number;\n    /** @deprecated Use `constants.Z_NEED_DICT` */\n    const Z_NEED_DICT: number;\n    /** @deprecated Use `constants.Z_ERRNO` */\n    const Z_ERRNO: number;\n    /** @deprecated Use `constants.Z_STREAM_ERROR` */\n    const Z_STREAM_ERROR: number;\n    /** @deprecated Use `constants.Z_DATA_ERROR` */\n    const Z_DATA_ERROR: number;\n    /** @deprecated Use `constants.Z_MEM_ERROR` */\n    const Z_MEM_ERROR: number;\n    /** @deprecated Use `constants.Z_BUF_ERROR` */\n    const Z_BUF_ERROR: number;\n    /** @deprecated Use `constants.Z_VERSION_ERROR` */\n    const Z_VERSION_ERROR: number;\n    // Compression levels.\n    /** @deprecated Use `constants.Z_NO_COMPRESSION` */\n    const Z_NO_COMPRESSION: number;\n    /** @deprecated Use `constants.Z_BEST_SPEED` */\n    const Z_BEST_SPEED: number;\n    /** @deprecated Use `constants.Z_BEST_COMPRESSION` */\n    const Z_BEST_COMPRESSION: number;\n    /** @deprecated Use `constants.Z_DEFAULT_COMPRESSION` */\n    const Z_DEFAULT_COMPRESSION: number;\n    // Compression strategy.\n    /** @deprecated Use `constants.Z_FILTERED` */\n    const Z_FILTERED: number;\n    /** @deprecated Use `constants.Z_HUFFMAN_ONLY` */\n    const Z_HUFFMAN_ONLY: number;\n    /** @deprecated Use `constants.Z_RLE` */\n    const Z_RLE: number;\n    /** @deprecated Use `constants.Z_FIXED` */\n    const Z_FIXED: number;\n    /** @deprecated Use `constants.Z_DEFAULT_STRATEGY` */\n    const Z_DEFAULT_STRATEGY: number;\n    /** @deprecated */\n    const Z_BINARY: number;\n    /** @deprecated */\n    const Z_TEXT: number;\n    /** @deprecated */\n    const Z_ASCII: number;\n    /** @deprecated  */\n    const Z_UNKNOWN: number;\n    /** @deprecated */\n    const Z_DEFLATED: number;\n}\ndeclare module \"node:zlib\" {\n    export * from \"zlib\";\n}\n",
    "node_modules/@typia/core/lib/context/IProgrammerProps.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"./ITypiaContext\";\n/**\n * Properties passed to typia code programmers.\n *\n * `IProgrammerProps` contains all the information needed for programmer\n * functions to generate runtime validation, serialization, or transformation\n * code. Each programmer receives these props and produces TypeScript AST nodes\n * that implement the operation for the target type.\n *\n * The programmers are internal to typia's transformation system and are invoked\n * by the TypeScript transformer when processing `typia.*<T>()` function calls.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IProgrammerProps {\n    /**\n     * Typia transformation context.\n     *\n     * Contains TypeScript compiler APIs, transformation context, import manager,\n     * and configuration options. Shared across all programmers.\n     */\n    context: ITypiaContext;\n    /**\n     * Module expression for typia references.\n     *\n     * The expression representing the typia module (typically the identifier\n     * `typia`). Used when generating code that references typia internals.\n     */\n    modulo: ts.LeftHandSideExpression;\n    /**\n     * TypeScript type to generate code for.\n     *\n     * The resolved type from the generic parameter of the typia function call\n     * (e.g., `T` from `typia.is<T>()`). Analyzed to generate appropriate\n     * validation/serialization logic.\n     */\n    type: ts.Type;\n    /**\n     * Optional type name for error messages.\n     *\n     * Human-readable name for the type, used in generated error messages and\n     * debug output. May be `undefined` for anonymous types.\n     */\n    name: string | undefined;\n    /**\n     * Optional initial value expression.\n     *\n     * For functions that take an input value (like `typia.is(value)`), this is\n     * the expression representing that value. Used as the input to the generated\n     * validation code.\n     */\n    init?: ts.Expression | undefined;\n}\n",
    "node_modules/@typia/core/lib/context/ITransformOptions.d.ts": "/**\n * Typia transformer configuration options.\n *\n * `ITransformOptions` controls how typia generates validation code at compile\n * time. These options affect edge cases in type checking such as special\n * numeric values (NaN, Infinity), function properties, and undefined handling.\n *\n * Configure these options in your `tsconfig.json` under the typia plugin:\n *\n * ```json\n * {\n *   \"compilerOptions\": {\n *     \"plugins\": [{ \"transform\": \"typia/lib/transform\", \"finite\": true }]\n *   }\n * }\n * ```\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITransformOptions {\n    /**\n     * Validate that numbers are finite (not NaN or Infinity).\n     *\n     * When `true`, generated validation code includes `Number.isFinite()` checks\n     * for all number types. This catches both `NaN` and `Infinity` values that\n     * might otherwise pass numeric type checks.\n     *\n     * Behavior varies by operation context:\n     *\n     * - **Validation** (`is`, `assert`, `validate`): Follows this setting\n     * - **Marshaling** (`stringify`, `encode`): Always `true` (JSON doesn't support\n     *   NaN/Infinity)\n     * - **Parsing** (`parse`, `decode`): Always `false` (JSON can't produce\n     *   NaN/Infinity)\n     *\n     * @default false\n     */\n    finite?: undefined | boolean;\n    /**\n     * Validate that numbers are not NaN.\n     *\n     * When `true`, generated validation code includes `Number.isNaN()` checks for\n     * all number types. This is less strict than `finite` - it allows `Infinity`\n     * but rejects `NaN`.\n     *\n     * This option is **ignored** if `finite` is `true` (which already rejects\n     * NaN). Same context-dependent behavior as `finite`.\n     *\n     * @default false\n     */\n    numeric?: undefined | boolean;\n    /**\n     * Validate function-typed properties.\n     *\n     * When `true`, generated validation code includes `typeof x === \"function\"`\n     * checks for function properties. When `false`, function properties are\n     * skipped during validation.\n     *\n     * Always `false` during marshaling/parsing since functions cannot be\n     * serialized to JSON or other formats.\n     *\n     * @default false\n     */\n    functional?: undefined | boolean;\n    /**\n     * Allow `undefined` values in extra/superfluous properties.\n     *\n     * Affects strict equality checking (`equals` functions) behavior when objects\n     * have additional properties beyond the type definition.\n     *\n     * When `true`, extra properties with `undefined` values are tolerated. When\n     * `false`, any extra property (even if `undefined`) fails equality.\n     *\n     * Only affects `equals*` functions; other validation functions always allow\n     * `undefined` in extra properties.\n     *\n     * @default true\n     */\n    undefined?: undefined | boolean;\n}\n",
    "node_modules/@typia/core/lib/context/ITypiaContext.d.ts": "import ts from \"typescript\";\nimport { ImportProgrammer } from \"../programmers/ImportProgrammer\";\nimport { ITransformOptions } from \"./ITransformOptions\";\n/**\n * Typia transformation context containing compiler dependencies.\n *\n * `ITypiaContext` holds all the dependencies needed during compilation when\n * transforming `typia.*<T>()` function calls into runtime validation code. This\n * context is created by the typia transformer and passed to all programmer\n * functions.\n *\n * The context provides access to:\n *\n * - TypeScript compiler APIs for type analysis ({@link checker})\n * - AST manipulation utilities ({@link printer}, {@link transformer})\n * - Import management ({@link importer})\n * - Error reporting ({@link extras})\n * - Configuration ({@link options})\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITypiaContext {\n    /**\n     * TypeScript program instance.\n     *\n     * The compiled TypeScript program containing all source files and type\n     * information. Used to access the type checker and resolve type definitions\n     * across files.\n     */\n    program: ts.Program;\n    /**\n     * TypeScript compiler options.\n     *\n     * The compiler options from `tsconfig.json`. Affects code generation\n     * decisions like module format and strict mode settings.\n     */\n    compilerOptions: ts.CompilerOptions;\n    /**\n     * TypeScript type checker for type analysis.\n     *\n     * Provides type information for AST nodes. Used extensively to analyze\n     * generic type parameters, resolve type aliases, and extract property\n     * information from types.\n     */\n    checker: ts.TypeChecker;\n    /**\n     * TypeScript AST printer for code generation.\n     *\n     * Converts generated AST nodes back to TypeScript source code. Used for debug\n     * output and error messages.\n     */\n    printer: ts.Printer;\n    /**\n     * Typia-specific transformer options.\n     *\n     * Configuration from the typia plugin in `tsconfig.json`. Controls validation\n     * behavior for edge cases.\n     */\n    options: ITransformOptions;\n    /**\n     * TypeScript transformation context.\n     *\n     * Provides factory functions for creating AST nodes during transformation.\n     * All generated code uses this context's factory.\n     */\n    transformer: ts.TransformationContext;\n    /**\n     * Import statement manager.\n     *\n     * Tracks and generates import statements for runtime dependencies. Ensures\n     * required modules are imported when validation code references external\n     * functions.\n     */\n    importer: ImportProgrammer;\n    /**\n     * Diagnostic utilities for error reporting.\n     *\n     * Provided by ts-patch or ttypescript for reporting compilation errors and\n     * warnings. Used to surface transformation errors in the IDE and build\n     * output.\n     */\n    extras: {\n        /**\n         * Adds a diagnostic message to the compilation output.\n         *\n         * @param diag - The diagnostic to report\n         * @returns The diagnostic ID\n         */\n        addDiagnostic: (diag: ts.Diagnostic) => number;\n    };\n}\n",
    "node_modules/@typia/core/lib/context/TransformerError.d.ts": "import { MetadataFactory } from \"../factories/MetadataFactory\";\n/**\n * Error thrown during typia transformation.\n *\n * Thrown when `typia.*<T>()` receives unsupported types (e.g., tuples for some\n * LLM providers, recursive types without `$ref`, native class types). The error\n * message lists specific type violations. Use {@link from} to create from\n * multiple {@link MetadataFactory.IError} instances.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TransformerError extends Error {\n    /** Error code identifying the error type. */\n    readonly code: string;\n    constructor(props: TransformerError.IProps);\n}\nexport declare namespace TransformerError {\n    /** Constructor properties for TransformerError. */\n    interface IProps {\n        /** Error code. */\n        code: string;\n        /** Error message. */\n        message: string;\n    }\n    /**\n     * Create error from metadata factory errors.\n     *\n     * Formats multiple type errors into a single TransformerError.\n     */\n    const from: (props: {\n        code: string;\n        errors: MetadataFactory.IError[];\n    }) => TransformerError;\n}\n",
    "node_modules/@typia/core/lib/context/index.d.ts": "export * from \"./IProgrammerProps\";\nexport * from \"./ITransformOptions\";\nexport * from \"./ITypiaContext\";\nexport * from \"./TransformerError\";\n",
    "node_modules/@typia/core/lib/factories/CommentFactory.d.ts": "import ts from \"typescript\";\n/**\n * Factory for extracting JSDoc comments from TypeScript symbols.\n *\n * Extracts documentation comments and JSDoc tags from TypeScript AST symbols.\n * Handles both legacy (TS < 5.2) and modern TypeScript versions.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace CommentFactory {\n    const description: (symbol: ts.Symbol, includeTags?: boolean) => string | undefined;\n    const merge: (comments: ts.SymbolDisplayPart[]) => string;\n}\n",
    "node_modules/@typia/core/lib/factories/ExpressionFactory.d.ts": "import ts from \"typescript\";\nimport { ImportProgrammer } from \"../programmers/ImportProgrammer\";\n/**\n * Factory for creating TypeScript expression nodes.\n *\n * Creates numeric literals, type checks, instanceof expressions, and more. Also\n * provides {@link transpile} for converting string code to AST with `$input`\n * placeholder substitution and import handling.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace ExpressionFactory {\n    const number: (value: number) => ts.PrefixUnaryExpression | ts.NumericLiteral;\n    const bigint: (value: number | bigint) => ts.CallExpression;\n    const isRequired: (input: ts.Expression) => ts.Expression;\n    const isArray: (input: ts.Expression) => ts.Expression;\n    const isObject: (props: {\n        checkNull: boolean;\n        checkArray: boolean;\n        input: ts.Expression;\n    }) => ts.Expression;\n    const isInstanceOf: (type: string, input: ts.Expression) => ts.Expression;\n    const coalesce: (x: ts.Expression, y: ts.Expression) => ts.Expression;\n    const currying: (props: {\n        function: ts.Expression;\n        arguments: ts.Expression[];\n    }) => ts.CallExpression;\n    const selfCall: (body: ts.ConciseBody, type?: ts.TypeNode | undefined) => ts.CallExpression;\n    const getEscapedText: (props: {\n        printer: ts.Printer;\n        input: ts.Expression;\n    }) => string;\n    const transpile: (props: {\n        transformer?: ts.TransformationContext;\n        importer?: ImportProgrammer;\n        script: string;\n    }) => (input: ts.Expression) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/factories/FormatCheatSheet.d.ts": "/** @reference https://github.dev/ajv-validator/ajv-formats/blob/master/src/formats.ts */\nexport declare const FormatCheatSheet: {\n    readonly byte: \"/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm.test($input)\";\n    readonly password: \"true\";\n    readonly regex: \"(() => { try { new RegExp($input); return true; } catch { return false; } })()\";\n    readonly uuid: \"/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i.test($input)\";\n    readonly email: \"/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i.test($input)\";\n    readonly hostname: \"/^(?=.{1,253}\\\\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\\\\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\\\\.?$/i.test($input)\";\n    readonly \"idn-email\": \"/^(([^<>()[\\\\]\\\\.,;:\\\\s@\\\\\\\"]+(\\\\.[^<>()[\\\\]\\\\.,;:\\\\s@\\\\\\\"]+)*)|(\\\\\\\".+\\\\\\\"))@(([^<>()[\\\\]\\\\.,;:\\\\s@\\\\\\\"]+\\\\.)+[^<>()[\\\\]\\\\.,;:\\\\s@\\\\\\\"]{2,})$/i.test($input)\";\n    readonly \"idn-hostname\": \"/^([a-z0-9\\\\u00a1-\\\\uffff0-9]+(-[a-z0-9\\\\u00a1-\\\\uffff0-9]+)*\\\\.)+[a-z\\\\u00a1-\\\\uffff]{2,}$/i.test($input)\";\n    readonly iri: \"/^[A-Za-z][\\\\d+-.A-Za-z]*:[^\\\\u0000-\\\\u0020\\\"<>\\\\\\\\^`{|}]*$/u.test($input)\";\n    readonly \"iri-reference\": \"/^[A-Za-z][\\\\d+-.A-Za-z]*:[^\\\\u0000-\\\\u0020\\\"<>\\\\\\\\^`{|}]*$/u.test($input)\";\n    readonly ipv4: \"/^(?:(?:25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)\\\\.){3}(?:25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)$/.test($input)\";\n    readonly ipv6: \"/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))$/i.test($input)\";\n    readonly uri: \"/\\\\/|:/.test($input) && /^(?:[a-z][a-z0-9+\\\\-.]*:)(?:\\\\/?\\\\/(?:(?:[a-z0-9\\\\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\\\\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)\\\\.){3}(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\\\\.[a-z0-9\\\\-._~!$&'()*+,;=:]+)\\\\]|(?:(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)\\\\.){3}(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)|(?:[a-z0-9\\\\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\\\\d*)?(?:\\\\/(?:[a-z0-9\\\\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\\\\/(?:(?:[a-z0-9\\\\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\\\\/(?:[a-z0-9\\\\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\\\\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\\\\/(?:[a-z0-9\\\\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\\\\?(?:[a-z0-9\\\\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\\\\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i.test($input)\";\n    readonly \"uri-reference\": \"/^(?:[a-z][a-z0-9+\\\\-.]*:)?(?:\\\\/?\\\\/(?:(?:[a-z0-9\\\\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\\\\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)\\\\.){3}(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\\\\.[a-z0-9\\\\-._~!$&'()*+,;=:]+)\\\\]|(?:(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)\\\\.){3}(?:25[0-5]|2[0-4]\\\\d|[01]?\\\\d\\\\d?)|(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=]|%[0-9a-f]{2})*)(?::\\\\d*)?(?:\\\\/(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@]|%[0-9a-f]{2})*)*|\\\\/(?:(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@]|%[0-9a-f]{2})+(?:\\\\/(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@]|%[0-9a-f]{2})+(?:\\\\/(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\\\\?(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\\\\-._~!$&'\\\"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i.test($input)\";\n    readonly \"uri-template\": \"/^(?:(?:[^\\\\x00-\\\\x20\\\"'<>%\\\\\\\\^`{|}]|%[0-9a-f]{2})|\\\\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\\\\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\\\\*)?)*\\\\})*$/i.test($input)\";\n    readonly url: \"/^(?:https?|ftp):\\\\/\\\\/(?:\\\\S+(?::\\\\S*)?@)?(?:(?!(?:10|127)(?:\\\\.\\\\d{1,3}){3})(?!(?:169\\\\.254|192\\\\.168)(?:\\\\.\\\\d{1,3}){2})(?!172\\\\.(?:1[6-9]|2\\\\d|3[0-1])(?:\\\\.\\\\d{1,3}){2})(?:[1-9]\\\\d?|1\\\\d\\\\d|2[01]\\\\d|22[0-3])(?:\\\\.(?:1?\\\\d{1,2}|2[0-4]\\\\d|25[0-5])){2}(?:\\\\.(?:[1-9]\\\\d?|1\\\\d\\\\d|2[0-4]\\\\d|25[0-4]))|(?:(?:[a-z0-9\\\\u{00a1}-\\\\u{ffff}]+-)*[a-z0-9\\\\u{00a1}-\\\\u{ffff}]+)(?:\\\\.(?:[a-z0-9\\\\u{00a1}-\\\\u{ffff}]+-)*[a-z0-9\\\\u{00a1}-\\\\u{ffff}]+)*(?:\\\\.(?:[a-z\\\\u{00a1}-\\\\u{ffff}]{2,})))(?::\\\\d{2,5})?(?:\\\\/[^\\\\s]*)?$/iu.test($input)\";\n    readonly \"date-time\": \"/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])(T|\\\\s)([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](?:\\\\.[0-9]{1,9})?(Z|[+-]([01][0-9]|2[0-3]):[0-5][0-9])$/i.test($input)\";\n    readonly date: \"/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$/.test($input)\";\n    readonly time: \"/^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](?:\\\\.[0-9]{1,9})?(Z|[+-]([01][0-9]|2[0-3]):[0-5][0-9])$/i.test($input)\";\n    readonly duration: \"/^P(?!$)((\\\\d+Y)?(\\\\d+M)?(\\\\d+D)?(T(?=\\\\d)(\\\\d+H)?(\\\\d+M)?(\\\\d+S)?)?|(\\\\d+W)?)$/.test($input)\";\n    readonly \"json-pointer\": \"/^(?:\\\\/(?:[^~/]|~0|~1)*)*$/.test($input)\";\n    readonly \"relative-json-pointer\": \"/^(?:0|[1-9][0-9]*)(?:#|(?:\\\\/(?:[^~/]|~0|~1)*)*)$/.test($input)\";\n};\n",
    "node_modules/@typia/core/lib/factories/IdentifierFactory.d.ts": "import ts from \"typescript\";\n/**\n * Factory for creating TypeScript identifier and property access nodes.\n *\n * Creates identifiers, property access expressions, and parameter declarations.\n * Handles both valid JavaScript identifiers and string literals for property\n * names that contain special characters.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace IdentifierFactory {\n    const identifier: (name: string) => ts.Identifier | ts.StringLiteral;\n    const access: (input: ts.Expression, key: string, chain?: boolean) => ts.PropertyAccessExpression | ts.ElementAccessExpression;\n    const getName: (input: ts.Expression) => string;\n    const postfix: (str: string) => string;\n    const parameter: (name: string | ts.BindingName, type?: ts.TypeNode | undefined, init?: ts.Expression | ts.PunctuationToken<ts.SyntaxKind.QuestionToken> | undefined) => ts.ParameterDeclaration;\n}\n",
    "node_modules/@typia/core/lib/factories/JsonMetadataFactory.d.ts": "import ts from \"typescript\";\nimport { MetadataCollection } from \"../schemas/metadata/MetadataCollection\";\nimport { MetadataSchema } from \"../schemas/metadata/MetadataSchema\";\nimport { MetadataFactory } from \"./MetadataFactory\";\nexport declare namespace JsonMetadataFactory {\n    interface IProps {\n        method: string;\n        checker: ts.TypeChecker;\n        transformer?: ts.TransformationContext;\n        type: ts.Type;\n        validate?: MetadataFactory.Validator;\n    }\n    interface IOutput {\n        collection: MetadataCollection;\n        metadata: MetadataSchema;\n    }\n    const analyze: (props: IProps) => IOutput;\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/factories/LiteralFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace LiteralFactory {\n    const write: (input: any) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/factories/MetadataCommentTagFactory.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/factories/MetadataFactory.d.ts": "import { ValidationPipe } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { MetadataAliasType } from \"../schemas/metadata/MetadataAliasType\";\nimport { MetadataArrayType } from \"../schemas/metadata/MetadataArrayType\";\nimport { MetadataCollection } from \"../schemas/metadata/MetadataCollection\";\nimport { MetadataObjectType } from \"../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../schemas/metadata/MetadataSchema\";\nimport { MetadataTupleType } from \"../schemas/metadata/MetadataTupleType\";\n/**\n * TypeScript type metadata extractor.\n *\n * Analyzes TypeScript types at compile-time and extracts {@link MetadataSchema}\n * containing all type information needed for validation/serialization code\n * generation. Handles unions, intersections, generics, type aliases, and\n * collects reusable components into {@link MetadataCollection}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace MetadataFactory {\n    /** Validation function type for metadata schemas. */\n    type Validator = (props: {\n        metadata: MetadataSchema;\n        explore: IExplore;\n        top: MetadataSchema;\n    }) => string[];\n    /** Properties for metadata analysis. */\n    interface IProps {\n        /** TypeScript type checker. */\n        checker: ts.TypeChecker;\n        /** TypeScript transformation context. */\n        transformer: ts.TransformationContext | undefined;\n        /** Analysis options. */\n        options: IOptions;\n        /** Storage for collected metadata components. */\n        components: MetadataCollection;\n        /** Type to analyze. */\n        type: ts.Type | null;\n    }\n    /** Options for metadata analysis. */\n    interface IOptions {\n        /** Process escaped types. */\n        escape: boolean;\n        /** Extract constant values. */\n        constant: boolean;\n        /** Absorb union types. */\n        absorb: boolean;\n        /** Include function types. */\n        functional?: boolean;\n        /** Custom validation function. */\n        validate?: Validator;\n        /** Error callback. */\n        onError?: (node: ts.Node | undefined, message: string) => void;\n    }\n    /** Type exploration context during analysis. */\n    interface IExplore {\n        /** Whether at top-level type. */\n        top: boolean;\n        /** Current object type being explored. */\n        object: MetadataObjectType | null;\n        /** Current property key. */\n        property: string | object | null;\n        /** Nested type context. */\n        nested: null | MetadataAliasType | MetadataArrayType | MetadataTupleType;\n        /** Function parameter name. */\n        parameter: string | null;\n        /** Whether exploring return type. */\n        output: boolean;\n        /** Whether in escaped type. */\n        escaped: boolean;\n        /** Whether in aliased type. */\n        aliased: boolean;\n    }\n    /** Metadata analysis error. */\n    interface IError {\n        /** Type name where error occurred. */\n        name: string;\n        /** Exploration context at error. */\n        explore: IExplore;\n        /** Error messages. */\n        messages: string[];\n    }\n    /**\n     * Analyze TypeScript type and extract metadata.\n     *\n     * @param props Analysis properties\n     * @returns Metadata schema or validation errors\n     */\n    const analyze: (props: IProps) => ValidationPipe<MetadataSchema, IError>;\n    /**\n     * Validate metadata schema.\n     *\n     * @param props Validation properties\n     * @returns Array of validation errors\n     */\n    const validate: (props: {\n        transformer?: ts.TransformationContext;\n        options: IOptions;\n        functor: Validator;\n        metadata: MetadataSchema;\n    }) => IError[];\n}\n",
    "node_modules/@typia/core/lib/factories/MetadataTypeTagFactory.d.ts": "import { IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataObjectType } from \"../schemas/metadata/MetadataObjectType\";\nimport { MetadataFactory } from \"./MetadataFactory\";\nexport declare namespace MetadataTypeTagFactory {\n    const is: (obj: MetadataObjectType) => boolean;\n    const analyze: (props: {\n        errors: MetadataFactory.IError[];\n        type: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n        objects: MetadataObjectType[];\n        explore: MetadataFactory.IExplore;\n    }) => IMetadataTypeTag[];\n    const validate: (props: {\n        report: (next: {\n            property: string | null;\n            message: string;\n        }) => false;\n        type: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n        tags: IMetadataTypeTag[];\n    }) => boolean;\n}\n",
    "node_modules/@typia/core/lib/factories/MetadataTypeTagSchemaFactory.d.ts": "import { MetadataObjectType } from \"../schemas/metadata/MetadataObjectType\";\nexport declare namespace MetadataTypeTagSchemaFactory {\n    const object: (props: {\n        report: (msg: string) => false;\n        object: MetadataObjectType;\n    }) => object | undefined;\n}\n",
    "node_modules/@typia/core/lib/factories/NumericRangeFactory.d.ts": "import { ProtobufAtomic } from \"@typia/interface\";\nimport ts from \"typescript\";\nexport declare namespace NumericRangeFactory {\n    const number: (type: ProtobufAtomic.Numeric, input: ts.Expression) => ts.Expression;\n    const bigint: (type: ProtobufAtomic.BigNumeric, input: ts.Expression) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/factories/ProtobufFactory.d.ts": "import ts from \"typescript\";\nimport { MetadataCollection } from \"../schemas/metadata/MetadataCollection\";\nimport { MetadataSchema } from \"../schemas/metadata/MetadataSchema\";\nexport declare namespace ProtobufFactory {\n    interface IProps {\n        method: string;\n        checker: ts.TypeChecker;\n        transformer?: ts.TransformationContext;\n        components: MetadataCollection;\n        type: ts.Type;\n    }\n    const metadata: (props: IProps) => MetadataSchema;\n}\n",
    "node_modules/@typia/core/lib/factories/StatementFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace StatementFactory {\n    const mut: (props: {\n        name: string;\n        type?: ts.TypeNode | undefined;\n        initializer?: ts.Expression | undefined;\n    }) => ts.VariableStatement;\n    const constant: (props: {\n        name: string;\n        type?: ts.TypeNode | undefined;\n        value?: ts.Expression | undefined;\n    }) => ts.VariableStatement;\n    const entry: (props: {\n        key: string;\n        value: string;\n    }) => ts.VariableDeclarationList;\n    const transpile: (script: string) => ts.ExpressionStatement;\n    const block: (expression: ts.Expression) => ts.Block;\n}\n",
    "node_modules/@typia/core/lib/factories/TemplateFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace TemplateFactory {\n    const generate: (expressions: ts.Expression[]) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/factories/TypeFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace TypeFactory {\n    const isFunction: (type: ts.Type) => boolean;\n    const getFunction: (type: ts.Type) => ts.SignatureDeclaration | null;\n    const getReturnTypeOfClassMethod: (props: {\n        checker: ts.TypeChecker;\n        class: ts.Type;\n        function: string;\n    }) => ts.Type | null;\n    const getFullName: (props: {\n        checker: ts.TypeChecker;\n        type: ts.Type;\n        symbol?: ts.Symbol;\n        aliasTypeArguments?: boolean;\n    }) => string;\n    const keyword: (type: \"void\" | \"any\" | \"unknown\" | \"boolean\" | \"number\" | \"bigint\" | \"string\") => ts.KeywordTypeNode<ts.SyntaxKind.VoidKeyword | ts.SyntaxKind.AnyKeyword | ts.SyntaxKind.BooleanKeyword | ts.SyntaxKind.NumberKeyword | ts.SyntaxKind.StringKeyword | ts.SyntaxKind.UnknownKeyword | ts.SyntaxKind.BigIntKeyword>;\n}\n",
    "node_modules/@typia/core/lib/factories/ValueFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace ValueFactory {\n    const NULL: () => ts.NullLiteral;\n    const UNDEFINED: () => ts.Identifier;\n    const BOOLEAN: (value: boolean) => ts.TrueLiteral | ts.FalseLiteral;\n    const INPUT: (str?: string) => ts.Identifier;\n    const TYPEOF: (input: ts.Expression) => ts.TypeOfExpression;\n}\n",
    "node_modules/@typia/core/lib/factories/index.d.ts": "export * from \"./CommentFactory\";\nexport * from \"./ExpressionFactory\";\nexport * from \"./FormatCheatSheet\";\nexport * from \"./IdentifierFactory\";\nexport * from \"./JsonMetadataFactory\";\nexport * from \"./LiteralFactory\";\nexport * from \"./MetadataCommentTagFactory\";\nexport * from \"./MetadataFactory\";\nexport * from \"./MetadataTypeTagFactory\";\nexport * from \"./MetadataTypeTagSchemaFactory\";\nexport * from \"./NumericRangeFactory\";\nexport * from \"./ProtobufFactory\";\nexport * from \"./StatementFactory\";\nexport * from \"./TemplateFactory\";\nexport * from \"./TypeFactory\";\nexport * from \"./ValueFactory\";\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/IMetadataIteratorProps.d.ts": "import ts from \"typescript\";\nimport { MetadataCollection } from \"../../../schemas/metadata/MetadataCollection\";\nimport { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nimport { MetadataFactory } from \"../../MetadataFactory\";\nexport interface IMetadataIteratorProps<Type extends ts.Type = ts.Type> {\n    options: MetadataFactory.IOptions;\n    checker: ts.TypeChecker;\n    components: MetadataCollection;\n    errors: MetadataFactory.IError[];\n    metadata: MetadataSchema;\n    type: Type;\n    explore: MetadataFactory.IExplore;\n    intersected?: boolean;\n}\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/MetadataHelper.d.ts": "import { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nexport declare namespace MetadataHelper {\n    const literal_to_metadata: (key: string) => MetadataSchema;\n}\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/emend_metadata_atomics.d.ts": "import { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nexport declare const emend_metadata_atomics: (meta: MetadataSchema) => void;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/emplace_metadata_alias.d.ts": "import { MetadataAliasType } from \"../../../schemas/metadata/MetadataAliasType\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const emplace_metadata_alias: (props: IMetadataIteratorProps) => MetadataAliasType;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/emplace_metadata_array_type.d.ts": "import ts from \"typescript\";\nimport { MetadataArrayType } from \"../../../schemas/metadata/MetadataArrayType\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\ninterface IProps extends IMetadataIteratorProps {\n    array: ts.Type;\n}\nexport declare const emplace_metadata_array_type: (props: IProps) => MetadataArrayType;\nexport {};\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/emplace_metadata_object.d.ts": "import { MetadataObjectType } from \"../../../schemas/metadata/MetadataObjectType\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const emplace_metadata_object: (props: IMetadataIteratorProps) => MetadataObjectType;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/emplace_metadata_tuple.d.ts": "import ts from \"typescript\";\nimport { MetadataTupleType } from \"../../../schemas/metadata/MetadataTupleType\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const emplace_metadata_tuple: (props: IMetadataIteratorProps<ts.TupleType>) => MetadataTupleType;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/explore_metadata.d.ts": "import ts from \"typescript\";\nimport { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const explore_metadata: (props: Required<IProps>) => MetadataSchema;\ninterface IProps extends Omit<IMetadataIteratorProps, \"metadata\" | \"type\"> {\n    type: ts.Type | null;\n}\nexport {};\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata: (props: IMetadataIteratorProps) => void;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_alias.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_alias: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_array.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_array: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_atomic.d.ts": "import ts from \"typescript\";\nimport { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nexport declare const iterate_metadata_atomic: (props: {\n    metadata: MetadataSchema;\n    type: ts.Type;\n}) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_coalesce.d.ts": "import ts from \"typescript\";\nimport { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nexport declare const iterate_metadata_coalesce: (props: {\n    metadata: MetadataSchema;\n    type: ts.Type;\n}) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_collection.d.ts": "import { MetadataCollection } from \"../../../schemas/metadata/MetadataCollection\";\nimport { MetadataFactory } from \"../../MetadataFactory\";\nexport declare const iterate_metadata_collection: (props: {\n    errors: MetadataFactory.IError[];\n    collection: MetadataCollection;\n}) => void;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_comment_tags.d.ts": "import { MetadataObjectType } from \"../../../schemas/metadata/MetadataObjectType\";\nimport { MetadataFactory } from \"../../MetadataFactory\";\nexport declare const iterate_metadata_comment_tags: (props: {\n    errors: MetadataFactory.IError[];\n    object: MetadataObjectType;\n}) => void;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_constant.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_constant: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_escape.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_escape: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_function.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_function: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_intersection.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_intersection: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_map.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_map: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_native.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_native: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_object.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_object: (props: IMetadataIteratorProps, ensure?: boolean) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_set.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_set: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_sort.d.ts": "import { MetadataCollection } from \"../../../schemas/metadata/MetadataCollection\";\nimport { MetadataSchema } from \"../../../schemas/metadata/MetadataSchema\";\nexport declare const iterate_metadata_sort: (props: {\n    collection: MetadataCollection;\n    metadata: MetadataSchema;\n}) => void;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_template.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_template: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_tuple.d.ts": "import ts from \"typescript\";\nimport { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_tuple: (props: IMetadataIteratorProps<ts.TupleType>) => boolean;\n",
    "node_modules/@typia/core/lib/factories/internal/metadata/iterate_metadata_union.d.ts": "import { IMetadataIteratorProps } from \"./IMetadataIteratorProps\";\nexport declare const iterate_metadata_union: (props: IMetadataIteratorProps) => boolean;\n",
    "node_modules/@typia/core/lib/index.d.ts": "export * from \"./context/index\";\nexport * from \"./factories/index\";\nexport * from \"./programmers/index\";\nexport * from \"./schemas/index\";\n",
    "node_modules/@typia/core/lib/programmers/AssertProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"./helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"./internal/FeatureProgrammer\";\n/**\n * Assertion code generator.\n *\n * Generates runtime assertion code that throws `TypeGuardError` on failure.\n * Used by `typia.assert<T>()` and `typia.assertEquals<T>()`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace AssertProgrammer {\n    /** Assertion configuration. */\n    interface IConfig {\n        /** Check for superfluous properties. */\n        equals: boolean;\n        /** Use type guard return type. */\n        guard: boolean;\n    }\n    /** Properties for assertion code generation. */\n    interface IProps extends IProgrammerProps {\n        config: IConfig;\n    }\n    const decompose: (props: {\n        config: IConfig;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n    namespace Guardian {\n        const identifier: () => ts.Identifier;\n        const parameter: (props: {\n            context: ITypiaContext;\n            init: ts.Expression | undefined;\n        }) => ts.ParameterDeclaration;\n        const type: (context: ITypiaContext) => ts.FunctionTypeNode;\n    }\n}\n",
    "node_modules/@typia/core/lib/programmers/ImportProgrammer.d.ts": "import ts from \"typescript\";\n/**\n * Import statement manager for code generation.\n *\n * Collects and deduplicates import declarations needed by generated code.\n * Tracks default imports ({@link default}), named imports ({@link instance}), and\n * namespace imports ({@link namespace}). Call {@link toStatements} to emit the\n * final import declaration AST nodes.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ImportProgrammer {\n    private readonly assets_;\n    private readonly options_;\n    constructor(options?: Partial<ImportProgrammer.IOptions>);\n    default(props: ImportProgrammer.IDefault): ts.Identifier;\n    instance(props: ImportProgrammer.IInstance): ts.Identifier;\n    namespace(props: ImportProgrammer.INamespace): ts.Identifier;\n    type(props: {\n        file: string;\n        name: string | ts.EntityName;\n        arguments?: ts.TypeNode[];\n    }): ts.ImportTypeNode;\n    private alias;\n    toStatements(): ts.ImportDeclaration[];\n}\nexport declare namespace ImportProgrammer {\n    interface IOptions {\n        internalPrefix: string;\n        runtime?: \"ts\" | \"js\";\n    }\n    interface IDefault {\n        file: string;\n        name: string;\n        type: boolean;\n    }\n    interface IInstance {\n        file: string;\n        name: string;\n        alias: string | null;\n    }\n    interface INamespace {\n        file: string;\n        name: string;\n    }\n}\n",
    "node_modules/@typia/core/lib/programmers/IsProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../context/ITypiaContext\";\nimport { MetadataCollection } from \"../schemas/metadata/MetadataCollection\";\nimport { MetadataObjectType } from \"../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"./helpers/FunctionProgrammer\";\nimport { IExpressionEntry } from \"./helpers/IExpressionEntry\";\nimport { CheckerProgrammer } from \"./internal/CheckerProgrammer\";\nimport { FeatureProgrammer } from \"./internal/FeatureProgrammer\";\n/**\n * Type guard code generator.\n *\n * Generates runtime type guard code returning boolean. Used by `typia.is<T>()`\n * and `typia.equals<T>()`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace IsProgrammer {\n    const configure: (props: {\n        options?: Partial<CONFIG.IOptions>;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n    }) => CheckerProgrammer.IConfig;\n    namespace CONFIG {\n        interface IOptions {\n            numeric: boolean;\n            undefined: boolean;\n            object: (props: {\n                input: ts.Expression;\n                entries: IExpressionEntry<ts.Expression>[];\n            }) => ts.Expression;\n        }\n    }\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps extends IProgrammerProps {\n        config: IConfig;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        config: IConfig;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n    const write_function_statements: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const decode: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        metadata: MetadataSchema;\n        input: ts.Expression;\n        explore: CheckerProgrammer.IExplore;\n    }) => ts.Expression;\n    const decode_object: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        object: MetadataObjectType;\n        input: ts.Expression;\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.CallExpression;\n    const decode_to_json: (props: {\n        input: ts.Expression;\n        checkNull: boolean;\n    }) => ts.Expression;\n    const decode_functional: (input: ts.Expression) => ts.BinaryExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/RandomProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"./helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"./internal/FeatureProgrammer\";\n/**\n * Random data generator code generator.\n *\n * Generates code that creates random values matching type constraints. Used by\n * `typia.random<T>()`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace RandomProgrammer {\n    /** Properties for random code generation. */\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        type: ts.Type;\n        name: string | undefined;\n        init: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init: ts.Expression | undefined;\n    }\n    const decompose: (props: IDecomposeProps) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/ValidateProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"./helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"./internal/FeatureProgrammer\";\n/**\n * Validation code generator.\n *\n * Generates runtime validation code returning `IValidation` result. Collects\n * all errors instead of failing on first error. Used by `typia.validate<T>()`\n * and `typia.validateEquals<T>()`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace ValidateProgrammer {\n    /** Validation configuration. */\n    interface IConfig {\n        /** Check for superfluous properties. */\n        equals: boolean;\n        /** Use standard schema format. */\n        standardSchema?: boolean;\n    }\n    /** Properties for validation code generation. */\n    interface IProps extends IProgrammerProps {\n        config: IConfig;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        config: IConfig;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalAssertFunctionProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalAssertFunctionProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const errorFactoryWrapper: (props: {\n        context: ITypiaContext;\n        parameters: readonly ts.ParameterDeclaration[];\n        init: ts.Expression | undefined;\n    }) => {\n        name: string;\n        variable: ts.VariableStatement;\n    };\n    const hookPath: (props: {\n        wrapper: string;\n        replacer: string;\n    }) => ts.ArrowFunction;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalAssertParametersProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalAssertParametersProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        config: IConfig;\n        modulo: ts.LeftHandSideExpression;\n        parameters: readonly ts.ParameterDeclaration[];\n        wrapper: string;\n    }\n    interface IDecomposeOutput {\n        functions: ts.Statement[];\n        expressions: ts.Expression[];\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalAssertReturnProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionAssertReturnProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        expression: ts.Expression;\n        declaration: ts.FunctionDeclaration;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        expression: ts.Expression;\n        declaration: ts.FunctionDeclaration;\n        wrapper: string;\n    }\n    interface IDecomposeOutput {\n        async: boolean;\n        functions: ts.Statement[];\n        value: ts.Expression;\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalIsFunctionProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalIsFunctionProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const getReturnTypeNode: (props: {\n        declaration: ts.FunctionDeclaration;\n        async: boolean;\n    }) => ts.TypeNode | undefined;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalIsParametersProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalIsParametersProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        config: IConfig;\n        modulo: ts.LeftHandSideExpression;\n        declaration: ts.FunctionDeclaration;\n    }\n    interface IDecomposeOutput {\n        functions: ts.Statement[];\n        statements: ts.Statement[];\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalIsReturnProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalIsReturnProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        expression: ts.Expression;\n        declaration: ts.FunctionDeclaration;\n    }\n    interface IDecomposeOutput {\n        async: boolean;\n        functions: ts.Statement[];\n        statements: ts.Statement[];\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalValidateFunctionProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalValidateFunctionProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const hookErrors: (props: {\n        expression: ts.Expression;\n        replacer: ts.Expression;\n    }) => ts.CallExpression;\n    const getReturnTypeNode: (props: {\n        context: ITypiaContext;\n        declaration: ts.FunctionDeclaration;\n        async: boolean;\n    }) => ts.TypeNode | undefined;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalValidateParametersProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalValidateParametersProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n    }\n    interface IDecomposeOutput {\n        functions: ts.Statement[];\n        statements: ts.Statement[];\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/FunctionalValidateReturnProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace FunctionalValidateReturnProgrammer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface IProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        declaration: ts.FunctionDeclaration;\n        expression: ts.Expression;\n        init?: ts.Expression | undefined;\n    }\n    interface IDecomposeProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        config: IConfig;\n        expression: ts.Expression;\n        declaration: ts.FunctionDeclaration;\n    }\n    interface IDecomposeOutput {\n        async: boolean;\n        functions: ts.Statement[];\n        statements: ts.Statement[];\n    }\n    const write: (props: IProps) => ts.CallExpression;\n    const decompose: (props: IDecomposeProps) => IDecomposeOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/functional/index.d.ts": "export * from \"./FunctionalAssertFunctionProgrammer\";\nexport * from \"./FunctionalAssertParametersProgrammer\";\nexport * from \"./FunctionalAssertReturnProgrammer\";\nexport * from \"./FunctionalIsFunctionProgrammer\";\nexport * from \"./FunctionalIsParametersProgrammer\";\nexport * from \"./FunctionalIsReturnProgrammer\";\nexport * from \"./FunctionalValidateFunctionProgrammer\";\nexport * from \"./FunctionalValidateParametersProgrammer\";\nexport * from \"./FunctionalValidateReturnProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/functional/internal/FunctionalGeneralProgrammer.d.ts": "import ts from \"typescript\";\nexport declare namespace FunctionalGeneralProgrammer {\n    interface IProps {\n        checker: ts.TypeChecker;\n        declaration: ts.FunctionDeclaration | ts.SignatureDeclaration;\n    }\n    interface IOutput {\n        type: ts.Type;\n        async: boolean;\n    }\n    const getReturnType: (props: IProps) => IOutput;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/AtomicPredicator.d.ts": "import { Atomic } from \"@typia/interface\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace AtomicPredicator {\n    const constant: (props: {\n        metadata: MetadataSchema;\n        name: Atomic.Literal;\n    }) => boolean;\n    const atomic: (props: {\n        metadata: MetadataSchema;\n        name: Atomic.Literal;\n    }) => boolean;\n    const native: (name: string) => boolean;\n    const template: (metadata: MetadataSchema) => boolean;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/CloneJoiner.d.ts": "import ts from \"typescript\";\nimport { IExpressionEntry } from \"./IExpressionEntry\";\nexport declare namespace CloneJoiner {\n    const object: (props: {\n        input: ts.Expression;\n        entries: IExpressionEntry<ts.Expression>[];\n    }) => ts.ConciseBody;\n    const tuple: (props: {\n        elements: ts.Expression[];\n        rest: ts.Expression | null;\n    }) => ts.Expression;\n    const array: (props: {\n        input: ts.Expression;\n        arrow: ts.Expression;\n    }) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/FunctionProgrammer.d.ts": "import ts from \"typescript\";\nexport declare class FunctionProgrammer {\n    readonly method: string;\n    private readonly local_;\n    private readonly unions_;\n    private readonly variables_;\n    private sequence_;\n    constructor(method: string);\n    useLocal(name: string): string;\n    hasLocal(name: string): boolean;\n    declare(includeUnions?: boolean): ts.Statement[];\n    declareUnions(): ts.Statement[];\n    increment(): number;\n    emplaceUnion(prefix: string, name: string, factory: () => ts.ArrowFunction): string;\n    emplaceVariable(name: string, value: ts.Expression): ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/HttpMetadataUtil.d.ts": "import { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace HttpMetadataUtil {\n    const atomics: (metadata: MetadataSchema) => Set<\"boolean\" | \"bigint\" | \"number\" | \"string\">;\n    const isUnion: (metadata: MetadataSchema) => boolean;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/ICheckEntry.d.ts": "import ts from \"typescript\";\nexport interface ICheckEntry {\n    expected: string;\n    expression: ts.Expression | null;\n    conditions: ICheckEntry.ICondition[][];\n}\nexport declare namespace ICheckEntry {\n    interface ICondition {\n        expected: string;\n        expression: ts.Expression;\n    }\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/IExpressionEntry.d.ts": "import ts from \"typescript\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport interface IExpressionEntry<Expression extends ts.ConciseBody = ts.ConciseBody> {\n    input: ts.Expression;\n    key: MetadataSchema;\n    meta: MetadataSchema;\n    expression: Expression;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/NotationJoiner.d.ts": "import ts from \"typescript\";\nimport { IExpressionEntry } from \"./IExpressionEntry\";\nexport declare namespace NotationJoiner {\n    const object: (props: {\n        rename: (str: string) => string;\n        input: ts.Expression;\n        entries: IExpressionEntry<ts.Expression>[];\n    }) => ts.ConciseBody;\n    const tuple: (props: {\n        elements: ts.Expression[];\n        rest: ts.Expression | null;\n    }) => ts.Expression;\n    const array: (props: {\n        input: ts.Expression;\n        arrow: ts.Expression;\n    }) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/OptionPredicator.d.ts": "import { ITransformOptions } from \"../../context/ITransformOptions\";\nexport declare namespace OptionPredicator {\n    const numeric: (options: ITransformOptions) => boolean;\n    const functional: (options: ITransformOptions) => boolean;\n    const finite: (options: ITransformOptions) => boolean;\n    const undefined: (options: ITransformOptions) => boolean;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/ProtobufUtil.d.ts": "import { IMetadataTypeTag, ProtobufAtomic } from \"@typia/interface\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace ProtobufUtil {\n    const isStaticObject: (obj: MetadataObjectType) => boolean;\n    const size: (meta: MetadataSchema) => number;\n    const getSequence: (tags: IMetadataTypeTag[]) => number | null;\n    const isUnion: (meta: MetadataSchema) => boolean;\n    const getAtomics: (meta: MetadataSchema, union?: Map<string, number | null>) => Map<string, number | null>;\n    const getNumbers: (meta: MetadataSchema, union?: Map<string, number | null>) => Map<string, number | null>;\n    const getBigints: (meta: MetadataSchema, union?: Map<string, number | null>) => Map<string, number | null>;\n    const compare: (x: ProtobufAtomic, y: ProtobufAtomic) => number;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/ProtobufWire.d.ts": "export declare const enum ProtobufWire {\n    /**\n     * - Integers\n     * - Bool\n     * - Enum\n     */\n    VARIANT = 0,\n    /**\n     * - Fixed64\n     * - Sfixed64\n     * - Double\n     */\n    I64 = 1,\n    /**\n     * - String\n     * - Bytes\n     * - Mebedded messages\n     * - Packed repeated fields\n     */\n    LEN = 2,\n    START_GROUP = 3,\n    END_GROUP = 4,\n    /**\n     * - Fixed\n     * - Sfixed32\n     * - Float\n     */\n    I32 = 5\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/PruneJoiner.d.ts": "import ts from \"typescript\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { IExpressionEntry } from \"./IExpressionEntry\";\nexport declare namespace PruneJoiner {\n    const object: (props: {\n        input: ts.Expression;\n        entries: IExpressionEntry[];\n        object: MetadataObjectType;\n    }) => ts.ConciseBody;\n    const array: (props: {\n        input: ts.Expression;\n        arrow: ts.ArrowFunction;\n    }) => ts.CallExpression;\n    const tuple: (props: {\n        elements: ts.ConciseBody[];\n        rest: ts.ConciseBody | null;\n    }) => ts.Block;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/RandomJoiner.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { MetadataArrayType } from \"../../schemas/metadata/MetadataArrayType\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace RandomJoiner {\n    type Decoder = (metadata: MetadataSchema) => ts.Expression;\n    const array: (props: {\n        decode: Decoder;\n        recursive: boolean;\n        expression: ts.Expression;\n        array: MetadataArrayType;\n        schema: Omit<OpenApi.IJsonSchema.IArray, \"items\"> | undefined;\n    }) => ts.Expression;\n    const tuple: (props: {\n        decode: Decoder;\n        elements: MetadataSchema[];\n    }) => ts.ArrayLiteralExpression;\n    const object: (props: {\n        decode: Decoder;\n        object: MetadataObjectType;\n    }) => ts.ConciseBody;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/StringifyJoinder.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { IExpressionEntry } from \"./IExpressionEntry\";\nexport declare namespace StringifyJoiner {\n    const object: (props: {\n        context: ITypiaContext;\n        entries: IExpressionEntry<ts.Expression>[];\n    }) => ts.Expression;\n    const array: (props: {\n        input: ts.Expression;\n        arrow: ts.ArrowFunction;\n    }) => ts.Expression;\n    const tuple: (props: {\n        elements: ts.Expression[];\n        rest: ts.Expression | null;\n    }) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/StringifyPredicator.d.ts": "import { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace StringifyPredicator {\n    const require_escape: (value: string) => boolean;\n    const undefindable: (metadata: MetadataSchema) => boolean;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/UnionExplorer.d.ts": "import ts from \"typescript\";\nimport { MetadataArray } from \"../../schemas/metadata/MetadataArray\";\nimport { MetadataMap } from \"../../schemas/metadata/MetadataMap\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { MetadataSet } from \"../../schemas/metadata/MetadataSet\";\nimport { MetadataTuple } from \"../../schemas/metadata/MetadataTuple\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nimport { check_union_array_like } from \"../iterate/check_union_array_like\";\nexport declare namespace UnionExplorer {\n    interface Decoder<T> {\n        (props: {\n            input: ts.Expression;\n            definition: T;\n            explore: FeatureProgrammer.IExplore;\n        }): ts.Expression;\n    }\n    type ObjectCombiner = Decoder<MetadataObjectType[]>;\n    const object: (props: {\n        config: FeatureProgrammer.IConfig;\n        level?: number;\n        objects: MetadataObjectType[];\n        input: ts.Expression;\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.Expression;\n    const tuple: (props: {\n        config: check_union_array_like.IConfig<MetadataTuple, MetadataTuple>;\n        parameters: ts.ParameterDeclaration[];\n        input: ts.Expression;\n        tuples: MetadataTuple[];\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.ArrowFunction;\n    namespace tuple {\n        type IConfig = check_union_array_like.IConfig<MetadataTuple, MetadataTuple>;\n    }\n    const array: (props: {\n        config: array.IConfig;\n        parameters: ts.ParameterDeclaration[];\n        input: ts.Expression;\n        arrays: MetadataArray[];\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.ArrowFunction;\n    namespace array {\n        type IConfig = check_union_array_like.IConfig<MetadataArray, MetadataSchema>;\n    }\n    const array_or_tuple: (props: {\n        config: array_or_tuple.IConfig;\n        parameters: ts.ParameterDeclaration[];\n        input: ts.Expression;\n        definitions: (MetadataArray | MetadataTuple)[];\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.ArrowFunction;\n    namespace array_or_tuple {\n        type IConfig = check_union_array_like.IConfig<MetadataArray | MetadataTuple, MetadataSchema | MetadataTuple>;\n    }\n    const set: (props: {\n        config: set.IConfig;\n        parameters: ts.ParameterDeclaration[];\n        input: ts.Expression;\n        sets: MetadataSet[];\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.ArrowFunction;\n    namespace set {\n        type IConfig = check_union_array_like.IConfig<MetadataArray, MetadataSchema>;\n    }\n    const map: (props: {\n        config: map.IConfig;\n        parameters: ts.ParameterDeclaration[];\n        input: ts.Expression;\n        maps: MetadataMap[];\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.ArrowFunction;\n    namespace map {\n        type IConfig = check_union_array_like.IConfig<MetadataArray, [\n            MetadataSchema,\n            MetadataSchema\n        ]>;\n    }\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/UnionPredicator.d.ts": "import { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataProperty } from \"../../schemas/metadata/MetadataProperty\";\nexport declare namespace UnionPredicator {\n    interface ISpecialized {\n        index: number;\n        object: MetadataObjectType;\n        property: MetadataProperty;\n        neighbor: boolean;\n    }\n    const object: (objects: MetadataObjectType[]) => Array<ISpecialized>;\n}\n",
    "node_modules/@typia/core/lib/programmers/helpers/disable_function_programmer_declare.d.ts": "import { FunctionProgrammer } from \"./FunctionProgrammer\";\nexport declare const disable_function_programmer_declare: (functor: FunctionProgrammer) => FunctionProgrammer;\n",
    "node_modules/@typia/core/lib/programmers/http/HttpAssertFormDataProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpAssertFormDataProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpAssertHeadersProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpAssertHeadersProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpAssertQueryProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpAssertQueryProgrammer {\n    interface IProps extends IProgrammerProps {\n        allowOptional?: boolean;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n        allowOptional: boolean;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpFormDataProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpFormDataProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpHeadersProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpHeadersProgrammer {\n    const INPUT_TYPE = \"Record<string, string | string[] | undefined>\";\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpIsFormDataProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpIsFormDataProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpIsHeadersProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpIsHeadersProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpIsQueryProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpIsQueryProgrammer {\n    interface IProps extends IProgrammerProps {\n        allowOptional?: boolean;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        allowOptional: boolean;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpParameterProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace HttpParameterProgrammer {\n    const write: (props: IProgrammerProps) => ts.ArrowFunction;\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpQueryProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpQueryProgrammer {\n    interface IProps extends IProgrammerProps {\n        allowOptional?: boolean;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        allowOptional: boolean;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n        allowOptional?: boolean | undefined;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpValidateFormDataProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpValidateFormDataProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpValidateHeadersProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpValidateHeadersProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/HttpValidateQueryProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace HttpValidateQueryProgrammer {\n    interface IProps extends IProgrammerProps {\n        allowOptional?: boolean;\n    }\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        allowOptional: boolean;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/http/index.d.ts": "export * from \"./HttpAssertFormDataProgrammer\";\nexport * from \"./HttpAssertHeadersProgrammer\";\nexport * from \"./HttpAssertQueryProgrammer\";\nexport * from \"./HttpFormDataProgrammer\";\nexport * from \"./HttpHeadersProgrammer\";\nexport * from \"./HttpIsFormDataProgrammer\";\nexport * from \"./HttpIsHeadersProgrammer\";\nexport * from \"./HttpIsQueryProgrammer\";\nexport * from \"./HttpParameterProgrammer\";\nexport * from \"./HttpQueryProgrammer\";\nexport * from \"./HttpValidateFormDataProgrammer\";\nexport * from \"./HttpValidateHeadersProgrammer\";\nexport * from \"./HttpValidateQueryProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/index.d.ts": "export * from \"./helpers/FunctionProgrammer\";\nexport * from \"./AssertProgrammer\";\nexport * from \"./ImportProgrammer\";\nexport * from \"./IsProgrammer\";\nexport * from \"./RandomProgrammer\";\nexport * from \"./ValidateProgrammer\";\nexport * from \"./functional\";\nexport * from \"./http\";\nexport * from \"./json\";\nexport * from \"./llm\";\nexport * from \"./misc\";\nexport * from \"./notations\";\nexport * from \"./protobuf\";\n",
    "node_modules/@typia/core/lib/programmers/internal/CheckerProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataCollection } from \"../../schemas/metadata/MetadataCollection\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { ICheckEntry } from \"../helpers/ICheckEntry\";\nimport { IExpressionEntry } from \"../helpers/IExpressionEntry\";\nimport { FeatureProgrammer } from \"./FeatureProgrammer\";\nexport declare namespace CheckerProgrammer {\n    interface IConfig {\n        prefix: string;\n        path: boolean;\n        trace: boolean;\n        equals: boolean;\n        numeric: boolean;\n        addition?: () => ts.Statement[];\n        decoder?: (props: {\n            metadata: MetadataSchema;\n            input: ts.Expression;\n            explore: IExplore;\n        }) => ts.Expression;\n        combiner: IConfig.Combiner;\n        atomist: (props: {\n            entry: ICheckEntry;\n            input: ts.Expression;\n            explore: IExplore;\n        }) => ts.Expression;\n        joiner: IConfig.IJoiner;\n        success: ts.Expression;\n    }\n    namespace IConfig {\n        interface Combiner {\n            (props: {\n                explore: IExplore;\n                logic: \"and\" | \"or\";\n                input: ts.Expression;\n                binaries: IBinary[];\n                expected: string;\n            }): ts.Expression;\n        }\n        interface IJoiner {\n            object(props: {\n                input: ts.Expression;\n                entries: IExpressionEntry<ts.Expression>[];\n            }): ts.Expression;\n            array(props: {\n                input: ts.Expression;\n                arrow: ts.ArrowFunction;\n            }): ts.Expression;\n            tuple?: undefined | ((exprs: ts.Expression[]) => ts.Expression);\n            failure(props: {\n                input: ts.Expression;\n                expected: string;\n                explore?: undefined | FeatureProgrammer.IExplore;\n            }): ts.Expression;\n            is?(expression: ts.Expression): ts.Expression;\n            required?(exp: ts.Expression): ts.Expression;\n            full?: undefined | ((props: {\n                condition: ts.Expression;\n                input: ts.Expression;\n                expected: string;\n                explore: IExplore;\n            }) => ts.Expression);\n        }\n    }\n    type IExplore = FeatureProgrammer.IExplore;\n    interface IBinary {\n        expression: ts.Expression;\n        combined: boolean;\n    }\n    const compose: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IComposed;\n    const write: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name?: string;\n    }) => ts.ArrowFunction;\n    const write_object_functions: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const write_union_functions: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const write_array_functions: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const write_tuple_functions: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const decode: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        input: ts.Expression;\n        metadata: MetadataSchema;\n        explore: IExplore;\n    }) => ts.Expression;\n    const decode_object: (props: {\n        config: IConfig;\n        functor: FunctionProgrammer;\n        object: MetadataObjectType;\n        input: ts.Expression;\n        explore: IExplore;\n    }) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/internal/FeatureProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataArray } from \"../../schemas/metadata/MetadataArray\";\nimport { MetadataCollection } from \"../../schemas/metadata/MetadataCollection\";\nimport { MetadataObjectType } from \"../../schemas/metadata/MetadataObjectType\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { IExpressionEntry } from \"../helpers/IExpressionEntry\";\nimport { CheckerProgrammer } from \"./CheckerProgrammer\";\nexport declare namespace FeatureProgrammer {\n    interface IConfig<Output extends ts.ConciseBody = ts.ConciseBody> {\n        types: IConfig.ITypes;\n        /** Prefix name of internal functions for specific types. */\n        prefix: string;\n        /** Whether to archive access path or not. */\n        path: boolean;\n        /** Whether to trace exception or not. */\n        trace: boolean;\n        addition?: undefined | ((collection: MetadataCollection) => ts.Statement[]);\n        /** Initializer of metadata. */\n        initializer: (props: {\n            context: ITypiaContext;\n            functor: FunctionProgrammer;\n            type: ts.Type;\n        }) => {\n            collection: MetadataCollection;\n            metadata: MetadataSchema;\n        };\n        /** Decoder, station of every types. */\n        decoder: (props: {\n            metadata: MetadataSchema;\n            input: ts.Expression;\n            explore: IExplore;\n        }) => Output;\n        /** Object configurator. */\n        objector: IConfig.IObjector<Output>;\n        /** Generator of functions for object types. */\n        generator: IConfig.IGenerator;\n    }\n    namespace IConfig {\n        interface ITypes {\n            input: (type: ts.Type, name?: undefined | string) => ts.TypeNode;\n            output: (type: ts.Type, name?: undefined | string) => ts.TypeNode;\n        }\n        interface IObjector<Output extends ts.ConciseBody = ts.ConciseBody> {\n            /** Type checker when union object type comes. */\n            checker: (props: {\n                metadata: MetadataSchema;\n                input: ts.Expression;\n                explore: IExplore;\n            }) => ts.Expression;\n            /** Decoder, function call expression generator of specific typed objects. */\n            decoder: (props: {\n                input: ts.Expression;\n                object: MetadataObjectType;\n                explore: IExplore;\n            }) => ts.Expression;\n            /** Joiner of expressions from properties. */\n            joiner(props: {\n                entries: IExpressionEntry<Output>[];\n                input?: ts.Expression;\n                object?: MetadataObjectType;\n            }): ts.ConciseBody;\n            /**\n             * Union type specificator.\n             *\n             * Expression of an algorithm specifying object type and calling the\n             * `decoder` function of the specified object type.\n             */\n            unionizer: (props: {\n                objects: MetadataObjectType[];\n                input: ts.Expression;\n                explore: IExplore;\n            }) => ts.Expression;\n            /**\n             * Handler of union type specification failure.\n             *\n             * @param props Properties of failure\n             * @returns Statement of failure\n             */\n            failure(props: {\n                input: ts.Expression;\n                expected: string;\n                explore?: undefined | IExplore;\n            }): ts.Statement;\n            /**\n             * Transformer of type checking expression by discrimination.\n             *\n             * When an object type has been specified by a discrimination without full\n             * iteration, the `unionizer` will decode the object instance after the\n             * last type checking.\n             *\n             * In such circumtance, you can transform the last type checking function.\n             *\n             * @deprecated\n             * @param exp Current expression about type checking\n             * @returns Transformed expression\n             */\n            is?: undefined | ((exp: ts.Expression) => ts.Expression);\n            /**\n             * Transformer of non-undefined type checking by discrimination.\n             *\n             * When specifying an union type of objects, `typia` tries to find\n             * discrimination way just by checking only one property type. If\n             * succeeded to find the discrimination way, `typia` will check the target\n             * property type and in the checking, non-undefined type checking would be\n             * done.\n             *\n             * In such process, you can transform the non-undefined type checking.\n             *\n             * @deprecated\n             * @param exp\n             * @returns Transformed expression\n             */\n            required?: undefined | ((exp: ts.Expression) => ts.Expression);\n            /**\n             * Condition wrapper when unable to specify any object type.\n             *\n             * When failed to specify an object type through discrimination, full\n             * iteration type checking would be happened. In such circumstance, you\n             * can wrap the condition with additional function.\n             *\n             * @param props Properties of condition\n             * @returns The wrapper expression\n             */\n            full?: undefined | ((props: {\n                condition: ts.Expression;\n                input: ts.Expression;\n                expected: string;\n                explore: IExplore;\n            }) => ts.Expression);\n            /** Return type. */\n            type?: undefined | ts.TypeNode;\n        }\n        interface IGenerator {\n            objects?: undefined | ((collection: MetadataCollection) => ts.VariableStatement[]);\n            unions?: undefined | ((collection: MetadataCollection) => ts.VariableStatement[]);\n            arrays: (collection: MetadataCollection) => ts.VariableStatement[];\n            tuples: (collection: MetadataCollection) => ts.VariableStatement[];\n        }\n    }\n    interface IExplore {\n        tracable: boolean;\n        source: \"top\" | \"function\";\n        from: \"top\" | \"array\" | \"object\";\n        postfix: string;\n        start?: undefined | number;\n    }\n    type Decoder<T, Output extends ts.ConciseBody = ts.ConciseBody> = (props: {\n        input: ts.Expression;\n        definition: T;\n        explore: IExplore;\n    }) => Output;\n    interface IComposed {\n        body: ts.ConciseBody;\n        parameters: ts.ParameterDeclaration[];\n        functions: Record<string, ts.VariableStatement>;\n        statements: ts.Statement[];\n        response: ts.TypeNode;\n    }\n    interface IDecomposed {\n        functions: Record<string, ts.VariableStatement>;\n        statements: ts.Statement[];\n        arrow: ts.ArrowFunction;\n    }\n    const compose: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => IComposed;\n    const writeDecomposed: (props: {\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        result: IDecomposed;\n        returnWrapper?: (arrow: ts.ArrowFunction) => ts.Expression;\n    }) => ts.CallExpression;\n    const write: (props: {\n        context: ITypiaContext;\n        config: IConfig;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name?: string | undefined;\n    }) => ts.ArrowFunction;\n    const write_object_functions: (props: {\n        config: IConfig;\n        context: ITypiaContext;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const write_union_functions: (props: {\n        config: IConfig;\n        collection: MetadataCollection;\n    }) => ts.VariableStatement[];\n    const decode_array: (props: {\n        config: Pick<IConfig, \"trace\" | \"path\" | \"decoder\" | \"prefix\">;\n        functor: FunctionProgrammer;\n        combiner: (next: {\n            input: ts.Expression;\n            arrow: ts.ArrowFunction;\n        }) => ts.Expression;\n        array: MetadataArray;\n        input: ts.Expression;\n        explore: IExplore;\n    }) => ts.Expression;\n    const decode_object: (props: {\n        config: Pick<IConfig, \"trace\" | \"path\" | \"prefix\">;\n        functor: FunctionProgrammer;\n        object: MetadataObjectType;\n        input: ts.Expression;\n        explore: IExplore;\n    }) => ts.CallExpression;\n    const index: (props: {\n        start: number | null;\n        postfix: string;\n        rand: string;\n    }) => string;\n    const argumentsArray: (props: {\n        config: Pick<IConfig, \"path\" | \"trace\">;\n        input: ts.Expression;\n        explore: FeatureProgrammer.IExplore;\n    }) => ts.Expression[];\n    const parameterDeclarations: (props: {\n        config: Pick<CheckerProgrammer.IConfig, \"path\" | \"trace\">;\n        type: ts.TypeNode;\n        input: ts.Identifier;\n    }) => ts.ParameterDeclaration[];\n}\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_array_length.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_bigint.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_dynamic_key.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_dynamic_properties.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_everything.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_native.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_number.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_object.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_string.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_template.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/check_union_array_like.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/decode_union_object.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/feature_object_entries.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_alias.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataAlias } from \"../../schemas/metadata/MetadataAlias\";\nexport declare const json_schema_alias: <BlockNever extends boolean>(props: {\n    blockNever: BlockNever;\n    components: OpenApi.IComponents;\n    alias: MetadataAlias;\n}) => OpenApi.IJsonSchema.IReference[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_array.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataArray } from \"../../schemas/metadata/MetadataArray\";\nexport declare const json_schema_array: (props: {\n    components: OpenApi.IComponents;\n    array: MetadataArray;\n}) => Array<OpenApi.IJsonSchema.IArray | OpenApi.IJsonSchema.IReference>;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_bigint.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataAtomic } from \"../../schemas/metadata/MetadataAtomic\";\nexport declare const json_schema_bigint: (atomic: MetadataAtomic) => OpenApi.IJsonSchema.IInteger[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_boolean.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataAtomic } from \"../../schemas/metadata/MetadataAtomic\";\nexport declare const json_schema_boolean: (atomic: MetadataAtomic) => OpenApi.IJsonSchema.IBoolean[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_constant.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataConstant } from \"../../schemas/metadata/MetadataConstant\";\nexport declare const json_schema_constant: (constant: MetadataConstant) => OpenApi.IJsonSchema.IConstant[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_description.d.ts": "import { IJsDocTagInfo } from \"@typia/interface\";\nexport declare const json_schema_description: (props: {\n    description?: string | null | undefined;\n    jsDocTags?: IJsDocTagInfo[];\n}) => string | undefined;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_discriminator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare const json_schema_discriminator: (metadata: MetadataSchema) => OpenApi.IJsonSchema.IOneOf.IDiscriminator | undefined;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_escaped.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_jsDocTags.d.ts": "import { IJsDocTagInfo, OpenApi } from \"@typia/interface\";\nexport declare const json_schema_jsDocTags: <Schema extends OpenApi.IJsonSchema>(schema: Schema, jsDocTags: IJsDocTagInfo[]) => Schema;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_native.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataNative } from \"../../schemas/metadata/MetadataNative\";\nexport declare const json_schema_native: (props: {\n    components: OpenApi.IComponents;\n    native: MetadataNative;\n}) => OpenApi.IJsonSchema[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_number.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataAtomic } from \"../../schemas/metadata/MetadataAtomic\";\nexport declare const json_schema_number: (atomic: MetadataAtomic) => Array<OpenApi.IJsonSchema.IInteger | OpenApi.IJsonSchema.INumber>;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_object.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_plugin.d.ts": "import { IMetadataTypeTag, OpenApi } from \"@typia/interface\";\nexport declare const json_schema_plugin: <Schema extends OpenApi.IJsonSchema>(props: {\n    schema: Schema;\n    tags: IMetadataTypeTag[][];\n}) => Schema[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_station.d.ts": "import { IJsonSchemaAttribute, OpenApi } from \"@typia/interface\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare const json_schema_station: <BlockNever extends boolean>(props: {\n    blockNever: BlockNever;\n    components: OpenApi.IComponents;\n    attribute: IJsonSchemaAttribute;\n    metadata: MetadataSchema;\n}) => BlockNever extends true ? OpenApi.IJsonSchema | null : OpenApi.IJsonSchema;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_string.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataAtomic } from \"../../schemas/metadata/MetadataAtomic\";\nexport declare const json_schema_string: (atomic: MetadataAtomic) => OpenApi.IJsonSchema[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_template.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare const json_schema_templates: (metadata: MetadataSchema) => OpenApi.IJsonSchema[];\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_title.d.ts": "import { IJsDocTagInfo } from \"@typia/interface\";\nexport declare const json_schema_title: (schema: {\n    description?: string | null | undefined;\n    jsDocTags?: IJsDocTagInfo[] | undefined;\n}) => string | undefined;\n",
    "node_modules/@typia/core/lib/programmers/iterate/json_schema_tuple.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { MetadataTuple } from \"../../schemas/metadata/MetadataTuple\";\nexport declare const json_schema_tuple: (props: {\n    components: OpenApi.IComponents;\n    tuple: MetadataTuple;\n}) => OpenApi.IJsonSchema.ITuple;\n",
    "node_modules/@typia/core/lib/programmers/iterate/metadata_to_pattern.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/postfix_of_tuple.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/prune_object_properties.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/stringify_dynamic_properties.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/stringify_native.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/stringify_regular_properties.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/template_to_pattern.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/iterate/wrap_metadata_rest_tuple.d.ts": "export {};\n",
    "node_modules/@typia/core/lib/programmers/json/JsonApplicationProgrammer.d.ts": "import { IJsDocTagInfo, IJsonSchemaApplication } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataProperty } from \"../../schemas/metadata/MetadataProperty\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace JsonApplicationProgrammer {\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n    interface IWriteProps<Version extends \"3.0\" | \"3.1\"> {\n        context: ITypiaContext;\n        version: Version;\n        metadata: MetadataSchema;\n        filter?: (prop: MetadataProperty) => boolean;\n    }\n    const write: <Version extends \"3.0\" | \"3.1\">(props: IWriteProps<Version>) => ts.Expression;\n    const writeApplication: <Version extends \"3.0\" | \"3.1\">(props: {\n        version: Version;\n        metadata: MetadataSchema;\n        filter?: (prop: MetadataProperty) => boolean;\n    }) => IJsonSchemaApplication<Version>;\n    const writeDescription: <Kind extends \"summary\" | \"title\">(props: {\n        description: string | null;\n        jsDocTags: IJsDocTagInfo[];\n        kind: Kind;\n    }) => Kind extends \"summary\" ? {\n        summary?: string;\n        description?: string;\n    } : {\n        title?: string;\n        description?: string;\n    };\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonAssertParseProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonAssertParseProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonAssertStringifyProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonAssertStringifyProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonIsParseProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonIsParseProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonIsStringifyProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonIsStringifyProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonSchemaProgrammer.d.ts": "import { IJsonSchemaUnit } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace JsonSchemaProgrammer {\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n    interface IWriteProps<Version extends \"3.0\" | \"3.1\"> {\n        context: ITypiaContext;\n        version: Version;\n        metadata: MetadataSchema;\n    }\n    const write: <Version extends \"3.0\" | \"3.1\">(props: IWriteProps<Version>) => ts.Expression;\n    const writeSchema: <Version extends \"3.0\" | \"3.1\">(props: {\n        version: Version;\n        metadata: MetadataSchema;\n    }) => IJsonSchemaUnit<Version>;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonSchemasProgrammer.d.ts": "import { IJsonSchemaCollection } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace JsonSchemasProgrammer {\n    const validate: (props: {\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n    interface IWriteProps<Version extends \"3.0\" | \"3.1\"> {\n        context: ITypiaContext;\n        version: Version;\n        metadatas: Array<MetadataSchema>;\n    }\n    const write: <Version extends \"3.0\" | \"3.1\">(props: IWriteProps<Version>) => ts.Expression;\n    const writeSchemas: <Version extends \"3.0\" | \"3.1\">(props: {\n        version: Version;\n        metadatas: Array<MetadataSchema>;\n    }) => IJsonSchemaCollection<Version>;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonStringifyProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonStringifyProgrammer {\n    const decompose: (props: {\n        validated: boolean;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonValidateParseProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonValidateParseProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/JsonValidateStringifyProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace JsonValidateStringifyProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/json/index.d.ts": "export * from \"./JsonApplicationProgrammer\";\nexport * from \"./JsonAssertParseProgrammer\";\nexport * from \"./JsonAssertStringifyProgrammer\";\nexport * from \"./JsonIsParseProgrammer\";\nexport * from \"./JsonIsStringifyProgrammer\";\nexport * from \"./JsonSchemaProgrammer\";\nexport * from \"./JsonSchemasProgrammer\";\nexport * from \"./JsonStringifyProgrammer\";\nexport * from \"./JsonValidateParseProgrammer\";\nexport * from \"./JsonValidateStringifyProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmApplicationProgrammer.d.ts": "import { ILlmApplication, ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\n/**\n * Generates LLM function calling application from TypeScript class/interface.\n *\n * Converts TypeScript types to {@link ILlmApplication} with function schemas\n * compatible with LLM function calling. Validates type constraints (single\n * object parameter, no dynamic keys) and generates runtime validators.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace LlmApplicationProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n    }\n    interface IWriteProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n        name?: string;\n        configArgument?: ts.Expression;\n    }\n    const write: (props: IWriteProps) => ts.CallExpression;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n        top: MetadataSchema;\n    }) => string[];\n    const writeApplication: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n        name?: string;\n    }) => ILlmApplication.__IPrimitive;\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmCoerceProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace LlmCoerceProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    const decompose: (props: {\n        context: IProps[\"context\"];\n        config?: Partial<ILlmSchema.IConfig>;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        metadata: MetadataSchema;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    interface IWriteProps {\n        context: IProps[\"context\"];\n        modulo: ts.LeftHandSideExpression;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n        name?: string;\n    }\n    const write: (props: IWriteProps) => ts.CallExpression;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmControllerProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace LlmControllerProgrammer {\n    interface IWriteProps {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n        className?: string;\n        node: ts.TypeNode;\n        nameArgument: ts.Expression;\n        executeArgument: ts.Expression;\n        configArgument?: ts.Expression;\n    }\n    const write: (props: IWriteProps) => ts.Expression;\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmMetadataFactory.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace LlmMetadataFactory {\n    const getConfig: (props: {\n        context: ITypiaContext;\n        method: string;\n        node: ts.TypeNode | undefined;\n    }) => Partial<ILlmSchema.IConfig & {\n        equals: boolean;\n    }> | undefined;\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmParametersProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace LlmParametersProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    interface IWriteProps {\n        context: IProps[\"context\"];\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    const write: (props: IWriteProps) => ts.Expression;\n    const writeParameters: (props: {\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n    }) => ILlmSchema.IParameters;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmParseProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace LlmParseProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    const decompose: (props: {\n        context: IProps[\"context\"];\n        config?: Partial<ILlmSchema.IConfig>;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        metadata: MetadataSchema;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    interface IWriteProps {\n        context: IProps[\"context\"];\n        modulo: ts.LeftHandSideExpression;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n        name?: string;\n    }\n    const write: (props: IWriteProps) => ts.CallExpression;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmSchemaProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace LlmSchemaProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    interface IOutput {\n        schema: ILlmSchema;\n        $defs: Record<string, ILlmSchema>;\n    }\n    interface IWriteProps {\n        context: IProps[\"context\"];\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n    }\n    const write: (props: IWriteProps) => ts.Expression;\n    const writeSchema: (props: {\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig>;\n    }) => IOutput;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/LlmStructuredOutputProgrammer.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { MetadataFactory } from \"../../factories/MetadataFactory\";\nimport { MetadataSchema } from \"../../schemas/metadata/MetadataSchema\";\nexport declare namespace LlmStructuredOutputProgrammer {\n    interface IProps extends IProgrammerProps {\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n    }\n    interface IWriteProps {\n        context: IProps[\"context\"];\n        modulo: ts.LeftHandSideExpression;\n        type: ts.Type;\n        metadata: MetadataSchema;\n        config?: Partial<ILlmSchema.IConfig & {\n            equals: boolean;\n        }>;\n        name?: string;\n    }\n    const write: (props: IWriteProps) => ts.CallExpression;\n    const validate: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        metadata: MetadataSchema;\n        explore: MetadataFactory.IExplore;\n    }) => string[];\n}\n",
    "node_modules/@typia/core/lib/programmers/llm/index.d.ts": "export * from \"./LlmApplicationProgrammer\";\nexport * from \"./LlmControllerProgrammer\";\nexport * from \"./LlmCoerceProgrammer\";\nexport * from \"./LlmMetadataFactory\";\nexport * from \"./LlmParametersProgrammer\";\nexport * from \"./LlmParseProgrammer\";\nexport * from \"./LlmSchemaProgrammer\";\nexport * from \"./LlmStructuredOutputProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscAssertCloneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscAssertCloneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscAssertPruneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscAssertPruneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscCloneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscCloneProgrammer {\n    const decompose: (props: {\n        validated: boolean;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscIsCloneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscIsCloneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscIsPruneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscIsPruneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscLiteralsProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace MiscLiteralsProgrammer {\n    interface IProps {\n        context: ITypiaContext;\n        type: ts.Type;\n    }\n    const write: (props: IProps) => ts.AsExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscPruneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscPruneProgrammer {\n    const decompose: (props: {\n        validated: boolean;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscValidateCloneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscValidateCloneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/MiscValidatePruneProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace MiscValidatePruneProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/misc/index.d.ts": "export * from \"./MiscAssertCloneProgrammer\";\nexport * from \"./MiscAssertPruneProgrammer\";\nexport * from \"./MiscCloneProgrammer\";\nexport * from \"./MiscIsCloneProgrammer\";\nexport * from \"./MiscIsPruneProgrammer\";\nexport * from \"./MiscLiteralsProgrammer\";\nexport * from \"./MiscPruneProgrammer\";\nexport * from \"./MiscValidateCloneProgrammer\";\nexport * from \"./MiscValidatePruneProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/notations/NotationAssertGeneralProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace NotationAssertGeneralProgrammer {\n    interface IProps extends IProgrammerProps {\n        rename: (str: string) => string;\n    }\n    const decompose: (props: {\n        rename: (str: string) => string;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/notations/NotationGeneralProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace NotationGeneralProgrammer {\n    interface IProps extends IProgrammerProps {\n        rename: (str: string) => string;\n    }\n    const returnType: (props: {\n        rename: (str: string) => string;\n        context: ITypiaContext;\n        type: string;\n    }) => ts.ImportTypeNode;\n    const decompose: (props: {\n        rename: (str: string) => string;\n        validated: boolean;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/notations/NotationIsGeneralProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace NotationIsGeneralProgrammer {\n    interface IProps extends IProgrammerProps {\n        rename: (str: string) => string;\n    }\n    const decompose: (props: {\n        rename: (str: string) => string;\n        context: ITypiaContext;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/notations/NotationValidateGeneralProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace NotationValidateGeneralProgrammer {\n    interface IProps extends IProgrammerProps {\n        rename: (str: string) => string;\n    }\n    const decompose: (props: {\n        rename: (str: string) => string;\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/notations/index.d.ts": "export * from \"./NotationAssertGeneralProgrammer\";\nexport * from \"./NotationGeneralProgrammer\";\nexport * from \"./NotationIsGeneralProgrammer\";\nexport * from \"./NotationValidateGeneralProgrammer\";\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufAssertDecodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufAssertDecodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufAssertEncodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufAssertEncodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n        init?: ts.Expression | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufDecodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufDecodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufEncodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufEncodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufIsDecodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufIsDecodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufIsEncodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufIsEncodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufMessageProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nexport declare namespace ProtobufMessageProgrammer {\n    interface IProps {\n        context: ITypiaContext;\n        type: ts.Type;\n    }\n    const write: (props: IProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufValidateDecodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufValidateDecodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/ProtobufValidateEncodeProgrammer.d.ts": "import ts from \"typescript\";\nimport { IProgrammerProps } from \"../../context/IProgrammerProps\";\nimport { ITypiaContext } from \"../../context/ITypiaContext\";\nimport { FunctionProgrammer } from \"../helpers/FunctionProgrammer\";\nimport { FeatureProgrammer } from \"../internal/FeatureProgrammer\";\nexport declare namespace ProtobufValidateEncodeProgrammer {\n    const decompose: (props: {\n        context: ITypiaContext;\n        modulo: ts.LeftHandSideExpression;\n        functor: FunctionProgrammer;\n        type: ts.Type;\n        name: string | undefined;\n    }) => FeatureProgrammer.IDecomposed;\n    const write: (props: IProgrammerProps) => ts.CallExpression;\n}\n",
    "node_modules/@typia/core/lib/programmers/protobuf/index.d.ts": "export * from \"./ProtobufAssertDecodeProgrammer\";\nexport * from \"./ProtobufAssertEncodeProgrammer\";\nexport * from \"./ProtobufDecodeProgrammer\";\nexport * from \"./ProtobufEncodeProgrammer\";\nexport * from \"./ProtobufIsDecodeProgrammer\";\nexport * from \"./ProtobufIsEncodeProgrammer\";\nexport * from \"./ProtobufMessageProgrammer\";\nexport * from \"./ProtobufValidateDecodeProgrammer\";\nexport * from \"./ProtobufValidateEncodeProgrammer\";\n",
    "node_modules/@typia/core/lib/schemas/index.d.ts": "export * from \"./metadata\";\nexport * from \"./protobuf\";\n",
    "node_modules/@typia/core/lib/schemas/metadata/IMetadataDictionary.d.ts": "import { MetadataAliasType } from \"./MetadataAliasType\";\nimport { MetadataArrayType } from \"./MetadataArrayType\";\nimport { MetadataObjectType } from \"./MetadataObjectType\";\nimport { MetadataTupleType } from \"./MetadataTupleType\";\n/**\n * Dictionary of named type definitions for metadata deserialization.\n *\n * `IMetadataDictionary` maps type names to their metadata definitions, enabling\n * reconstruction of metadata schemas from serialized JSON format. Used by\n * {@link MetadataSchema.from} to resolve named type references.\n *\n * The dictionaries are populated during metadata collection and contain all\n * unique named types encountered in the analyzed TypeScript code.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataDictionary {\n    /**\n     * Named object type definitions.\n     *\n     * Maps object type names to their full type information including properties,\n     * required fields, and inheritance hierarchy.\n     */\n    objects: Map<string, MetadataObjectType>;\n    /**\n     * Named type alias definitions.\n     *\n     * Maps type alias names to their underlying type information. Aliases may\n     * reference other aliases or concrete types.\n     */\n    aliases: Map<string, MetadataAliasType>;\n    /**\n     * Named array type definitions.\n     *\n     * Maps array type names to their element type information. Used for recursive\n     * array types.\n     */\n    arrays: Map<string, MetadataArrayType>;\n    /**\n     * Named tuple type definitions.\n     *\n     * Maps tuple type names to their element types and structure. Each element\n     * position may have a different type.\n     */\n    tuples: Map<string, MetadataTupleType>;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataAlias.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataAliasType } from \"./MetadataAliasType\";\nexport declare class MetadataAlias {\n    readonly type: MetadataAliasType;\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.IReference;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataAliasType.d.ts": "import { IJsDocTagInfo, IMetadataSchema } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataAliasType {\n    readonly name: string;\n    readonly value: MetadataSchema;\n    readonly description: string | null;\n    readonly jsDocTags: IJsDocTagInfo[];\n    readonly recursive: boolean;\n    readonly nullables: boolean[];\n    private constructor();\n    toJSON(): IMetadataSchema.IAliasType;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataApplication.d.ts": "import { IMetadataSchemaCollection } from \"@typia/interface\";\nimport { MetadataComponents } from \"./MetadataComponents\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataApplication {\n    readonly schemas: MetadataSchema[];\n    readonly components: MetadataComponents;\n    private constructor();\n    static from(app: IMetadataSchemaCollection): MetadataApplication;\n    toJSON(): IMetadataSchemaCollection;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataArray.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataArrayType } from \"./MetadataArrayType\";\nexport declare class MetadataArray {\n    readonly type: MetadataArrayType;\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.IReference;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataArrayType.d.ts": "import { IMetadataSchema } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataArrayType {\n    readonly name: string;\n    readonly value: MetadataSchema;\n    readonly nullables: boolean[];\n    readonly recursive: boolean;\n    readonly index: number | null;\n    private constructor();\n    toJSON(): IMetadataSchema.IArrayType;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataAtomic.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nexport declare class MetadataAtomic {\n    readonly type: \"boolean\" | \"bigint\" | \"number\" | \"string\";\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    static from(json: IMetadataSchema.IAtomic): MetadataAtomic;\n    getName(): string;\n    toJSON(): IMetadataSchema.IAtomic;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataCollection.d.ts": "import { IMetadataComponents } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { MetadataAliasType } from \"./MetadataAliasType\";\nimport { MetadataArrayType } from \"./MetadataArrayType\";\nimport { MetadataObjectType } from \"./MetadataObjectType\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nimport { MetadataTupleType } from \"./MetadataTupleType\";\n/**\n * Storage for collected metadata during type analysis.\n *\n * Caches analyzed types (objects, aliases, arrays, tuples) to handle recursive\n * types and avoid redundant analysis.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MetadataCollection {\n    private options?;\n    private objects_;\n    private object_unions_;\n    private aliases_;\n    private arrays_;\n    private tuples_;\n    private names_;\n    private object_index_;\n    private recursive_array_index_;\n    private recursive_tuple_index_;\n    constructor(options?: Partial<MetadataCollection.IOptions> | undefined);\n    clone(): MetadataCollection;\n    aliases(): MetadataAliasType[];\n    objects(): MetadataObjectType[];\n    unions(): MetadataObjectType[][];\n    arrays(): MetadataArrayType[];\n    tuples(): MetadataTupleType[];\n    private getName;\n    emplace(checker: ts.TypeChecker, type: ts.Type): [MetadataObjectType, boolean];\n    emplaceAlias(checker: ts.TypeChecker, type: ts.Type, symbol: ts.Symbol): [MetadataAliasType, boolean, (meta: MetadataSchema) => void];\n    emplaceArray(checker: ts.TypeChecker, type: ts.Type): [MetadataArrayType, boolean, (meta: MetadataSchema) => void];\n    emplaceTuple(checker: ts.TypeChecker, type: ts.TupleType): [MetadataTupleType, boolean, (elements: MetadataSchema[]) => void];\n    setTupleRecursive(tuple: MetadataTupleType, recursive: boolean): void;\n    toJSON(): IMetadataComponents;\n}\nexport declare namespace MetadataCollection {\n    interface IOptions {\n        replace?(str: string): string;\n    }\n    const replace: (str: string) => string;\n    const escape: (str: string) => string;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataComponents.d.ts": "import { IMetadataComponents } from \"@typia/interface\";\nimport { IMetadataDictionary } from \"./IMetadataDictionary\";\nimport { MetadataAliasType } from \"./MetadataAliasType\";\nimport { MetadataArrayType } from \"./MetadataArrayType\";\nimport { MetadataObjectType } from \"./MetadataObjectType\";\nimport { MetadataTupleType } from \"./MetadataTupleType\";\nexport declare class MetadataComponents {\n    readonly aliases: MetadataAliasType[];\n    readonly objects: MetadataObjectType[];\n    readonly arrays: MetadataArrayType[];\n    readonly tuples: MetadataTupleType[];\n    readonly dictionary: IMetadataDictionary;\n    private constructor();\n    static from(json: IMetadataComponents): MetadataComponents;\n    toJSON(): IMetadataComponents;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataConstant.d.ts": "import { ClassProperties, IMetadataSchema } from \"@typia/interface\";\nimport { MetadataConstantValue } from \"./MetadataConstantValue\";\nexport declare class MetadataConstant {\n    readonly type: \"boolean\" | \"bigint\" | \"number\" | \"string\";\n    readonly values: MetadataConstantValue[];\n    private constructor();\n    static create(props: ClassProperties<MetadataConstant>): MetadataConstant;\n    static from(json: IMetadataSchema.IConstant): MetadataConstant;\n    toJSON(): IMetadataSchema.IConstant;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataConstantValue.d.ts": "import { ClassProperties, IJsDocTagInfo, IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nexport declare class MetadataConstantValue {\n    readonly value: boolean | bigint | number | string;\n    tags: IMetadataTypeTag[][];\n    readonly description?: string | null;\n    readonly jsDocTags?: IJsDocTagInfo[];\n    private name_?;\n    private constructor();\n    static create(props: ClassProperties<MetadataConstantValue>): MetadataConstantValue;\n    static from(json: IMetadataSchema.IConstant.IValue<any>): MetadataConstantValue;\n    getName(): string;\n    toJSON(): IMetadataSchema.IConstant.IValue<any>;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataEscaped.d.ts": "import { IMetadataSchema } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataEscaped {\n    readonly original: MetadataSchema;\n    readonly returns: MetadataSchema;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.IEscaped;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataFunction.d.ts": "import { IMetadataSchema } from \"@typia/interface\";\nimport { IMetadataDictionary } from \"./IMetadataDictionary\";\nimport { MetadataParameter } from \"./MetadataParameter\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataFunction {\n    parameters: MetadataParameter[];\n    output: MetadataSchema;\n    async: boolean;\n    private constructor();\n    static from(json: IMetadataSchema.IFunction, dict: IMetadataDictionary): MetadataFunction;\n    toJSON(): IMetadataSchema.IFunction;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataMap.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataMap {\n    readonly key: MetadataSchema;\n    readonly value: MetadataSchema;\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.IMap;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataNative.d.ts": "import { ClassProperties, IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nexport declare class MetadataNative {\n    readonly name: string;\n    readonly tags: IMetadataTypeTag[][];\n    private typeName_?;\n    private constructor();\n    static create(props: ClassProperties<MetadataNative>): MetadataNative;\n    getName(): string;\n    toJSON(): IMetadataSchema.IReference;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataObject.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataObjectType } from \"./MetadataObjectType\";\nexport declare class MetadataObject {\n    readonly type: MetadataObjectType;\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.IReference;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataObjectType.d.ts": "import { IJsDocTagInfo, IMetadataSchema } from \"@typia/interface\";\nimport { MetadataProperty } from \"./MetadataProperty\";\nexport declare class MetadataObjectType {\n    readonly name: string;\n    readonly properties: Array<MetadataProperty>;\n    readonly description: string | undefined;\n    readonly jsDocTags: IJsDocTagInfo[];\n    readonly index: number;\n    validated: boolean;\n    recursive: boolean;\n    nullables: boolean[];\n    private constructor();\n    isPlain(level?: number): boolean;\n    isLiteral(): boolean;\n    toJSON(): IMetadataSchema.IObjectType;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataParameter.d.ts": "import { IJsDocTagInfo, IMetadataSchema } from \"@typia/interface\";\nimport ts from \"typescript\";\nimport { IMetadataDictionary } from \"./IMetadataDictionary\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataParameter {\n    name: string;\n    type: MetadataSchema;\n    description: string | null;\n    jsDocTags: IJsDocTagInfo[];\n    tsType?: ts.Type;\n    private constructor();\n    static from(json: IMetadataSchema.IParameter, dict: IMetadataDictionary): MetadataParameter;\n    toJSON(): IMetadataSchema.IParameter;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataProperty.d.ts": "import { IJsDocTagInfo, IMetadataSchema } from \"@typia/interface\";\nimport { IProtobufProperty } from \"../protobuf/IProtobufProperty\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataProperty {\n    readonly key: MetadataSchema;\n    readonly value: MetadataSchema;\n    readonly description: string | null;\n    readonly jsDocTags: IJsDocTagInfo[];\n    readonly mutability?: \"readonly\" | null | undefined;\n    of_protobuf_?: IProtobufProperty;\n    private constructor();\n    toJSON(): IMetadataSchema.IProperty;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataSchema.d.ts": "import { IMetadataSchema } from \"@typia/interface\";\nimport { IMetadataDictionary } from \"./IMetadataDictionary\";\nimport { MetadataAlias } from \"./MetadataAlias\";\nimport { MetadataArray } from \"./MetadataArray\";\nimport { MetadataAtomic } from \"./MetadataAtomic\";\nimport { MetadataConstant } from \"./MetadataConstant\";\nimport { MetadataEscaped } from \"./MetadataEscaped\";\nimport { MetadataFunction } from \"./MetadataFunction\";\nimport { MetadataMap } from \"./MetadataMap\";\nimport { MetadataNative } from \"./MetadataNative\";\nimport { MetadataObject } from \"./MetadataObject\";\nimport { MetadataSet } from \"./MetadataSet\";\nimport { MetadataTemplate } from \"./MetadataTemplate\";\nimport { MetadataTuple } from \"./MetadataTuple\";\n/**\n * TypeScript type metadata representation.\n *\n * `MetadataSchema` captures full TypeScript type information at compile-time\n * for runtime validation and code generation. Used internally by typia\n * transformer to analyze `typia.*<T>()` calls.\n *\n * Represents union types as arrays of type categories:\n *\n * - Primitives: {@link atomics} (boolean, bigint, number, string)\n * - Literals: {@link constants} (e.g., `\"hello\"`, `42`)\n * - Templates: {@link templates} (template literal types)\n * - Collections: {@link arrays}, {@link tuples}, {@link sets}, {@link maps}\n * - Objects: {@link objects} (named object types)\n * - Aliases: {@link aliases} (type aliases)\n * - Natives: {@link natives} (Date, Uint8Array, etc.)\n *\n * Modifiers:\n *\n * - {@link required}: Not `undefined`\n * - {@link optional}: Has `?` modifier\n * - {@link nullable}: Includes `null`\n * - {@link any}: Is `any` type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MetadataSchema {\n    any: boolean;\n    required: boolean;\n    optional: boolean;\n    nullable: boolean;\n    escaped: MetadataEscaped | null;\n    atomics: MetadataAtomic[];\n    constants: MetadataConstant[];\n    templates: MetadataTemplate[];\n    rest: MetadataSchema | null;\n    aliases: MetadataAlias[];\n    arrays: MetadataArray[];\n    tuples: MetadataTuple[];\n    objects: MetadataObject[];\n    functions: MetadataFunction[];\n    natives: MetadataNative[];\n    sets: MetadataSet[];\n    maps: MetadataMap[];\n    private constructor();\n    toJSON(): IMetadataSchema;\n    static from(meta: IMetadataSchema, dict: IMetadataDictionary): MetadataSchema;\n    getName(): string;\n    empty(): boolean;\n    size(): number;\n    bucket(): number;\n    isConstant(): boolean;\n    isRequired(): boolean;\n    isSoleLiteral(): boolean;\n}\nexport declare namespace MetadataSchema {\n    const intersects: (x: MetadataSchema, y: MetadataSchema) => boolean;\n    const covers: (x: MetadataSchema, y: MetadataSchema, level?: number, escaped?: boolean) => boolean;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataSet.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataSet {\n    readonly value: MetadataSchema;\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    getName(): string;\n    toJSON(): IMetadataSchema.ISet;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataTemplate.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { IMetadataDictionary } from \"./IMetadataDictionary\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataTemplate {\n    readonly row: MetadataSchema[];\n    readonly tags: IMetadataTypeTag[][];\n    private name_?;\n    private constructor();\n    static from(json: IMetadataSchema.ITemplate, dict: IMetadataDictionary): MetadataTemplate;\n    getName(): string;\n    toJSON(): IMetadataSchema.ITemplate;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataTuple.d.ts": "import { IMetadataSchema, IMetadataTypeTag } from \"@typia/interface\";\nimport { MetadataTupleType } from \"./MetadataTupleType\";\nexport declare class MetadataTuple {\n    readonly type: MetadataTupleType;\n    readonly tags: IMetadataTypeTag[][];\n    private constructor();\n    toJSON(): IMetadataSchema.IReference;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/MetadataTupleType.d.ts": "import { ClassProperties, IMetadataSchema } from \"@typia/interface\";\nimport { MetadataSchema } from \"./MetadataSchema\";\nexport declare class MetadataTupleType {\n    readonly name: string;\n    readonly elements: MetadataSchema[];\n    readonly index: number | null;\n    readonly recursive: boolean;\n    readonly nullables: boolean[];\n    private constructor();\n    static create(props: ClassProperties<MetadataTupleType>): MetadataTupleType;\n    isRest(): boolean;\n    toJSON(): IMetadataSchema.ITupleType;\n}\n",
    "node_modules/@typia/core/lib/schemas/metadata/index.d.ts": "export * from \"./IMetadataDictionary\";\nexport * from \"./MetadataAlias\";\nexport * from \"./MetadataAliasType\";\nexport * from \"./MetadataApplication\";\nexport * from \"./MetadataArray\";\nexport * from \"./MetadataArrayType\";\nexport * from \"./MetadataAtomic\";\nexport * from \"./MetadataComponents\";\nexport * from \"./MetadataConstant\";\nexport * from \"./MetadataConstantValue\";\nexport * from \"./MetadataEscaped\";\nexport * from \"./MetadataFunction\";\nexport * from \"./MetadataMap\";\nexport * from \"./MetadataNative\";\nexport * from \"./MetadataObject\";\nexport * from \"./MetadataObjectType\";\nexport * from \"./MetadataParameter\";\nexport * from \"./MetadataProperty\";\nexport * from \"./MetadataSchema\";\nexport * from \"./MetadataSet\";\nexport * from \"./MetadataCollection\";\nexport * from \"./MetadataTemplate\";\nexport * from \"./MetadataTuple\";\nexport * from \"./MetadataTupleType\";\n",
    "node_modules/@typia/core/lib/schemas/protobuf/IProtobufProperty.d.ts": "import { IProtobufPropertyType } from \"./IProtobufPropertyType\";\nexport interface IProtobufProperty {\n    fixed: boolean;\n    union: IProtobufPropertyType[];\n}\n",
    "node_modules/@typia/core/lib/schemas/protobuf/IProtobufPropertyType.d.ts": "import { IProtobufSchema } from \"./IProtobufSchema\";\nexport type IProtobufPropertyType = IProtobufPropertyType.IByte | IProtobufPropertyType.IBoolean | IProtobufPropertyType.IBigint | IProtobufPropertyType.INumber | IProtobufPropertyType.IString | IProtobufPropertyType.IArray | IProtobufPropertyType.IObject | IProtobufPropertyType.IMap;\nexport declare namespace IProtobufPropertyType {\n    interface IByte extends IProtobufSchema.IByte {\n        index: number;\n    }\n    interface IBoolean extends IProtobufSchema.IBoolean {\n        index: number;\n    }\n    interface IBigint extends IProtobufSchema.IBigint {\n        index: number;\n    }\n    interface INumber extends IProtobufSchema.INumber {\n        index: number;\n    }\n    interface IString extends IProtobufSchema.IString {\n        index: number;\n    }\n    interface IArray extends IProtobufSchema.IArray {\n        index: number;\n    }\n    interface IObject extends IProtobufSchema.IObject {\n        index: number;\n    }\n    interface IMap extends IProtobufSchema.IMap {\n        index: number;\n    }\n}\n",
    "node_modules/@typia/core/lib/schemas/protobuf/IProtobufSchema.d.ts": "import { MetadataArrayType } from \"../metadata/MetadataArrayType\";\nimport { MetadataMap } from \"../metadata/MetadataMap\";\nimport { MetadataObjectType } from \"../metadata/MetadataObjectType\";\nexport type IProtobufSchema = IProtobufSchema.IByte | IProtobufSchema.IBoolean | IProtobufSchema.IBigint | IProtobufSchema.INumber | IProtobufSchema.IString | IProtobufSchema.IArray | IProtobufSchema.IObject | IProtobufSchema.IMap;\nexport declare namespace IProtobufSchema {\n    interface IByte {\n        type: \"bytes\";\n    }\n    interface IBoolean {\n        type: \"bool\";\n    }\n    interface IBigint {\n        type: \"bigint\";\n        name: \"int64\" | \"uint64\";\n    }\n    interface INumber {\n        type: \"number\";\n        name: \"int32\" | \"int64\" | \"uint32\" | \"uint64\" | \"float\" | \"double\";\n    }\n    interface IString {\n        type: \"string\";\n    }\n    interface IArray {\n        type: \"array\";\n        array: MetadataArrayType;\n        value: Exclude<IProtobufSchema, IArray | IMap>;\n    }\n    interface IObject {\n        type: \"object\";\n        object: MetadataObjectType;\n    }\n    interface IMap {\n        type: \"map\";\n        map: MetadataMap | MetadataObjectType;\n        key: IProtobufSchema.IBoolean | IProtobufSchema.INumber | IProtobufSchema.IString;\n        value: Exclude<IProtobufSchema, IArray | IMap>;\n    }\n}\n",
    "node_modules/@typia/core/lib/schemas/protobuf/index.d.ts": "export * from \"./IProtobufProperty\";\nexport * from \"./IProtobufPropertyType\";\nexport * from \"./IProtobufSchema\";\n",
    "node_modules/@typia/core/lib/typings/Writable.d.ts": "import { ClassProperties } from \"@typia/interface\";\nexport type Writable<T extends object> = {\n    -readonly [P in keyof T]: T[P];\n};\nexport declare function Writable<T extends object>(elem: T): Writable<ClassProperties<T>>;\n",
    "node_modules/@typia/core/lib/utils/PatternUtil.d.ts": "export declare namespace PatternUtil {\n    const fix: (str: string) => string;\n    const escape: (str: string) => string;\n    const NUMBER: string;\n    const BOOLEAN = \"true|false\";\n    const STRING = \"(.*)\";\n}\n",
    "node_modules/@typia/core/lib/utils/ProtobufNameEncoder.d.ts": "export declare namespace ProtobufNameEncoder {\n    const encode: (str: string) => string;\n    const decode: (str: string) => string;\n}\n",
    "node_modules/@typia/core/package.json": "{\n  \"name\": \"@typia/core\",\n  \"version\": \"12.0.1\",\n  \"description\": \"Superfast runtime validators with only one line\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"import\": \"./lib/index.mjs\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/typia\"\n  },\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/typia/issues\"\n  },\n  \"homepage\": \"https://typia.io\",\n  \"dependencies\": {\n    \"@typia/interface\": \"^12.0.1\",\n    \"@typia/utils\": \"^12.0.1\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-commonjs\": \"^29.0.0\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.3\",\n    \"@rollup/plugin-typescript\": \"^12.3.0\",\n    \"@types/node\": \"^25.3.0\",\n    \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.6.3\",\n    \"rimraf\": \"^6.1.2\",\n    \"rollup\": \"^4.56.0\",\n    \"rollup-plugin-auto-external\": \"^2.0.0\",\n    \"rollup-plugin-node-externals\": \"^8.1.2\",\n    \"tinyglobby\": \"^0.2.12\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"README.md\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"keywords\": [\n    \"fast\",\n    \"json\",\n    \"stringify\",\n    \"typescript\",\n    \"transform\",\n    \"ajv\",\n    \"io-ts\",\n    \"zod\",\n    \"schema\",\n    \"json-schema\",\n    \"generator\",\n    \"assert\",\n    \"clone\",\n    \"is\",\n    \"validate\",\n    \"equal\",\n    \"runtime\",\n    \"type\",\n    \"typebox\",\n    \"checker\",\n    \"validator\",\n    \"safe\",\n    \"parse\",\n    \"prune\",\n    \"random\",\n    \"protobuf\",\n    \"llm\",\n    \"llm-function-calling\",\n    \"structured-output\",\n    \"openai\",\n    \"chatgpt\",\n    \"claude\",\n    \"gemini\",\n    \"llama\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc && rollup -c\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"module\": \"lib/index.mjs\",\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/@typia/interface/lib/http/IHttpConnection.d.ts": "/**\n * HTTP connection configuration for remote server communication.\n *\n * `IHttpConnection` defines connection settings required to communicate with\n * remote HTTP servers. This interface is primarily used by `@nestia/fetcher`\n * and generated SDK functions to establish HTTP connections.\n *\n * The {@link host} property specifies the base URL of the target server, while\n * {@link headers} allows passing custom HTTP headers with each request. For\n * fine-grained control over fetch behavior, use {@link options} to configure\n * caching, CORS, credentials, and other fetch API settings.\n *\n * In Node.js versions prior to 20 (which lack native fetch), provide a polyfill\n * like `node-fetch` via the {@link fetch} property.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @author Seungjun We - https://github.com/SeungjunWe\n */\nexport interface IHttpConnection {\n    /**\n     * Base URL of the remote HTTP server.\n     *\n     * Must include protocol (http:// or https://) and may include port. Example:\n     * `\"https://api.example.com\"` or `\"http://localhost:3000\"`.\n     */\n    host: string;\n    /**\n     * Custom HTTP headers to send with every request.\n     *\n     * Common use cases include authentication tokens, API keys, and content\n     * negotiation headers. Values can be primitives or arrays.\n     */\n    headers?: Record<string, IHttpConnection.HeaderValue>;\n    /**\n     * Additional fetch API options.\n     *\n     * Configure caching, CORS mode, credentials handling, and other\n     * fetch-specific behaviors. These options are passed directly to the\n     * underlying fetch call.\n     */\n    options?: IHttpConnection.IOptions;\n    /**\n     * Custom fetch function implementation.\n     *\n     * For Node.js versions before 20 that lack native fetch support, provide a\n     * polyfill such as `node-fetch`. This allows the same connection\n     * configuration to work across all Node.js versions.\n     *\n     * @example\n     *   import fetch from \"node-fetch\";\n     *\n     *   const connection: IHttpConnection = {\n     *     host: \"https://api.example.com\",\n     *     fetch: fetch as any,\n     *   };\n     */\n    fetch?: typeof fetch;\n}\nexport declare namespace IHttpConnection {\n    /**\n     * Fetch API request options.\n     *\n     * Subset of the standard `RequestInit` interface, excluding properties that\n     * are managed internally (body, headers, method). These options control\n     * caching, CORS, credentials, and request lifecycle behavior.\n     */\n    interface IOptions {\n        /**\n         * Request cache mode.\n         *\n         * Controls how the request interacts with the browser's HTTP cache.\n         *\n         * - `\"default\"`: Standard browser caching behavior\n         * - `\"no-store\"`: Bypass cache completely, don't store response\n         * - `\"reload\"`: Bypass cache, but store response\n         * - `\"no-cache\"`: Validate with server before using cache\n         * - `\"force-cache\"`: Use cache even if stale\n         * - `\"only-if-cached\"`: Only use cache, fail if not cached\n         */\n        cache?: \"default\" | \"force-cache\" | \"no-cache\" | \"no-store\" | \"only-if-cached\" | \"reload\";\n        /**\n         * Credentials inclusion mode.\n         *\n         * Controls whether cookies and HTTP authentication are sent.\n         *\n         * - `\"omit\"`: Never send credentials\n         * - `\"same-origin\"`: Send credentials only for same-origin requests\n         * - `\"include\"`: Always send credentials, even cross-origin\n         */\n        credentials?: \"omit\" | \"same-origin\" | \"include\";\n        /**\n         * Subresource integrity hash for verification.\n         *\n         * A cryptographic hash (e.g., `\"sha256-abc123...\"`) to verify the fetched\n         * resource hasn't been tampered with. The browser will reject responses\n         * that don't match the expected hash.\n         */\n        integrity?: string;\n        /**\n         * Whether to keep the connection alive after page unload.\n         *\n         * When `true`, the request can outlive the page that initiated it. Useful\n         * for analytics or logging requests that should complete even if the user\n         * navigates away.\n         */\n        keepalive?: boolean;\n        /**\n         * CORS (Cross-Origin Resource Sharing) mode.\n         *\n         * Controls cross-origin request behavior.\n         *\n         * - `\"cors\"`: Standard CORS request (requires server support)\n         * - `\"no-cors\"`: Limited cross-origin request (opaque response)\n         * - `\"same-origin\"`: Only allow same-origin requests\n         * - `\"navigate\"`: For navigation requests (used by browsers)\n         */\n        mode?: \"cors\" | \"navigate\" | \"no-cors\" | \"same-origin\";\n        /**\n         * HTTP redirect handling behavior.\n         *\n         * - `\"follow\"`: Automatically follow redirects (default)\n         * - `\"error\"`: Throw an error on redirect\n         * - `\"manual\"`: Return redirect response for manual handling\n         */\n        redirect?: \"error\" | \"follow\" | \"manual\";\n        /**\n         * Referrer URL to send with the request.\n         *\n         * Overrides the default referrer. Use empty string to suppress the referrer\n         * header entirely.\n         */\n        referrer?: string;\n        /**\n         * Policy for how much referrer information to include.\n         *\n         * Controls what referrer information is sent with requests. More\n         * restrictive policies improve privacy but may break some server-side\n         * analytics or security checks.\n         */\n        referrerPolicy?: \"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\";\n        /**\n         * AbortSignal for request cancellation.\n         *\n         * Connect to an AbortController to enable cancellation of in-flight\n         * requests. When the signal is aborted, the fetch promise rejects with an\n         * AbortError.\n         *\n         * @example\n         *   const controller = new AbortController();\n         *   const options = { signal: controller.signal };\n         *   // Later: controller.abort();\n         */\n        signal?: AbortSignal | null;\n    }\n    /**\n     * Allowed types for HTTP header values.\n     *\n     * Supports primitive types (string, boolean, number, bigint) and arrays of\n     * primitives. Arrays are typically joined with commas when sent as HTTP\n     * headers.\n     */\n    type HeaderValue = string | boolean | number | bigint | Array<boolean> | Array<number> | Array<bigint> | Array<string>;\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpLlmApplication.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { ILlmSchema } from \"../schema/ILlmSchema\";\nimport { IHttpLlmFunction } from \"./IHttpLlmFunction\";\nimport { IHttpMigrateRoute } from \"./IHttpMigrateRoute\";\n/**\n * LLM function calling application from OpenAPI document.\n *\n * `IHttpLlmApplication` is a collection of {@link IHttpLlmFunction} schemas\n * converted from {@link OpenApi.IDocument} by `HttpLlm.application()`. Each\n * OpenAPI operation becomes an LLM-callable function.\n *\n * Successful conversions go to {@link functions}, failed ones to {@link errors}\n * with detailed error messages. Common failure causes:\n *\n * - Unsupported schema features (tuples, `oneOf` with incompatible types)\n * - Missing required fields in OpenAPI document\n * - Operations marked with `x-samchon-human: true`\n *\n * Configure behavior via {@link IHttpLlmApplication.IConfig}:\n *\n * - {@link IHttpLlmApplication.IConfig.maxLength}: Function name length limit\n * - {@link ILlmSchema.IConfig.strict}: OpenAI structured output mode\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpLlmApplication {\n    /** Successfully converted LLM function schemas. */\n    functions: IHttpLlmFunction[];\n    /** Operations that failed conversion. */\n    errors: IHttpLlmApplication.IError[];\n    /** Configuration used for composition. */\n    config: IHttpLlmApplication.IConfig;\n}\nexport declare namespace IHttpLlmApplication {\n    /** Configuration for HTTP LLM application composition. */\n    interface IConfig extends ILlmSchema.IConfig {\n        /**\n         * Maximum function name length. Truncated or UUID if exceeded.\n         *\n         * @default 64\n         */\n        maxLength: number;\n        /**\n         * Whether to disallow superfluous properties.\n         *\n         * @default false\n         */\n        equals: boolean;\n    }\n    /** Composition error for an operation. */\n    interface IError {\n        /** HTTP method of the failed operation. */\n        method: \"head\" | \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\" | \"query\";\n        /** Path of the failed operation. */\n        path: string;\n        /** Error messages describing the failure. */\n        messages: string[];\n        /** Returns source {@link OpenApi.IOperation}. */\n        operation: () => OpenApi.IOperation;\n        /** Returns source route. Undefined if error occurred at migration level. */\n        route: () => IHttpMigrateRoute | undefined;\n    }\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpLlmController.d.ts": "import { IHttpConnection } from \"./IHttpConnection\";\nimport { IHttpLlmApplication } from \"./IHttpLlmApplication\";\nimport { IHttpLlmFunction } from \"./IHttpLlmFunction\";\nimport { IHttpResponse } from \"./IHttpResponse\";\n/**\n * Controller of HTTP LLM function calling.\n *\n * `IHttpLlmController` is a controller for registering OpenAPI operations as\n * LLM function calling tools. It contains {@link IHttpLlmApplication} with\n * {@link IHttpLlmFunction function calling schemas}, {@link name identifier}, and\n * {@link connection} to the API server.\n *\n * You can create this controller with {@link HttpLlm.controller} function, and\n * register it to MCP server with {@link registerMcpControllers}:\n *\n * ```typescript\n * import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\n * import { registerMcpControllers } from \"@typia/mcp\";\n * import { HttpLlm } from \"@typia/utils\";\n *\n * const server = new McpServer({ name: \"my-server\", version: \"1.0.0\" });\n * registerMcpControllers({\n *   server,\n *   controllers: [\n *     HttpLlm.controller({\n *       name: \"shopping\",\n *       document: await fetch(\n *         \"https://shopping-be.wrtn.io/editor/swagger.json\",\n *       ).then((r) => r.json()),\n *       connection: {\n *         host: \"https://shopping-be.wrtn.io\",\n *         headers: {\n *           Authorization: \"Bearer ********\",\n *         },\n *       },\n *     }),\n *   ],\n * });\n * ```\n *\n * For TypeScript class-based controller, use {@link ILlmController} instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpLlmController {\n    /** Protocol discriminator. */\n    protocol: \"http\";\n    /** Identifier name of the controller. */\n    name: string;\n    /** Application schema of function calling. */\n    application: IHttpLlmApplication;\n    /**\n     * Connection to the server.\n     *\n     * Connection to the API server including the URL and headers.\n     */\n    connection: IHttpConnection;\n    /**\n     * Executor of the API function.\n     *\n     * Default executor is {@link HttpLlm.execute} function, and you can override\n     * it with your own function.\n     *\n     * @param props Properties of the API function call\n     * @returns HTTP response of the API function call\n     */\n    execute?: undefined | ((props: {\n        /** Connection to the server. */\n        connection: IHttpConnection;\n        /** Application schema. */\n        application: IHttpLlmApplication;\n        /** Function schema. */\n        function: IHttpLlmFunction;\n        /**\n         * Arguments of the function calling.\n         *\n         * It is an object of key-value pairs of the API function's parameters.\n         * The property keys are composed by below rules:\n         *\n         * - Parameter names\n         * - Query parameter as an object type if exists\n         * - Body parameter if exists\n         */\n        arguments: object;\n    }) => Promise<IHttpResponse>);\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpLlmFunction.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { ILlmFunction } from \"../schema/ILlmFunction\";\nimport { IHttpMigrateRoute } from \"./IHttpMigrateRoute\";\n/**\n * LLM function calling schema from OpenAPI operation.\n *\n * Extends {@link ILlmFunction} with HTTP-specific properties. Generated from\n * {@link OpenApi.IOperation} as part of {@link IHttpLlmApplication}.\n *\n * - {@link method}, {@link path}: HTTP endpoint info\n * - {@link operation}: Source OpenAPI operation\n * - {@link route}: Source migration route\n *\n * Inherits {@link parse} and {@link validate} from {@link ILlmFunction}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpLlmFunction extends ILlmFunction {\n    /** HTTP method of the endpoint. */\n    method: \"head\" | \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\" | \"query\";\n    /** Path of the endpoint. */\n    path: string;\n    /** Category tags from {@link OpenApi.IOperation.tags}. */\n    tags?: string[];\n    /** Returns the source {@link OpenApi.IOperation}. */\n    operation: () => OpenApi.IOperation;\n    /** Returns the source {@link IHttpMigrateRoute}. */\n    route: () => IHttpMigrateRoute;\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpMigrateApplication.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { IHttpMigrateRoute } from \"./IHttpMigrateRoute\";\n/**\n * Migrated application from OpenAPI document.\n *\n * `IHttpMigrateApplication` converts OpenAPI operations into callable HTTP\n * routes via `HttpMigration.application()`. Unlike {@link IHttpLlmApplication}\n * which targets LLM function calling, this focuses on SDK/client code\n * generation with full HTTP semantics.\n *\n * Each {@link IHttpMigrateRoute} represents a single API endpoint with:\n *\n * - Resolved path parameters (`:id` format)\n * - Combined query/header schemas as objects\n * - Request/response body with content type\n * - Accessor path for RPC-style function naming\n *\n * Failed operations go to {@link errors} with detailed messages.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpMigrateApplication {\n    /** Successfully migrated routes. */\n    routes: IHttpMigrateRoute[];\n    /** Operations that failed migration. */\n    errors: IHttpMigrateApplication.IError[];\n    /** Returns source OpenAPI document. */\n    document: () => OpenApi.IDocument;\n}\nexport declare namespace IHttpMigrateApplication {\n    /** Migration error for an operation. */\n    interface IError {\n        /** Returns source operation. */\n        operation: () => OpenApi.IOperation;\n        /** HTTP method. */\n        method: \"head\" | \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\" | \"query\";\n        /** Operation path. */\n        path: string;\n        /** Error messages. */\n        messages: string[];\n    }\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpMigrateRoute.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\n/**\n * HTTP route converted from OpenAPI operation.\n *\n * `IHttpMigrateRoute` represents a single API endpoint with all\n * request/response schemas resolved and ready for code generation. Contains\n * {@link parameters} for URL path variables, {@link query} for query strings,\n * {@link headers}, {@link body} for request payload, and\n * {@link success}/{@link exceptions} for responses.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpMigrateRoute {\n    /** HTTP method. */\n    method: \"head\" | \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\" | \"query\";\n    /** Original path from OpenAPI document. */\n    path: string;\n    /** Emended path with `:param` format, always starts with `/`. */\n    emendedPath: string;\n    /**\n     * Accessor path for generated RPC function.\n     *\n     * Namespaces from static path segments, function name from method +\n     * parameters. `delete` becomes `erase` to avoid reserved keyword.\n     */\n    accessor: string[];\n    /** Path parameters only. */\n    parameters: IHttpMigrateRoute.IParameter[];\n    /** Combined headers as single object. Null if none. */\n    headers: IHttpMigrateRoute.IHeaders | null;\n    /** Combined query parameters as single object. Null if none. */\n    query: IHttpMigrateRoute.IQuery | null;\n    /** Request body metadata. Null if none. */\n    body: IHttpMigrateRoute.IBody | null;\n    /** Success response (200/201). Null if void return. */\n    success: IHttpMigrateRoute.ISuccess | null;\n    /** Exception responses keyed by status code. */\n    exceptions: Record<string, IHttpMigrateRoute.IException>;\n    /** Returns description comment for the RPC function. */\n    comment: () => string;\n    /** Returns source {@link OpenApi.IOperation}. */\n    operation: () => OpenApi.IOperation;\n}\nexport declare namespace IHttpMigrateRoute {\n    /** Path parameter metadata. */\n    interface IParameter {\n        /** Parameter name in path template. */\n        name: string;\n        /** Parameter variable key. */\n        key: string;\n        /** Parameter type schema. */\n        schema: OpenApi.IJsonSchema;\n        /** Returns source parameter definition. */\n        parameter: () => OpenApi.IOperation.IParameter;\n    }\n    /** Headers metadata. */\n    interface IHeaders {\n        /** Combined headers parameter name. */\n        name: string;\n        /** Headers variable key. */\n        key: string;\n        /** Combined headers schema. */\n        schema: OpenApi.IJsonSchema;\n        /** Returns title. */\n        title: () => string | undefined;\n        /** Returns description. */\n        description: () => string | undefined;\n        /** Returns example value. */\n        example: () => any | undefined;\n        /** Returns named examples. */\n        examples: () => Record<string, any> | undefined;\n    }\n    /** Query parameters metadata. */\n    interface IQuery {\n        /** Combined query parameter name. */\n        name: string;\n        /** Query variable key. */\n        key: string;\n        /** Combined query schema. */\n        schema: OpenApi.IJsonSchema;\n        /** Returns title. */\n        title: () => string | undefined;\n        /** Returns description. */\n        description: () => string | undefined;\n        /** Returns example value. */\n        example: () => any | undefined;\n        /** Returns named examples. */\n        examples: () => Record<string, any> | undefined;\n    }\n    /** Request body metadata. */\n    interface IBody {\n        /** Body parameter name. */\n        name: string;\n        /** Body variable key. */\n        key: string;\n        /** Content media type. */\n        type: \"text/plain\" | \"application/json\" | \"application/x-www-form-urlencoded\" | \"multipart/form-data\";\n        /** Body type schema. */\n        schema: OpenApi.IJsonSchema;\n        /** Returns description. */\n        description: () => string | undefined;\n        /** Returns source media type definition. */\n        media: () => OpenApi.IOperation.IMediaType;\n        /** Nestia encryption flag. */\n        \"x-nestia-encrypted\"?: boolean;\n    }\n    /** Success response metadata. */\n    interface ISuccess extends IBody {\n        /** HTTP status code. */\n        status: string;\n    }\n    /** Exception response metadata. */\n    interface IException {\n        /** Exception type schema. */\n        schema: OpenApi.IJsonSchema;\n        /** Returns source response definition. */\n        response: () => OpenApi.IOperation.IResponse;\n        /** Returns source media type definition. */\n        media: () => OpenApi.IOperation.IMediaType;\n    }\n}\n",
    "node_modules/@typia/interface/lib/http/IHttpResponse.d.ts": "/**\n * HTTP response structure returned from server communication.\n *\n * `IHttpResponse` represents the complete HTTP response received from a remote\n * server, containing the status code, response headers, and body. This\n * interface is used by `@nestia/fetcher` to return structured response data\n * from API calls.\n *\n * The {@link status} property contains the HTTP status code (e.g., 200, 404),\n * {@link headers} contains all response headers (some may have multiple values),\n * and {@link body} contains the parsed response body (typically JSON-decoded).\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHttpResponse {\n    /**\n     * HTTP status code of the response.\n     *\n     * Standard HTTP status codes indicating the result of the request. Common\n     * values: 200 (OK), 201 (Created), 400 (Bad Request), 401 (Unauthorized), 404\n     * (Not Found), 500 (Internal Server Error).\n     */\n    status: number;\n    /**\n     * Response headers from the server.\n     *\n     * Contains all HTTP headers returned by the server. Header values can be\n     * either a single string or an array of strings for headers that appear\n     * multiple times (e.g., `Set-Cookie`).\n     */\n    headers: Record<string, string | string[]>;\n    /**\n     * Parsed body content of the response.\n     *\n     * The response body after parsing. For JSON responses, this is the decoded\n     * JavaScript object. The actual type depends on the endpoint and response\n     * content-type.\n     */\n    body: unknown;\n}\n",
    "node_modules/@typia/interface/lib/http/index.d.ts": "export * from \"./IHttpConnection\";\nexport * from \"./IHttpLlmController\";\nexport * from \"./IHttpLlmApplication\";\nexport * from \"./IHttpLlmFunction\";\nexport * from \"./IHttpMigrateApplication\";\nexport * from \"./IHttpMigrateRoute\";\nexport * from \"./IHttpResponse\";\n",
    "node_modules/@typia/interface/lib/index.d.ts": "export * from \"./http/index\";\nexport * from \"./schema/index\";\nexport * from \"./openapi/index\";\nexport * from \"./typings/index\";\nexport * from \"./utils/index\";\nexport * from \"./metadata/index\";\nexport * from \"./protobuf/index\";\nexport * as tags from \"./tags/index\";\n",
    "node_modules/@typia/interface/lib/metadata/IJsDocTagInfo.d.ts": "/**\n * JSDoc tag information extracted from TypeScript source.\n *\n * Represents a single JSDoc tag like `@param`, `@returns`, `@deprecated`, etc.\n * Used throughout typia's metadata system to preserve documentation.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IJsDocTagInfo {\n    /** Tag name without `@` prefix (e.g., `\"param\"`, `\"returns\"`). */\n    name: string;\n    /** Tag text content, if any. */\n    text?: IJsDocTagInfo.IText[];\n}\nexport declare namespace IJsDocTagInfo {\n    /** Text segment within a JSDoc tag. */\n    interface IText {\n        /** Text content. */\n        text: string;\n        /** Text kind (e.g., `\"text\"`, `\"parameterName\"`). */\n        kind: string;\n    }\n}\n",
    "node_modules/@typia/interface/lib/metadata/IMetadataComponents.d.ts": "import { IMetadataSchema } from \"./IMetadataSchema\";\n/**\n * Shared type definitions for metadata schemas.\n *\n * `IMetadataComponents` stores reusable type definitions that can be referenced\n * from {@link IMetadataSchema} via {@link IMetadataSchema.IReference}. This\n * enables deduplication of complex types across multiple schemas.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataComponents {\n    /** Object type definitions. */\n    objects: IMetadataSchema.IObjectType[];\n    /** Type alias definitions. */\n    aliases: IMetadataSchema.IAliasType[];\n    /** Array type definitions. */\n    arrays: IMetadataSchema.IArrayType[];\n    /** Tuple type definitions. */\n    tuples: IMetadataSchema.ITupleType[];\n}\n",
    "node_modules/@typia/interface/lib/metadata/IMetadataSchema.d.ts": "import { Atomic } from \"../typings/Atomic\";\nimport { IJsDocTagInfo } from \"./IJsDocTagInfo\";\nimport { IMetadataTypeTag } from \"./IMetadataTypeTag\";\n/**\n * Metadata schema representing a TypeScript type's structure.\n *\n * `IMetadataSchema` is typia's internal type representation, capturing full\n * TypeScript type information including unions, optionality, nullability, and\n * type constraints. Used by `typia.reflect.schema<T>()` for runtime type\n * introspection.\n *\n * Type categories:\n *\n * - Primitives: {@link atomics} (boolean, bigint, number, string)\n * - Literals: {@link constants} (literal values like `\"hello\"` or `42`)\n * - Templates: {@link templates} (template literal types)\n * - Collections: {@link arrays}, {@link tuples}, {@link sets}, {@link maps}\n * - Objects: {@link objects} (named object types)\n * - Aliases: {@link aliases} (type aliases)\n * - Natives: {@link natives} (built-in classes like Date, Uint8Array)\n * - Functions: {@link functions} (function types)\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataSchema {\n    /** Whether the type is `any`. */\n    any: boolean;\n    /** Whether the type is required (not `undefined`). */\n    required: boolean;\n    /** Whether the type is optional (`?` modifier). */\n    optional: boolean;\n    /** Whether the type is nullable (`null` included). */\n    nullable: boolean;\n    /** Function types in the union. */\n    functions: IMetadataSchema.IFunction[];\n    /** Primitive types (boolean, bigint, number, string) in the union. */\n    atomics: IMetadataSchema.IAtomic[];\n    /** Literal constant values in the union. */\n    constants: IMetadataSchema.IConstant[];\n    /** Template literal types in the union. */\n    templates: IMetadataSchema.ITemplate[];\n    /** Escaped type info (original and transformed). */\n    escaped: IMetadataSchema.IEscaped | null;\n    /** Rest element type for variadic tuples. */\n    rest: IMetadataSchema | null;\n    /** Array type references in the union. */\n    arrays: IMetadataSchema.IReference[];\n    /** Tuple type references in the union. */\n    tuples: IMetadataSchema.IReference[];\n    /** Object type references in the union. */\n    objects: IMetadataSchema.IReference[];\n    /** Type alias references in the union. */\n    aliases: IMetadataSchema.IReference[];\n    /** Native class references (Date, Uint8Array, etc.) in the union. */\n    natives: IMetadataSchema.IReference[];\n    /** Set types in the union. */\n    sets: IMetadataSchema.ISet[];\n    /** Map types in the union. */\n    maps: IMetadataSchema.IMap[];\n}\nexport declare namespace IMetadataSchema {\n    /** Function type metadata. */\n    interface IFunction {\n        /** Whether the function is async. */\n        async: boolean;\n        /** Function parameters. */\n        parameters: IParameter[];\n        /** Return type schema. */\n        output: IMetadataSchema;\n    }\n    /** Function parameter metadata. */\n    interface IParameter {\n        /** Parameter name. */\n        name: string;\n        /** Parameter type schema. */\n        type: IMetadataSchema;\n        /** JSDoc description. */\n        description: string | null;\n        /** JSDoc tags. */\n        jsDocTags: IJsDocTagInfo[];\n    }\n    /** Primitive atomic type metadata. */\n    interface IAtomic {\n        /** Primitive type kind. */\n        type: \"boolean\" | \"bigint\" | \"number\" | \"string\";\n        /** Type constraint tags (e.g., `@minimum`, `@format`). */\n        tags: IMetadataTypeTag[][];\n    }\n    /** Literal constant type metadata. */\n    type IConstant = IConstant.IBase<\"boolean\"> | IConstant.IBase<\"number\"> | IConstant.IBase<\"string\"> | IConstant.IBase<\"bigint\">;\n    namespace IConstant {\n        /** Base interface for constant types. */\n        interface IBase<Type extends Atomic.Literal> {\n            /** Constant type kind. */\n            type: Type;\n            /** Literal values in the union. */\n            values: IValue<Atomic.Mapper[Type]>[];\n        }\n        /** Single constant value metadata. */\n        interface IValue<T extends Atomic.Type> {\n            /** The literal value. */\n            value: T;\n            /** Type constraint tags. */\n            tags: IMetadataTypeTag[][];\n            /** JSDoc description. */\n            description?: string | null;\n            /** JSDoc tags. */\n            jsDocTags?: IJsDocTagInfo[];\n        }\n    }\n    /** Template literal type metadata. */\n    interface ITemplate {\n        /** Template parts as schemas. */\n        row: IMetadataSchema[];\n        /** Type constraint tags. */\n        tags: IMetadataTypeTag[][];\n    }\n    /** Escaped type metadata (for special transformations). */\n    interface IEscaped {\n        /** Original type before escaping. */\n        original: IMetadataSchema;\n        /** Transformed return type. */\n        returns: IMetadataSchema;\n    }\n    /** Type alias definition. */\n    interface IAliasType {\n        /** Alias name. */\n        name: string;\n        /** Underlying type schema. */\n        value: IMetadataSchema;\n        /** Nullability per reference site. */\n        nullables: boolean[];\n        /** JSDoc description. */\n        description: string | null;\n        /** JSDoc tags. */\n        jsDocTags: IJsDocTagInfo[];\n        /** Whether the alias is recursive. */\n        recursive: boolean;\n    }\n    /** Array type definition. */\n    interface IArrayType {\n        /** Array type name. */\n        name: string;\n        /** Element type schema. */\n        value: IMetadataSchema;\n        /** Nullability per reference site. */\n        nullables: boolean[];\n        /** Whether the array type is recursive. */\n        recursive: boolean;\n        /** Index in components (for deduplication). */\n        index: number | null;\n    }\n    /** Tuple type definition. */\n    interface ITupleType {\n        /** Tuple type name. */\n        name: string;\n        /** Element schemas in order. */\n        elements: IMetadataSchema[];\n        /** Index in components (for deduplication). */\n        index: number | null;\n        /** Whether the tuple type is recursive. */\n        recursive: boolean;\n        /** Nullability per reference site. */\n        nullables: boolean[];\n    }\n    /** Object type definition. */\n    interface IObjectType {\n        /** Object type name. */\n        name: string;\n        /** Object properties. */\n        properties: IProperty[];\n        /** JSDoc description. */\n        description?: undefined | string;\n        /** JSDoc tags. */\n        jsDocTags: IJsDocTagInfo[];\n        /** Index in components (for deduplication). */\n        index: number;\n        /** Whether the object type is recursive. */\n        recursive: boolean;\n        /** Nullability per reference site. */\n        nullables: boolean[];\n    }\n    /** Object property metadata. */\n    interface IProperty {\n        /** Property key schema (string or symbol). */\n        key: IMetadataSchema;\n        /** Property value schema. */\n        value: IMetadataSchema;\n        /** JSDoc description. */\n        description: string | null;\n        /** JSDoc tags. */\n        jsDocTags: IJsDocTagInfo[];\n        /** Property mutability (`readonly` or mutable). */\n        mutability?: \"readonly\" | null | undefined;\n    }\n    /** Map type metadata. */\n    interface IMap {\n        /** Key type schema. */\n        key: IMetadataSchema;\n        /** Value type schema. */\n        value: IMetadataSchema;\n        /** Type constraint tags. */\n        tags: IMetadataTypeTag[][];\n    }\n    /** Set type metadata. */\n    interface ISet {\n        /** Element type schema. */\n        value: IMetadataSchema;\n        /** Type constraint tags. */\n        tags: IMetadataTypeTag[][];\n    }\n    /** Reference to a named type in components. */\n    interface IReference {\n        /** Referenced type name. */\n        name: string;\n        /** Type constraint tags. */\n        tags: IMetadataTypeTag[][];\n    }\n}\n",
    "node_modules/@typia/interface/lib/metadata/IMetadataSchemaCollection.d.ts": "import { IMetadataComponents } from \"./IMetadataComponents\";\nimport { IMetadataSchema } from \"./IMetadataSchema\";\n/**\n * Collection of metadata schemas for multiple types.\n *\n * `IMetadataSchemaCollection` contains metadata schemas generated from multiple\n * TypeScript types via `typia.reflect.schemas<[T1, T2, ...]>()`. Each schema in\n * {@link schemas} corresponds to one input type, while shared type definitions\n * (objects, aliases, arrays, tuples) are stored in {@link components}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataSchemaCollection {\n    /** Array of metadata schemas, one per input type. */\n    schemas: IMetadataSchema[];\n    /** Shared type definitions referenced by schemas. */\n    components: IMetadataComponents;\n}\n",
    "node_modules/@typia/interface/lib/metadata/IMetadataSchemaUnit.d.ts": "import { IMetadataComponents } from \"./IMetadataComponents\";\nimport { IMetadataSchema } from \"./IMetadataSchema\";\n/**\n * Single unit of metadata schema for one type.\n *\n * `IMetadataSchemaUnit` contains a metadata schema generated from a single\n * TypeScript type via `typia.reflect.schema<T>()`. The main schema is in\n * {@link schema}, while shared type definitions (objects, aliases, arrays,\n * tuples) are stored in {@link components}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataSchemaUnit {\n    /** Metadata schema for the target type. */\n    schema: IMetadataSchema;\n    /** Shared type definitions referenced by the schema. */\n    components: IMetadataComponents;\n}\n",
    "node_modules/@typia/interface/lib/metadata/IMetadataTypeTag.d.ts": "/**\n * Type constraint tag metadata.\n *\n * Represents constraint tags like `@minimum`, `@format`, `@pattern` that are\n * applied to types via typia's tag system. Used for validation and JSON schema\n * generation.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IMetadataTypeTag {\n    /** Target type this tag applies to. */\n    target: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n    /** Full tag name (e.g., `\"@typia/tag/Minimum\"`). */\n    name: string;\n    /** Tag kind identifier (e.g., `\"minimum\"`, `\"format\"`). */\n    kind: string;\n    /**\n     * Exclusivity: `true` for unique tags, or array of mutually exclusive tag\n     * kinds.\n     */\n    exclusive: boolean | string[];\n    /** Tag value (e.g., `0` for `Minimum<0>`, `\"email\"` for `Format<\"email\">`). */\n    value?: any;\n    /** Validation expression template. */\n    validate?: string | undefined;\n    /** JSON schema fragment to merge. */\n    schema?: object | undefined;\n}\n",
    "node_modules/@typia/interface/lib/metadata/index.d.ts": "export * from \"./IJsDocTagInfo\";\nexport * from \"./IMetadataComponents\";\nexport * from \"./IMetadataSchema\";\nexport * from \"./IMetadataSchemaCollection\";\nexport * from \"./IMetadataSchemaUnit\";\nexport * from \"./IMetadataTypeTag\";\n",
    "node_modules/@typia/interface/lib/openapi/OpenApi.d.ts": "import { IJsonSchemaAttribute } from \"../schema/IJsonSchemaAttribute\";\nimport * as tags from \"../tags\";\n/**\n * Emended OpenAPI v3.2 specification.\n *\n * `OpenApi` is a refined OpenAPI v3.2 specification that normalizes ambiguous\n * and redundant expressions from various OpenAPI versions (Swagger 2.0, OpenAPI\n * 3.0, 3.1, 3.2). This unified format simplifies schema processing for `typia`\n * and `@nestia/sdk`.\n *\n * Key simplifications:\n *\n * - Schema `$ref` references are unified to `#/components/schemas/{name}` format\n * - Non-schema references (parameters, responses) are resolved inline\n * - `nullable` is converted to `{ oneOf: [schema, { type: \"null\\\" }] }`\n * - `allOf` compositions are merged into single schemas\n * - Schema attributes are normalized across all versions\n *\n * Use `HttpLlm.application()` from `@typia/utils` to convert\n * `OpenApi.IDocument` into {@link IHttpLlmApplication} for LLM function\n * calling.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApi {\n    /**\n     * HTTP method supported by OpenAPI operations.\n     *\n     * Standard HTTP methods used in REST APIs. Each path can have multiple\n     * operations, one per HTTP method.\n     */\n    type Method = \"get\" | \"post\" | \"put\" | \"delete\" | \"options\" | \"head\" | \"patch\" | \"trace\" | \"query\";\n    /**\n     * Root document structure for emended OpenAPI v3.2.\n     *\n     * Contains all API metadata, paths, operations, and reusable components. The\n     * `x-samchon-emended-v4` marker indicates this document has been processed by\n     * `samchon/typia` to normalize schema formats.\n     */\n    interface IDocument {\n        /** OpenAPI version. */\n        openapi: `3.2.${number}`;\n        /** List of servers providing the API. */\n        servers?: IServer[];\n        /** API metadata. */\n        info?: IDocument.IInfo;\n        /** Reusable components (schemas, security schemes). */\n        components: IComponents;\n        /** Available API paths and operations. */\n        paths?: Record<string, IPath>;\n        /** Webhook definitions. */\n        webhooks?: Record<string, IPath>;\n        /** Global security requirements. */\n        security?: Record<string, string[]>[];\n        /** Tag definitions for grouping operations. */\n        tags?: IDocument.ITag[];\n        /** Marker for emended document by `typia` */\n        \"x-typia-emended-v12\": true;\n    }\n    namespace IDocument {\n        /**\n         * API metadata and identification.\n         *\n         * Contains essential information about the API including title, version,\n         * contact information, and licensing details.\n         */\n        interface IInfo {\n            /** API title. */\n            title: string;\n            /** Short summary. */\n            summary?: string;\n            /** Full description. */\n            description?: string;\n            /** Terms of service URL. */\n            termsOfService?: string;\n            /** Contact information. */\n            contact?: IContact;\n            /** License information. */\n            license?: ILicense;\n            /** API version. */\n            version: string;\n        }\n        /** Tag for grouping operations. */\n        interface ITag {\n            /** Tag name. */\n            name: string;\n            /** Short summary for display in tag lists. */\n            summary?: string;\n            /** Tag description. */\n            description?: string;\n            /** Parent tag name for hierarchical organization. */\n            parent?: string;\n            /** Tag classification (e.g., \"nav\", \"badge\"). */\n            kind?: string;\n        }\n        /** Contact information. */\n        interface IContact {\n            /** Contact name. */\n            name?: string;\n            /** Contact URL. */\n            url?: string;\n            /** Contact email. */\n            email?: string & tags.Format<\"email\">;\n        }\n        /** License information. */\n        interface ILicense {\n            /** License name. */\n            name: string;\n            /** SPDX license identifier. */\n            identifier?: string;\n            /** License URL. */\n            url?: string;\n        }\n    }\n    /** Server providing the API. */\n    interface IServer {\n        /** Server URL. */\n        url: string;\n        /** Server description. */\n        description?: string;\n        /** URL template variables. */\n        variables?: Record<string, IServer.IVariable>;\n    }\n    namespace IServer {\n        /** URL template variable. */\n        interface IVariable {\n            /** Default value. */\n            default: string;\n            /** Allowed values. */\n            enum?: string[];\n            /** Variable description. */\n            description?: string;\n        }\n    }\n    /** Path item containing operations by HTTP method. */\n    interface IPath extends Partial<Record<Method, IOperation>> {\n        /** Path-level servers. */\n        servers?: IServer[];\n        /** Path summary. */\n        summary?: string;\n        /** Path description. */\n        description?: string;\n        /** Additional non-standard HTTP method operations (e.g., LINK, UNLINK, PURGE). */\n        additionalOperations?: Record<string, IOperation>;\n    }\n    /** API operation metadata. */\n    interface IOperation {\n        /** Unique operation identifier. */\n        operationId?: string;\n        /** Operation parameters. */\n        parameters?: IOperation.IParameter[];\n        /** Request body. */\n        requestBody?: IOperation.IRequestBody;\n        /** Response definitions by status code. */\n        responses?: Record<string, IOperation.IResponse>;\n        /** Operation-level servers. */\n        servers?: IServer[];\n        /** Short summary. */\n        summary?: string;\n        /** Full description. */\n        description?: string;\n        /** Security requirements. */\n        security?: Record<string, string[]>[];\n        /** Operation tags for grouping. */\n        tags?: string[];\n        /** Whether deprecated. */\n        deprecated?: boolean;\n        /** Excludes from LLM function calling when `true`. */\n        \"x-samchon-human\"?: boolean;\n        /** Custom accessor path for migration. */\n        \"x-samchon-accessor\"?: string[];\n        /** Controller name for code generation. */\n        \"x-samchon-controller\"?: string;\n    }\n    namespace IOperation {\n        /** Operation parameter. */\n        interface IParameter {\n            /** Parameter name. */\n            name?: string;\n            /** Parameter location. */\n            in: \"path\" | \"query\" | \"querystring\" | \"header\" | \"cookie\";\n            /** Parameter schema. */\n            schema: IJsonSchema;\n            /** Whether required. */\n            required?: boolean;\n            /** Parameter description. */\n            description?: string;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample>;\n        }\n        /** Request body. */\n        interface IRequestBody {\n            /** Body content by media type. */\n            content?: IContent;\n            /** Body description. */\n            description?: string;\n            /** Whether required. */\n            required?: boolean;\n            /** Nestia encryption flag. */\n            \"x-nestia-encrypted\"?: boolean;\n        }\n        /** Response definition. */\n        interface IResponse {\n            /** Response headers. */\n            headers?: Record<string, IOperation.IParameter>;\n            /** Response content by media type. */\n            content?: IContent;\n            /** Response description. */\n            description?: string;\n            /** Nestia encryption flag. */\n            \"x-nestia-encrypted\"?: boolean;\n        }\n        /** Content by media type. */\n        interface IContent extends Partial<Record<ContentType, IMediaType>> {\n        }\n        /** Media type definition. */\n        interface IMediaType {\n            /** Content schema. */\n            schema?: IJsonSchema;\n            /** Schema for streaming items (SSE, JSON Lines, etc.). */\n            itemSchema?: IJsonSchema;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample>;\n        }\n        /** Supported content types. */\n        type ContentType = \"text/plain\" | \"application/json\" | \"application/x-www-form-url-encoded\" | \"multipart/form-data\" | \"*/*\" | (string & {});\n    }\n    /** Example value definition. */\n    interface IExample {\n        /** Example summary. */\n        summary?: string;\n        /** Example description. */\n        description?: string;\n        /** Example value. */\n        value?: any;\n        /** External value URL. */\n        externalValue?: string;\n    }\n    /** Reusable components storage. */\n    interface IComponents {\n        /** Named schemas. */\n        schemas?: Record<string, IJsonSchema>;\n        /** Named security schemes. */\n        securitySchemes?: Record<string, ISecurityScheme>;\n    }\n    /**\n     * JSON Schema type for emended OpenAPI v3.1.\n     *\n     * Represents all possible JSON Schema types in the normalized OpenAPI format.\n     * This is a discriminated union - check the `type` property or use type\n     * guards to narrow to specific schema types.\n     *\n     * Unlike raw JSON Schema, this format:\n     *\n     * - Uses `oneOf` instead of `anyOf` for union types\n     * - Separates `IArray` (homogeneous) from `ITuple` (heterogeneous)\n     * - Normalizes nullable types to `oneOf` with null schema\n     */\n    type IJsonSchema = IJsonSchema.IConstant | IJsonSchema.IBoolean | IJsonSchema.IInteger | IJsonSchema.INumber | IJsonSchema.IString | IJsonSchema.IArray | IJsonSchema.ITuple | IJsonSchema.IObject | IJsonSchema.IReference | IJsonSchema.IOneOf | IJsonSchema.INull | IJsonSchema.IUnknown;\n    namespace IJsonSchema {\n        /** Constant value type. */\n        interface IConstant extends IJsonSchemaAttribute {\n            /** Constant value. */\n            const: boolean | number | string;\n        }\n        /** Boolean type. */\n        interface IBoolean extends IJsonSchemaAttribute.IBoolean {\n            /** Default value. */\n            default?: boolean;\n        }\n        /** Integer type. */\n        interface IInteger extends IJsonSchemaAttribute.IInteger {\n            /** Default value. */\n            default?: number & tags.Type<\"int64\">;\n            /** Minimum value. */\n            minimum?: number & tags.Type<\"int64\">;\n            /** Maximum value. */\n            maximum?: number & tags.Type<\"int64\">;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number & tags.Type<\"int64\">;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number & tags.Type<\"int64\">;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** Number (double) type. */\n        interface INumber extends IJsonSchemaAttribute.INumber {\n            /** Default value. */\n            default?: number;\n            /** Minimum value. */\n            minimum?: number;\n            /** Maximum value. */\n            maximum?: number;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** String type. */\n        interface IString extends IJsonSchemaAttribute.IString {\n            /** Default value. */\n            default?: string;\n            /** String format. */\n            format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n            /** Regex pattern. */\n            pattern?: string;\n            /** Content media type. */\n            contentMediaType?: string;\n            /** Minimum length. */\n            minLength?: number & tags.Type<\"uint64\">;\n            /** Maximum length. */\n            maxLength?: number & tags.Type<\"uint64\">;\n        }\n        /** Array type. */\n        interface IArray extends IJsonSchemaAttribute.IArray {\n            /** Element type. */\n            items: IJsonSchema;\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Tuple type. */\n        interface ITuple extends IJsonSchemaAttribute {\n            /** Type discriminator. */\n            type: \"array\";\n            /** Tuple element types. */\n            prefixItems: IJsonSchema[];\n            /** Rest element type or `true` for any. */\n            additionalItems?: boolean | IJsonSchema;\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Object type. */\n        interface IObject extends IJsonSchemaAttribute.IObject {\n            /** Property schemas. */\n            properties?: Record<string, IJsonSchema>;\n            /** Additional properties schema or `true` for any. */\n            additionalProperties?: boolean | IJsonSchema;\n            /** Required property names. */\n            required?: string[];\n        }\n        /** Reference to named schema. */\n        interface IReference<Key = string> extends IJsonSchemaAttribute {\n            /** Reference path (e.g., `#/components/schemas/TypeName`). */\n            $ref: Key;\n        }\n        /** Union type (`oneOf`). */\n        interface IOneOf extends IJsonSchemaAttribute {\n            /** Union member schemas. */\n            oneOf: Exclude<IJsonSchema, IJsonSchema.IOneOf>[];\n            /** Discriminator for tagged unions. */\n            discriminator?: IOneOf.IDiscriminator;\n        }\n        namespace IOneOf {\n            /** Discriminator for tagged unions. */\n            interface IDiscriminator {\n                /** Discriminator property name. */\n                propertyName: string;\n                /** Value to schema mapping. */\n                mapping?: Record<string, string>;\n            }\n        }\n        /** Null type. */\n        interface INull extends IJsonSchemaAttribute.INull {\n            /** Default value. */\n            default?: null;\n        }\n        /** Unknown (`any`) type. */\n        interface IUnknown extends IJsonSchemaAttribute.IUnknown {\n            /** Default value. */\n            default?: any;\n        }\n    }\n    /** Security scheme types. */\n    type ISecurityScheme = ISecurityScheme.IApiKey | ISecurityScheme.IHttpBasic | ISecurityScheme.IHttpBearer | ISecurityScheme.IOAuth2 | ISecurityScheme.IOpenId;\n    namespace ISecurityScheme {\n        /** API key authentication. */\n        interface IApiKey {\n            /** Scheme type. */\n            type: \"apiKey\";\n            /** Key location. */\n            in?: \"header\" | \"query\" | \"cookie\";\n            /** Key name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP basic authentication. */\n        interface IHttpBasic {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"basic\";\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP bearer authentication. */\n        interface IHttpBearer {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"bearer\";\n            /** Bearer token format hint. */\n            bearerFormat?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 authentication. */\n        interface IOAuth2 {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flows. */\n            flows: IOAuth2.IFlowSet;\n            /** OAuth2 metadata discovery URL. */\n            oauth2MetadataUrl?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OpenID Connect authentication. */\n        interface IOpenId {\n            /** Scheme type. */\n            type: \"openIdConnect\";\n            /** OpenID Connect discovery URL. */\n            openIdConnectUrl: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        namespace IOAuth2 {\n            /** OAuth2 flow configurations. */\n            interface IFlowSet {\n                /** Authorization code flow. */\n                authorizationCode?: IFlow;\n                /** Implicit flow. */\n                implicit?: Omit<IFlow, \"tokenUrl\">;\n                /** Password flow. */\n                password?: Omit<IFlow, \"authorizationUrl\">;\n                /** Client credentials flow. */\n                clientCredentials?: Omit<IFlow, \"authorizationUrl\">;\n                /** Device authorization flow. */\n                deviceAuthorization?: IDeviceFlow;\n            }\n            /** OAuth2 flow configuration. */\n            interface IFlow {\n                /** Authorization URL. */\n                authorizationUrl?: string;\n                /** Token URL. */\n                tokenUrl?: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n            /** OAuth2 device authorization flow. */\n            interface IDeviceFlow {\n                /** Device authorization URL. */\n                deviceAuthorizationUrl: string;\n                /** Token URL. */\n                tokenUrl: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n        }\n    }\n}\n",
    "node_modules/@typia/interface/lib/openapi/OpenApiV3.d.ts": "import { IJsonSchemaAttribute } from \"../schema/IJsonSchemaAttribute\";\nimport * as tags from \"../tags\";\n/**\n * OpenAPI v3.0 specification types.\n *\n * `OpenApiV3` contains TypeScript type definitions for OpenAPI v3.0 documents.\n * Used for parsing and generating OpenAPI v3.0 specifications. For a normalized\n * format that unifies all OpenAPI versions, use {@link OpenApi} instead.\n *\n * Key differences from v3.1:\n *\n * - Uses `nullable: true` instead of `type: [\"string\", \"null\"]`\n * - No `const` keyword support\n * - No `prefixItems` for tuples\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiV3 {\n    /** HTTP method of the operation. */\n    type Method = \"get\" | \"post\" | \"put\" | \"delete\" | \"options\" | \"head\" | \"patch\" | \"trace\";\n    /** OpenAPI document structure. */\n    interface IDocument {\n        /** OpenAPI version. */\n        openapi: \"3.0\" | `3.0.${number}`;\n        /** List of servers. */\n        servers?: IServer[];\n        /** API metadata. */\n        info?: IDocument.IInfo;\n        /** Reusable components. */\n        components?: IComponents;\n        /** API paths and operations. */\n        paths?: Record<string, IPath>;\n        /** Global security requirements. */\n        security?: Record<string, string[]>[];\n        /** Tag definitions. */\n        tags?: IDocument.ITag[];\n    }\n    namespace IDocument {\n        /** API metadata. */\n        interface IInfo {\n            /** API title. */\n            title: string;\n            /** API description. */\n            description?: string;\n            /** Terms of service URL. */\n            termsOfService?: string;\n            /** Contact information. */\n            contact?: IContact;\n            /** License information. */\n            license?: ILicense;\n            /** API version. */\n            version: string;\n        }\n        /** Tag for grouping operations. */\n        interface ITag {\n            /** Tag name. */\n            name: string;\n            /** Tag description. */\n            description?: string;\n        }\n        /** Contact information. */\n        interface IContact {\n            /** Contact name. */\n            name?: string;\n            /** Contact URL. */\n            url?: string;\n            /** Contact email. */\n            email?: string & tags.Format<\"email\">;\n        }\n        /** License information. */\n        interface ILicense {\n            /** License name. */\n            name: string;\n            /** License URL. */\n            url?: string;\n        }\n    }\n    /** Server providing the API. */\n    interface IServer {\n        /** Server URL. */\n        url: string;\n        /** Server description. */\n        description?: string;\n        /** URL template variables. */\n        variables?: Record<string, IServer.IVariable>;\n    }\n    namespace IServer {\n        /** URL template variable. */\n        interface IVariable {\n            /** Default value. */\n            default: string;\n            /** Allowed values. */\n            enum?: string[];\n            /** Variable description. */\n            description?: string;\n        }\n    }\n    /** Path item containing operations by HTTP method. */\n    interface IPath extends Partial<Record<Method, IOperation | undefined>> {\n        /** Path-level parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Path-level servers. */\n        servers?: IServer[];\n        /** Path summary. */\n        summary?: string;\n        /** Path description. */\n        description?: string;\n        /**\n         * Non-standard HTTP method operations (extension).\n         *\n         * Used when downgrading from OpenAPI v3.2 to preserve\n         * non-standard methods like `query` or custom methods.\n         */\n        \"x-additionalOperations\"?: Record<string, IOperation>;\n    }\n    /** API operation metadata. */\n    interface IOperation {\n        /** Unique operation identifier. */\n        operationId?: string;\n        /** Operation parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Request body. */\n        requestBody?: IOperation.IRequestBody | IJsonSchema.IReference<`#/components/requestBodies/${string}`>;\n        /** Response definitions by status code. */\n        responses?: Record<string, IOperation.IResponse | IJsonSchema.IReference<`#/components/responses/${string}`>>;\n        /** Operation-level servers. */\n        servers?: IServer[];\n        /** Short summary. */\n        summary?: string;\n        /** Full description. */\n        description?: string;\n        /** Security requirements. */\n        security?: Record<string, string[]>[];\n        /** Operation tags. */\n        tags?: string[];\n        /** Whether deprecated. */\n        deprecated?: boolean;\n    }\n    namespace IOperation {\n        /** Operation parameter. */\n        interface IParameter {\n            /** Parameter name. */\n            name?: string;\n            /** Parameter location. */\n            in: \"path\" | \"query\" | \"header\" | \"cookie\";\n            /** Parameter schema. */\n            schema: IJsonSchema;\n            /** Whether required. */\n            required?: boolean;\n            /** Parameter description. */\n            description?: string;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n        /** Request body. */\n        interface IRequestBody {\n            /** Body description. */\n            description?: string;\n            /** Whether required. */\n            required?: boolean;\n            /** Body content by media type. */\n            content?: Record<string, IMediaType>;\n        }\n        /** Response definition. */\n        interface IResponse {\n            /** Response content by media type. */\n            content?: Record<string, IMediaType>;\n            /** Response headers. */\n            headers?: Record<string, Omit<IOperation.IParameter, \"in\"> | IJsonSchema.IReference<`#/components/headers/${string}`>>;\n            /** Response description. */\n            description?: string;\n        }\n        /** Media type definition. */\n        interface IMediaType {\n            /** Content schema. */\n            schema?: IJsonSchema;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n    }\n    /** Example value definition. */\n    interface IExample {\n        /** Example summary. */\n        summary?: string;\n        /** Example description. */\n        description?: string;\n        /** Example value. */\n        value?: any;\n        /** External value URL. */\n        externalValue?: string;\n    }\n    /** Reusable components storage. */\n    interface IComponents {\n        /** Named schemas. */\n        schemas?: Record<string, IJsonSchema>;\n        /** Named responses. */\n        responses?: Record<string, IOperation.IResponse>;\n        /** Named parameters. */\n        parameters?: Record<string, IOperation.IParameter>;\n        /** Named request bodies. */\n        requestBodies?: Record<string, IOperation.IRequestBody>;\n        /** Named security schemes. */\n        securitySchemes?: Record<string, ISecurityScheme>;\n        /** Named headers. */\n        headers?: Record<string, Omit<IOperation.IParameter, \"in\">>;\n        /** Named examples. */\n        examples?: Record<string, IExample>;\n    }\n    /** JSON Schema type for OpenAPI v3.0. */\n    type IJsonSchema = IJsonSchema.IBoolean | IJsonSchema.IInteger | IJsonSchema.INumber | IJsonSchema.IString | IJsonSchema.IArray | IJsonSchema.IObject | IJsonSchema.IReference | IJsonSchema.IAllOf | IJsonSchema.IAnyOf | IJsonSchema.IOneOf | IJsonSchema.INullOnly | IJsonSchema.IUnknown;\n    namespace IJsonSchema {\n        /** Boolean type. */\n        interface IBoolean extends Omit<IJsonSchemaAttribute.IBoolean, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: boolean | null;\n            /** Allowed values. */\n            enum?: Array<boolean | null>;\n        }\n        /** Integer type. */\n        interface IInteger extends Omit<IJsonSchemaAttribute.IInteger, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: (number & tags.Type<\"int64\">) | null;\n            /** Allowed values. */\n            enum?: Array<(number & tags.Type<\"int64\">) | null>;\n            /** Minimum value. */\n            minimum?: number & tags.Type<\"int64\">;\n            /** Maximum value. */\n            maximum?: number & tags.Type<\"int64\">;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** Number (double) type. */\n        interface INumber extends Omit<IJsonSchemaAttribute.INumber, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: number | null;\n            /** Allowed values. */\n            enum?: Array<number | null>;\n            /** Minimum value. */\n            minimum?: number;\n            /** Maximum value. */\n            maximum?: number;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** String type. */\n        interface IString extends Omit<IJsonSchemaAttribute.IString, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: string | null;\n            /** Allowed values. */\n            enum?: Array<string | null>;\n            /** String format. */\n            format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n            /** Regex pattern. */\n            pattern?: string;\n            /** Minimum length. */\n            minLength?: number & tags.Type<\"uint64\">;\n            /** Maximum length. */\n            maxLength?: number & tags.Type<\"uint64\">;\n        }\n        /** Array type. */\n        interface IArray extends Omit<IJsonSchemaAttribute.IArray, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Element type. */\n            items: IJsonSchema;\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Object type. */\n        interface IObject extends Omit<IJsonSchemaAttribute.IObject, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Property schemas. */\n            properties?: Record<string, IJsonSchema>;\n            /** Required property names. */\n            required?: string[];\n            /** Additional properties schema. */\n            additionalProperties?: boolean | IJsonSchema;\n            /** Maximum properties. */\n            maxProperties?: number;\n            /** Minimum properties. */\n            minProperties?: number;\n        }\n        /** Reference to a named schema. */\n        interface IReference<Key = string> extends __IAttribute {\n            /** Reference path. */\n            $ref: Key;\n        }\n        /** All-of combination. */\n        interface IAllOf extends __IAttribute {\n            /** Schemas to combine. */\n            allOf: IJsonSchema[];\n        }\n        /** Any-of union. */\n        interface IAnyOf extends __IAttribute {\n            /** Union member schemas. */\n            anyOf: IJsonSchema[];\n        }\n        /** One-of union. */\n        interface IOneOf extends __IAttribute {\n            /** Union member schemas. */\n            oneOf: IJsonSchema[];\n            /** Discriminator for tagged unions. */\n            discriminator?: IOneOf.IDiscriminator;\n        }\n        namespace IOneOf {\n            /** Discriminator for tagged unions. */\n            interface IDiscriminator {\n                /** Discriminator property name. */\n                propertyName: string;\n                /** Value to schema mapping. */\n                mapping?: Record<string, string>;\n            }\n        }\n        /** Null type. */\n        interface INullOnly extends Omit<IJsonSchemaAttribute.INull, \"examples\">, __IAttribute {\n            /** Default value. */\n            default?: null;\n        }\n        /** Unknown type. */\n        interface IUnknown extends Omit<IJsonSchemaAttribute.IUnknown, \"examples\">, __IAttribute {\n            /** Default value. */\n            default?: any;\n        }\n    }\n    /** Security scheme types. */\n    type ISecurityScheme = ISecurityScheme.IApiKey | ISecurityScheme.IHttpBasic | ISecurityScheme.IHttpBearer | ISecurityScheme.IOAuth2 | ISecurityScheme.IOpenId;\n    namespace ISecurityScheme {\n        /** API key authentication. */\n        interface IApiKey {\n            /** Scheme type. */\n            type: \"apiKey\";\n            /** Key location. */\n            in?: \"header\" | \"query\" | \"cookie\";\n            /** Key name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP basic authentication. */\n        interface IHttpBasic {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"basic\";\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP bearer authentication. */\n        interface IHttpBearer {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"bearer\";\n            /** Bearer token format hint. */\n            bearerFormat?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 authentication. */\n        interface IOAuth2 {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flows. */\n            flows: IOAuth2.IFlowSet;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OpenID Connect authentication. */\n        interface IOpenId {\n            /** Scheme type. */\n            type: \"openIdConnect\";\n            /** OpenID Connect discovery URL. */\n            openIdConnectUrl: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        namespace IOAuth2 {\n            /** OAuth2 flow configurations. */\n            interface IFlowSet {\n                /** Authorization code flow. */\n                authorizationCode?: IFlow;\n                /** Implicit flow. */\n                implicit?: Omit<IFlow, \"tokenUrl\">;\n                /** Password flow. */\n                password?: Omit<IFlow, \"authorizationUrl\">;\n                /** Client credentials flow. */\n                clientCredentials?: Omit<IFlow, \"authorizationUrl\">;\n            }\n            /** OAuth2 flow configuration. */\n            interface IFlow {\n                /** Authorization URL. */\n                authorizationUrl?: string;\n                /** Token URL. */\n                tokenUrl?: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n        }\n    }\n}\n",
    "node_modules/@typia/interface/lib/openapi/OpenApiV3_1.d.ts": "import { IJsonSchemaAttribute } from \"../schema/IJsonSchemaAttribute\";\nimport * as tags from \"../tags\";\n/**\n * OpenAPI v3.1 specification types (raw, unemended).\n *\n * `OpenApiV3_1` contains TypeScript type definitions for raw OpenAPI v3.1\n * documents as-is from the specification. Unlike {@link OpenApi}, this preserves\n * the original structure including `$ref` references and `allOf` compositions\n * without normalization.\n *\n * Key features in v3.1:\n *\n * - JSON Schema draft 2020-12 compatibility\n * - `type` can be an array: `type: [\"string\", \"null\"]`\n * - `const` keyword for constant values\n * - `prefixItems` for tuple definitions\n * - Webhooks support\n *\n * For a normalized format that simplifies schema processing, use\n * {@link OpenApi}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiV3_1 {\n    /** HTTP method of the operation. */\n    type Method = \"get\" | \"post\" | \"put\" | \"delete\" | \"options\" | \"head\" | \"patch\" | \"trace\";\n    /** OpenAPI document structure. */\n    interface IDocument {\n        /** OpenAPI version. */\n        openapi: `3.1.${number}`;\n        /** List of servers. */\n        servers?: IServer[];\n        /** API metadata. */\n        info?: IDocument.IInfo;\n        /** Reusable components. */\n        components?: IComponents;\n        /** API paths and operations. */\n        paths?: Record<string, IPath>;\n        /** Webhook definitions. */\n        webhooks?: Record<string, IJsonSchema.IReference<`#/components/pathItems/${string}`> | IPath>;\n        /** Global security requirements. */\n        security?: Record<string, string[]>[];\n        /** Tag definitions. */\n        tags?: IDocument.ITag[];\n    }\n    namespace IDocument {\n        /** API metadata. */\n        interface IInfo {\n            /** API title. */\n            title: string;\n            /** Short summary. */\n            summary?: string;\n            /** Full description. */\n            description?: string;\n            /** Terms of service URL. */\n            termsOfService?: string;\n            /** Contact information. */\n            contact?: IContact;\n            /** License information. */\n            license?: ILicense;\n            /** API version. */\n            version: string;\n        }\n        /** Tag for grouping operations. */\n        interface ITag {\n            /** Tag name. */\n            name: string;\n            /** Tag description. */\n            description?: string;\n        }\n        /** Contact information. */\n        interface IContact {\n            /** Contact name. */\n            name?: string;\n            /** Contact URL. */\n            url?: string;\n            /** Contact email. */\n            email?: string & tags.Format<\"email\">;\n        }\n        /** License information. */\n        interface ILicense {\n            /** License name. */\n            name: string;\n            /** SPDX license identifier. */\n            identifier?: string;\n            /** License URL. */\n            url?: string;\n        }\n    }\n    /** Server providing the API. */\n    interface IServer {\n        /** Server URL. */\n        url: string;\n        /** Server description. */\n        description?: string;\n        /** URL template variables. */\n        variables?: Record<string, IServer.IVariable>;\n    }\n    namespace IServer {\n        /** URL template variable. */\n        interface IVariable {\n            /** Default value. */\n            default: string;\n            /** Allowed values. @minItems 1 */\n            enum?: string[];\n            /** Variable description. */\n            description?: string;\n        }\n    }\n    /** Path item containing operations by HTTP method. */\n    interface IPath extends Partial<Record<Method, IOperation>> {\n        /** Path-level parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Path-level servers. */\n        servers?: IServer[];\n        /** Path summary. */\n        summary?: string;\n        /** Path description. */\n        description?: string;\n        /**\n         * Non-standard HTTP method operations (extension).\n         *\n         * Used when downgrading from OpenAPI v3.2 to preserve\n         * non-standard methods like `query` or custom methods.\n         */\n        \"x-additionalOperations\"?: Record<string, IOperation>;\n    }\n    /** API operation metadata. */\n    interface IOperation {\n        /** Unique operation identifier. */\n        operationId?: string;\n        /** Operation parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Request body. */\n        requestBody?: IOperation.IRequestBody | IJsonSchema.IReference<`#/components/requestBodies/${string}`>;\n        /** Response definitions by status code. */\n        responses?: Record<string, IOperation.IResponse | IJsonSchema.IReference<`#/components/responses/${string}`>>;\n        /** Operation-level servers. */\n        servers?: IServer[];\n        /** Short summary. */\n        summary?: string;\n        /** Full description. */\n        description?: string;\n        /** Security requirements. */\n        security?: Record<string, string[]>[];\n        /** Operation tags. */\n        tags?: string[];\n        /** Whether deprecated. */\n        deprecated?: boolean;\n    }\n    namespace IOperation {\n        /** Operation parameter. */\n        interface IParameter {\n            /** Parameter name. */\n            name?: string;\n            /** Parameter location. */\n            in: \"path\" | \"query\" | \"header\" | \"cookie\";\n            /** Parameter schema. */\n            schema: IJsonSchema;\n            /** Whether required. */\n            required?: boolean;\n            /** Parameter description. */\n            description?: string;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n        /** Request body. */\n        interface IRequestBody {\n            /** Body description. */\n            description?: string;\n            /** Whether required. */\n            required?: boolean;\n            /** Body content by media type. */\n            content?: Record<string, IMediaType>;\n        }\n        /** Response definition. */\n        interface IResponse {\n            /** Response content by media type. */\n            content?: Record<string, IMediaType>;\n            /** Response headers. */\n            headers?: Record<string, Omit<IOperation.IParameter, \"in\"> | IJsonSchema.IReference<`#/components/headers/${string}`>>;\n            /** Response description. */\n            description?: string;\n        }\n        /** Media type definition. */\n        interface IMediaType {\n            /** Content schema. */\n            schema?: IJsonSchema;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n    }\n    /** Example value definition. */\n    interface IExample {\n        /** Example summary. */\n        summary?: string;\n        /** Example description. */\n        description?: string;\n        /** Example value. */\n        value?: any;\n        /** External value URL. */\n        externalValue?: string;\n    }\n    /** Reusable components storage. */\n    interface IComponents {\n        /** Named schemas. */\n        schemas?: Record<string, IJsonSchema>;\n        /** Named path items. */\n        pathItems?: Record<string, IPath>;\n        /** Named responses. */\n        responses?: Record<string, IOperation.IResponse>;\n        /** Named parameters. */\n        parameters?: Record<string, IOperation.IParameter>;\n        /** Named request bodies. */\n        requestBodies?: Record<string, IOperation.IRequestBody>;\n        /** Named security schemes. */\n        securitySchemes?: Record<string, ISecurityScheme>;\n        /** Named headers. */\n        headers?: Record<string, Omit<IOperation.IParameter, \"in\">>;\n        /** Named examples. */\n        examples?: Record<string, IExample>;\n    }\n    /** JSON Schema type for OpenAPI v3.1. */\n    type IJsonSchema = IJsonSchema.IMixed | IJsonSchema.IConstant | IJsonSchema.IBoolean | IJsonSchema.IInteger | IJsonSchema.INumber | IJsonSchema.IString | IJsonSchema.IArray | IJsonSchema.IObject | IJsonSchema.IReference | IJsonSchema.IRecursiveReference | IJsonSchema.IAllOf | IJsonSchema.IAnyOf | IJsonSchema.IOneOf | IJsonSchema.INull | IJsonSchema.IUnknown;\n    namespace IJsonSchema {\n        /** Mixed type (multiple types in array). */\n        interface IMixed extends IConstant, Omit<IBoolean, \"type\" | \"default\" | \"enum\">, Omit<INumber, \"type\" | \"default\" | \"enum\">, Omit<IString, \"type\" | \"default\" | \"enum\">, Omit<IArray, \"type\">, Omit<IObject, \"type\">, IOneOf, IAnyOf, IAllOf, IReference {\n            /** Array of type discriminators. */\n            type: Array<\"boolean\" | \"integer\" | \"number\" | \"string\" | \"array\" | \"object\" | \"null\">;\n            /** Default value. */\n            default?: any[] | null;\n            /** Allowed values. */\n            enum?: any[];\n        }\n        /** Constant value type. */\n        interface IConstant extends __IAttribute {\n            /** Constant value. */\n            const: boolean | number | string;\n            /** Whether nullable. */\n            nullable?: boolean;\n        }\n        /** Boolean type. */\n        interface IBoolean extends Omit<IJsonSchemaAttribute.IBoolean, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: boolean | null;\n            /** Allowed values. */\n            enum?: Array<boolean | null>;\n        }\n        /** Integer type. */\n        interface IInteger extends Omit<IJsonSchemaAttribute.IInteger, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: (number & tags.Type<\"int64\">) | null;\n            /** Allowed values. */\n            enum?: Array<(number & tags.Type<\"int64\">) | null>;\n            /** Minimum value. */\n            minimum?: number & tags.Type<\"int64\">;\n            /** Maximum value. */\n            maximum?: number & tags.Type<\"int64\">;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: (number & tags.Type<\"int64\">) | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: (number & tags.Type<\"int64\">) | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** Number (double) type. */\n        interface INumber extends Omit<IJsonSchemaAttribute.INumber, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: number | null;\n            /** Allowed values. */\n            enum?: Array<number | null>;\n            /** Minimum value. */\n            minimum?: number;\n            /** Maximum value. */\n            maximum?: number;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** String type. */\n        interface IString extends Omit<IJsonSchemaAttribute.IString, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: string | null;\n            /** Allowed values. */\n            enum?: Array<string | null>;\n            /** String format. */\n            format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n            /** Regex pattern. */\n            pattern?: string;\n            /** Content media type. */\n            contentMediaType?: string;\n            /** Minimum length. */\n            minLength?: number & tags.Type<\"uint64\">;\n            /** Maximum length. */\n            maxLength?: number & tags.Type<\"uint64\">;\n        }\n        /** Object type. */\n        interface IObject extends Omit<IJsonSchemaAttribute.IObject, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Property schemas. */\n            properties?: Record<string, IJsonSchema>;\n            /** Required property names. */\n            required?: string[];\n            /** Additional properties schema. */\n            additionalProperties?: boolean | IJsonSchema;\n            /** Maximum properties. */\n            maxProperties?: number;\n            /** Minimum properties. */\n            minProperties?: number;\n        }\n        /** Array type. */\n        interface IArray extends Omit<IJsonSchemaAttribute.IArray, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Element type (or tuple types). */\n            items?: IJsonSchema | IJsonSchema[];\n            /** Tuple prefix items. */\n            prefixItems?: IJsonSchema[];\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Additional items schema. */\n            additionalItems?: boolean | IJsonSchema;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Reference to a named schema. */\n        interface IReference<Key = string> extends __IAttribute {\n            /** Reference path. */\n            $ref: Key;\n        }\n        /** Recursive reference. */\n        interface IRecursiveReference extends __IAttribute {\n            /** Recursive reference path. */\n            $recursiveRef: string;\n        }\n        /** All-of combination. */\n        interface IAllOf extends __IAttribute {\n            /** Schemas to combine. */\n            allOf: IJsonSchema[];\n        }\n        /** Any-of union. */\n        interface IAnyOf extends __IAttribute {\n            /** Union member schemas. */\n            anyOf: IJsonSchema[];\n        }\n        /** One-of union. */\n        interface IOneOf extends __IAttribute {\n            /** Union member schemas. */\n            oneOf: IJsonSchema[];\n            /** Discriminator for tagged unions. */\n            discriminator?: IOneOf.IDiscriminator;\n        }\n        namespace IOneOf {\n            /** Discriminator for tagged unions. */\n            interface IDiscriminator {\n                /** Discriminator property name. */\n                propertyName: string;\n                /** Value to schema mapping. */\n                mapping?: Record<string, string>;\n            }\n        }\n        /** Null type. */\n        interface INull extends Omit<IJsonSchemaAttribute.INull, \"examples\">, __IAttribute {\n            /** Default value. */\n            default?: null;\n        }\n        /** Unknown type. */\n        interface IUnknown extends Omit<IJsonSchemaAttribute.IUnknown, \"examples\">, __IAttribute {\n            /** Type discriminator (undefined for unknown). */\n            type?: undefined;\n            /** Default value. */\n            default?: any;\n        }\n    }\n    /** Security scheme types. */\n    type ISecurityScheme = ISecurityScheme.IApiKey | ISecurityScheme.IHttpBasic | ISecurityScheme.IHttpBearer | ISecurityScheme.IOAuth2 | ISecurityScheme.IOpenId;\n    namespace ISecurityScheme {\n        /** API key authentication. */\n        interface IApiKey {\n            /** Scheme type. */\n            type: \"apiKey\";\n            /** Key location. */\n            in?: \"header\" | \"query\" | \"cookie\";\n            /** Key name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP basic authentication. */\n        interface IHttpBasic {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"basic\";\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP bearer authentication. */\n        interface IHttpBearer {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"bearer\";\n            /** Bearer token format hint. */\n            bearerFormat?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 authentication. */\n        interface IOAuth2 {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flows. */\n            flows: IOAuth2.IFlowSet;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OpenID Connect authentication. */\n        interface IOpenId {\n            /** Scheme type. */\n            type: \"openIdConnect\";\n            /** OpenID Connect discovery URL. */\n            openIdConnectUrl: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        namespace IOAuth2 {\n            /** OAuth2 flow configurations. */\n            interface IFlowSet {\n                /** Authorization code flow. */\n                authorizationCode?: IFlow;\n                /** Implicit flow. */\n                implicit?: Omit<IFlow, \"tokenUrl\">;\n                /** Password flow. */\n                password?: Omit<IFlow, \"authorizationUrl\">;\n                /** Client credentials flow. */\n                clientCredentials?: Omit<IFlow, \"authorizationUrl\">;\n            }\n            /** OAuth2 flow configuration. */\n            interface IFlow {\n                /** Authorization URL. */\n                authorizationUrl?: string;\n                /** Token URL. */\n                tokenUrl?: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n        }\n    }\n}\n",
    "node_modules/@typia/interface/lib/openapi/OpenApiV3_2.d.ts": "import { IJsonSchemaAttribute } from \"../schema/IJsonSchemaAttribute\";\nimport * as tags from \"../tags\";\n/**\n * OpenAPI v3.2 specification types (raw, unemended).\n *\n * `OpenApiV3_2` contains TypeScript type definitions for raw OpenAPI v3.2\n * documents as-is from the specification. Unlike {@link OpenApi}, this preserves\n * the original structure including `$ref` references and `allOf` compositions\n * without normalization.\n *\n * Key features in v3.2:\n *\n * - `query` HTTP method for safe read operations with request body\n * - `additionalOperations` for non-standard HTTP methods (LINK, UNLINK, etc.)\n * - `in: \"querystring\"` parameter location for full query schema\n * - Enhanced Tag structure with `summary`, `parent`, `kind`\n * - `itemSchema` for streaming (SSE, JSON Lines, etc.)\n * - OAuth2 Device Authorization Flow\n *\n * For a normalized format that simplifies schema processing, use\n * {@link OpenApi}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiV3_2 {\n    /** HTTP method of the operation. */\n    type Method = \"get\" | \"post\" | \"put\" | \"delete\" | \"options\" | \"head\" | \"patch\" | \"trace\" | \"query\";\n    /** OpenAPI document structure. */\n    interface IDocument {\n        /** OpenAPI version. */\n        openapi: `3.2.${number}`;\n        /** List of servers. */\n        servers?: IServer[];\n        /** API metadata. */\n        info?: IDocument.IInfo;\n        /** Reusable components. */\n        components?: IComponents;\n        /** API paths and operations. */\n        paths?: Record<string, IPath>;\n        /** Webhook definitions. */\n        webhooks?: Record<string, IJsonSchema.IReference<`#/components/pathItems/${string}`> | IPath>;\n        /** Global security requirements. */\n        security?: Record<string, string[]>[];\n        /** Tag definitions. */\n        tags?: IDocument.ITag[];\n    }\n    namespace IDocument {\n        /** API metadata. */\n        interface IInfo {\n            /** API title. */\n            title: string;\n            /** Short summary. */\n            summary?: string;\n            /** Full description. */\n            description?: string;\n            /** Terms of service URL. */\n            termsOfService?: string;\n            /** Contact information. */\n            contact?: IContact;\n            /** License information. */\n            license?: ILicense;\n            /** API version. */\n            version: string;\n        }\n        /** Tag for grouping operations. */\n        interface ITag {\n            /** Tag name. */\n            name: string;\n            /** Short summary for display in tag lists. */\n            summary?: string;\n            /** Tag description. */\n            description?: string;\n            /** Parent tag name for hierarchical organization. */\n            parent?: string;\n            /** Tag classification (e.g., \"nav\", \"badge\"). */\n            kind?: string;\n        }\n        /** Contact information. */\n        interface IContact {\n            /** Contact name. */\n            name?: string;\n            /** Contact URL. */\n            url?: string;\n            /** Contact email. */\n            email?: string & tags.Format<\"email\">;\n        }\n        /** License information. */\n        interface ILicense {\n            /** License name. */\n            name: string;\n            /** SPDX license identifier. */\n            identifier?: string;\n            /** License URL. */\n            url?: string;\n        }\n    }\n    /** Server providing the API. */\n    interface IServer {\n        /** Server URL. */\n        url: string;\n        /** Server description. */\n        description?: string;\n        /** URL template variables. */\n        variables?: Record<string, IServer.IVariable>;\n    }\n    namespace IServer {\n        /** URL template variable. */\n        interface IVariable {\n            /** Default value. */\n            default: string;\n            /** Allowed values. @minItems 1 */\n            enum?: string[];\n            /** Variable description. */\n            description?: string;\n        }\n    }\n    /** Path item containing operations by HTTP method. */\n    interface IPath extends Partial<Record<Method, IOperation>> {\n        /** Path-level parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Path-level servers. */\n        servers?: IServer[];\n        /** Path summary. */\n        summary?: string;\n        /** Path description. */\n        description?: string;\n        /** Additional non-standard HTTP method operations (e.g., LINK, UNLINK, PURGE). */\n        additionalOperations?: Record<string, IOperation>;\n    }\n    /** API operation metadata. */\n    interface IOperation {\n        /** Unique operation identifier. */\n        operationId?: string;\n        /** Operation parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/components/headers/${string}`> | IJsonSchema.IReference<`#/components/parameters/${string}`>>;\n        /** Request body. */\n        requestBody?: IOperation.IRequestBody | IJsonSchema.IReference<`#/components/requestBodies/${string}`>;\n        /** Response definitions by status code. */\n        responses?: Record<string, IOperation.IResponse | IJsonSchema.IReference<`#/components/responses/${string}`>>;\n        /** Operation-level servers. */\n        servers?: IServer[];\n        /** Short summary. */\n        summary?: string;\n        /** Full description. */\n        description?: string;\n        /** Security requirements. */\n        security?: Record<string, string[]>[];\n        /** Operation tags. */\n        tags?: string[];\n        /** Whether deprecated. */\n        deprecated?: boolean;\n    }\n    namespace IOperation {\n        /** Operation parameter. */\n        interface IParameter {\n            /** Parameter name. */\n            name?: string;\n            /** Parameter location. */\n            in: \"path\" | \"query\" | \"querystring\" | \"header\" | \"cookie\";\n            /** Parameter schema. */\n            schema: IJsonSchema;\n            /** Whether required. */\n            required?: boolean;\n            /** Parameter description. */\n            description?: string;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n        /** Request body. */\n        interface IRequestBody {\n            /** Body description. */\n            description?: string;\n            /** Whether required. */\n            required?: boolean;\n            /** Body content by media type. */\n            content?: Record<string, IMediaType>;\n        }\n        /** Response definition. */\n        interface IResponse {\n            /** Response content by media type. */\n            content?: Record<string, IMediaType>;\n            /** Response headers. */\n            headers?: Record<string, Omit<IOperation.IParameter, \"in\"> | IJsonSchema.IReference<`#/components/headers/${string}`>>;\n            /** Response description. */\n            description?: string;\n        }\n        /** Media type definition. */\n        interface IMediaType {\n            /** Content schema. */\n            schema?: IJsonSchema;\n            /** Schema for streaming items (SSE, JSON Lines, etc.). */\n            itemSchema?: IJsonSchema;\n            /** Example value. */\n            example?: any;\n            /** Named examples. */\n            examples?: Record<string, IExample | IJsonSchema.IReference<`#/components/examples/${string}`>>;\n        }\n    }\n    /** Example value definition. */\n    interface IExample {\n        /** Example summary. */\n        summary?: string;\n        /** Example description. */\n        description?: string;\n        /** Example value. */\n        value?: any;\n        /** External value URL. */\n        externalValue?: string;\n    }\n    /** Reusable components storage. */\n    interface IComponents {\n        /** Named schemas. */\n        schemas?: Record<string, IJsonSchema>;\n        /** Named path items. */\n        pathItems?: Record<string, IPath>;\n        /** Named responses. */\n        responses?: Record<string, IOperation.IResponse>;\n        /** Named parameters. */\n        parameters?: Record<string, IOperation.IParameter>;\n        /** Named request bodies. */\n        requestBodies?: Record<string, IOperation.IRequestBody>;\n        /** Named security schemes. */\n        securitySchemes?: Record<string, ISecurityScheme>;\n        /** Named headers. */\n        headers?: Record<string, Omit<IOperation.IParameter, \"in\">>;\n        /** Named examples. */\n        examples?: Record<string, IExample>;\n    }\n    /** JSON Schema type for OpenAPI v3.1. */\n    type IJsonSchema = IJsonSchema.IMixed | IJsonSchema.IConstant | IJsonSchema.IBoolean | IJsonSchema.IInteger | IJsonSchema.INumber | IJsonSchema.IString | IJsonSchema.IArray | IJsonSchema.IObject | IJsonSchema.IReference | IJsonSchema.IRecursiveReference | IJsonSchema.IAllOf | IJsonSchema.IAnyOf | IJsonSchema.IOneOf | IJsonSchema.INull | IJsonSchema.IUnknown;\n    namespace IJsonSchema {\n        /** Mixed type (multiple types in array). */\n        interface IMixed extends IConstant, Omit<IBoolean, \"type\" | \"default\" | \"enum\">, Omit<INumber, \"type\" | \"default\" | \"enum\">, Omit<IString, \"type\" | \"default\" | \"enum\">, Omit<IArray, \"type\">, Omit<IObject, \"type\">, IOneOf, IAnyOf, IAllOf, IReference {\n            /** Array of type discriminators. */\n            type: Array<\"boolean\" | \"integer\" | \"number\" | \"string\" | \"array\" | \"object\" | \"null\">;\n            /** Default value. */\n            default?: any[] | null;\n            /** Allowed values. */\n            enum?: any[];\n        }\n        /** Constant value type. */\n        interface IConstant extends __IAttribute {\n            /** Constant value. */\n            const: boolean | number | string;\n            /** Whether nullable. */\n            nullable?: boolean;\n        }\n        /** Boolean type. */\n        interface IBoolean extends Omit<IJsonSchemaAttribute.IBoolean, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: boolean | null;\n            /** Allowed values. */\n            enum?: Array<boolean | null>;\n        }\n        /** Integer type. */\n        interface IInteger extends Omit<IJsonSchemaAttribute.IInteger, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: (number & tags.Type<\"int64\">) | null;\n            /** Allowed values. */\n            enum?: Array<(number & tags.Type<\"int64\">) | null>;\n            /** Minimum value. */\n            minimum?: number & tags.Type<\"int64\">;\n            /** Maximum value. */\n            maximum?: number & tags.Type<\"int64\">;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: (number & tags.Type<\"int64\">) | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: (number & tags.Type<\"int64\">) | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** Number (double) type. */\n        interface INumber extends Omit<IJsonSchemaAttribute.INumber, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: number | null;\n            /** Allowed values. */\n            enum?: Array<number | null>;\n            /** Minimum value. */\n            minimum?: number;\n            /** Maximum value. */\n            maximum?: number;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** String type. */\n        interface IString extends Omit<IJsonSchemaAttribute.IString, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Default value. */\n            default?: string | null;\n            /** Allowed values. */\n            enum?: Array<string | null>;\n            /** String format. */\n            format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n            /** Regex pattern. */\n            pattern?: string;\n            /** Content media type. */\n            contentMediaType?: string;\n            /** Minimum length. */\n            minLength?: number & tags.Type<\"uint64\">;\n            /** Maximum length. */\n            maxLength?: number & tags.Type<\"uint64\">;\n        }\n        /** Object type. */\n        interface IObject extends Omit<IJsonSchemaAttribute.IObject, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Property schemas. */\n            properties?: Record<string, IJsonSchema>;\n            /** Required property names. */\n            required?: string[];\n            /** Additional properties schema. */\n            additionalProperties?: boolean | IJsonSchema;\n            /** Maximum properties. */\n            maxProperties?: number;\n            /** Minimum properties. */\n            minProperties?: number;\n        }\n        /** Array type. */\n        interface IArray extends Omit<IJsonSchemaAttribute.IArray, \"examples\">, __IAttribute {\n            /** Whether nullable. */\n            nullable?: boolean;\n            /** Element type (or tuple types). */\n            items?: IJsonSchema | IJsonSchema[];\n            /** Tuple prefix items. */\n            prefixItems?: IJsonSchema[];\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Additional items schema. */\n            additionalItems?: boolean | IJsonSchema;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Reference to a named schema. */\n        interface IReference<Key = string> extends __IAttribute {\n            /** Reference path. */\n            $ref: Key;\n        }\n        /** Recursive reference. */\n        interface IRecursiveReference extends __IAttribute {\n            /** Recursive reference path. */\n            $recursiveRef: string;\n        }\n        /** All-of combination. */\n        interface IAllOf extends __IAttribute {\n            /** Schemas to combine. */\n            allOf: IJsonSchema[];\n        }\n        /** Any-of union. */\n        interface IAnyOf extends __IAttribute {\n            /** Union member schemas. */\n            anyOf: IJsonSchema[];\n        }\n        /** One-of union. */\n        interface IOneOf extends __IAttribute {\n            /** Union member schemas. */\n            oneOf: IJsonSchema[];\n            /** Discriminator for tagged unions. */\n            discriminator?: IOneOf.IDiscriminator;\n        }\n        namespace IOneOf {\n            /** Discriminator for tagged unions. */\n            interface IDiscriminator {\n                /** Discriminator property name. */\n                propertyName: string;\n                /** Value to schema mapping. */\n                mapping?: Record<string, string>;\n            }\n        }\n        /** Null type. */\n        interface INull extends Omit<IJsonSchemaAttribute.INull, \"examples\">, __IAttribute {\n            /** Default value. */\n            default?: null;\n        }\n        /** Unknown type. */\n        interface IUnknown extends Omit<IJsonSchemaAttribute.IUnknown, \"examples\">, __IAttribute {\n            /** Type discriminator (undefined for unknown). */\n            type?: undefined;\n            /** Default value. */\n            default?: any;\n        }\n    }\n    /** Security scheme types. */\n    type ISecurityScheme = ISecurityScheme.IApiKey | ISecurityScheme.IHttpBasic | ISecurityScheme.IHttpBearer | ISecurityScheme.IOAuth2 | ISecurityScheme.IOpenId;\n    namespace ISecurityScheme {\n        /** API key authentication. */\n        interface IApiKey {\n            /** Scheme type. */\n            type: \"apiKey\";\n            /** Key location. */\n            in?: \"header\" | \"query\" | \"cookie\";\n            /** Key name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP basic authentication. */\n        interface IHttpBasic {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"basic\";\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP bearer authentication. */\n        interface IHttpBearer {\n            /** Scheme type. */\n            type: \"http\";\n            /** Authentication scheme. */\n            scheme: \"bearer\";\n            /** Bearer token format hint. */\n            bearerFormat?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 authentication. */\n        interface IOAuth2 {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flows. */\n            flows: IOAuth2.IFlowSet;\n            /** OAuth2 metadata discovery URL. */\n            oauth2MetadataUrl?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OpenID Connect authentication. */\n        interface IOpenId {\n            /** Scheme type. */\n            type: \"openIdConnect\";\n            /** OpenID Connect discovery URL. */\n            openIdConnectUrl: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        namespace IOAuth2 {\n            /** OAuth2 flow configurations. */\n            interface IFlowSet {\n                /** Authorization code flow. */\n                authorizationCode?: IFlow;\n                /** Implicit flow. */\n                implicit?: Omit<IFlow, \"tokenUrl\">;\n                /** Password flow. */\n                password?: Omit<IFlow, \"authorizationUrl\">;\n                /** Client credentials flow. */\n                clientCredentials?: Omit<IFlow, \"authorizationUrl\">;\n                /** Device authorization flow. */\n                deviceAuthorization?: IDeviceFlow;\n            }\n            /** OAuth2 flow configuration. */\n            interface IFlow {\n                /** Authorization URL. */\n                authorizationUrl?: string;\n                /** Token URL. */\n                tokenUrl?: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n            /** OAuth2 device authorization flow. */\n            interface IDeviceFlow {\n                /** Device authorization URL. */\n                deviceAuthorizationUrl: string;\n                /** Token URL. */\n                tokenUrl: string;\n                /** Refresh URL. */\n                refreshUrl?: string;\n                /** Available scopes. */\n                scopes?: Record<string, string>;\n            }\n        }\n    }\n}\n",
    "node_modules/@typia/interface/lib/openapi/SwaggerV2.d.ts": "import { IJsonSchemaAttribute } from \"../schema/IJsonSchemaAttribute\";\nimport * as tags from \"../tags\";\n/**\n * Swagger v2.0 specification types.\n *\n * `SwaggerV2` contains TypeScript type definitions for Swagger v2.0 (OpenAPI\n * v2) documents. Used for parsing legacy Swagger specifications. For a\n * normalized format that unifies all OpenAPI versions, use {@link OpenApi}.\n *\n * Key differences from OpenAPI v3.x:\n *\n * - Uses `definitions` instead of `components.schemas`\n * - Body parameters use `in: \"body\"` with `schema` property\n * - No `requestBody`, `oneOf`, `anyOf`, or `nullable`\n * - Uses `host` + `basePath` instead of `servers`\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace SwaggerV2 {\n    /** HTTP method of the operation. */\n    type Method = \"get\" | \"post\" | \"put\" | \"delete\" | \"options\" | \"head\" | \"patch\" | \"trace\";\n    /** Swagger document structure. */\n    interface IDocument {\n        /** Swagger version. */\n        swagger: \"2.0\" | `2.0.${number}`;\n        /** API metadata. */\n        info?: IDocument.IInfo;\n        /** Host address. */\n        host?: string;\n        /** Base path for all operations. */\n        basePath?: string;\n        /** Global content types consumed. */\n        consumes?: string[];\n        /** Global content types produced. */\n        produces?: string[];\n        /** Schema definitions. */\n        definitions?: Record<string, IJsonSchema>;\n        /** Reusable parameter definitions. */\n        parameters?: Record<string, IOperation.IParameter>;\n        /** Reusable response definitions. */\n        responses?: Record<string, IOperation.IResponse>;\n        /** Security scheme definitions. */\n        securityDefinitions?: Record<string, ISecurityDefinition>;\n        /** Global security requirements. */\n        security?: Record<string, string[]>[];\n        /** API paths and operations. */\n        paths?: Record<string, IPath>;\n        /** Tag definitions. */\n        tags?: IDocument.ITag[];\n    }\n    namespace IDocument {\n        /** API metadata. */\n        interface IInfo {\n            /** API title. */\n            title: string;\n            /** API description. */\n            description?: string;\n            /** Terms of service URL. */\n            termsOfService?: string;\n            /** Contact information. */\n            contact?: IContact;\n            /** License information. */\n            license?: ILicense;\n            /** API version. */\n            version: string;\n        }\n        /** Contact information. */\n        interface IContact {\n            /** Contact name. */\n            name?: string;\n            /** Contact URL. */\n            url?: string;\n            /** Contact email. */\n            email?: string & tags.Format<\"email\">;\n        }\n        /** License information. */\n        interface ILicense {\n            /** License name. */\n            name: string;\n            /** License URL. */\n            url?: string;\n        }\n        /** Tag for grouping operations. */\n        interface ITag {\n            /** Tag name. */\n            name: string;\n            /** Tag description. */\n            description?: string;\n        }\n    }\n    /** Path item containing operations by HTTP method. */\n    interface IPath extends Partial<Record<Method, IOperation | undefined>> {\n        /** Path-level parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/parameters/${string}`>>;\n        /**\n         * Non-standard HTTP method operations (extension).\n         *\n         * Used when downgrading from OpenAPI v3.2 to preserve\n         * non-standard methods like `query` or custom methods.\n         */\n        \"x-additionalOperations\"?: Record<string, IOperation>;\n    }\n    /** API operation metadata. */\n    interface IOperation {\n        /** Unique operation identifier. */\n        operationId?: string;\n        /** Operation parameters. */\n        parameters?: Array<IOperation.IParameter | IJsonSchema.IReference<`#/definitions/parameters/${string}`>>;\n        /** Response definitions by status code. */\n        responses?: Record<string, IOperation.IResponse | IJsonSchema.IReference<`#/definitions/responses/${string}`>>;\n        /** Short summary. */\n        summary?: string;\n        /** Full description. */\n        description?: string;\n        /** Security requirements. */\n        security?: Record<string, string[]>[];\n        /** Operation tags. */\n        tags?: string[];\n        /** Whether deprecated. */\n        deprecated?: boolean;\n    }\n    namespace IOperation {\n        /** Operation parameter (general or body). */\n        type IParameter = IGeneralParameter | IBodyParameter;\n        /** General parameter (path, query, header, formData). */\n        type IGeneralParameter = IJsonSchema & {\n            name: string;\n            in: string;\n            description?: string;\n        };\n        /** Body parameter. */\n        interface IBodyParameter {\n            /** Body schema. */\n            schema: IJsonSchema;\n            /** Parameter name. */\n            name: string;\n            /** Parameter location (always \"body\"). */\n            in: string;\n            /** Parameter description. */\n            description?: string;\n            /** Whether required. */\n            required?: boolean;\n        }\n        /** Response definition. */\n        interface IResponse {\n            /** Response description. */\n            description?: string;\n            /** Response headers. */\n            headers?: Record<string, IJsonSchema>;\n            /** Response body schema. */\n            schema?: IJsonSchema;\n            /** Example value. */\n            example?: any;\n        }\n    }\n    /** JSON Schema type for Swagger. */\n    type IJsonSchema = IJsonSchema.IBoolean | IJsonSchema.IInteger | IJsonSchema.INumber | IJsonSchema.IString | IJsonSchema.IArray | IJsonSchema.IObject | IJsonSchema.IReference | IJsonSchema.IAnyOf | IJsonSchema.IOneOf | IJsonSchema.INullOnly | IJsonSchema.IUnknown;\n    namespace IJsonSchema {\n        /** Boolean type. */\n        interface IBoolean extends Omit<IJsonSchemaAttribute.IBoolean, \"examples\">, __ISignificant<\"boolean\"> {\n            /** Default value. */\n            default?: boolean | null;\n            /** Allowed values. */\n            enum?: Array<boolean | null>;\n        }\n        /** Integer type. */\n        interface IInteger extends Omit<IJsonSchemaAttribute.IInteger, \"examples\">, __ISignificant<\"integer\"> {\n            /** Default value. */\n            default?: (number & tags.Type<\"int64\">) | null;\n            /** Allowed values. */\n            enum?: Array<(number & tags.Type<\"int64\">) | null>;\n            /** Minimum value. */\n            minimum?: number & tags.Type<\"int64\">;\n            /** Maximum value. */\n            maximum?: number & tags.Type<\"int64\">;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** Number (double) type. */\n        interface INumber extends Omit<IJsonSchemaAttribute.INumber, \"examples\">, __ISignificant<\"number\"> {\n            /** Default value. */\n            default?: number | null;\n            /** Allowed values. */\n            enum?: Array<number | null>;\n            /** Minimum value. */\n            minimum?: number;\n            /** Maximum value. */\n            maximum?: number;\n            /** Exclusive minimum. */\n            exclusiveMinimum?: number | boolean;\n            /** Exclusive maximum. */\n            exclusiveMaximum?: number | boolean;\n            /** Multiple of constraint. */\n            multipleOf?: number & tags.ExclusiveMinimum<0>;\n        }\n        /** String type. */\n        interface IString extends Omit<IJsonSchemaAttribute.IString, \"examples\">, __ISignificant<\"string\"> {\n            /** Default value. */\n            default?: string | null;\n            /** Allowed values. */\n            enum?: Array<string | null>;\n            /** String format. */\n            format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n            /** Regex pattern. */\n            pattern?: string;\n            /** Minimum length. */\n            minLength?: number & tags.Type<\"uint64\">;\n            /** Maximum length. */\n            maxLength?: number & tags.Type<\"uint64\">;\n        }\n        /** Array type. */\n        interface IArray extends Omit<IJsonSchemaAttribute.IArray, \"examples\">, __ISignificant<\"array\"> {\n            /** Element type. */\n            items: IJsonSchema;\n            /** Whether elements must be unique. */\n            uniqueItems?: boolean;\n            /** Minimum items. */\n            minItems?: number & tags.Type<\"uint64\">;\n            /** Maximum items. */\n            maxItems?: number & tags.Type<\"uint64\">;\n        }\n        /** Object type. */\n        interface IObject extends Omit<IJsonSchemaAttribute.IObject, \"examples\">, __ISignificant<\"object\"> {\n            /** Property schemas. */\n            properties?: Record<string, IJsonSchema>;\n            /** Required property names. */\n            required?: string[];\n            /** Additional properties schema. */\n            additionalProperties?: boolean | IJsonSchema;\n            /** Maximum properties. */\n            maxProperties?: number;\n            /** Minimum properties. */\n            minProperties?: number;\n        }\n        /** Reference to a named schema. */\n        interface IReference<Key = string> extends __IAttribute {\n            /** Reference path. */\n            $ref: Key;\n        }\n        /** All-of combination. */\n        interface IAllOf extends __IAttribute {\n            /** Schemas to combine. */\n            allOf: IJsonSchema[];\n        }\n        /** Any-of union (Swagger extension). */\n        interface IAnyOf extends __IAttribute {\n            /** Union member schemas. */\n            \"x-anyOf\": IJsonSchema[];\n        }\n        /** One-of union (Swagger extension). */\n        interface IOneOf extends __IAttribute {\n            /** Union member schemas. */\n            \"x-oneOf\": IJsonSchema[];\n        }\n        /** Null type. */\n        interface INullOnly extends __IAttribute {\n            /** Type discriminator. */\n            type: \"null\";\n            /** Default value. */\n            default?: null;\n        }\n        /** Unknown type. */\n        interface IUnknown extends __IAttribute {\n            /** Type discriminator (undefined for unknown). */\n            type?: undefined;\n        }\n    }\n    /** Security scheme types. */\n    type ISecurityDefinition = ISecurityDefinition.IApiKey | ISecurityDefinition.IBasic | ISecurityDefinition.IOauth2Implicit | ISecurityDefinition.IOauth2AccessCode | ISecurityDefinition.IOauth2Password | ISecurityDefinition.IOauth2Application;\n    namespace ISecurityDefinition {\n        /** API key authentication. */\n        interface IApiKey {\n            /** Scheme type. */\n            type: \"apiKey\";\n            /** Key location. */\n            in?: \"header\" | \"query\" | \"cookie\";\n            /** Key name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** HTTP basic authentication. */\n        interface IBasic {\n            /** Scheme type. */\n            type: \"basic\";\n            /** Scheme name. */\n            name?: string;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 implicit flow. */\n        interface IOauth2Implicit {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flow type. */\n            flow: \"implicit\";\n            /** Authorization URL. */\n            authorizationUrl?: string;\n            /** Available scopes. */\n            scopes?: Record<string, string>;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 authorization code flow. */\n        interface IOauth2AccessCode {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flow type. */\n            flow: \"accessCode\";\n            /** Authorization URL. */\n            authorizationUrl?: string;\n            /** Token URL. */\n            tokenUrl?: string;\n            /** Available scopes. */\n            scopes?: Record<string, string>;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 password flow. */\n        interface IOauth2Password {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flow type. */\n            flow: \"password\";\n            /** Token URL. */\n            tokenUrl?: string;\n            /** Available scopes. */\n            scopes?: Record<string, string>;\n            /** Scheme description. */\n            description?: string;\n        }\n        /** OAuth2 application (client credentials) flow. */\n        interface IOauth2Application {\n            /** Scheme type. */\n            type: \"oauth2\";\n            /** OAuth2 flow type. */\n            flow: \"application\";\n            /** Token URL. */\n            tokenUrl?: string;\n            /** Available scopes. */\n            scopes?: Record<string, string>;\n            /** Scheme description. */\n            description?: string;\n        }\n    }\n}\n",
    "node_modules/@typia/interface/lib/openapi/index.d.ts": "export * from \"./OpenApi\";\nexport * from \"./OpenApiV3\";\nexport * from \"./OpenApiV3_1\";\nexport * from \"./OpenApiV3_2\";\nexport * from \"./SwaggerV2\";\n",
    "node_modules/@typia/interface/lib/protobuf/ProtobufWire.d.ts": "/**\n * Protocol Buffers wire types.\n *\n * `ProtobufWire` defines the wire types used in Protocol Buffers binary\n * encoding. Each type determines how the value is serialized on the wire.\n *\n * Wire types:\n *\n * - {@link VARIANT} (0): Varints (int32, int64, uint32, uint64, sint32, sint64,\n *   bool, enum)\n * - {@link I64} (1): 64-bit (fixed64, sfixed64, double)\n * - {@link LEN} (2): Length-delimited (string, bytes, embedded messages, packed\n *   repeated)\n * - {@link I32} (5): 32-bit (fixed32, sfixed32, float)\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare const enum ProtobufWire {\n    /**\n     * - Integers\n     * - Bool\n     * - Enum\n     */\n    VARIANT = 0,\n    /**\n     * - Fixed64\n     * - Sfixed64\n     * - Double\n     */\n    I64 = 1,\n    /**\n     * - String\n     * - Bytes\n     * - Embedded messages\n     * - Packed repeated fields\n     */\n    LEN = 2,\n    START_GROUP = 3,\n    END_GROUP = 4,\n    /**\n     * - Fixed\n     * - Sfixed32\n     * - Float\n     */\n    I32 = 5\n}\n",
    "node_modules/@typia/interface/lib/protobuf/index.d.ts": "export * from \"./ProtobufWire\";\n",
    "node_modules/@typia/interface/lib/schema/IJsonParseResult.d.ts": "import { DeepPartial } from \"../typings/DeepPartial\";\n/**\n * Result of lenient JSON parsing.\n *\n * `IJsonParseResult<T>` represents the result of parsing JSON that may be\n * incomplete, malformed, or contain non-standard syntax (e.g., unquoted keys,\n * trailing commas, missing quotes).\n *\n * Unlike standard JSON parsing which fails on any syntax error, lenient parsing\n * attempts to recover as much data as possible while reporting issues.\n *\n * Check the {@link IJsonParseResult.success} discriminator:\n *\n * - `true` → {@link IJsonParseResult.ISuccess} with parsed\n *   {@link IJsonParseResult.ISuccess.data}\n * - `false` → {@link IJsonParseResult.IFailure} with partial\n *   {@link IJsonParseResult.IFailure.data} and\n *   {@link IJsonParseResult.IFailure.errors}\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T The expected type after successful parsing\n */\nexport type IJsonParseResult<T = unknown> = IJsonParseResult.ISuccess<T> | IJsonParseResult.IFailure<T>;\nexport declare namespace IJsonParseResult {\n    /**\n     * Successful parsing result.\n     *\n     * Indicates the JSON was parsed without any errors. The data may still have\n     * been recovered from non-standard syntax (e.g., unquoted keys, trailing\n     * commas), but no information was lost.\n     *\n     * @template T The parsed type\n     */\n    interface ISuccess<T = unknown> {\n        /**\n         * Success discriminator.\n         *\n         * Always `true` for successful parsing.\n         */\n        success: true;\n        /** The parsed data with correct type. */\n        data: T;\n    }\n    /**\n     * Failed parsing result with partial data and errors.\n     *\n     * Indicates the JSON had syntax errors that could not be fully recovered. The\n     * {@link data} contains whatever could be parsed, and {@link errors} describes\n     * what went wrong.\n     *\n     * @template T The expected type (data may be partial)\n     */\n    interface IFailure<T = unknown> {\n        /**\n         * Success discriminator.\n         *\n         * Always `false` for failed parsing.\n         */\n        success: false;\n        /**\n         * Partially parsed data.\n         *\n         * Contains whatever could be recovered from the malformed JSON. May be\n         * incomplete or have missing properties.\n         */\n        data: DeepPartial<T> | undefined;\n        /**\n         * The original input string that was parsed.\n         *\n         * Preserved for debugging or error correction purposes.\n         */\n        input: string;\n        /**\n         * Array of parsing errors encountered.\n         *\n         * Each error describes a specific issue found during parsing, with location\n         * and suggested fix.\n         */\n        errors: IError[];\n    }\n    /** Detailed information about a parsing error. */\n    interface IError {\n        /**\n         * Property path to the error location.\n         *\n         * A dot-notation path from the root to the error location. Uses `$input` as\n         * the root.\n         *\n         * @example\n         *   $input.user.email;\n         *\n         * @example\n         *   $input.items[0].price;\n         */\n        path: string;\n        /**\n         * What was expected at this location.\n         *\n         * @example\n         *   JSON value (string, number, boolean, null, object, or array)\n         *\n         * @example\n         *   quoted string\n         *\n         * @example\n         *   \":\";\n         */\n        expected: string;\n        /**\n         * Description of what was actually found.\n         *\n         * Human/AI-readable message explaining the issue.\n         *\n         * @example\n         *   unquoted string 'abc' - did you forget quotes?\n         *\n         * @example\n         *   missing opening quote for 'hello'\n         */\n        description: unknown;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/IJsonSchemaApplication.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { OpenApiV3 } from \"../openapi/OpenApiV3\";\n/**\n * JSON Schema application representing TypeScript functions.\n *\n * `IJsonSchemaApplication` represents a collection of TypeScript class methods\n * or functions converted to JSON Schema format. Generated at compile time by\n * `typia.json.application<App>()`, this is primarily used for OpenAPI document\n * generation and as an intermediate format for LLM function calling schemas.\n *\n * Unlike {@link ILlmApplication} which is optimized for LLM consumption, this\n * interface preserves full JSON Schema expressiveness including features that\n * some LLM providers don't support (tuples, additionalProperties, etc.).\n *\n * The application contains:\n *\n * - {@link functions}: Array of function metadata with parameter/return schemas\n * - {@link components}: Shared schema definitions for `$ref` references\n * - {@link __application}: Phantom property for type inference\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Version OpenAPI version (\"3.0\" or \"3.1\")\n * @template App Source class/interface type for type preservation\n */\nexport interface IJsonSchemaApplication<Version extends \"3.0\" | \"3.1\" = \"3.1\", App extends any = object> {\n    /**\n     * OpenAPI specification version.\n     *\n     * Determines the JSON Schema dialect used for type definitions. Use `\"3.1\"`\n     * for modern JSON Schema features, `\"3.0\"` for broader compatibility with\n     * older OpenAPI consumers.\n     */\n    version: Version;\n    /**\n     * Shared schema definitions for `$ref` references.\n     *\n     * Contains named schemas that can be referenced by functions to avoid\n     * duplication and enable recursive type definitions.\n     */\n    components: IJsonSchemaApplication.IComponents<IJsonSchemaApplication.Schema<Version>>;\n    /**\n     * Array of function schemas.\n     *\n     * Each function includes parameter schemas, return type schema, and metadata\n     * extracted from JSDoc comments. Functions are derived from public methods of\n     * the source class/interface.\n     */\n    functions: IJsonSchemaApplication.IFunction<IJsonSchemaApplication.Schema<Version>>[];\n    /**\n     * Phantom property for TypeScript generic type preservation.\n     *\n     * This property exists only in the type system to preserve the `App` generic\n     * parameter at compile time. It is always `undefined` at runtime and should\n     * not be accessed or used in application code.\n     *\n     * Enables type inference to recover the original application type from an\n     * `IJsonSchemaApplication` instance.\n     */\n    __application?: App | undefined;\n}\nexport declare namespace IJsonSchemaApplication {\n    /**\n     * Schema type selector based on OpenAPI version.\n     *\n     * Returns the appropriate JSON schema type for the specified OpenAPI version.\n     *\n     * - `\"3.1\"` → {@link OpenApi.IJsonSchema} (emended OpenAPI v3.1)\n     * - `\"3.0\"` → {@link OpenApiV3.IJsonSchema} (OpenAPI v3.0)\n     */\n    type Schema<Version extends \"3.0\" | \"3.1\"> = Version extends \"3.1\" ? OpenApi.IJsonSchema : OpenApiV3.IJsonSchema;\n    /**\n     * Shared schema component definitions.\n     *\n     * Contains named schema definitions that can be referenced via `$ref`\n     * throughout the application's function schemas. Reduces duplication and\n     * enables recursive type definitions.\n     *\n     * @template Schema JSON schema type based on OpenAPI version\n     */\n    interface IComponents<Schema extends OpenApi.IJsonSchema | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema> {\n        /**\n         * Named schema definitions for reference.\n         *\n         * Keys are type names, values are their JSON Schema definitions. Reference\n         * these using `$ref: \"#/components/schemas/TypeName\"`.\n         */\n        schemas?: Record<string, Schema>;\n    }\n    /**\n     * Complete metadata for a single function.\n     *\n     * Contains all information needed to describe a function in JSON Schema\n     * format, including parameters, return type, and documentation extracted from\n     * JSDoc comments.\n     *\n     * @template Schema JSON schema type based on OpenAPI version\n     */\n    interface IFunction<Schema extends OpenApi.IJsonSchema | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema> {\n        /**\n         * Whether the function is asynchronous.\n         *\n         * `true` if the function returns a Promise, `false` for synchronous\n         * functions. Useful for runtime execution handling.\n         */\n        async: boolean;\n        /**\n         * Function name identifier.\n         *\n         * The name used to call this function. Derived from the method name in the\n         * source class/interface.\n         */\n        name: string;\n        /**\n         * Array of function parameters.\n         *\n         * Ordered list of parameters with their names, types, and documentation.\n         * Parameters preserve their declaration order.\n         */\n        parameters: IParameter<Schema>[];\n        /**\n         * Return type information.\n         *\n         * Contains the return type schema and documentation. `undefined` when the\n         * function returns `void` or has no return type annotation.\n         */\n        output: IOutput<Schema> | undefined;\n        /**\n         * Brief summary of the function.\n         *\n         * Short one-line description extracted from the first line of JSDoc\n         * comment. Intended for quick reference in documentation.\n         */\n        summary?: string | undefined;\n        /**\n         * Full function description.\n         *\n         * Complete documentation extracted from JSDoc comment body. May include\n         * markdown formatting, examples, and detailed explanations.\n         */\n        description?: string | undefined;\n        /**\n         * Whether the function is deprecated.\n         *\n         * Set from the `@deprecated` JSDoc tag. Indicates the function should no\n         * longer be used and may be removed in future versions.\n         */\n        deprecated?: boolean;\n        /**\n         * Category tags for organization.\n         *\n         * Extracted from `@tag` JSDoc annotations. Useful for grouping related\n         * functions in documentation or filtering.\n         */\n        tags?: string[];\n    }\n    /**\n     * Metadata for a single function parameter.\n     *\n     * Describes a function parameter including its name, type schema, whether\n     * it's required, and any JSDoc documentation.\n     *\n     * @template Schema JSON schema type based on OpenAPI version\n     */\n    interface IParameter<Schema extends OpenApi.IJsonSchema | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema> {\n        /**\n         * Parameter name.\n         *\n         * The identifier used in the function signature. Must match the actual\n         * parameter name in the source code.\n         */\n        name: string;\n        /**\n         * Whether the parameter is required.\n         *\n         * `true` if the parameter must be provided, `false` if it has a default\n         * value or is explicitly optional.\n         */\n        required: boolean;\n        /**\n         * JSON Schema for the parameter type.\n         *\n         * Complete schema definition describing the expected parameter type,\n         * including constraints and nested structures.\n         */\n        schema: Schema;\n        /**\n         * Parameter title for documentation.\n         *\n         * Brief name for the parameter, typically extracted from `@param` tag title\n         * in JSDoc.\n         */\n        title?: string | undefined;\n        /**\n         * Parameter description from documentation.\n         *\n         * Full description of the parameter's purpose and usage, extracted from the\n         * `@param` JSDoc tag.\n         */\n        description?: string | undefined;\n    }\n    /**\n     * Metadata for function return type.\n     *\n     * Describes the return type of a function including its schema, whether a\n     * value is always returned, and documentation.\n     *\n     * @template Schema JSON schema type based on OpenAPI version\n     */\n    interface IOutput<Schema extends OpenApi.IJsonSchema | OpenApiV3.IJsonSchema = OpenApi.IJsonSchema> {\n        /**\n         * JSON Schema for the return type.\n         *\n         * Complete schema definition describing the return value type, including\n         * constraints and nested structures.\n         */\n        schema: Schema;\n        /**\n         * Whether a value is always returned.\n         *\n         * `true` if the function always returns a value, `false` if it may return\n         * `undefined` or has a void return type.\n         */\n        required: boolean;\n        /**\n         * Return value description from documentation.\n         *\n         * Explanation of what the function returns, extracted from the `@returns`\n         * or `@return` JSDoc tag.\n         */\n        description?: string | undefined;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/IJsonSchemaAttribute.d.ts": "/**\n * Common attributes shared by all JSON schema types.\n *\n * `IJsonSchemaAttribute` defines the base set of metadata properties that can\n * be attached to any JSON schema type. These attributes provide documentation,\n * deprecation status, examples, and access control information.\n *\n * This interface serves as the foundation for all schema types in typia's JSON\n * Schema generation. The namespace contains type-specific variants (e.g.,\n * {@link IBoolean}, {@link IString}) that add a `type` discriminator while\n * inheriting all base attributes.\n *\n * These attributes are populated from JSDoc comments during schema generation:\n *\n * - `@title` tag → {@link title}\n * - Main comment body → {@link description}\n * - `@deprecated` tag → {@link deprecated}\n * - `@example` tag → {@link example}\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IJsonSchemaAttribute {\n    /**\n     * Short title for the schema.\n     *\n     * A brief, human-readable name for the type. Typically extracted from the\n     * first line of a JSDoc comment or the `@title` tag.\n     */\n    title?: string;\n    /**\n     * Detailed description of the schema.\n     *\n     * Full documentation for the type, explaining its purpose, constraints, and\n     * usage. Extracted from JSDoc comment body. Supports markdown formatting in\n     * many JSON Schema consumers.\n     */\n    description?: string;\n    /**\n     * Whether this type is deprecated.\n     *\n     * When `true`, indicates the type should no longer be used and may be removed\n     * in future versions. Set via the `@deprecated` JSDoc tag.\n     */\n    deprecated?: boolean;\n    /**\n     * Single example value for the schema.\n     *\n     * A representative value that conforms to the schema, useful for\n     * documentation and testing. Set via the `@example` JSDoc tag.\n     */\n    example?: any;\n    /**\n     * Named example values for the schema.\n     *\n     * Multiple examples as key-value pairs, where keys are example names and\n     * values are conforming data. Useful for showing different valid states or\n     * edge cases.\n     */\n    examples?: Record<string, any>;\n    /**\n     * Whether the property is read-only.\n     *\n     * When `true`, the property should not be modified by clients and is\n     * typically set by the server. Useful for generated IDs, timestamps, etc.\n     */\n    readOnly?: boolean;\n    /**\n     * Whether the property is write-only.\n     *\n     * When `true`, the property is accepted on input but never returned in\n     * responses. Common for sensitive data like passwords.\n     */\n    writeOnly?: boolean;\n}\nexport declare namespace IJsonSchemaAttribute {\n    /**\n     * Attribute interface for boolean schema types.\n     *\n     * Extends base attributes with `type: \"boolean\"` discriminator.\n     */\n    export interface IBoolean extends ISignificant<\"boolean\"> {\n    }\n    /**\n     * Attribute interface for integer schema types.\n     *\n     * Extends base attributes with `type: \"integer\"` discriminator. Note: JSON\n     * Schema uses \"integer\" for whole numbers, distinct from \"number\".\n     */\n    export interface IInteger extends ISignificant<\"integer\"> {\n    }\n    /**\n     * Attribute interface for number schema types.\n     *\n     * Extends base attributes with `type: \"number\"` discriminator. Represents\n     * floating-point numbers in JSON Schema.\n     */\n    export interface INumber extends ISignificant<\"number\"> {\n    }\n    /**\n     * Attribute interface for string schema types.\n     *\n     * Extends base attributes with `type: \"string\"` discriminator.\n     */\n    export interface IString extends ISignificant<\"string\"> {\n    }\n    /**\n     * Attribute interface for object schema types.\n     *\n     * Extends base attributes with `type: \"object\"` discriminator. Used for\n     * structured data with named properties.\n     */\n    export interface IObject extends ISignificant<\"object\"> {\n    }\n    /**\n     * Attribute interface for array schema types.\n     *\n     * Extends base attributes with `type: \"array\"` discriminator. Represents\n     * ordered collections of items.\n     */\n    export interface IArray extends ISignificant<\"array\"> {\n    }\n    /**\n     * Attribute interface for null schema types.\n     *\n     * Extends base attributes with `type: \"null\"` discriminator. Represents the\n     * JSON null value.\n     */\n    export interface INull extends ISignificant<\"null\"> {\n    }\n    /**\n     * Attribute interface for unknown/untyped schemas.\n     *\n     * Used when the schema type is not specified or cannot be determined. The\n     * `type` property is explicitly undefined to indicate no type constraint.\n     */\n    export interface IUnknown extends IJsonSchemaAttribute {\n        type?: undefined;\n    }\n    /**\n     * Base interface for type-discriminated schema attributes.\n     *\n     * Internal helper that combines base attributes with a type discriminator.\n     * Each specific type interface (IBoolean, IString, etc.) extends this with\n     * its corresponding type literal.\n     *\n     * @template Type - The JSON Schema type string literal\n     */\n    interface ISignificant<Type extends string> extends IJsonSchemaAttribute {\n        type: Type;\n    }\n    export {};\n}\n",
    "node_modules/@typia/interface/lib/schema/IJsonSchemaCollection.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { OpenApiV3 } from \"../openapi/OpenApiV3\";\n/**\n * Collection of JSON schemas generated from multiple TypeScript types.\n *\n * `IJsonSchemaCollection` holds JSON schemas for multiple TypeScript types\n * generated at compile time by `typia.json.schemas<[T1, T2, ...]>()`. The\n * schemas share a common components pool to avoid duplication when types\n * reference each other.\n *\n * This is useful when you need schemas for multiple related types and want to\n * share component definitions between them. For single types, use\n * {@link IJsonSchemaUnit} instead. For function schemas, see\n * {@link IJsonSchemaApplication}.\n *\n * The collection contains:\n *\n * - {@link IV3_1.schemas | schemas}: Array of schemas, one per input type\n * - {@link IV3_1.components | components}: Shared `$ref` definitions\n * - {@link IV3_1.__types | __types}: Phantom property for type inference\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Version OpenAPI version (\"3.0\" or \"3.1\")\n * @template Types Tuple of original TypeScript types\n */\nexport type IJsonSchemaCollection<Version extends \"3.0\" | \"3.1\" = \"3.1\", Types = unknown[]> = Version extends \"3.0\" ? IJsonSchemaCollection.IV3_0<Types> : IJsonSchemaCollection.IV3_1<Types>;\nexport declare namespace IJsonSchemaCollection {\n    /**\n     * JSON Schema collection for OpenAPI v3.0 specification.\n     *\n     * Uses OpenAPI v3.0 compatible JSON Schema format. In v3.0, nullable types\n     * are expressed with `nullable: true` rather than v3.1's `type` arrays.\n     *\n     * @template Types Tuple of original TypeScript types for phantom type\n     *   preservation\n     */\n    interface IV3_0<Types = unknown[]> {\n        /**\n         * OpenAPI specification version.\n         *\n         * Always `\"3.0\"` for this variant. Use this discriminator to determine\n         * which schema format is in use.\n         */\n        version: \"3.0\";\n        /**\n         * Generated JSON schemas, one per input type.\n         *\n         * Array of schemas in the same order as the input type tuple. Each schema\n         * may reference definitions in {@link components}.\n         */\n        schemas: OpenApiV3.IJsonSchema[];\n        /**\n         * Shared schema definitions for `$ref` references.\n         *\n         * Contains named schemas used across multiple types in the collection.\n         * Reduces duplication when types share common structures.\n         */\n        components: OpenApiV3.IComponents;\n        /**\n         * Phantom property for TypeScript generic type preservation.\n         *\n         * This property exists only in the type system to preserve the `Types`\n         * generic parameter. It is always `undefined` at runtime and should not be\n         * accessed or used in application code.\n         */\n        __types?: Types | undefined;\n    }\n    /**\n     * JSON Schema collection for OpenAPI v3.1 specification.\n     *\n     * Uses OpenAPI v3.1 compatible JSON Schema format. v3.1 aligns more closely\n     * with JSON Schema draft 2020-12, supporting features like `type` arrays for\n     * nullable types and `const` values.\n     *\n     * @template Types Tuple of original TypeScript types for phantom type\n     *   preservation\n     */\n    interface IV3_1<Types = unknown[]> {\n        /**\n         * OpenAPI specification version.\n         *\n         * Always `\"3.1\"` for this variant. Use this discriminator to determine\n         * which schema format is in use.\n         */\n        version: \"3.1\";\n        /**\n         * Shared schema definitions for `$ref` references.\n         *\n         * Contains named schemas used across multiple types in the collection.\n         * Reduces duplication when types share common structures.\n         */\n        components: OpenApi.IComponents;\n        /**\n         * Generated JSON schemas, one per input type.\n         *\n         * Array of schemas in the same order as the input type tuple. Each schema\n         * may reference definitions in {@link components}.\n         */\n        schemas: OpenApi.IJsonSchema[];\n        /**\n         * Phantom property for TypeScript generic type preservation.\n         *\n         * This property exists only in the type system to preserve the `Types`\n         * generic parameter. It is always `undefined` at runtime and should not be\n         * accessed or used in application code.\n         */\n        __types?: Types | undefined;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/IJsonSchemaTransformError.d.ts": "import { OpenApi } from \"../openapi\";\n/**\n * Error information from JSON schema transformation.\n *\n * `IJsonSchemaTransformError` represents an error that occurred during\n * transformation or iteration of {@link OpenApi.IJsonSchema} types. This error\n * type is primarily generated when converting OpenAPI schemas to LLM-compatible\n * formats via {@link ILlmSchema}.\n *\n * Common transformation failures include:\n *\n * - **Missing references**: `$ref` pointing to non-existent schema definitions\n * - **Unsupported tuple types**: All LLM providers reject tuple schemas\n * - **Unsupported union types**: Gemini does not support `oneOf` schemas\n * - **Unsupported dynamic objects**: ChatGPT and Gemini reject\n *   `additionalProperties`\n *\n * The {@link reasons} array provides detailed information about each failure,\n * including the problematic schema, its location path, and a human-readable\n * error message. Use this information to diagnose and fix schema compatibility\n * issues.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IJsonSchemaTransformError {\n    /**\n     * Name of the method that caused the error.\n     *\n     * Identifies which transformation function failed, such as\n     * `\"HttpLlm.application\"` or `\"LlmSchemaConverter.schema\"`.\n     */\n    method: string;\n    /**\n     * Summary error message.\n     *\n     * A human-readable description of the overall error. For detailed information\n     * about specific failures, examine the {@link reasons} array.\n     */\n    message: string;\n    /**\n     * Detailed list of transformation failures.\n     *\n     * Each entry describes a specific schema that failed transformation,\n     * including its location and the reason for failure. Multiple failures can\n     * occur in a single transformation when processing complex schemas.\n     */\n    reasons: IJsonSchemaTransformError.IReason[];\n}\nexport declare namespace IJsonSchemaTransformError {\n    /**\n     * Detailed information about a single transformation failure.\n     *\n     * Provides the specific schema that failed, its accessor path for locating it\n     * within the document, and a message explaining why the transformation\n     * failed.\n     */\n    interface IReason {\n        /**\n         * The schema that caused the transformation failure.\n         *\n         * The actual JSON schema object that could not be transformed. Inspect this\n         * to understand the problematic schema structure.\n         */\n        schema: OpenApi.IJsonSchema;\n        /**\n         * Path to the failing schema within the document.\n         *\n         * A dot-notation path (e.g., `\"components.schemas.User.properties.tags\"`)\n         * that identifies where the problematic schema is located. Use this to\n         * locate and fix the issue in the source OpenAPI document.\n         */\n        accessor: string;\n        /**\n         * Human-readable explanation of the failure.\n         *\n         * Describes why the schema could not be transformed, such as \"Tuple type is\n         * not supported\" or \"Cannot resolve $ref reference\".\n         */\n        message: string;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/IJsonSchemaUnit.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\nimport { OpenApiV3 } from \"../openapi/OpenApiV3\";\n/**\n * Single JSON schema unit for one TypeScript type.\n *\n * `IJsonSchemaUnit` represents a complete JSON schema for a single TypeScript\n * type, including the main schema definition and any referenced component\n * schemas. Generated by `typia.json.schema<T>()` at compile time.\n *\n * The result contains:\n *\n * - {@link IV3_0.schema | schema}: The main JSON schema for the type\n * - {@link IV3_0.components | components}: Shared schemas referenced via `$ref`\n * - {@link IV3_0.__type | __type}: Phantom property for TypeScript type inference\n *\n * Use this for single-type schema generation. For multiple types, see\n * {@link IJsonSchemaCollection}. For function schemas, see\n * {@link IJsonSchemaApplication}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Version OpenAPI version (\"3.0\" or \"3.1\")\n * @template Type Original TypeScript type\n */\nexport type IJsonSchemaUnit<Version extends \"3.0\" | \"3.1\" = \"3.1\", Type = unknown> = Version extends \"3.0\" ? IJsonSchemaUnit.IV3_0<Type> : IJsonSchemaUnit.IV3_1<Type>;\nexport declare namespace IJsonSchemaUnit {\n    /**\n     * JSON Schema unit for OpenAPI v3.0 specification.\n     *\n     * Uses OpenAPI v3.0 compatible JSON Schema format. In v3.0, nullable types\n     * are expressed with `nullable: true` rather than v3.1's `type: [\"string\",\n     * \"null\"]`.\n     *\n     * @template Type Original TypeScript type for phantom type preservation\n     */\n    interface IV3_0<Type> {\n        /**\n         * OpenAPI specification version.\n         *\n         * Always `\"3.0\"` for this variant. Use this discriminator to determine\n         * which schema format is in use.\n         */\n        version: \"3.0\";\n        /**\n         * The main JSON schema definition for the type.\n         *\n         * Contains the complete schema for the target TypeScript type. May include\n         * `$ref` references to schemas in {@link components}.\n         */\n        schema: OpenApiV3.IJsonSchema;\n        /**\n         * Reusable schema definitions for `$ref` references.\n         *\n         * Contains named schemas that can be referenced throughout the main schema.\n         * Essential for recursive types and reducing duplication.\n         */\n        components: OpenApiV3.IComponents;\n        /**\n         * Phantom property for TypeScript generic type preservation.\n         *\n         * This property exists only in the type system to preserve the `Type`\n         * generic parameter. It is always `undefined` at runtime and should not be\n         * accessed or used in application code.\n         */\n        __type?: Type | undefined;\n    }\n    /**\n     * JSON Schema unit for OpenAPI v3.1 specification.\n     *\n     * Uses OpenAPI v3.1 compatible JSON Schema format. v3.1 aligns more closely\n     * with JSON Schema draft 2020-12, supporting features like `type` arrays for\n     * nullable types and `const` values.\n     *\n     * @template Type Original TypeScript type for phantom type preservation\n     */\n    interface IV3_1<Type> {\n        /**\n         * OpenAPI specification version.\n         *\n         * Always `\"3.1\"` for this variant. Use this discriminator to determine\n         * which schema format is in use.\n         */\n        version: \"3.1\";\n        /**\n         * The main JSON schema definition for the type.\n         *\n         * Contains the complete schema for the target TypeScript type. May include\n         * `$ref` references to schemas in {@link components}.\n         */\n        schema: OpenApi.IJsonSchema;\n        /**\n         * Reusable schema definitions for `$ref` references.\n         *\n         * Contains named schemas that can be referenced throughout the main schema.\n         * Essential for recursive types and reducing duplication.\n         */\n        components: OpenApi.IComponents;\n        /**\n         * Phantom property for TypeScript generic type preservation.\n         *\n         * This property exists only in the type system to preserve the `Type`\n         * generic parameter. It is always `undefined` at runtime and should not be\n         * accessed or used in application code.\n         */\n        __type?: Type | undefined;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/ILlmApplication.d.ts": "import { ILlmFunction } from \"./ILlmFunction\";\nimport { ILlmSchema } from \"./ILlmSchema\";\nimport { IValidation } from \"./IValidation\";\n/**\n * LLM function calling application.\n *\n * `ILlmApplication` is a collection of {@link ILlmFunction} schemas generated\n * from a TypeScript class or interface by `typia.llm.application<App>()`. Each\n * public method becomes an {@link ILlmFunction} that LLM agents can invoke.\n *\n * Configure behavior via {@link ILlmApplication.IConfig}:\n *\n * - {@link ILlmApplication.IConfig.validate}: Custom validation per method\n * - {@link ILlmSchema.IConfig.strict}: OpenAI structured output mode\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Class Source class/interface type\n */\nexport interface ILlmApplication<Class extends object = any> {\n    /**\n     * Array of callable function schemas.\n     *\n     * Each function represents a method from the source class that the LLM can\n     * invoke. Functions include parameter schemas, descriptions, and validation\n     * logic for type-safe function calling.\n     */\n    functions: ILlmFunction[];\n    /**\n     * Configuration used to generate this application.\n     *\n     * Contains the settings that were applied during schema generation, including\n     * strict mode and any custom validation hooks.\n     */\n    config: ILlmApplication.IConfig<Class>;\n    /**\n     * Phantom property for TypeScript generic type preservation.\n     *\n     * This property exists only in the type system to preserve the `Class`\n     * generic parameter at compile time. It is always `undefined` at runtime and\n     * should not be accessed or used in application code.\n     *\n     * This pattern enables type inference to recover the original class type from\n     * an `ILlmApplication` instance, useful for type-safe function routing.\n     */\n    __class?: Class | undefined;\n}\nexport declare namespace ILlmApplication {\n    /**\n     * Configuration for LLM application generation.\n     *\n     * Extends {@link ILlmSchema.IConfig} with application-specific options for\n     * custom validation. These settings control how the application schema is\n     * generated from the source class.\n     */\n    interface IConfig<Class extends object = any> extends ILlmSchema.IConfig {\n        /**\n         * Custom validation functions per method name.\n         *\n         * Allows overriding the default type-based validation with custom business\n         * logic. Useful for complex validation rules that cannot be expressed in\n         * JSON Schema.\n         *\n         * @default null (use default type validation)\n         */\n        validate: null | Partial<ILlmApplication.IValidationHook<Class>>;\n    }\n    /**\n     * Type-safe mapping of method names to custom validators.\n     *\n     * Maps each method name to a validation function that receives the raw input\n     * and returns a validation result. The type inference ensures validators\n     * match the expected argument types.\n     *\n     * @template Class - The source class type for type inference\n     */\n    type IValidationHook<Class extends object> = {\n        [K in keyof Class]?: Class[K] extends (args: infer Argument) => unknown ? (input: unknown) => IValidation<Argument> : never;\n    };\n    /**\n     * Internal type for typia transformer.\n     *\n     * @ignore\n     */\n    interface __IPrimitive<Class extends object = any> extends Omit<ILlmApplication<Class>, \"config\" | \"functions\"> {\n        functions: Omit<ILlmFunction, \"parse\" | \"coerce\">[];\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/ILlmController.d.ts": "import { ILlmApplication } from \"./ILlmApplication\";\n/**\n * Controller of TypeScript class-based LLM function calling.\n *\n * `ILlmController` is a controller for registering TypeScript class methods as\n * LLM function calling tools. It contains {@link ILlmApplication} with\n * {@link ILlmFunction function calling schemas}, {@link name identifier}, and\n * {@link execute class instance} for method execution.\n *\n * You can create this controller with `typia.llm.controller<Class>()` function,\n * and register it to MCP server with {@link registerMcpControllers}:\n *\n * ```typescript\n * import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\n * import { registerMcpControllers } from \"@typia/mcp\";\n * import typia from \"typia\";\n *\n * class Calculator {\n *   add(input: { a: number; b: number }): number {\n *     return input.a + input.b;\n *   }\n *   subtract(input: { a: number; b: number }): number {\n *     return input.a - input.b;\n *   }\n * }\n *\n * const server = new McpServer({ name: \"my-server\", version: \"1.0.0\" });\n * registerMcpControllers({\n *   server,\n *   controllers: [\n *     typia.llm.controller<Calculator>(\"calculator\", new Calculator()),\n *   ],\n * });\n * ```\n *\n * For OpenAPI/HTTP-based controller, use {@link IHttpLlmController} instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Class Class type of the function executor\n */\nexport interface ILlmController<Class extends object = any> {\n    /** Protocol discriminator. */\n    protocol: \"class\";\n    /** Identifier name of the controller. */\n    name: string;\n    /** Application schema of function calling. */\n    application: ILlmApplication<Class>;\n    /** Target class instance for function execution. */\n    execute: Class;\n}\n",
    "node_modules/@typia/interface/lib/schema/ILlmFunction.d.ts": "import { tags } from \"..\";\nimport { IJsonParseResult } from \"./IJsonParseResult\";\nimport { ILlmSchema } from \"./ILlmSchema\";\nimport { IValidation } from \"./IValidation\";\n/**\n * LLM function calling schema for TypeScript functions.\n *\n * Generated by `typia.llm.application<App>()` as part of\n * {@link ILlmApplication}.\n *\n * - {@link name}: Function identifier (max 64 chars for OpenAI)\n * - {@link parameters}: Input schema, {@link output}: Return schema\n * - {@link description}: Guides LLM function selection\n * - {@link parse}: Lenient JSON parser with type coercion\n * - {@link validate}: Argument validator for LLM error correction\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ILlmFunction {\n    /**\n     * Function name for LLM invocation.\n     *\n     * The identifier used by the LLM to call this function. Must be unique within\n     * the application.\n     *\n     * OpenAI limits function names to 64 characters.\n     */\n    name: string & tags.MaxLength<64>;\n    /**\n     * Schema for function parameters.\n     *\n     * Defines the expected argument types as a JSON Schema object. Contains\n     * `$defs` for shared type definitions and `properties` for each named\n     * parameter.\n     */\n    parameters: ILlmSchema.IParameters;\n    /**\n     * Schema for the return type.\n     *\n     * Defines the expected output type as an object parameters schema, wrapping\n     * the return type in an {@link ILlmSchema.IParameters} object with `$defs` for\n     * shared type definitions and `properties` for the structured output.\n     *\n     * `undefined` when the function returns `void` or has no meaningful return\n     * value.\n     */\n    output?: ILlmSchema.IParameters | undefined;\n    /**\n     * Human-readable function description.\n     *\n     * Explains what the function does, when to use it, and any important\n     * considerations. This description is crucial for LLMs to understand when to\n     * invoke this function. Extracted from JSDoc comments.\n     */\n    description?: string | undefined;\n    /**\n     * Whether this function is deprecated.\n     *\n     * When `true`, indicates the function should no longer be used. LLMs may\n     * still invoke deprecated functions but should prefer non-deprecated\n     * alternatives when available.\n     */\n    deprecated?: boolean | undefined;\n    /**\n     * Category tags for function organization.\n     *\n     * Extracted from `@tag` JSDoc annotations. Useful for grouping related\n     * functions and filtering the function list.\n     */\n    tags?: string[] | undefined;\n    /**\n     * Lenient JSON parser with schema-based coercion.\n     *\n     * Handles incomplete/malformed JSON commonly produced by LLMs:\n     *\n     * - Unclosed brackets, strings, trailing commas\n     * - JavaScript-style comments (`//` and multi-line)\n     * - Unquoted object keys, incomplete keywords (`tru`, `fal`, `nul`)\n     * - Markdown code block extraction, junk prefix skipping\n     *\n     * Also coerces double-stringified values (`\"42\"` → `42`) using the\n     * {@link parameters} schema.\n     *\n     * Type validation is NOT performed — use {@link validate} after parsing.\n     *\n     * If the SDK (e.g., LangChain, Vercel AI, MCP) already parses JSON internally\n     * and provides a pre-parsed object, use {@link coerce} instead to apply\n     * schema-based type coercion without re-parsing.\n     *\n     * @param str Raw JSON string from LLM output\n     * @returns Parse result with data on success, or partial data with errors\n     */\n    parse: (str: string) => IJsonParseResult<unknown>;\n    /**\n     * Coerce pre-parsed arguments to match expected schema types.\n     *\n     * **Use this only when the SDK (e.g., LangChain, Vercel AI, MCP) already\n     * parses JSON internally.** For raw JSON strings from LLM output, use\n     * {@link parse} instead — it handles both lenient parsing and type coercion in\n     * one step.\n     *\n     * LLMs often return values with incorrect types even after parsing:\n     *\n     * - `\"42\"` → `42` (when schema expects number)\n     * - `\"true\"` → `true` (when schema expects boolean)\n     * - `\"null\"` → `null` (when schema expects null)\n     * - `\"{...}\"` → `{...}` (when schema expects object)\n     * - `\"[...]\"` → `[...]` (when schema expects array)\n     *\n     * This function recursively coerces these double-stringified values based on\n     * the {@link parameters} schema.\n     *\n     * Type validation is NOT performed — use {@link validate} after coercion.\n     *\n     * @param data Pre-parsed arguments object from SDK\n     * @returns Coerced arguments with corrected types\n     */\n    coerce: (data: unknown) => unknown;\n    /**\n     * Validates LLM-generated arguments against the schema.\n     *\n     * LLMs frequently make type errors such as returning strings instead of\n     * numbers or missing required properties. Use this validator to check\n     * arguments before execution.\n     *\n     * When validation fails, use {@link LlmJson.stringify} from `@typia/utils` to\n     * format the error for LLM feedback. The formatted output shows the invalid\n     * JSON with inline error comments, helping the LLM understand and correct its\n     * mistakes in the next turn.\n     *\n     * @param args The arguments generated by the LLM\n     * @returns Validation result with success status and any errors\n     * @see stringifyValidationFailure Format errors for LLM auto-correction\n     */\n    validate: (args: unknown) => IValidation<unknown>;\n}\n",
    "node_modules/@typia/interface/lib/schema/ILlmSchema.d.ts": "import { tags } from \"../index\";\nimport { IJsonSchemaAttribute } from \"./IJsonSchemaAttribute\";\n/**\n * Type schema for LLM function calling.\n *\n * `ILlmSchema` is a JSON Schema subset designed for LLM function calling\n * compatibility. Most LLMs (OpenAI GPT, Anthropic Claude, Google Gemini, etc.)\n * do not fully support JSON Schema, so this simplified schema omits unsupported\n * features like tuples, `const`, and mixed union types.\n *\n * Generated by `typia.llm.schema<T>()` for single types or included in\n * {@link ILlmApplication} via `typia.llm.application<Class>()`. Shared type\n * definitions use `$defs` with `$ref` references to reduce duplication and\n * handle recursive structures.\n *\n * Set {@link ILlmSchema.IConfig.strict} to `true` for OpenAI's structured output\n * mode, which requires all properties to be `required` and\n * `additionalProperties: false`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport type ILlmSchema = ILlmSchema.IBoolean | ILlmSchema.IInteger | ILlmSchema.INumber | ILlmSchema.IString | ILlmSchema.IArray | ILlmSchema.IObject | ILlmSchema.IReference | ILlmSchema.IAnyOf | ILlmSchema.INull | ILlmSchema.IUnknown;\nexport declare namespace ILlmSchema {\n    /**\n     * Configuration options for LLM schema generation.\n     *\n     * Controls how TypeScript types are converted to LLM-compatible JSON schemas.\n     * These settings affect OpenAI structured output compatibility.\n     */\n    interface IConfig {\n        /**\n         * Whether to enable strict mode (OpenAI structured output).\n         *\n         * When `true`, all properties become required and `additionalProperties` is\n         * forced to `false`.\n         *\n         * @default false\n         */\n        strict: boolean;\n    }\n    /**\n     * Function parameters schema with shared type definitions.\n     *\n     * Extends the object schema to include a `$defs` map for named type\n     * definitions that can be referenced via `$ref`. This structure allows\n     * recursive types and reduces schema duplication.\n     *\n     * The `additionalProperties` is always `false` for parameters to ensure\n     * strict argument validation and prevent unexpected properties.\n     */\n    interface IParameters extends Omit<IObject, \"additionalProperties\"> {\n        /**\n         * Named schema definitions for reference.\n         *\n         * Contains type definitions that can be referenced throughout the schema\n         * using `$ref: \"#/$defs/TypeName\"`. Essential for recursive types and\n         * shared structures.\n         */\n        $defs: Record<string, ILlmSchema>;\n        /**\n         * Whether additional properties are allowed.\n         *\n         * Always `false` for function parameters to ensure strict type checking.\n         * This prevents LLMs from hallucinating extra properties.\n         */\n        additionalProperties: false;\n    }\n    /**\n     * Boolean type schema.\n     *\n     * Represents a JSON Schema boolean type with optional enum constraints and\n     * default value. Used for true/false parameters and flags.\n     */\n    interface IBoolean extends IJsonSchemaAttribute.IBoolean {\n        /**\n         * Allowed boolean values.\n         *\n         * Restricts the value to specific boolean literals. Typically unused since\n         * booleans only have two possible values, but supported for consistency\n         * with other types.\n         */\n        enum?: Array<boolean>;\n        /**\n         * Default value when not provided.\n         *\n         * The boolean value to use when the LLM omits this parameter.\n         */\n        default?: boolean;\n    }\n    /**\n     * Integer type schema.\n     *\n     * Represents a JSON Schema integer type with numeric constraints. Maps to\n     * TypeScript `number` with integer validation. Supports range constraints,\n     * enum restrictions, and divisibility checks.\n     */\n    interface IInteger extends IJsonSchemaAttribute.IInteger {\n        /**\n         * Allowed integer values.\n         *\n         * Restricts the value to specific integer literals. Useful for representing\n         * enum-like integer codes or limited value sets.\n         */\n        enum?: Array<number & tags.Type<\"int64\">>;\n        /**\n         * Default value when not provided.\n         *\n         * The integer value to use when the LLM omits this parameter.\n         */\n        default?: number & tags.Type<\"int64\">;\n        /**\n         * Minimum value (inclusive).\n         *\n         * The value must be greater than or equal to this number.\n         */\n        minimum?: number & tags.Type<\"int64\">;\n        /**\n         * Maximum value (inclusive).\n         *\n         * The value must be less than or equal to this number.\n         */\n        maximum?: number & tags.Type<\"int64\">;\n        /**\n         * Exclusive minimum value.\n         *\n         * The value must be strictly greater than this number.\n         */\n        exclusiveMinimum?: number & tags.Type<\"int64\">;\n        /**\n         * Exclusive maximum value.\n         *\n         * The value must be strictly less than this number.\n         */\n        exclusiveMaximum?: number & tags.Type<\"int64\">;\n        /**\n         * Value must be divisible by this number.\n         *\n         * Used for constraints like \"must be even\" (multipleOf: 2) or \"must be a\n         * multiple of 100\" (multipleOf: 100).\n         */\n        multipleOf?: number & tags.Type<\"uint64\"> & tags.ExclusiveMinimum<0>;\n    }\n    /**\n     * Number (floating-point) type schema.\n     *\n     * Represents a JSON Schema number type for floating-point values. Maps to\n     * TypeScript `number` type. Supports range constraints, enum restrictions,\n     * and precision checks via multipleOf.\n     */\n    interface INumber extends IJsonSchemaAttribute.INumber {\n        /**\n         * Allowed numeric values.\n         *\n         * Restricts the value to specific number literals. Useful for representing\n         * specific valid values like percentages or rates.\n         */\n        enum?: Array<number>;\n        /**\n         * Default value when not provided.\n         *\n         * The number to use when the LLM omits this parameter.\n         */\n        default?: number;\n        /**\n         * Minimum value (inclusive).\n         *\n         * The value must be greater than or equal to this number.\n         */\n        minimum?: number;\n        /**\n         * Maximum value (inclusive).\n         *\n         * The value must be less than or equal to this number.\n         */\n        maximum?: number;\n        /**\n         * Exclusive minimum value.\n         *\n         * The value must be strictly greater than this number.\n         */\n        exclusiveMinimum?: number;\n        /**\n         * Exclusive maximum value.\n         *\n         * The value must be strictly less than this number.\n         */\n        exclusiveMaximum?: number;\n        /**\n         * Value must be divisible by this number.\n         *\n         * Useful for decimal precision constraints like \"two decimal places\"\n         * (multipleOf: 0.01) or currency amounts (multipleOf: 0.01).\n         */\n        multipleOf?: number & tags.ExclusiveMinimum<0>;\n    }\n    /**\n     * String type schema.\n     *\n     * Represents a JSON Schema string type with format validation, pattern\n     * matching, and length constraints. Maps to TypeScript `string` type with\n     * optional semantic format annotations.\n     */\n    interface IString extends IJsonSchemaAttribute.IString {\n        /**\n         * Allowed string values.\n         *\n         * Restricts the value to specific string literals. Maps directly to\n         * TypeScript string literal union types.\n         */\n        enum?: Array<string>;\n        /**\n         * Default value when not provided.\n         *\n         * The string to use when the LLM omits this parameter.\n         */\n        default?: string;\n        /**\n         * Semantic format specifier.\n         *\n         * Indicates the string represents a specific format like email, UUID, or\n         * date-time. LLMs may use this to generate appropriate values. Common\n         * formats include \"email\", \"uri\", \"uuid\", \"date-time\".\n         */\n        format?: \"binary\" | \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\" | (string & {});\n        /**\n         * Regular expression pattern for validation.\n         *\n         * The string must match this regex pattern. Note that LLMs may struggle\n         * with complex regex patterns; simple patterns work best.\n         */\n        pattern?: string;\n        /**\n         * MIME type of the string content.\n         *\n         * Indicates the content type when the string contains encoded binary data,\n         * such as \"application/json\" or \"image/png\".\n         */\n        contentMediaType?: string;\n        /**\n         * Minimum string length.\n         *\n         * The string must have at least this many characters.\n         */\n        minLength?: number & tags.Type<\"uint64\">;\n        /**\n         * Maximum string length.\n         *\n         * The string must have at most this many characters.\n         */\n        maxLength?: number & tags.Type<\"uint64\">;\n    }\n    /**\n     * Array type schema.\n     *\n     * Represents a JSON Schema array type with item type validation and size\n     * constraints. Maps to TypeScript `T[]` or `Array<T>` types. Note: Tuple\n     * types are not supported by LLM schemas.\n     */\n    interface IArray extends IJsonSchemaAttribute.IArray {\n        /**\n         * Schema for array elements.\n         *\n         * All elements in the array must conform to this schema. For heterogeneous\n         * arrays, use an `anyOf` schema.\n         */\n        items: ILlmSchema;\n        /**\n         * Whether elements must be unique.\n         *\n         * When `true`, no two elements may be equal. Maps to TypeScript `Set<T>`\n         * semantics but represented as an array.\n         */\n        uniqueItems?: boolean;\n        /**\n         * Minimum number of elements.\n         *\n         * The array must contain at least this many items.\n         */\n        minItems?: number & tags.Type<\"uint64\">;\n        /**\n         * Maximum number of elements.\n         *\n         * The array must contain at most this many items.\n         */\n        maxItems?: number & tags.Type<\"uint64\">;\n    }\n    /**\n     * Object type schema.\n     *\n     * Represents a JSON Schema object type with named properties. Maps to\n     * TypeScript interface or object type. Supports required property\n     * declarations and dynamic additional properties.\n     */\n    interface IObject extends IJsonSchemaAttribute.IObject {\n        /**\n         * Property name to schema mapping.\n         *\n         * Defines the type of each named property on the object. All properties are\n         * defined here regardless of whether they are required or optional.\n         */\n        properties: Record<string, ILlmSchema>;\n        /**\n         * Schema for dynamic/additional properties.\n         *\n         * - `false` (default): No additional properties allowed\n         * - `true`: Any additional properties allowed\n         * - Schema: Additional properties must match this schema\n         *\n         * Note: ChatGPT and Gemini do not support `additionalProperties`. Use\n         * {@link ILlmSchema.IConfig.strict} mode for OpenAI compatibility.\n         */\n        additionalProperties?: ILlmSchema | boolean;\n        /**\n         * List of required property names.\n         *\n         * Properties in this array must be present in the object. In strict mode,\n         * all properties become required automatically.\n         */\n        required: string[];\n    }\n    /**\n     * Reference to a named schema definition.\n     *\n     * Points to a schema defined in the `$defs` map using a JSON pointer. Used to\n     * avoid schema duplication and enable recursive type definitions. The\n     * reference path format is `#/$defs/TypeName`.\n     */\n    interface IReference extends IJsonSchemaAttribute {\n        /**\n         * JSON pointer to the referenced schema.\n         *\n         * Must be in the format `#/$defs/TypeName` where TypeName is a key in the\n         * parent schema's `$defs` map.\n         */\n        $ref: string;\n    }\n    /**\n     * Union type schema (A | B | C).\n     *\n     * Represents a TypeScript union type where the value can match any one of the\n     * member schemas. Note: Gemini does not support `anyOf`/`oneOf` schemas. Use\n     * discriminated unions with `x-discriminator` when possible for better LLM\n     * comprehension.\n     */\n    interface IAnyOf extends IJsonSchemaAttribute {\n        /**\n         * Array of possible schemas.\n         *\n         * The value must match at least one of these schemas. Nested `anyOf`\n         * schemas are flattened to avoid deep nesting.\n         */\n        anyOf: Exclude<ILlmSchema, ILlmSchema.IAnyOf>[];\n        /**\n         * Discriminator for tagged/discriminated unions.\n         *\n         * Helps LLMs understand which variant to select based on a discriminating\n         * property value. Improves type inference accuracy.\n         */\n        \"x-discriminator\"?: IAnyOf.IDiscriminator;\n    }\n    namespace IAnyOf {\n        /**\n         * Discriminator configuration for tagged unions.\n         *\n         * Specifies which property distinguishes between union variants and maps\n         * discriminator values to their corresponding schemas.\n         */\n        interface IDiscriminator {\n            /**\n             * Name of the discriminating property.\n             *\n             * This property must exist on all union member object schemas and contain\n             * unique literal values that identify each variant.\n             */\n            propertyName: string;\n            /**\n             * Mapping from discriminator values to schema references.\n             *\n             * Keys are the literal values of the discriminator property, values are\n             * `$ref` paths to the corresponding schemas.\n             */\n            mapping?: Record<string, string>;\n        }\n    }\n    /**\n     * Null type schema.\n     *\n     * Represents the JSON null value. In TypeScript union types like `T | null`,\n     * this schema appears in an `anyOf` alongside the T schema.\n     */\n    interface INull extends IJsonSchemaAttribute.INull {\n    }\n    /**\n     * Unknown/any type schema.\n     *\n     * Represents TypeScript `any` or `unknown` types where no specific type\n     * constraint is defined. Use sparingly as LLMs may generate unexpected values\n     * for unconstrained types.\n     */\n    interface IUnknown extends IJsonSchemaAttribute.IUnknown {\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/ILlmStructuredOutput.d.ts": "import { IJsonParseResult } from \"./IJsonParseResult\";\nimport { ILlmSchema } from \"./ILlmSchema\";\nimport { IValidation } from \"./IValidation\";\n/**\n * LLM structured output schema with parsing and validation utilities.\n *\n * `ILlmStructuredOutput<T>` is generated by `typia.llm.structuredOutput<T>()`\n * to provide everything needed for handling LLM structured outputs: the JSON\n * schema for prompting, and functions for parsing, coercing, and validating\n * responses.\n *\n * Structured outputs allow LLMs to generate data conforming to a predefined\n * schema instead of free-form text. This is useful for:\n *\n * - Extracting structured data from conversations\n * - Generating typed responses for downstream processing\n * - Ensuring consistent output formats across LLM calls\n *\n * Workflow:\n *\n * 1. Pass {@link parameters} schema to LLM provider\n * 2. Receive LLM response (JSON string or pre-parsed object)\n * 3. Use {@link parse} for raw strings or {@link coerce} for pre-parsed objects\n * 4. Use {@link validate} to check the result and get detailed errors\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T The expected output type\n */\nexport interface ILlmStructuredOutput<T = unknown> {\n    /**\n     * JSON schema for the structured output.\n     *\n     * Pass this schema to LLM providers (OpenAI, Anthropic, Google, etc.) to\n     * constrain the output format. The schema includes `$defs` for shared type\n     * definitions and `properties` for the output structure.\n     *\n     * Most LLM providers accept this directly in their structured output or\n     * response format configuration.\n     */\n    parameters: ILlmSchema.IParameters;\n    /**\n     * Lenient JSON parser with schema-based type coercion.\n     *\n     * Handles incomplete or malformed JSON commonly produced by LLMs:\n     *\n     * - Unclosed brackets, strings, trailing commas\n     * - JavaScript-style comments (`//` and multi-line)\n     * - Unquoted object keys, incomplete keywords (`tru`, `fal`, `nul`)\n     * - Markdown code block extraction, junk prefix skipping\n     *\n     * Also coerces double-stringified values based on the schema:\n     *\n     * - `\"42\"` → `42` (when schema expects number)\n     * - `\"true\"` → `true` (when schema expects boolean)\n     * - `\"null\"` → `null` (when schema expects null)\n     * - `\"{...}\"` → `{...}` (when schema expects object)\n     * - `\"[...]\"` → `[...]` (when schema expects array)\n     *\n     * Type validation is NOT performed — use {@link validate} after parsing.\n     *\n     * If the SDK (e.g., LangChain, Vercel AI, MCP) already parses JSON internally\n     * and provides a pre-parsed object, use {@link coerce} instead.\n     *\n     * @param input Raw JSON string from LLM output\n     * @returns Parse result with data on success, or partial data with errors\n     */\n    parse: (input: string) => IJsonParseResult<T>;\n    /**\n     * Coerce pre-parsed output to match expected schema types.\n     *\n     * **Use this only when the SDK already parses JSON internally.** For raw JSON\n     * strings from LLM output, use {@link parse} instead — it handles both lenient\n     * parsing and type coercion in one step.\n     *\n     * LLMs often return values with incorrect types even after parsing:\n     *\n     * - `\"42\"` → `42` (when schema expects number)\n     * - `\"true\"` → `true` (when schema expects boolean)\n     * - `\"null\"` → `null` (when schema expects null)\n     * - `\"{...}\"` → `{...}` (when schema expects object)\n     * - `\"[...]\"` → `[...]` (when schema expects array)\n     *\n     * This function recursively coerces these double-stringified values based on\n     * the {@link parameters} schema.\n     *\n     * Type validation is NOT performed — use {@link validate} after coercion.\n     *\n     * @param input Pre-parsed output object from SDK\n     * @returns Coerced output with corrected types\n     */\n    coerce: (input: unknown) => T;\n    /**\n     * Validates LLM-generated output against the schema.\n     *\n     * LLMs frequently make type errors such as returning strings instead of\n     * numbers or missing required properties. Use this validator to check output\n     * before further processing.\n     *\n     * When validation fails, use {@link LlmJson.stringify} from `@typia/utils` to\n     * format the error for LLM feedback. The formatted output shows the invalid\n     * JSON with inline error comments, helping the LLM understand and correct its\n     * mistakes in the next turn.\n     *\n     * @param input The output generated by the LLM\n     * @returns Validation result with success status and any errors\n     */\n    validate: (input: unknown) => IValidation<T>;\n}\n",
    "node_modules/@typia/interface/lib/schema/IResult.d.ts": "/**\n * Result type for operations that can either succeed or fail.\n *\n * `IResult` is a discriminated union representing the outcome of an operation\n * that may fail. This pattern (often called \"Result\" or \"Either\" monad) enables\n * explicit error handling without exceptions.\n *\n * Check the {@link IResult.success | success} discriminator to determine the\n * outcome:\n *\n * - `true` → {@link IResult.ISuccess} with the result in\n *   {@link IResult.ISuccess.value | value}\n * - `false` → {@link IResult.IFailure} with the error in\n *   {@link IResult.IFailure.error | error}\n *\n * This pattern is used throughout typia for safe operations like parsing and\n * transformation where errors are expected possibilities.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   const result: IResult<User, ParseError> = parseUser(json);\n *   if (result.success) {\n *     console.log(result.value.name);\n *   } else {\n *     console.error(result.error.message);\n *   }\n *\n * @template T Type of the success value\n * @template E Type of the error value\n */\nexport type IResult<T, E> = IResult.ISuccess<T> | IResult.IFailure<E>;\nexport declare namespace IResult {\n    /**\n     * Successful result variant.\n     *\n     * Indicates the operation completed successfully and contains the result\n     * value. Access via {@link value} after checking {@link success} is `true`.\n     *\n     * @template T Type of the success value\n     */\n    interface ISuccess<T> {\n        /**\n         * Success discriminator.\n         *\n         * Always `true` for successful results. Use this to narrow the type before\n         * accessing {@link value}.\n         */\n        success: true;\n        /**\n         * The successful result value.\n         *\n         * Contains the operation's output. Only accessible when {@link success} is\n         * `true`.\n         */\n        value: T;\n    }\n    /**\n     * Failed result variant.\n     *\n     * Indicates the operation failed and contains error information. Access via\n     * {@link error} after checking {@link success} is `false`.\n     *\n     * @template E Type of the error value\n     */\n    interface IFailure<E> {\n        /**\n         * Success discriminator.\n         *\n         * Always `false` for failed results. Use this to narrow the type before\n         * accessing {@link error}.\n         */\n        success: false;\n        /**\n         * The error information.\n         *\n         * Contains details about why the operation failed. Only accessible when\n         * {@link success} is `false`.\n         */\n        error: E;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/IValidation.d.ts": "/**\n * Validation result type with detailed error information.\n *\n * `IValidation<T>` is the return type of `typia.validate<T>()` and related\n * validation functions. Unlike `typia.is<T>()` which returns a boolean, or\n * `typia.assert<T>()` which throws exceptions, `typia.validate<T>()` returns\n * this structured result with full error details.\n *\n * Check the {@link IValidation.success | success} discriminator:\n *\n * - `true` → {@link IValidation.ISuccess} with validated\n *   {@link IValidation.ISuccess.data | data}\n * - `false` → {@link IValidation.IFailure} with\n *   {@link IValidation.IFailure.errors | errors} array\n *\n * This is the recommended validation function when you need to report\n * validation errors to users or log them for debugging.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   const result = typia.validate<User>(input);\n *   if (result.success) {\n *     return result.data; // User type\n *   } else {\n *     result.errors.forEach((e) => console.log(e.path, e.expected));\n *   }\n *\n * @template T The expected type after successful validation\n */\nexport type IValidation<T = unknown> = IValidation.ISuccess<T> | IValidation.IFailure;\nexport declare namespace IValidation {\n    /**\n     * Successful validation result.\n     *\n     * Indicates the input matches the expected type. The validated data is\n     * available in {@link data} with full type information.\n     *\n     * @template T The validated type\n     */\n    interface ISuccess<T = unknown> {\n        /**\n         * Success discriminator.\n         *\n         * Always `true` for successful validations. Use this to narrow the type\n         * before accessing {@link data}.\n         */\n        success: true;\n        /**\n         * The validated data with correct type.\n         *\n         * The original input after successful validation. TypeScript will narrow\n         * this to type `T` when {@link success} is `true`.\n         */\n        data: T;\n    }\n    /**\n     * Failed validation result with error details.\n     *\n     * Indicates the input did not match the expected type. Contains the original\n     * data and an array of all validation errors found.\n     */\n    interface IFailure {\n        /**\n         * Success discriminator.\n         *\n         * Always `false` for failed validations. Use this to narrow the type before\n         * accessing {@link errors}.\n         */\n        success: false;\n        /**\n         * The original input that failed validation.\n         *\n         * Preserved as `unknown` type since it didn't match the expected type.\n         * Useful for debugging or logging the actual value.\n         */\n        data: unknown;\n        /**\n         * Array of validation errors.\n         *\n         * Contains one entry for each validation failure found. Multiple errors may\n         * exist if the input has multiple type mismatches.\n         */\n        errors: IError[];\n    }\n    /**\n     * Detailed information about a single validation error.\n     *\n     * Describes exactly what went wrong during validation, including the\n     * location, expected type, and actual value.\n     */\n    interface IError {\n        /**\n         * Property path to the error location.\n         *\n         * A dot-notation path from the root input to the failing property. Uses\n         * `$input` as the root. Example: `\"$input.user.email\"` or\n         * `\"$input.items[0].price\"`.\n         */\n        path: string;\n        /**\n         * Expected type expression.\n         *\n         * A human-readable description of what type was expected at this location.\n         * Examples: `\"string\"`, `\"number & ExclusiveMinimum<0>\"`, `\"(\\\"active\\\" |\n         * \\\"inactive\\\")\"`.\n         */\n        expected: string;\n        /**\n         * The actual value that failed validation.\n         *\n         * The value found at the error path. May be `undefined` if the property was\n         * missing. Useful for debugging type mismatches.\n         */\n        value: unknown;\n        /**\n         * Human-readable error description.\n         *\n         * Optional additional context about the validation failure, such as\n         * constraint violations or custom error messages.\n         */\n        description?: string;\n    }\n}\n",
    "node_modules/@typia/interface/lib/schema/index.d.ts": "export * from \"./IResult\";\nexport * from \"./IValidation\";\nexport * from \"./IJsonSchemaTransformError\";\nexport * from \"./IJsonSchemaApplication\";\nexport * from \"./IJsonSchemaCollection\";\nexport * from \"./IJsonSchemaUnit\";\nexport * from \"./IJsonSchemaAttribute\";\nexport * from \"./ILlmController\";\nexport * from \"./ILlmApplication\";\nexport * from \"./ILlmFunction\";\nexport * from \"./ILlmSchema\";\nexport * from \"./ILlmStructuredOutput\";\nexport * from \"./IJsonParseResult\";\n",
    "node_modules/@typia/interface/lib/tags/Constant.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Documentation metadata for literal/constant values.\n *\n * `Constant<Value, Content>` enhances literal type values with human-readable\n * documentation that appears in generated JSON Schema output. This is useful\n * for enum-like values where each literal needs individual documentation.\n *\n * Unlike TypeScript enums which lose their documentation in schema generation,\n * `Constant` preserves title and description for each value. This helps API\n * consumers understand the meaning of each allowed value.\n *\n * The tag itself doesn't perform validation - it only adds metadata. The\n * literal type constraint is enforced by TypeScript's type system.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   type OrderStatus =\n *     | Constant<\n *         \"pending\",\n *         { title: \"Pending\"; description: \"Order placed\" }\n *       >\n *     | Constant<\"shipped\", { title: \"Shipped\"; description: \"In transit\" }>\n *     | Constant<\n *         \"delivered\",\n *         { title: \"Delivered\"; description: \"Complete\" }\n *       >;\n *\n *   interface Order {\n *     status: OrderStatus;\n *   }\n *\n * @template Value The literal value (boolean, number, string, or bigint)\n * @template Content Object with optional `title` and `description` properties\n */\nexport type Constant<Value extends boolean | number | string | bigint, Content extends {\n    title?: string | undefined;\n    description?: string | undefined;\n}> = Value & TagBase<{\n    target: \"string\" | \"boolean\" | \"number\" | \"bigint\";\n    kind: \"constant\";\n    value: undefined;\n    schema: Content;\n}>;\n",
    "node_modules/@typia/interface/lib/tags/ContentMediaType.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * MIME type metadata for string content.\n *\n * `ContentMediaType<Type>` is a type tag that documents the media type of\n * string content. This is metadata-only - no runtime validation is performed.\n * The information appears in generated JSON Schema output.\n *\n * This is useful when a string property contains encoded binary data or\n * structured content that should be interpreted according to a specific media\n * type, such as base64-encoded images or embedded JSON.\n *\n * Common MIME types:\n *\n * - `\"application/json\"`: JSON data as string\n * - `\"application/xml\"`: XML data as string\n * - `\"image/png\"`: Base64-encoded PNG image\n * - `\"image/jpeg\"`: Base64-encoded JPEG image\n * - `\"application/octet-stream\"`: Generic binary data\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Document {\n *     // Base64-encoded PNG image\n *     thumbnail: string & ContentMediaType<\"image/png\">;\n *     // JSON stored as string\n *     metadata: string & ContentMediaType<\"application/json\">;\n *   }\n *\n * @template Value MIME type string literal\n */\nexport type ContentMediaType<Value extends string> = TagBase<{\n    target: \"string\";\n    kind: \"contentMediaType\";\n    value: undefined;\n    schema: {\n        contentMediaType: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/Default.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Default value metadata for JSON Schema generation.\n *\n * `Default<Value>` is a type tag that specifies a default value for a property\n * in the generated JSON Schema. This is metadata-only - typia does not\n * automatically apply default values at runtime.\n *\n * The default value appears in the `default` field of the JSON Schema output,\n * which API documentation tools and code generators can use to show default\n * values or generate code that applies them.\n *\n * Only primitive literal types are supported: `boolean`, `bigint`, `number`,\n * and `string`. For complex defaults, consider using optional properties with\n * runtime default assignment.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Config {\n *     // Default to 10 items per page\n *     pageSize: (number & Default<10>) | undefined;\n *     // Default to enabled\n *     enabled: (boolean & Default<true>) | undefined;\n *     // Default sort order\n *     sortOrder: (string & Default<\"asc\">) | undefined;\n *   }\n *\n * @template Value The default value literal (must be a primitive)\n */\nexport type Default<Value extends boolean | bigint | number | string> = TagBase<{\n    target: Value extends boolean ? \"boolean\" : Value extends bigint ? \"bigint\" : Value extends number ? \"number\" : \"string\";\n    kind: \"default\";\n    value: Value;\n    exclusive: true;\n    schema: Value extends bigint ? {\n        default: Numeric<Value>;\n    } : {\n        default: Value;\n    };\n}>;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/Example.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Single example value for JSON Schema documentation.\n *\n * `Example<Value>` is a type tag that adds a representative example value to\n * the generated JSON Schema. This is metadata-only - it appears in the\n * `example` field of the schema and helps API consumers understand expected\n * values.\n *\n * Examples are displayed in API documentation tools like Swagger UI and can be\n * used by code generators to produce more helpful client code.\n *\n * Supports all JSON-compatible types: primitives, objects, arrays, and null.\n * For multiple named examples, use {@link Examples} instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface User {\n *     email: string & Format<\"email\"> & Example<\"user@example.com\">;\n *     age: number & Minimum<0> & Example<25>;\n *     tags: string[] & Example<[\"admin\", \"active\"]>;\n *   }\n *\n * @template Value The example value (any JSON-compatible type)\n */\nexport type Example<Value extends boolean | bigint | number | string | object | Array<unknown> | null> = TagBase<{\n    target: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n    kind: \"example\";\n    value: Value;\n    exclusive: true;\n    schema: Value extends bigint ? {\n        example: Numeric<Value>;\n    } : {\n        example: Value;\n    };\n}>;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/Examples.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Multiple named examples for JSON Schema documentation.\n *\n * `Examples<Record>` is a type tag that adds multiple labeled example values to\n * the generated JSON Schema. Each example has a name and a value, providing\n * rich documentation for different use cases or scenarios.\n *\n * This is useful when a property can have various valid values and you want to\n * illustrate multiple possibilities, such as different user types, edge cases,\n * or common configurations.\n *\n * The examples appear in the `examples` field of the JSON Schema and are\n * displayed by API documentation tools. For a single unnamed example, use\n * {@link Example} instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Product {\n *     price: number &\n *       Examples<{\n *         budget: 9.99;\n *         premium: 99.99;\n *         enterprise: 999.99;\n *       }>;\n *     status: string &\n *       Examples<{\n *         active: \"active\";\n *         discontinued: \"discontinued\";\n *         preorder: \"preorder\";\n *       }>;\n *   }\n *\n * @template Value Record mapping example names to their values\n */\nexport type Examples<Value extends Record<string, boolean | bigint | number | string | object | Array<unknown> | null>> = TagBase<{\n    target: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n    kind: \"examples\";\n    value: Value;\n    exclusive: true;\n    schema: {\n        examples: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/ExclusiveMaximum.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Exclusive maximum value constraint (value < max).\n *\n * `ExclusiveMaximum<N>` is a type tag that validates numeric values are\n * strictly less than the specified bound (not equal). Apply it to `number` or\n * `bigint` properties using TypeScript intersection types.\n *\n * This constraint is **mutually exclusive** with {@link Maximum} - you cannot\n * use both on the same property. Use `ExclusiveMaximum` for exclusive bounds\n * (<) and `Maximum` for inclusive bounds (<=).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It also generates `exclusiveMaximum` in JSON Schema.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Temperature {\n *     // Must be less than 100 (boiling point), not equal\n *     celsius: number & ExclusiveMaximum<100>;\n *   }\n *\n * @template Value The maximum bound (exclusive - value must be less)\n */\nexport type ExclusiveMaximum<Value extends number | bigint> = TagBase<{\n    target: Value extends bigint ? \"bigint\" : \"number\";\n    kind: \"exclusiveMaximum\";\n    value: Value;\n    validate: `$input < ${Cast<Value>}`;\n    exclusive: [\"exclusiveMaximum\", \"maximum\"];\n    schema: Value extends bigint ? {\n        exclusiveMaximum: Numeric<Value>;\n    } : {\n        exclusiveMaximum: Value;\n    };\n}>;\ntype Cast<Value extends number | bigint> = Value extends number ? Value : `BigInt(${Value})`;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/ExclusiveMinimum.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Exclusive minimum value constraint (value > min).\n *\n * `ExclusiveMinimum<N>` is a type tag that validates numeric values are\n * strictly greater than the specified bound (not equal). Apply it to `number`\n * or `bigint` properties using TypeScript intersection types.\n *\n * This constraint is **mutually exclusive** with {@link Minimum} - you cannot\n * use both on the same property. Use `ExclusiveMinimum` for exclusive bounds\n * (>) and `Minimum` for inclusive bounds (>=).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It also generates `exclusiveMinimum` in JSON Schema.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface PositiveNumber {\n *     // Must be greater than 0, not equal to 0\n *     value: number & ExclusiveMinimum<0>;\n *   }\n *\n * @template Value The minimum bound (exclusive - value must be greater)\n */\nexport type ExclusiveMinimum<Value extends number | bigint> = TagBase<{\n    target: Value extends bigint ? \"bigint\" : \"number\";\n    kind: \"exclusiveMinimum\";\n    value: Value;\n    validate: `${Cast<Value>} < $input`;\n    exclusive: [\"exclusiveMinimum\", \"minimum\"];\n    schema: Value extends bigint ? {\n        exclusiveMinimum: Numeric<Value>;\n    } : {\n        exclusiveMinimum: Value;\n    };\n}>;\ntype Cast<Value extends number | bigint> = Value extends number ? Value : `BigInt(${Value})`;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/Format.d.ts": "import type { TagBase } from \"./TagBase\";\n/**\n * String format validation constraint.\n *\n * `Format<Value>` validates strings against predefined formats (email, uuid,\n * url, date-time, etc.). Mutually exclusive with {@link Pattern}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Value Format identifier (see {@link Format.Value} for options)\n */\nexport type Format<Value extends Format.Value> = TagBase<{\n    target: \"string\";\n    kind: \"format\";\n    value: Value;\n    validate: `$importInternal(\"isFormat${PascalizeString<Value>}\")($input)`;\n    exclusive: [\"format\", \"pattern\"];\n    schema: {\n        format: Value;\n    };\n}>;\nexport declare namespace Format {\n    /**\n     * Supported format identifiers.\n     *\n     * Standard JSON Schema formats:\n     *\n     * - `email`, `idn-email`: Email addresses\n     * - `hostname`, `idn-hostname`: Hostnames\n     * - `uri`, `uri-reference`, `uri-template`, `url`: URLs\n     * - `iri`, `iri-reference`: Internationalized URLs\n     * - `uuid`: UUID strings\n     * - `ipv4`, `ipv6`: IP addresses\n     * - `date-time`, `date`, `time`, `duration`: Date/time formats\n     * - `json-pointer`, `relative-json-pointer`: JSON pointers\n     * - `regex`: Regular expression patterns\n     * - `byte`: Base64-encoded data\n     * - `password`: Password fields (for documentation only)\n     */\n    type Value = \"byte\" | \"password\" | \"regex\" | \"uuid\" | \"email\" | \"hostname\" | \"idn-email\" | \"idn-hostname\" | \"iri\" | \"iri-reference\" | \"ipv4\" | \"ipv6\" | \"uri\" | \"uri-reference\" | \"uri-template\" | \"url\" | \"date-time\" | \"date\" | \"time\" | \"duration\" | \"json-pointer\" | \"relative-json-pointer\";\n}\ntype PascalizeString<Key extends string> = Key extends `-${infer R}` ? `${PascalizeString<R>}` : Key extends `${infer _F}-${infer _R}` ? PascalizeSnakeString<Key> : Capitalize<Key>;\ntype PascalizeSnakeString<Key extends string> = Key extends `-${infer R}` ? PascalizeSnakeString<R> : Key extends `${infer F}${infer M}-${infer R}` ? `${Uppercase<F>}${Lowercase<M>}${PascalizeSnakeString<R>}` : Key extends `${infer F}${infer R}` ? `${Uppercase<F>}${Lowercase<R>}` : Key;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/JsonSchemaPlugin.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Injects custom properties into generated JSON Schema.\n *\n * `JsonSchemaPlugin<Schema>` is a type tag that merges custom properties into\n * the generated JSON Schema output. This enables vendor extensions (typically\n * prefixed with `x-`) and custom metadata that tools in your ecosystem may\n * require.\n *\n * This is metadata-only - it does not affect runtime validation. The properties\n * are simply merged into the schema for the annotated type.\n *\n * Common use cases:\n *\n * - OpenAPI vendor extensions (`x-*` properties)\n * - Custom UI hints for form generators\n * - Tool-specific metadata\n * - Integration with third-party schema consumers\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface FormField {\n *     // Add custom UI hints for form generation\n *     email: string &\n *       Format<\"email\"> &\n *       JsonSchemaPlugin<{\n *         \"x-ui-widget\": \"email-input\";\n *         \"x-ui-placeholder\": \"Enter your email\";\n *       }>;\n *     // Add custom sorting metadata\n *     priority: number &\n *       JsonSchemaPlugin<{\n *         \"x-sort-order\": \"descending\";\n *       }>;\n *   }\n *\n * @template Schema Object type containing the custom properties to merge\n */\nexport type JsonSchemaPlugin<Schema extends object> = TagBase<{\n    target: \"string\" | \"boolean\" | \"bigint\" | \"number\" | \"array\" | \"object\";\n    kind: \"jsonPlugin\";\n    value: undefined;\n    schema: Schema;\n}>;\n",
    "node_modules/@typia/interface/lib/tags/MaxItems.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Array maximum items constraint.\n *\n * `MaxItems<N>` is a type tag that validates array values have at most the\n * specified number of elements. Apply it to array properties using TypeScript\n * intersection types.\n *\n * This constraint is commonly combined with {@link MinItems} to define a valid\n * size range. It can also be combined with {@link UniqueItems} to require unique\n * elements.\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `maxItems` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Upload {\n *     // Maximum 5 files per upload\n *     files: (File & MaxItems<5>)[];\n *   }\n *   interface Config {\n *     // Between 1-3 backup servers allowed\n *     backupServers: (Server & MinItems<1> & MaxItems<3>)[];\n *   }\n *\n * @template Value Maximum number of elements allowed\n */\nexport type MaxItems<Value extends number> = TagBase<{\n    target: \"array\";\n    kind: \"maxItems\";\n    value: Value;\n    validate: `$input.length <= ${Value}`;\n    exclusive: true;\n    schema: {\n        maxItems: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/MaxLength.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * String maximum length constraint.\n *\n * `MaxLength<N>` is a type tag that validates string values have at most the\n * specified number of characters. Apply it to `string` properties using\n * TypeScript intersection types.\n *\n * This constraint is commonly combined with {@link MinLength} to define a valid\n * length range. Multiple length constraints can be applied to the same property\n * (all must pass).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `maxLength` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Article {\n *     // Title limited to 100 characters\n *     title: string & MaxLength<100>;\n *     // Description between 10-500 characters\n *     description: string & MinLength<10> & MaxLength<500>;\n *   }\n *\n * @template Value Maximum number of characters allowed\n */\nexport type MaxLength<Value extends number> = TagBase<{\n    target: \"string\";\n    kind: \"maxLength\";\n    value: Value;\n    validate: `$input.length <= ${Value}`;\n    exclusive: true;\n    schema: {\n        maxLength: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/Maximum.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Inclusive maximum value constraint (value <= max).\n *\n * `Maximum<N>` is a type tag that validates numeric values are less than or\n * equal to the specified bound. Apply it to `number` or `bigint` properties\n * using TypeScript intersection types.\n *\n * This constraint is **mutually exclusive** with {@link ExclusiveMaximum} - you\n * cannot use both on the same property. Use `Maximum` for inclusive bounds (<=)\n * and `ExclusiveMaximum` for exclusive bounds (<).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It also generates `maximum` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Rating {\n *     // Score from 0-100\n *     score: number & Minimum<0> & Maximum<100>;\n *     // Percentage cannot exceed 1.0\n *     ratio: number & Maximum<1.0>;\n *   }\n *\n * @template Value The maximum allowed value (inclusive)\n */\nexport type Maximum<Value extends number | bigint> = TagBase<{\n    target: Value extends bigint ? \"bigint\" : \"number\";\n    kind: \"maximum\";\n    value: Value;\n    validate: `$input <= ${Cast<Value>}`;\n    exclusive: [\"maximum\", \"exclusiveMaximum\"];\n    schema: Value extends bigint ? {\n        maximum: Numeric<Value>;\n    } : {\n        maximum: Value;\n    };\n}>;\ntype Cast<Value extends number | bigint> = Value extends number ? Value : `BigInt(${Value})`;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/MinItems.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Array minimum items constraint.\n *\n * `MinItems<N>` is a type tag that validates array values have at least the\n * specified number of elements. Apply it to array properties using TypeScript\n * intersection types.\n *\n * This constraint is commonly combined with {@link MaxItems} to define a valid\n * size range. It can also be combined with {@link UniqueItems} to require unique\n * elements.\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `minItems` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Order {\n *     // Must have at least 1 item\n *     items: (Product & MinItems<1>)[];\n *   }\n *   interface Team {\n *     // Team must have 2-10 members\n *     members: (User & MinItems<2> & MaxItems<10>)[];\n *   }\n *\n * @template Value Minimum number of elements required\n */\nexport type MinItems<Value extends number> = TagBase<{\n    target: \"array\";\n    kind: \"minItems\";\n    value: Value;\n    validate: `${Value} <= $input.length`;\n    exclusive: true;\n    schema: {\n        minItems: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/MinLength.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * String minimum length constraint.\n *\n * `MinLength<N>` is a type tag that validates string values have at least the\n * specified number of characters. Apply it to `string` properties using\n * TypeScript intersection types.\n *\n * This constraint is commonly combined with {@link MaxLength} to define a valid\n * length range. Multiple length constraints can be applied to the same property\n * (all must pass).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `minLength` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface User {\n *     // Username must be at least 3 characters\n *     username: string & MinLength<3> & MaxLength<20>;\n *     // Password must be at least 8 characters\n *     password: string & MinLength<8>;\n *   }\n *\n * @template Value Minimum number of characters required\n */\nexport type MinLength<Value extends number> = TagBase<{\n    target: \"string\";\n    kind: \"minLength\";\n    value: Value;\n    validate: `${Value} <= $input.length`;\n    exclusive: true;\n    schema: {\n        minLength: Value;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/Minimum.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Inclusive minimum value constraint (value >= min).\n *\n * `Minimum<N>` is a type tag that validates numeric values are greater than or\n * equal to the specified bound. Apply it to `number` or `bigint` properties\n * using TypeScript intersection types.\n *\n * This constraint is **mutually exclusive** with {@link ExclusiveMinimum} - you\n * cannot use both on the same property. Use `Minimum` for inclusive bounds (>=)\n * and `ExclusiveMinimum` for exclusive bounds (>).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It also generates `minimum` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Product {\n *     // Price must be 0 or greater\n *     price: number & Minimum<0>;\n *     // Quantity must be at least 1\n *     quantity: number & Minimum<1>;\n *   }\n *\n * @template Value The minimum allowed value (inclusive)\n */\nexport type Minimum<Value extends number | bigint> = TagBase<{\n    target: Value extends bigint ? \"bigint\" : \"number\";\n    kind: \"minimum\";\n    value: Value;\n    validate: `${Cast<Value>} <= $input`;\n    exclusive: [\"minimum\", \"exclusiveMinimum\"];\n    schema: Value extends bigint ? {\n        minimum: Numeric<Value>;\n    } : {\n        minimum: Value;\n    };\n}>;\ntype Cast<Value extends number | bigint> = Value extends number ? Value : `BigInt(${Value})`;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/MultipleOf.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Divisibility constraint (value % divisor === 0).\n *\n * `MultipleOf<N>` is a type tag that validates numeric values are exactly\n * divisible by the specified divisor with no remainder. Apply it to `number` or\n * `bigint` properties using TypeScript intersection types.\n *\n * Common use cases:\n *\n * - `MultipleOf<2>` for even numbers\n * - `MultipleOf<0.01>` for currency with 2 decimal places\n * - `MultipleOf<100>` for values in hundreds\n *\n * This constraint can be combined with other numeric constraints like\n * {@link Minimum} and {@link Maximum}. Multiple `MultipleOf` constraints on the\n * same property are allowed (all must pass).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `multipleOf` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Currency {\n *     // Must be exact cents (0.01, 0.02, ..., 1.00, 1.01, ...)\n *     amount: number & MultipleOf<0.01>;\n *   }\n *   interface Pagination {\n *     // Page size must be multiple of 10\n *     pageSize: number & MultipleOf<10>;\n *   }\n *\n * @template Value The divisor (value must be evenly divisible by this)\n */\nexport type MultipleOf<Value extends number | bigint> = TagBase<{\n    target: Value extends bigint ? \"bigint\" : \"number\";\n    kind: \"multipleOf\";\n    value: Value;\n    validate: `$input % ${Cast<Value>} === ${Value extends bigint ? Cast<0n> : 0}`;\n    exclusive: true;\n    schema: Value extends bigint ? {\n        multipleOf: Numeric<Value>;\n    } : {\n        multipleOf: Value;\n    };\n}>;\ntype Cast<Value extends number | bigint> = Value extends number ? Value : `BigInt(${Value})`;\ntype Numeric<T extends bigint> = `${T}` extends `${infer N extends number}` ? N : never;\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/Pattern.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Regular expression pattern constraint for strings.\n *\n * `Pattern<Regex>` is a type tag that validates string values match the\n * specified regular expression pattern. Apply it to `string` properties using\n * TypeScript intersection types.\n *\n * This constraint is **mutually exclusive** with {@link Format} - you cannot use\n * both on the same property. Use `Pattern` for custom regex validation, or\n * `Format` for standard formats (email, uuid, etc.).\n *\n * The pattern should be a valid JavaScript regular expression string without\n * the surrounding slashes. The entire string must match (implicit `^` and `$`\n * anchors).\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `pattern` in JSON Schema output.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Product {\n *     // SKU format: 3 letters, dash, 4 digits\n *     sku: string & Pattern<\"^[A-Z]{3}-[0-9]{4}$\">;\n *     // Phone number: digits and optional dashes\n *     phone: string & Pattern<\"^[0-9-]+$\">;\n *   }\n *\n * @template Value Regular expression pattern as a string literal\n */\nexport type Pattern<Value extends string> = TagBase<{\n    target: \"string\";\n    kind: \"pattern\";\n    value: Value;\n    validate: `RegExp(\"${Serialize<Value>}\").test($input)`;\n    exclusive: [\"format\", \"pattern\"];\n    schema: {\n        pattern: Value;\n    };\n}>;\ntype Serialize<T extends string, Output extends string = \"\"> = string extends T ? never : T extends \"\" ? Output : T extends `${infer P}${infer R}` ? Serialize<R, `${Output}${P extends keyof Escaper ? Escaper[P] : P}`> : never;\ntype Escaper = {\n    '\"': '\\\\\"';\n    \"\\\\\": \"\\\\\\\\\";\n    \"\\b\": \"\\\\b\";\n    \"\\f\": \"\\\\f\";\n    \"\\n\": \"\\\\n\";\n    \"\\r\": \"\\\\r\";\n    \"\\t\": \"\\\\t\";\n};\nexport {};\n",
    "node_modules/@typia/interface/lib/tags/Sequence.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Protocol Buffer field number assignment.\n *\n * `Sequence<N>` is a type tag that assigns a unique field number for Protocol\n * Buffer serialization. In protobuf, each field in a message must have a unique\n * numeric identifier that's used in the binary encoding.\n *\n * Field number guidelines:\n *\n * - **1-15**: Use one byte in encoding (ideal for frequently-used fields)\n * - **16-2047**: Use two bytes\n * - **2048-536,870,911**: Use more bytes (avoid for efficiency)\n * - **19000-19999**: Reserved by Protocol Buffers (cannot use)\n *\n * If not specified, typia auto-assigns field numbers. Use `Sequence` when you\n * need stable field numbers for backward compatibility or when integrating with\n * existing protobuf schemas.\n *\n * This tag is used by `typia.protobuf.encode()` and `typia.protobuf.decode()`.\n * The field number also appears in JSON Schema as `x-protobuf-sequence`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Message {\n *     // Frequently accessed fields use low numbers\n *     id: (number & Sequence<1>) & Type<\"uint32\">;\n *     name: string & Sequence<2>;\n *     // Less common fields use higher numbers\n *     metadata: (Record<string, string> & Sequence<100>) | undefined;\n *   }\n *\n * @template N Field number (1 to 536,870,911, excluding 19000-19999)\n */\nexport type Sequence<N extends number> = TagBase<{\n    target: \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\";\n    kind: \"sequence\";\n    value: N;\n    schema: {\n        \"x-protobuf-sequence\": N;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/TagBase.d.ts": "/**\n * Base type for all typia validation tags.\n *\n * `TagBase` is the foundation for all typia type tags (constraints like\n * `Minimum`, `MaxLength`, `Format`, etc.). It attaches compile-time metadata to\n * TypeScript types using a phantom property pattern.\n *\n * The typia transformer reads these tags at compile time and generates\n * appropriate runtime validation code. The tags themselves have no runtime\n * presence - they exist only in the type system.\n *\n * This is an internal implementation detail. Use the specific tag types (e.g.,\n * {@link Minimum}, {@link Format}, {@link Pattern}) rather than `TagBase`\n * directly.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Props Tag properties defining validation behavior and schema output\n */\nexport type TagBase<Props extends TagBase.IProps<any, any, any, any, any, any>> = {\n    /**\n     * Compile-time marker property for typia transformer.\n     *\n     * This phantom property carries tag metadata in the type system. It is never\n     * assigned at runtime - it exists only for the transformer to read during\n     * compilation.\n     */\n    \"typia.tag\"?: Props;\n};\nexport declare namespace TagBase {\n    /**\n     * Configuration interface for validation tag properties.\n     *\n     * Defines all the metadata a validation tag can specify, including what types\n     * it applies to, how to validate values, and what to output in JSON Schema.\n     *\n     * @template Target Which primitive type(s) this tag can be applied to\n     * @template Kind Unique identifier for this tag type\n     * @template Value The constraint value specified by the user\n     * @template Validate The validation expression to generate\n     * @template Exclusive Whether this tag conflicts with others\n     * @template Schema Additional JSON Schema properties to output\n     */\n    interface IProps<Target extends \"boolean\" | \"bigint\" | \"number\" | \"string\" | \"array\" | \"object\", Kind extends string, Value extends boolean | bigint | number | string | undefined, Validate extends string | {\n        [key in Target]?: string;\n    }, Exclusive extends boolean | string[], Schema extends object | undefined> {\n        /**\n         * Target primitive type(s) this tag applies to.\n         *\n         * The transformer will error if the tag is applied to a property of a\n         * different type. For example, `MinLength` targets `\"string\"` and cannot be\n         * applied to numbers.\n         */\n        target: Target;\n        /**\n         * Unique identifier for this tag type.\n         *\n         * Used internally to identify the constraint kind. Examples: `\"minimum\"`,\n         * `\"maxLength\"`, `\"format\"`, `\"pattern\"`.\n         */\n        kind: Kind;\n        /**\n         * User-configured constraint value.\n         *\n         * The value provided by the user when applying the tag. For `Minimum<5>`,\n         * this would be `5`. For `Format<\"email\">`, this would be `\"email\"`.\n         */\n        value: Value;\n        /**\n         * Validation expression template.\n         *\n         * JavaScript expression string that validates the input value. Use `$input`\n         * as a placeholder for the actual value. The expression is inserted into\n         * the generated validation function.\n         *\n         * Can be a single string or an object mapping target types to different\n         * expressions (for tags supporting multiple types).\n         *\n         * @example\n         *   `\"5 <= $input\"`; // For Minimum<5>\n         *\n         * @example\n         *   `\"$input.length <= 10\"`; // For MaxLength<10>\n         */\n        validate?: Validate;\n        /**\n         * Tag exclusivity configuration.\n         *\n         * Controls which other tags cannot be combined with this one:\n         *\n         * - `true`: No duplicate tags of the same kind allowed\n         * - `string[]`: List of incompatible tag kinds\n         * - `false` (default): No exclusivity restrictions\n         *\n         * For example, `Minimum` and `ExclusiveMinimum` are mutually exclusive -\n         * only one can be applied to a property.\n         *\n         * @default false\n         */\n        exclusive?: Exclusive | string[];\n        /**\n         * Additional JSON Schema properties to output.\n         *\n         * Object containing schema properties to merge into the generated JSON\n         * Schema for the annotated type. For `Minimum<5>`, this would be `{\n         * minimum: 5 }`.\n         */\n        schema?: Schema;\n    }\n}\n",
    "node_modules/@typia/interface/lib/tags/Type.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Numeric precision and bit-width type constraint.\n *\n * `Type<Value>` is a type tag that constrains numeric values to specific\n * bit-width representations. This is essential for Protocol Buffers\n * serialization and ensures values fit within their specified ranges.\n *\n * Available types:\n *\n * - `\"int32\"`: Signed 32-bit integer (-2,147,483,648 to 2,147,483,647)\n * - `\"uint32\"`: Unsigned 32-bit integer (0 to 4,294,967,295)\n * - `\"int64\"`: Signed 64-bit integer (for `number` or `bigint`)\n * - `\"uint64\"`: Unsigned 64-bit integer (for `number` or `bigint`)\n * - `\"float\"`: 32-bit floating point\n * - `\"double\"`: 64-bit floating point (default JavaScript number)\n *\n * For Protocol Buffers, integer types also determine the wire encoding. The\n * constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates appropriate `type` in JSON Schema.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Message {\n *     // 32-bit unsigned integer\n *     id: number & Type<\"uint32\">;\n *     // 64-bit signed integer as bigint\n *     timestamp: bigint & Type<\"int64\">;\n *     // 32-bit float for memory efficiency\n *     score: number & Type<\"float\">;\n *   }\n *\n * @template Value Numeric type identifier\n */\nexport type Type<Value extends \"int32\" | \"uint32\" | \"int64\" | \"uint64\" | \"float\" | \"double\"> = TagBase<{\n    target: Value extends \"int64\" | \"uint64\" ? \"bigint\" | \"number\" : \"number\";\n    kind: \"type\";\n    value: Value;\n    validate: Value extends \"int32\" ? `$importInternal(\"isTypeInt32\")($input)` : Value extends \"uint32\" ? `$importInternal(\"isTypeUint32\")($input)` : Value extends \"int64\" ? {\n        number: `$importInternal(\"isTypeInt64\")($input)`;\n        bigint: `true`;\n    } : Value extends \"uint64\" ? {\n        number: `$importInternal(\"isTypeUint64\")($input)`;\n        bigint: `BigInt(0) <= $input`;\n    } : Value extends \"float\" ? `$importInternal(\"isTypeFloat\")($input)` : `true`;\n    exclusive: true;\n    schema: Value extends \"uint32\" | \"uint64\" ? {\n        type: \"integer\";\n        minimum: 0;\n    } : {\n        type: Value extends \"int32\" | \"uint32\" | \"int64\" | \"uint64\" ? \"integer\" : \"number\";\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/UniqueItems.d.ts": "import { TagBase } from \"./TagBase\";\n/**\n * Array unique elements constraint.\n *\n * `UniqueItems` is a type tag that validates all elements in an array are\n * unique (no duplicates). Apply it to array properties using TypeScript\n * intersection types.\n *\n * Uniqueness is determined by:\n *\n * - **Primitives**: Strict equality (`===`)\n * - **Objects**: Deep structural comparison\n *\n * This constraint is commonly combined with {@link MinItems} and {@link MaxItems}\n * for comprehensive array validation. It's useful for modeling set-like data\n * that must be represented as arrays in JSON.\n *\n * The constraint is enforced at runtime by `typia.is()`, `typia.assert()`, and\n * `typia.validate()`. It generates `uniqueItems: true` in JSON Schema.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n *   interface Preferences {\n *     // No duplicate tags allowed\n *     tags: (string & UniqueItems)[];\n *     // Unique user IDs\n *     favoriteUserIds: (number & UniqueItems)[];\n *   }\n *\n * @template Value Boolean flag, defaults to `true` (enable constraint)\n */\nexport type UniqueItems<Value extends boolean = true> = TagBase<{\n    target: \"array\";\n    kind: \"uniqueItems\";\n    value: Value;\n    validate: Value extends true ? `$importInternal(\"isUniqueItems\")($input)` : undefined;\n    exclusive: true;\n    schema: {\n        uniqueItems: true;\n    };\n}>;\n",
    "node_modules/@typia/interface/lib/tags/index.d.ts": "export * from \"./Constant\";\nexport * from \"./ContentMediaType\";\nexport * from \"./Default\";\nexport * from \"./Example\";\nexport * from \"./Examples\";\nexport * from \"./ExclusiveMaximum\";\nexport * from \"./ExclusiveMinimum\";\nexport * from \"./Format\";\nexport * from \"./JsonSchemaPlugin\";\nexport * from \"./Maximum\";\nexport * from \"./MaxItems\";\nexport * from \"./MaxLength\";\nexport * from \"./Minimum\";\nexport * from \"./MinItems\";\nexport * from \"./MinLength\";\nexport * from \"./MultipleOf\";\nexport * from \"./Pattern\";\nexport * from \"./Sequence\";\nexport * from \"./TagBase\";\nexport * from \"./Type\";\nexport * from \"./UniqueItems\";\n",
    "node_modules/@typia/interface/lib/typings/AssertionGuard.d.ts": "/**\n * Type for assertion guard functions that narrow input type.\n *\n * `AssertionGuard<T>` is a function type that validates input at runtime and\n * asserts it as type `T`. Unlike regular assertions that return the value,\n * assertion guards return void but narrow the input parameter's type.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target type to assert\n * @throws {TypeGuardError} When validation fails\n */\nexport type AssertionGuard<T> = (input: unknown) => asserts input is T;\n",
    "node_modules/@typia/interface/lib/typings/Atomic.d.ts": "/**\n * Atomic (primitive) type utilities for typia's type system.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace Atomic {\n    /** Union of JavaScript primitive value types. */\n    type Type = boolean | number | string | bigint;\n    /** String literal names for atomic types. */\n    type Literal = \"boolean\" | \"integer\" | \"number\" | \"string\" | \"bigint\";\n    /** Maps literal type names to their corresponding value types. */\n    type Mapper = {\n        boolean: boolean;\n        integer: number;\n        number: number;\n        string: string;\n        bigint: bigint;\n    };\n}\n",
    "node_modules/@typia/interface/lib/typings/CamelCase.d.ts": "import { Equal } from \"./internal/Equal\";\nimport { IsTuple } from \"./internal/IsTuple\";\nimport { NativeClass } from \"./internal/NativeClass\";\nimport { ValueOf } from \"./internal/ValueOf\";\n/**\n * Converts all object keys to camelCase.\n *\n * `CamelCase<T>` transforms object property names to camelCase format and\n * erases methods like {@link Resolved}. Recursively processes nested\n * structures.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target type to transform\n */\nexport type CamelCase<T> = Equal<T, CamelizeMain<T>> extends true ? T : CamelizeMain<T>;\ntype CamelizeMain<T> = T extends [never] ? never : T extends {\n    valueOf(): boolean | bigint | number | string;\n} ? ValueOf<T> : T extends Function ? never : T extends object ? CamelizeObject<T> : T;\ntype CamelizeObject<T extends object> = T extends Array<infer U> ? IsTuple<T> extends true ? CamelizeTuple<T> : CamelizeMain<U>[] : T extends Set<infer U> ? Set<CamelizeMain<U>> : T extends Map<infer K, infer V> ? Map<CamelizeMain<K>, CamelizeMain<V>> : T extends WeakSet<any> | WeakMap<any, any> ? never : T extends NativeClass ? T : {\n    [Key in keyof T as CamelizeString<Key & string>]: CamelizeMain<T[Key]>;\n};\ntype CamelizeTuple<T extends readonly any[]> = T extends [] ? [] : T extends [infer F] ? [CamelizeMain<F>] : T extends [infer F, ...infer Rest extends readonly any[]] ? [CamelizeMain<F>, ...CamelizeTuple<Rest>] : T extends [(infer F)?] ? [CamelizeMain<F>?] : T extends [(infer F)?, ...infer Rest extends readonly any[]] ? [CamelizeMain<F>?, ...CamelizeTuple<Rest>] : [];\ntype CamelizeString<Key extends string> = Key extends `_${infer R}` ? `_${CamelizeString<R>}` : Key extends `${infer _F}_${infer _R}` ? CamelizeSnakeString<Key> : Key extends Uppercase<Key> ? Lowercase<Key> : CamelizePascalString<Key>;\ntype CamelizePascalString<Key extends string> = Key extends `${infer F}${infer R}` ? `${Lowercase<F>}${R}` : Key;\ntype CamelizeSnakeString<Key extends string> = Key extends `_${infer R}` ? CamelizeSnakeString<R> : Key extends `${infer F}_${infer M}${infer R}` ? M extends \"_\" ? CamelizeSnakeString<`${F}_${R}`> : `${Lowercase<F>}${Uppercase<M>}${CamelizeSnakeString<R>}` : Lowercase<Key>;\nexport {};\n",
    "node_modules/@typia/interface/lib/typings/ClassProperties.d.ts": "import { OmitNever } from \"./OmitNever\";\n/**\n * Extracts non-function properties from a class type.\n *\n * `ClassProperties<T>` filters out all method properties from a class, keeping\n * only data properties. Useful for serialization where methods should be\n * excluded.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target class type\n */\nexport type ClassProperties<T extends object> = OmitNever<{\n    [K in keyof T]: T[K] extends Function ? never : T[K];\n}>;\n",
    "node_modules/@typia/interface/lib/typings/DeepPartial.d.ts": "/**\n * Recursively makes all properties of a type optional.\n *\n * `DeepPartial<T>` transforms a type by making every property optional at all\n * nesting levels. Unlike TypeScript's built-in `Partial<T>` which only affects\n * the top level, this utility recursively applies optionality to nested objects\n * and arrays.\n *\n * Used primarily in {@link IJsonParseResult.IFailure} to represent partially\n * recovered data from malformed JSON, where some properties may be missing due\n * to parsing errors.\n *\n * Behavior:\n *\n * - **Primitives** (`string`, `number`, `boolean`, `bigint`, `symbol`, `null`,\n *   `undefined`): returned as-is\n * - **Functions**: returned as-is\n * - **Arrays**: element type becomes `DeepPartial<U>`\n * - **Objects**: all properties become optional with `DeepPartial` applied\n *\n * @author Michael - https://github.com/8471919\n * @template T The type to make deeply partial\n */\nexport type DeepPartial<T> = T extends string | number | boolean | bigint | symbol | null | undefined ? T : T extends (...args: unknown[]) => unknown ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends object ? {\n    [P in keyof T]?: DeepPartial<T[P]>;\n} : T;\n",
    "node_modules/@typia/interface/lib/typings/OmitNever.d.ts": "import { SpecialFields } from \"./SpecialFields\";\n/**\n * Omits properties with `never` type from an object type.\n *\n * `OmitNever<T>` removes all properties whose value type is `never`, producing\n * a cleaner type without impossible properties.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target object type\n */\nexport type OmitNever<T extends object> = Omit<T, SpecialFields<T, never>>;\n",
    "node_modules/@typia/interface/lib/typings/PascalCase.d.ts": "import { Equal } from \"./internal/Equal\";\nimport { IsTuple } from \"./internal/IsTuple\";\nimport { NativeClass } from \"./internal/NativeClass\";\nimport { ValueOf } from \"./internal/ValueOf\";\n/**\n * Converts all object keys to PascalCase.\n *\n * `PascalCase<T>` transforms object property names to PascalCase format and\n * erases methods like {@link Resolved}. Recursively processes nested\n * structures.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target type to transform\n */\nexport type PascalCase<T> = Equal<T, PascalizeMain<T>> extends true ? T : PascalizeMain<T>;\ntype PascalizeMain<T> = T extends [never] ? never : T extends {\n    valueOf(): boolean | bigint | number | string;\n} ? ValueOf<T> : T extends Function ? never : T extends object ? PascalizeObject<T> : T;\ntype PascalizeObject<T extends object> = T extends Array<infer U> ? IsTuple<T> extends true ? PascalizeTuple<T> : PascalizeMain<U>[] : T extends Set<infer U> ? Set<PascalizeMain<U>> : T extends Map<infer K, infer V> ? Map<PascalizeMain<K>, PascalizeMain<V>> : T extends WeakSet<any> | WeakMap<any, any> ? never : T extends NativeClass ? T : {\n    [Key in keyof T as PascalizeString<Key & string>]: PascalizeMain<T[Key]>;\n};\ntype PascalizeTuple<T extends readonly any[]> = T extends [] ? [] : T extends [infer F] ? [PascalizeMain<F>] : T extends [infer F, ...infer Rest extends readonly any[]] ? [PascalizeMain<F>, ...PascalizeTuple<Rest>] : T extends [(infer F)?] ? [PascalizeMain<F>?] : T extends [(infer F)?, ...infer Rest extends readonly any[]] ? [PascalizeMain<F>?, ...PascalizeTuple<Rest>] : [];\ntype PascalizeString<Key extends string> = Key extends `_${infer R}` ? `_${PascalizeString<R>}` : Key extends `${infer _F}_${infer _R}` ? PascalizeSnakeString<Key> : Capitalize<Key>;\ntype PascalizeSnakeString<Key extends string> = Key extends `_${infer R}` ? PascalizeSnakeString<R> : Key extends `${infer F}${infer M}_${infer R}` ? `${Uppercase<F>}${Lowercase<M>}${PascalizeSnakeString<R>}` : Key extends `${infer F}${infer R}` ? `${Uppercase<F>}${Lowercase<R>}` : Key;\nexport {};\n",
    "node_modules/@typia/interface/lib/typings/Primitive.d.ts": "import { Format } from \"../tags/Format\";\nimport { Equal } from \"./internal/Equal\";\nimport { IsTuple } from \"./internal/IsTuple\";\nimport { NativeClass } from \"./internal/NativeClass\";\nimport { ValueOf } from \"./internal/ValueOf\";\n/**\n * Converts a type to its JSON-serializable primitive form.\n *\n * `Primitive<T>` transforms types for JSON serialization: boxed primitives\n * become primitives (Boolean→boolean), classes become plain objects with\n * methods removed, Date becomes `string & Format<\"date-time\">`, and types with\n * `toJSON()` use their return type. Native classes (except Date) and bigint\n * become `never` as they're not JSON-serializable.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @author Kyungsu Kang - https://github.com/kakasoo\n * @author Michael - https://github.com/8471919\n * @template T Target type to convert\n */\nexport type Primitive<T> = Equal<T, PrimitiveMain<T>> extends true ? T : PrimitiveMain<T>;\ntype PrimitiveMain<Instance> = Instance extends [never] ? never : ValueOf<Instance> extends bigint ? never : ValueOf<Instance> extends boolean | number | string ? ValueOf<Instance> : Instance extends Function ? never : ValueOf<Instance> extends object ? Instance extends object ? Instance extends Date ? string & Format<\"date-time\"> : Instance extends IJsonable<infer Raw> ? ValueOf<Raw> extends object ? Raw extends object ? PrimitiveObject<Raw> : never : ValueOf<Raw> : Instance extends Exclude<NativeClass, Date> ? never : PrimitiveObject<Instance> : never : ValueOf<Instance>;\ntype PrimitiveObject<Instance extends object> = Instance extends Array<infer T> ? IsTuple<Instance> extends true ? PrimitiveTuple<Instance> : PrimitiveMain<T>[] : {\n    [P in keyof Instance]: PrimitiveMain<Instance[P]>;\n};\ntype PrimitiveTuple<T extends readonly any[]> = T extends [] ? [] : T extends [infer F] ? [PrimitiveMain<F>] : T extends [infer F, ...infer Rest extends readonly any[]] ? [PrimitiveMain<F>, ...PrimitiveTuple<Rest>] : T extends [(infer F)?] ? [PrimitiveMain<F>?] : T extends [(infer F)?, ...infer Rest extends readonly any[]] ? [PrimitiveMain<F>?, ...PrimitiveTuple<Rest>] : [];\ninterface IJsonable<T> {\n    toJSON(): T;\n}\nexport {};\n",
    "node_modules/@typia/interface/lib/typings/ProtobufAtomic.d.ts": "/**\n * Protocol Buffers atomic (scalar) type names.\n *\n * Union of all primitive type identifiers used in Protocol Buffers wire format\n * encoding/decoding.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport type ProtobufAtomic = \"bool\" | \"int32\" | \"uint32\" | \"int64\" | \"uint64\" | \"float\" | \"double\" | \"string\";\nexport declare namespace ProtobufAtomic {\n    /** Numeric protobuf types (integers and floats). */\n    type Numeric = \"int32\" | \"uint32\" | \"int64\" | \"uint64\" | \"float\" | \"double\";\n    /** 64-bit integer types that map to JavaScript `bigint`. */\n    type BigNumeric = \"int64\" | \"uint64\";\n}\n",
    "node_modules/@typia/interface/lib/typings/Resolved.d.ts": "import { Equal } from \"./internal/Equal\";\nimport { IsTuple } from \"./internal/IsTuple\";\nimport { NativeClass } from \"./internal/NativeClass\";\nimport { ValueOf } from \"./internal/ValueOf\";\n/**\n * Converts a type to its resolved form by erasing all methods.\n *\n * `Resolved<T>` transforms classes to plain objects, extracts primitive values\n * from boxed types (Boolean→boolean, Number→number, String→string), and\n * recursively processes nested structures. Native classes (Date, Set, Map,\n * etc.) are preserved unchanged.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @author Kyungsu Kang - https://github.com/kakasoo\n * @template T Target type to resolve\n */\nexport type Resolved<T> = Equal<T, ResolvedMain<T>> extends true ? T : ResolvedMain<T>;\ntype ResolvedMain<T> = T extends [never] ? never : ValueOf<T> extends boolean | number | bigint | string ? ValueOf<T> : T extends Function ? never : T extends object ? ResolvedObject<T> : ValueOf<T>;\ntype ResolvedObject<T extends object> = T extends Array<infer U> ? IsTuple<T> extends true ? ResolvedTuple<T> : ResolvedMain<U>[] : T extends Set<infer U> ? Set<ResolvedMain<U>> : T extends Map<infer K, infer V> ? Map<ResolvedMain<K>, ResolvedMain<V>> : T extends WeakSet<any> | WeakMap<any, any> ? never : T extends NativeClass ? T : {\n    [P in keyof T]: ResolvedMain<T[P]>;\n};\ntype ResolvedTuple<T extends readonly any[]> = T extends [] ? [] : T extends [infer F] ? [ResolvedMain<F>] : T extends [infer F, ...infer Rest extends readonly any[]] ? [ResolvedMain<F>, ...ResolvedTuple<Rest>] : T extends [(infer F)?] ? [ResolvedMain<F>?] : T extends [(infer F)?, ...infer Rest extends readonly any[]] ? [ResolvedMain<F>?, ...ResolvedTuple<Rest>] : [];\nexport {};\n",
    "node_modules/@typia/interface/lib/typings/SnakeCase.d.ts": "import { Equal } from \"./internal/Equal\";\nimport { NativeClass } from \"./internal/NativeClass\";\nimport { ValueOf } from \"./internal/ValueOf\";\n/**\n * Converts all object keys to snake_case.\n *\n * `SnakeCase<T>` transforms object property names to snake_case format and\n * erases methods like {@link Resolved}. Recursively processes nested\n * structures.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Target type to transform\n */\nexport type SnakeCase<T> = Equal<T, SnakageMain<T>> extends true ? T : SnakageMain<T>;\ntype SnakageMain<T> = T extends [never] ? never : T extends {\n    valueOf(): boolean | bigint | number | string;\n} ? ValueOf<T> : T extends Function ? never : T extends object ? SnakageObject<T> : T;\ntype SnakageObject<T extends object> = T extends Array<infer U> ? IsTuple<T> extends true ? SnakageTuple<T> : SnakageMain<U>[] : T extends Set<infer U> ? Set<SnakageMain<U>> : T extends Map<infer K, infer V> ? Map<SnakageMain<K>, SnakageMain<V>> : T extends WeakSet<any> | WeakMap<any, any> ? never : T extends NativeClass ? T : {\n    [Key in keyof T as SnakageString<Key & string>]: SnakageMain<T[Key]>;\n};\ntype IsTuple<T extends readonly any[] | {\n    length: number;\n}> = [T] extends [\n    never\n] ? false : T extends readonly any[] ? number extends T[\"length\"] ? false : true : false;\ntype SnakageTuple<T extends readonly any[]> = T extends [] ? [] : T extends [infer F] ? [SnakageMain<F>] : T extends [infer F, ...infer Rest extends readonly any[]] ? [SnakageMain<F>, ...SnakageTuple<Rest>] : T extends [(infer F)?] ? [SnakageMain<F>?] : T extends [(infer F)?, ...infer Rest extends readonly any[]] ? [SnakageMain<F>?, ...SnakageTuple<Rest>] : [];\ntype SnakageString<Key extends string> = Key extends `${infer _}` ? SnakageStringRepeatedly<Key, \"\"> : Key;\ntype SnakageStringRepeatedly<S extends string, Previous extends string> = S extends `${infer First}${infer Second}${infer Rest}` ? `${Underscore<Previous, First>}${Lowercase<First>}${Underscore<First, Second>}${Lowercase<Second>}${SnakageStringRepeatedly<Rest, Second>}` : S extends `${infer First}` ? `${Underscore<Previous, First>}${Lowercase<First>}` : \"\";\ntype Underscore<First extends string, Second extends string> = First extends UpperAlphabetic | \"\" | \"_\" ? \"\" : Second extends UpperAlphabetic ? \"_\" : \"\";\ntype UpperAlphabetic = \"A\" | \"B\" | \"C\" | \"D\" | \"E\" | \"F\" | \"G\" | \"H\" | \"I\" | \"J\" | \"K\" | \"L\" | \"M\" | \"N\" | \"O\" | \"P\" | \"Q\" | \"R\" | \"S\" | \"T\" | \"U\" | \"V\" | \"W\" | \"X\" | \"Y\" | \"Z\";\nexport {};\n",
    "node_modules/@typia/interface/lib/typings/SpecialFields.d.ts": "/**\n * Extracts property keys whose value type extends the target type.\n *\n * `SpecialFields<Instance, Target>` returns a union of property names from\n * `Instance` where the property value extends `Target`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template Instance Source object type\n * @template Target Target value type to match\n */\nexport type SpecialFields<Instance extends object, Target> = {\n    [P in keyof Instance]: Instance[P] extends Target ? P : never;\n}[keyof Instance & string];\n",
    "node_modules/@typia/interface/lib/typings/ValidationPipe.d.ts": "/**\n * Discriminated union for validation results.\n *\n * `ValidationPipe<T, E>` represents either a successful validation with data of\n * type `T`, or a failed validation with an array of errors of type `E`. Use the\n * `success` discriminant to narrow the type.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @template T Success data type\n * @template E Error type\n */\nexport type ValidationPipe<T, E> = {\n    success: true;\n    data: T;\n} | {\n    success: false;\n    errors: E[];\n};\n",
    "node_modules/@typia/interface/lib/typings/index.d.ts": "export * from \"./AssertionGuard\";\nexport * from \"./CamelCase\";\nexport * from \"./PascalCase\";\nexport * from \"./Primitive\";\nexport * from \"./Resolved\";\nexport * from \"./SnakeCase\";\nexport * from \"./Atomic\";\nexport * from \"./ClassProperties\";\nexport * from \"./DeepPartial\";\nexport * from \"./OmitNever\";\nexport * from \"./ProtobufAtomic\";\nexport * from \"./SpecialFields\";\nexport * from \"./ValidationPipe\";\n",
    "node_modules/@typia/interface/lib/typings/internal/Equal.d.ts": "/**\n * Checks if two types are exactly equal.\n *\n * `Equal<X, Y>` returns `true` if types X and Y are identical, `false`\n * otherwise. Works with any TypeScript types including unions.\n *\n * @author Kyungsu Kang - https://github.com/kakasoo\n * @template X First type to compare\n * @template Y Second type to compare\n */\nexport type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y ? 1 : 2 ? true : false;\n",
    "node_modules/@typia/interface/lib/typings/internal/IsTuple.d.ts": "/**\n * Checks if an array type is a tuple (fixed length) or regular array.\n *\n * Returns `true` for tuple types like `[string, number]` where length is fixed,\n * and `false` for array types like `string[]` where length is variable.\n *\n * @template T Array or tuple type to check\n */\nexport type IsTuple<T extends readonly any[] | {\n    length: number;\n}> = [\n    T\n] extends [never] ? false : T extends readonly any[] ? number extends T[\"length\"] ? false : true : false;\n",
    "node_modules/@typia/interface/lib/typings/internal/NativeClass.d.ts": "/**\n * Union of JavaScript built-in class types.\n *\n * `NativeClass` includes Date, collections (Set, Map, WeakSet, WeakMap), typed\n * arrays (Uint8Array, Int32Array, etc.), binary data types (ArrayBuffer,\n * DataView, Blob, File), and RegExp. These types receive special handling in\n * typia's serialization and validation.\n */\nexport type NativeClass = Date | Set<any> | Map<any, any> | WeakSet<any> | WeakMap<any, any> | Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | BigUint64Array | Int8Array | Int16Array | Int32Array | BigInt64Array | Float32Array | Float64Array | ArrayBuffer | SharedArrayBuffer | DataView | Blob | File | RegExp;\n",
    "node_modules/@typia/interface/lib/typings/internal/ValueOf.d.ts": "/**\n * Extracts the primitive value type from boxed primitives.\n *\n * `ValueOf<Instance>` converts boxed primitive types (Boolean, Number, String)\n * to their primitive equivalents (boolean, number, string). Non-boxed types are\n * returned unchanged.\n *\n * @template Instance Type to extract primitive from\n */\nexport type ValueOf<Instance> = IsValueOf<Instance, Boolean> extends true ? boolean : IsValueOf<Instance, Number> extends true ? number : IsValueOf<Instance, String> extends true ? string : Instance;\ntype IsValueOf<Instance, Object extends IValueOf<any>> = Instance extends Object ? Object extends IValueOf<infer Primitive> ? Instance extends Primitive ? false : true : false : false;\ninterface IValueOf<T> {\n    valueOf(): T;\n}\nexport {};\n",
    "node_modules/@typia/interface/lib/utils/IRandomGenerator.d.ts": "import { OpenApi } from \"../openapi/OpenApi\";\n/**\n * Random value generator interface for typia.\n *\n * `IRandomGenerator` defines methods for generating random values of various\n * types. Used by `typia.random<T>()` for mock data generation.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IRandomGenerator {\n    /** Generates a random boolean. */\n    boolean(): boolean | undefined;\n    /** Generates a random number within schema constraints. */\n    number(schema: OpenApi.IJsonSchema.INumber): number;\n    /** Generates a random integer within schema constraints. */\n    integer(schema: OpenApi.IJsonSchema.IInteger): number;\n    /** Generates a random bigint within schema constraints. */\n    bigint(schema: OpenApi.IJsonSchema.IInteger): bigint;\n    /** Generates a random string within schema constraints. */\n    string(schema: OpenApi.IJsonSchema.IString): string;\n    /** Generates a random array with elements from the generator function. */\n    array<T>(schema: Omit<OpenApi.IJsonSchema.IArray, \"items\"> & {\n        element: (index: number, count: number) => T;\n    }): T[];\n    /** Generates a random string matching the regex pattern. */\n    pattern(regex: RegExp): string;\n    byte(): string;\n    password(): string;\n    regex(): string;\n    uuid(): string;\n    email(): string;\n    hostname(): string;\n    idnEmail(): string;\n    idnHostname(): string;\n    iri(): string;\n    iriReference(): string;\n    ipv4(): string;\n    ipv6(): string;\n    uri(): string;\n    uriReference(): string;\n    uriTemplate(): string;\n    url(): string;\n    datetime(props?: {\n        minimum?: number;\n        maximum?: number;\n    }): string;\n    date(props?: {\n        minimum?: number;\n        maximum?: number;\n    }): string;\n    time(): string;\n    duration(): string;\n    jsonPointer(): string;\n    relativeJsonPointer(): string;\n}\nexport declare namespace IRandomGenerator {\n    /** Custom generators for specific schema properties. */\n    interface CustomMap {\n        string?: (schema: OpenApi.IJsonSchema.IString & Record<string, any>) => string;\n        number?: (schema: OpenApi.IJsonSchema.INumber & Record<string, any>) => number;\n        integer?: (schema: OpenApi.IJsonSchema.IInteger & Record<string, any>) => number;\n        bigint?: (schema: OpenApi.IJsonSchema.IInteger & Record<string, any>) => bigint;\n        boolean?: (schema: Record<string, any>) => boolean | undefined;\n        array?: <T>(schema: Omit<OpenApi.IJsonSchema.IArray, \"items\"> & {\n            element: (index: number, count: number) => T;\n        } & Record<string, any>) => T[];\n    }\n}\n",
    "node_modules/@typia/interface/lib/utils/IReadableURLSearchParams.d.ts": "/**\n * Minimal interface for reading URL query parameters.\n *\n * `IReadableURLSearchParams` is a subset of the standard {@link URLSearchParams}\n * interface, containing only the read operations needed for query parameter\n * parsing. This interface was designed specifically for compatibility with the\n * [Hono.js](https://hono.dev/) web framework, which provides its own query\n * parameter implementation.\n *\n * The interface exposes:\n *\n * - {@link URLSearchParams.size | size}: Number of parameters\n * - {@link URLSearchParams.get | get}: Retrieve first value for a key\n * - {@link URLSearchParams.getAll | getAll}: Retrieve all values for a key\n *\n * Use this interface when implementing query parameter handling that needs to\n * work with both standard `URLSearchParams` and framework-specific\n * implementations.\n *\n * @author https://github.com/miyaji255\n */\nexport type IReadableURLSearchParams = Pick<URLSearchParams, \"size\" | \"get\" | \"getAll\">;\n",
    "node_modules/@typia/interface/lib/utils/index.d.ts": "export * from \"./IRandomGenerator\";\nexport * from \"./IReadableURLSearchParams\";\n",
    "node_modules/@typia/interface/package.json": "{\n  \"name\": \"@typia/interface\",\n  \"version\": \"12.0.1\",\n  \"description\": \"Superfast runtime validators with only one line\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/typia\"\n  },\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/typia/issues\"\n  },\n  \"homepage\": \"https://typia.io\",\n  \"devDependencies\": {\n    \"rimraf\": \"^6.1.2\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"README.md\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"keywords\": [\n    \"fast\",\n    \"json\",\n    \"stringify\",\n    \"typescript\",\n    \"transform\",\n    \"ajv\",\n    \"io-ts\",\n    \"zod\",\n    \"schema\",\n    \"json-schema\",\n    \"generator\",\n    \"assert\",\n    \"clone\",\n    \"is\",\n    \"validate\",\n    \"equal\",\n    \"runtime\",\n    \"type\",\n    \"typebox\",\n    \"checker\",\n    \"validator\",\n    \"safe\",\n    \"parse\",\n    \"prune\",\n    \"random\",\n    \"protobuf\",\n    \"llm\",\n    \"llm-function-calling\",\n    \"structured-output\",\n    \"openai\",\n    \"chatgpt\",\n    \"claude\",\n    \"gemini\",\n    \"llama\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/@typia/transform/lib/CallExpressionTransformer.d.ts": "import { ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\n/**\n * Transforms `typia.*` function call expressions.\n *\n * Routes typia function calls (e.g., `typia.is<T>()`, `typia.assert<T>()`) to\n * their corresponding transformers. Identifies calls by resolving the\n * declaration signature and matching against registered functor map.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace CallExpressionTransformer {\n    const transform: (props: {\n        context: ITypiaContext;\n        expression: ts.CallExpression;\n    }) => ts.Expression | null;\n}\n",
    "node_modules/@typia/transform/lib/FileTransformer.d.ts": "import { ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\n/**\n * TypeScript source file transformer for typia.\n *\n * Entry point for typia's compile-time transformation. Traverses AST nodes,\n * transforms `typia.*` function calls into optimized runtime code, and injects\n * required imports. Skips declaration files.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace FileTransformer {\n    const transform: (environments: Omit<ITypiaContext, \"transformer\" | \"importer\">) => (transformer: ts.TransformationContext) => (file: ts.SourceFile) => ts.SourceFile;\n}\n",
    "node_modules/@typia/transform/lib/ITransformProps.d.ts": "import { ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\n/**\n * Properties for individual typia function transformation.\n *\n * Passed to each transformer handler when processing a `typia.*()` call.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITransformProps {\n    /** Typia transformation context with type checker and utilities. */\n    context: ITypiaContext;\n    /** Module expression (e.g., `typia` in `typia.is<T>()`). */\n    modulo: ts.LeftHandSideExpression;\n    /** The original `typia.*<T>()` call expression being transformed. */\n    expression: ts.CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/ImportTransformer.d.ts": "import ts from \"typescript\";\n/**\n * Transforms import paths for typia build output.\n *\n * Rewrites relative import paths when building typia packages. Also removes\n * unused typia imports that only contained transformable function calls (since\n * those are replaced at compile time).\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace ImportTransformer {\n    const transform: (props: {\n        from: string;\n        to: string;\n    }) => (context: ts.TransformationContext) => (file: ts.SourceFile) => ts.SourceFile;\n}\n",
    "node_modules/@typia/transform/lib/NodeTransformer.d.ts": "import { ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\n/**\n * TypeScript AST node transformer.\n *\n * Delegates call expression nodes to {@link CallExpressionTransformer} for\n * potential `typia.*` function transformation. Non-call nodes pass through.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace NodeTransformer {\n    const transform: (props: {\n        context: ITypiaContext;\n        node: ts.Node;\n    }) => ts.Node | null;\n}\n",
    "node_modules/@typia/transform/lib/TransformerError.d.ts": "import { MetadataFactory } from \"@typia/core\";\n/**\n * Error thrown during typia transformation.\n *\n * `TransformerError` is thrown when `typia.*<T>()` receives unsupported types\n * or invalid configurations at compile time. The error message details which\n * types failed and why.\n *\n * Common causes:\n *\n * - Tuples in LLM schema (not supported by most LLMs)\n * - Recursive types without `$ref` support\n * - `any` types without explicit handling\n * - Native classes not serializable to JSON\n *\n * Use {@link from} to create from {@link MetadataFactory.IError} instances.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TransformerError extends Error {\n    /** Error code identifying the error type. */\n    readonly code: string;\n    constructor(props: TransformerError.IProps);\n}\nexport declare namespace TransformerError {\n    /** Constructor properties for TransformerError. */\n    interface IProps {\n        /** Error code identifying the error type. */\n        code: string;\n        /** Human-readable error message. */\n        message: string;\n    }\n    /**\n     * Create error from metadata factory errors.\n     *\n     * Formats multiple type errors into a single TransformerError.\n     */\n    const from: (props: {\n        code: string;\n        errors: MetadataFactory.IError[];\n    }) => TransformerError;\n}\n",
    "node_modules/@typia/transform/lib/TypiaGenerator.d.ts": "export declare namespace TypiaGenerator {\n    interface ILocation {\n        input: string;\n        output: string;\n        project: string;\n    }\n    const build: (location: TypiaGenerator.ILocation) => Promise<void>;\n}\n",
    "node_modules/@typia/transform/lib/features/AssertTransformer.d.ts": "import { AssertProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace AssertTransformer {\n    const transform: (config: AssertProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/CreateAssertTransformer.d.ts": "import { AssertProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace CreateAssertTransformer {\n    const transform: (config: AssertProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/CreateIsTransformer.d.ts": "import { IsProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace CreateIsTransformer {\n    const transform: (config: IsProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/CreateRandomTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace CreateRandomTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/CreateValidateTransformer.d.ts": "import { ValidateProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace CreateValidateTransformer {\n    const transform: (config: ValidateProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/IsTransformer.d.ts": "import { IsProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace IsTransformer {\n    const transform: (config: IsProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/RandomTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace RandomTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/ValidateTransformer.d.ts": "import { ValidateProgrammer } from \"@typia/core\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace ValidateTransformer {\n    const transform: (config: ValidateProgrammer.IConfig) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/functional/FunctionalGenericTransformer.d.ts": "import { ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace FunctionalGenericTransformer {\n    interface IConfig {\n        equals: boolean;\n    }\n    interface ISpecification {\n        method: string;\n        config: IConfig;\n        programmer: (p: {\n            context: ITypiaContext;\n            modulo: ts.LeftHandSideExpression;\n            expression: ts.Expression;\n            declaration: ts.FunctionDeclaration;\n            config: IConfig;\n            init?: ts.Expression;\n        }) => ts.Expression;\n    }\n    const transform: (spec: ISpecification) => (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpAssertFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpAssertFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpAssertHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpAssertHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpAssertQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpAssertQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpIsFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpIsFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpIsHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpIsHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpIsQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpIsQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpParameterTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpParameterTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpValidateFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpValidateFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpValidateHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpValidateHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/CreateHttpValidateQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace CreateHttpValidateQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpAssertFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpAssertFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpAssertHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpAssertHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpAssertQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpAssertQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpIsFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpIsFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpIsHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpIsHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpIsQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpIsQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpParameterTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpParameterTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpValidateFormDataTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpValidateFormDataTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpValidateHeadersTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpValidateHeadersTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/http/HttpValidateQueryTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace HttpValidateQueryTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonApplicationTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonApplicationTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonAssertParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonAssertParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonAssertStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonAssertStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateAssertParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateAssertParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateAssertStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateAssertStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateIsParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateIsParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateIsStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateIsStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateValidateParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateValidateParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonCreateValidateStringifyProgrammer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonCreateValidateStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonIsParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonIsParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonIsStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonIsStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonSchemaTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonSchemaTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonSchemasTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonSchemasTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonValidateParseTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonValidateParseTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/json/JsonValidateStringifyTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace JsonValidateStringifyTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmApplicationTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmApplicationTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmCoerceTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmCoerceTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmControllerTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmControllerTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmCreateCoerceTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmCreateCoerceTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmCreateParseTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmCreateParseTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmParametersTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmParametersTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmParseTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmParseTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmSchemaTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmSchemaTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/llm/LlmStructuredOutputTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace LlmStructuredOutputTransformer {\n    const transform: (props: ITransformProps) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscAssertCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscAssertCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscAssertPruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscAssertPruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateAssertCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateAssertCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateAssertPruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateAssertPruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateIsCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateIsCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateIsPruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateIsPruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreatePruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreatePruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateValidateCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateValidateCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscCreateValidatePruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscCreateValidatePruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscIsCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscIsCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscIsPruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscIsPruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscLiteralsTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscLiteralsTransformer {\n    const transform: (props: Omit<ITransformProps, \"modulo\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscPruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscPruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscValidateCloneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscValidateCloneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/misc/MiscValidatePruneTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace MiscValidatePruneTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationAssertGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationAssertGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationCreateAssertGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationCreateAssertGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationCreateGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationCreateGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationCreateIsGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationCreateIsGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationCreateValidateGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationCreateValidateGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationIsGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationIsGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/notations/NotationValidateGeneralTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace NotationValidateGeneralTransformer {\n    const transform: (rename: (str: string) => string) => (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufAssertDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufAssertDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufAssertEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufAssertEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateAssertDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateAssertDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateAssertEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateAssertEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateIsDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateIsDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateIsEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateIsEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateValidateDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateValidateDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufCreateValidateEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufCreateValidateEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").Expression | import(\"typescript\").ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufIsDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufIsDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufIsEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufIsEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufMessageTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufMessageTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufValidateDecodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufValidateDecodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/protobuf/ProtobufValidateEncodeTransformer.d.ts": "import { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ProtobufValidateEncodeTransformer {\n    const transform: (props: ITransformProps) => import(\"typescript\").CallExpression;\n}\n",
    "node_modules/@typia/transform/lib/features/reflect/ReflectMetadataTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ReflectMetadataTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/reflect/ReflectNameTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ReflectNameTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/reflect/ReflectSchemaTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ReflectSchemaTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/features/reflect/ReflectSchemasTransformer.d.ts": "import ts from \"typescript\";\nimport { ITransformProps } from \"../../ITransformProps\";\nexport declare namespace ReflectSchemasTransformer {\n    const transform: (props: Pick<ITransformProps, \"context\" | \"expression\">) => ts.Expression;\n}\n",
    "node_modules/@typia/transform/lib/index.d.ts": "import { transform } from \"./transform\";\nexport default transform;\nexport * from \"./ImportTransformer\";\nexport * from \"./TypiaGenerator\";\nexport * from \"./transform\";\n",
    "node_modules/@typia/transform/lib/internal/GenericTransformer.d.ts": "import { IProgrammerProps } from \"@typia/core\";\nimport ts from \"typescript\";\nimport { ITransformProps } from \"../ITransformProps\";\nexport declare namespace GenericTransformer {\n    interface IProps extends ITransformProps {\n        method: string;\n        write: (props: IProgrammerProps) => ts.Expression | ts.ArrowFunction;\n    }\n    const scalar: (props: IProps) => ts.CallExpression;\n    const factory: (props: IProps) => ts.Expression | ts.ArrowFunction;\n}\n",
    "node_modules/@typia/transform/lib/transform.d.ts": "import { ITransformOptions, ITypiaContext } from \"@typia/core\";\nimport ts from \"typescript\";\n/**\n * TypeScript transformer for typia runtime code generation.\n *\n * `transform` is the entry point for typia's compile-time transformation. It\n * converts `typia.*<T>()` function calls (e.g., `typia.is<User>(data)`) into\n * optimized runtime validation, serialization, or transformation code.\n *\n * The transformer analyzes the generic type parameter `T` at compile time and\n * generates specialized code that performs type checking without runtime\n * reflection. This approach provides both type safety and high performance.\n *\n * **Requirements:**\n *\n * - TypeScript's `strictNullChecks` or `strict` compiler option must be enabled\n * - The transformer must be configured in `tsconfig.json` via ts-patch or\n *   ttypescript\n *\n * **Configuration example (tsconfig.json):**\n *\n * ```json\n * {\n *   \"compilerOptions\": {\n *     \"strict\": true,\n *     \"plugins\": [{ \"transform\": \"typia/lib/transform\" }]\n *   }\n * }\n * ```\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @param program TypeScript program instance from the compiler\n * @param options Optional transformer configuration (finite, numeric,\n *   functional, undefined)\n * @param extras Diagnostic utilities for error reporting during transformation\n * @returns Transformer factory that processes source files\n */\nexport declare const transform: (program: ts.Program, options: ITransformOptions | undefined, extras: ITypiaContext[\"extras\"]) => ts.TransformerFactory<ts.SourceFile>;\n",
    "node_modules/@typia/transform/package.json": "{\n  \"name\": \"@typia/transform\",\n  \"version\": \"12.0.1\",\n  \"description\": \"Superfast runtime validators with only one line\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"import\": \"./lib/index.mjs\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/typia\"\n  },\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/typia/issues\"\n  },\n  \"homepage\": \"https://typia.io\",\n  \"dependencies\": {\n    \"@typia/interface\": \"^12.0.1\",\n    \"@typia/utils\": \"^12.0.1\",\n    \"@typia/core\": \"^12.0.1\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-commonjs\": \"^29.0.0\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.3\",\n    \"@rollup/plugin-typescript\": \"^12.3.0\",\n    \"@types/node\": \"^25.3.0\",\n    \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.6.3\",\n    \"rimraf\": \"^6.1.2\",\n    \"rollup\": \"^4.56.0\",\n    \"rollup-plugin-auto-external\": \"^2.0.0\",\n    \"rollup-plugin-node-externals\": \"^8.1.2\",\n    \"tinyglobby\": \"^0.2.12\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"README.md\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"keywords\": [\n    \"fast\",\n    \"json\",\n    \"stringify\",\n    \"typescript\",\n    \"transform\",\n    \"ajv\",\n    \"io-ts\",\n    \"zod\",\n    \"schema\",\n    \"json-schema\",\n    \"generator\",\n    \"assert\",\n    \"clone\",\n    \"is\",\n    \"validate\",\n    \"equal\",\n    \"runtime\",\n    \"type\",\n    \"typebox\",\n    \"checker\",\n    \"validator\",\n    \"safe\",\n    \"parse\",\n    \"prune\",\n    \"random\",\n    \"protobuf\",\n    \"llm\",\n    \"llm-function-calling\",\n    \"structured-output\",\n    \"openai\",\n    \"chatgpt\",\n    \"claude\",\n    \"gemini\",\n    \"llama\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc && rollup -c\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"module\": \"lib/index.mjs\",\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/@typia/utils/lib/converters/LlmSchemaConverter.d.ts": "import { IJsonSchemaTransformError, ILlmSchema, IResult, OpenApi } from \"@typia/interface\";\n/**\n * OpenAPI to LLM schema converter.\n *\n * `LlmSchemaConverter` converts OpenAPI JSON schemas to LLM-compatible\n * {@link ILlmSchema} format. LLMs don't fully support JSON Schema, so this\n * simplifies schemas by removing unsupported features (tuples, `const`, mixed\n * unions).\n *\n * Main functions:\n *\n * - {@link parameters}: Convert object schema to {@link ILlmSchema.IParameters}\n * - {@link schema}: Convert any schema to {@link ILlmSchema}\n * - {@link invert}: Extract constraints from description back to schema\n *\n * Configuration options ({@link ILlmSchema.IConfig}):\n *\n * - `strict`: OpenAI structured output mode (all properties required)\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace LlmSchemaConverter {\n    /**\n     * Get configuration with defaults applied.\n     *\n     * @param config Partial configuration\n     * @returns Full configuration with defaults\n     */\n    const getConfig: (config?: Partial<ILlmSchema.IConfig> | undefined) => ILlmSchema.IConfig;\n    /**\n     * Convert OpenAPI object schema to LLM parameters schema.\n     *\n     * @param props.config Conversion configuration\n     * @param props.components OpenAPI components for reference resolution\n     * @param props.schema Object or reference schema to convert\n     * @param props.accessor Error path accessor\n     * @param props.refAccessor Reference path accessor\n     * @returns Converted parameters or error\n     */\n    const parameters: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema.IObject | OpenApi.IJsonSchema.IReference;\n        accessor?: string;\n        refAccessor?: string;\n    }) => IResult<ILlmSchema.IParameters, IJsonSchemaTransformError>;\n    /**\n     * Convert OpenAPI schema to LLM schema.\n     *\n     * @param props.config Conversion configuration\n     * @param props.components OpenAPI components for reference resolution\n     * @param props.$defs Definition store (mutated with referenced types)\n     * @param props.schema Schema to convert\n     * @param props.accessor Error path accessor\n     * @param props.refAccessor Reference path accessor\n     * @returns Converted schema or error\n     */\n    const schema: (props: {\n        config?: Partial<ILlmSchema.IConfig>;\n        components: OpenApi.IComponents;\n        $defs: Record<string, ILlmSchema>;\n        schema: OpenApi.IJsonSchema;\n        accessor?: string;\n        refAccessor?: string;\n    }) => IResult<ILlmSchema, IJsonSchemaTransformError>;\n    /**\n     * Convert LLM schema back to OpenAPI schema.\n     *\n     * Restores constraint information from description tags and converts `$defs`\n     * references to `#/components/schemas`.\n     *\n     * @param props.components Target components (mutated with definitions)\n     * @param props.schema LLM schema to invert\n     * @param props.$defs LLM schema definitions\n     * @returns OpenAPI JSON schema\n     */\n    const invert: (props: {\n        components: OpenApi.IComponents;\n        schema: ILlmSchema;\n        $defs: Record<string, ILlmSchema>;\n    }) => OpenApi.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/OpenApiConverter.d.ts": "import { OpenApi, OpenApiV3, OpenApiV3_1, OpenApiV3_2, SwaggerV2 } from \"@typia/interface\";\n/**\n * OpenAPI version converter.\n *\n * `OpenApiConverter` converts between different OpenAPI specification versions:\n * Swagger v2.0, OpenAPI v3.0, OpenAPI v3.1, OpenAPI v3.2, and typia's emended\n * {@link OpenApi} format. Also converts individual components (schemas,\n * operations, paths).\n *\n * Upgrade path (to emended v3.2):\n *\n * - Swagger v2.0 → emended v3.2\n * - OpenAPI v3.0 → emended v3.2\n * - OpenAPI v3.1 → emended v3.2\n * - OpenAPI v3.2 → emended v3.2\n *\n * Downgrade path (from emended v3.2):\n *\n * - Emended v3.2 → Swagger v2.0\n * - Emended v3.2 → OpenAPI v3.0\n * - Emended v3.2 → OpenAPI v3.1\n *\n * The emended format normalizes ambiguous expressions: dereferences `$ref`,\n * merges `allOf`, converts `nullable` to union types, etc.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiConverter {\n    /**\n     * Upgrade document to typia's emended OpenAPI v3.2 format.\n     *\n     * @param document Source document (Swagger v2.0, OpenAPI v3.0/v3.1/v3.2)\n     * @returns Emended OpenAPI v3.2 document\n     */\n    function upgradeDocument(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApiV3_2.IDocument | OpenApi.IDocument): OpenApi.IDocument;\n    /**\n     * Downgrade document to Swagger v2.0 format.\n     *\n     * @param document Source emended OpenAPI document\n     * @param version Target version \"2.0\"\n     * @returns Swagger v2.0 document\n     */\n    function downgradeDocument(document: OpenApi.IDocument, version: \"2.0\"): SwaggerV2.IDocument;\n    /**\n     * Downgrade document to OpenAPI v3.0 format.\n     *\n     * @param document Source emended OpenAPI document\n     * @param version Target version \"3.0\"\n     * @returns OpenAPI v3.0 document\n     */\n    function downgradeDocument(document: OpenApi.IDocument, version: \"3.0\"): OpenApiV3.IDocument;\n    function downgradeDocument(document: OpenApi.IDocument, version: \"3.1\"): OpenApiV3_1.IDocument;\n    /**\n     * Upgrade components to typia's emended format.\n     *\n     * @param input Source components (Swagger v2.0, OpenAPI v3.0/v3.1/v3.2)\n     * @returns Emended OpenAPI components\n     */\n    function upgradeComponents(input: OpenApiV3_2.IComponents | OpenApiV3_1.IComponents | OpenApiV3.IComponents | SwaggerV2.IDocument): OpenApi.IComponents;\n    /**\n     * Downgrade components to Swagger v2.0 definitions.\n     *\n     * @param input Source emended components\n     * @param version Target version \"2.0\"\n     * @returns Swagger v2.0 definitions record\n     */\n    function downgradeComponents(input: OpenApi.IComponents, version: \"2.0\"): Record<string, SwaggerV2.IJsonSchema>;\n    /**\n     * Downgrade components to OpenAPI v3.0 format.\n     *\n     * @param input Source emended components\n     * @param version Target version \"3.0\"\n     * @returns OpenAPI v3.0 components\n     */\n    function downgradeComponents(input: OpenApi.IComponents, version: \"3.0\"): OpenApiV3.IComponents;\n    /**\n     * Downgrade components to OpenAPI v3.1 format.\n     *\n     * @param input Source emended components\n     * @param version Target version \"3.1\"\n     * @returns OpenAPI v3.1 components\n     */\n    function downgradeComponents(input: OpenApi.IComponents, version: \"3.1\"): OpenApiV3_1.IComponents;\n    /**\n     * Upgrade Swagger v2.0 schema to emended format.\n     *\n     * @param props.definitions Swagger v2.0 definitions\n     * @param props.schema Schema to upgrade\n     * @returns Emended JSON schema\n     */\n    function upgradeSchema(props: {\n        definitions: Record<string, SwaggerV2.IJsonSchema>;\n        schema: SwaggerV2.IJsonSchema;\n    }): OpenApi.IJsonSchema;\n    /**\n     * Upgrade OpenAPI v3.0 schema to emended format.\n     *\n     * @param props.components OpenAPI v3.0 components\n     * @param props.schema Schema to upgrade\n     * @returns Emended JSON schema\n     */\n    function upgradeSchema(props: {\n        components: OpenApiV3.IComponents;\n        schema: OpenApiV3.IJsonSchema;\n    }): OpenApi.IJsonSchema;\n    /**\n     * Upgrade OpenAPI v3.1 schema to emended format.\n     *\n     * @param props.components OpenAPI v3.1 components\n     * @param props.schema Schema to upgrade\n     * @returns Emended JSON schema\n     */\n    function upgradeSchema(props: {\n        components: OpenApiV3_1.IComponents;\n        schema: OpenApiV3_1.IJsonSchema;\n    }): OpenApi.IJsonSchema;\n    /**\n     * Upgrade OpenAPI v3.2 schema to emended format.\n     *\n     * @param props.components OpenAPI v3.2 components\n     * @param props.schema Schema to upgrade\n     * @returns Emended JSON schema\n     */\n    function upgradeSchema(props: {\n        components: OpenApiV3_2.IComponents;\n        schema: OpenApiV3_2.IJsonSchema;\n    }): OpenApi.IJsonSchema;\n    /**\n     * Downgrade schema to Swagger v2.0 format.\n     *\n     * @param props.components Source emended components\n     * @param props.schema Schema to downgrade\n     * @param props.version Target version \"2.0\"\n     * @param props.downgraded Target definitions record (mutated)\n     * @returns Swagger v2.0 schema\n     */\n    function downgradeSchema(props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        version: \"2.0\";\n        downgraded: Record<string, SwaggerV2.IJsonSchema>;\n    }): SwaggerV2.IJsonSchema;\n    /**\n     * Downgrade schema to OpenAPI v3.0 format.\n     *\n     * @param props.components Source emended components\n     * @param props.schema Schema to downgrade\n     * @param props.version Target version \"3.0\"\n     * @param props.downgraded Target components (mutated)\n     * @returns OpenAPI v3.0 schema\n     */\n    function downgradeSchema(props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        version: \"3.0\";\n        downgraded: OpenApiV3.IComponents;\n    }): OpenApiV3.IJsonSchema;\n    /**\n     * Downgrade schema to OpenAPI v3.1 format.\n     *\n     * @param props.components Source emended components\n     * @param props.schema Schema to downgrade\n     * @param props.version Target version \"3.1\"\n     * @param props.downgraded Target components (mutated)\n     * @returns OpenAPI v3.1 schema\n     */\n    function downgradeSchema(props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        version: \"3.1\";\n        downgraded: OpenApiV3_1.IComponents;\n    }): OpenApiV3_1.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/index.d.ts": "export * from \"./LlmSchemaConverter\";\nexport * from \"./OpenApiConverter\";\n",
    "node_modules/@typia/utils/lib/converters/internal/LlmDescriptionInverter.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare namespace LlmDescriptionInverter {\n    const numeric: (description: string | undefined) => Pick<OpenApi.IJsonSchema.INumber, \"minimum\" | \"maximum\" | \"exclusiveMinimum\" | \"exclusiveMaximum\" | \"multipleOf\" | \"description\">;\n    const string: (description: string | undefined) => Pick<OpenApi.IJsonSchema.IString, \"format\" | \"pattern\" | \"contentMediaType\" | \"minLength\" | \"maxLength\" | \"description\">;\n    const array: (description: string | undefined) => Pick<OpenApi.IJsonSchema.IArray, \"minItems\" | \"maxItems\" | \"uniqueItems\" | \"description\">;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/LlmParametersComposer.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiConstraintShifter.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare namespace OpenApiConstraintShifter {\n    const shiftArray: <Schema extends Pick<OpenApi.IJsonSchema.IArray, \"description\" | \"minItems\" | \"maxItems\" | \"uniqueItems\">>(schema: Schema) => Omit<Schema, \"minItems\" | \"maxItems\" | \"uniqueItems\">;\n    const shiftNumeric: <Schema extends Pick<OpenApi.IJsonSchema.INumber | OpenApi.IJsonSchema.IInteger, \"description\" | \"minimum\" | \"maximum\" | \"exclusiveMinimum\" | \"exclusiveMaximum\" | \"multipleOf\" | \"default\">>(schema: Schema) => Omit<Schema, \"minimum\" | \"maximum\" | \"exclusiveMinimum\" | \"exclusiveMaximum\" | \"multipleOf\" | \"default\">;\n    const shiftString: <Schema extends Pick<OpenApi.IJsonSchema.IString, \"description\" | \"minLength\" | \"maxLength\" | \"format\" | \"pattern\" | \"contentMediaType\" | \"default\">>(schema: Schema) => Omit<Schema, \"minLength\" | \"maxLength\" | \"format\" | \"pattern\" | \"contentMediaType\" | \"default\">;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiExclusiveEmender.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare namespace OpenApiExclusiveEmender {\n    const emend: <Schema extends Pick<OpenApi.IJsonSchema.INumber, \"exclusiveMinimum\" | \"exclusiveMaximum\" | \"minimum\" | \"maximum\">>(schema: Schema) => Schema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiV3Downgrader.d.ts": "import { OpenApi, OpenApiV3 } from \"@typia/interface\";\nexport declare namespace OpenApiV3Downgrader {\n    interface IComponentsCollection {\n        original: OpenApi.IComponents;\n        downgraded: OpenApiV3.IComponents;\n    }\n    const downgrade: (input: OpenApi.IDocument) => OpenApiV3.IDocument;\n    const downgradeComponents: (input: OpenApi.IComponents) => IComponentsCollection;\n    const downgradeSchema: (collection: IComponentsCollection) => (input: OpenApi.IJsonSchema) => OpenApiV3.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiV3Upgrader.d.ts": "import { OpenApi, OpenApiV3 } from \"@typia/interface\";\nexport declare namespace OpenApiV3Upgrader {\n    const convert: (input: OpenApiV3.IDocument) => OpenApi.IDocument;\n    const convertComponents: (input: OpenApiV3.IComponents) => OpenApi.IComponents;\n    const convertSchema: (components: OpenApiV3.IComponents) => (input: OpenApiV3.IJsonSchema) => OpenApi.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiV3_1Downgrader.d.ts": "import { OpenApi, OpenApiV3_1 } from \"@typia/interface\";\nexport declare namespace OpenApiV3_1Downgrader {\n    interface IComponentsCollection {\n        original: OpenApi.IComponents;\n        downgraded: OpenApiV3_1.IComponents;\n    }\n    const downgrade: (input: OpenApi.IDocument) => OpenApiV3_1.IDocument;\n    const downgradeComponents: (input: OpenApi.IComponents) => IComponentsCollection;\n    const downgradeSchema: (collection: IComponentsCollection) => (input: OpenApi.IJsonSchema) => OpenApiV3_1.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiV3_1Upgrader.d.ts": "import { OpenApi, OpenApiV3_1 } from \"@typia/interface\";\nexport declare namespace OpenApiV3_1Upgrader {\n    const convert: (input: OpenApiV3_1.IDocument) => OpenApi.IDocument;\n    const convertComponents: (input: OpenApiV3_1.IComponents) => OpenApi.IComponents;\n    const convertSchema: (components: OpenApiV3_1.IComponents) => (input: OpenApiV3_1.IJsonSchema) => OpenApi.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/OpenApiV3_2Upgrader.d.ts": "import { OpenApi, OpenApiV3_2 } from \"@typia/interface\";\n/**\n * OpenAPI v3.2 to emended OpenApi converter.\n *\n * Reuses JSON Schema conversion logic from OpenApiV3_1Upgrader since\n * the schema format is identical between v3.1 and v3.2.\n */\nexport declare namespace OpenApiV3_2Upgrader {\n    const convert: (input: OpenApiV3_2.IDocument) => OpenApi.IDocument;\n    const convertComponents: (input: OpenApiV3_2.IComponents) => OpenApi.IComponents;\n    /**\n     * Reuse schema conversion from OpenApiV3_1Upgrader.\n     * OpenAPI v3.2 uses the same JSON Schema (2020-12) as v3.1.\n     */\n    const convertSchema: (components: OpenApiV3_2.IComponents) => (input: OpenApiV3_2.IJsonSchema) => OpenApi.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/SwaggerV2Downgrader.d.ts": "import { OpenApi, SwaggerV2 } from \"@typia/interface\";\nexport declare namespace SwaggerV2Downgrader {\n    interface IComponentsCollection {\n        original: OpenApi.IComponents;\n        downgraded: Record<string, SwaggerV2.IJsonSchema>;\n    }\n    const downgrade: (input: OpenApi.IDocument) => SwaggerV2.IDocument;\n    const downgradeComponents: (input: OpenApi.IComponents) => IComponentsCollection;\n    const downgradeSchema: (collection: IComponentsCollection) => (input: OpenApi.IJsonSchema) => SwaggerV2.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/converters/internal/SwaggerV2Upgrader.d.ts": "import { OpenApi, SwaggerV2 } from \"@typia/interface\";\nexport declare namespace SwaggerV2Upgrader {\n    const convert: (input: SwaggerV2.IDocument) => OpenApi.IDocument;\n    const convertComponents: (input: SwaggerV2.IDocument) => OpenApi.IComponents;\n    const convertSchema: (definitions: Record<string, SwaggerV2.IJsonSchema>) => (input: SwaggerV2.IJsonSchema) => OpenApi.IJsonSchema;\n}\n",
    "node_modules/@typia/utils/lib/http/HttpError.d.ts": "/**\n * Error thrown when HTTP request fails with non-2xx status.\n *\n * `HttpError` is thrown by {@link HttpLlm.execute} and\n * {@link HttpMigration.execute} when the server returns a non-2xx status code.\n * Contains the full HTTP context: method, path, status, headers, and response\n * body.\n *\n * The response body is available via {@link message} (raw string) or\n * {@link toJSON} (parsed JSON). For non-throwing behavior, use\n * {@link HttpLlm.propagate} or {@link HttpMigration.propagate} instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HttpError extends Error {\n    /** HTTP method used for the request. */\n    readonly method: \"GET\" | \"QUERY\" | \"DELETE\" | \"POST\" | \"PUT\" | \"PATCH\" | \"HEAD\";\n    /** Request path or URL. */\n    readonly path: string;\n    /** HTTP status code from server. */\n    readonly status: number;\n    /** Response headers from server. */\n    readonly headers: Record<string, string | string[]>;\n    /**\n     * @param method HTTP method\n     * @param path Request path or URL\n     * @param status HTTP status code\n     * @param headers Response headers\n     * @param message Error message (response body)\n     */\n    constructor(method: \"GET\" | \"QUERY\" | \"DELETE\" | \"POST\" | \"PUT\" | \"PATCH\" | \"HEAD\", path: string, status: number, headers: Record<string, string | string[]>, message: string);\n    /**\n     * Serialize to JSON-compatible object.\n     *\n     * Lazily parses JSON message body on first call. If parsing fails, returns\n     * the original string.\n     *\n     * @template T Expected response body type\n     * @returns Structured HTTP error information\n     */\n    toJSON<T>(): HttpError.IProps<T>;\n}\nexport declare namespace HttpError {\n    /**\n     * JSON representation of HttpError.\n     *\n     * @template T Response body type\n     */\n    interface IProps<T> {\n        /** HTTP method. */\n        method: \"GET\" | \"QUERY\" | \"DELETE\" | \"POST\" | \"PUT\" | \"PATCH\" | \"HEAD\";\n        /** Request path or URL. */\n        path: string;\n        /** HTTP status code. */\n        status: number;\n        /** Response headers. */\n        headers: Record<string, string | string[]>;\n        /** Response body (parsed JSON or original string). */\n        message: T;\n    }\n}\n",
    "node_modules/@typia/utils/lib/http/HttpLlm.d.ts": "import { IHttpConnection, IHttpLlmApplication, IHttpLlmController, IHttpLlmFunction, IHttpResponse, OpenApi, OpenApiV3, OpenApiV3_1, OpenApiV3_2, SwaggerV2 } from \"@typia/interface\";\n/**\n * LLM function calling utilities for OpenAPI documents.\n *\n * `HttpLlm` converts OpenAPI documents into LLM function calling applications\n * and executes them. Supports all OpenAPI versions (Swagger 2.0, OpenAPI 3.0,\n * 3.1) through automatic conversion to {@link OpenApi} format.\n *\n * Main functions:\n *\n * - {@link controller}: Create {@link IHttpLlmController} from OpenAPI document\n * - {@link application}: Convert OpenAPI document to {@link IHttpLlmApplication}\n * - {@link execute}: Call an LLM function and return the response body\n * - {@link propagate}: Call an LLM function and return full HTTP response\n * - {@link mergeParameters}: Merge LLM-filled and human-filled parameters\n *\n * Typical workflow:\n *\n * 1. Load OpenAPI document (JSON/YAML)\n * 2. Call `HttpLlm.application()` to get function schemas\n * 3. Send function schemas to LLM for function selection\n * 4. Call `HttpLlm.execute()` with LLM's chosen function and arguments\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace HttpLlm {\n    /**\n     * Create HTTP LLM controller from OpenAPI document.\n     *\n     * Composes {@link IHttpLlmController} from OpenAPI document with connection\n     * info. The controller can be used with {@link registerMcpControllers} to\n     * register all API operations as MCP tools at once.\n     *\n     * @param props Controller properties\n     * @returns HTTP LLM controller\n     */\n    const controller: (props: {\n        /** Identifier name of the controller. */\n        name: string;\n        /** OpenAPI document to convert. */\n        document: OpenApi.IDocument | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApiV3_2.IDocument;\n        /** Connection to the API server. */\n        connection: IHttpConnection;\n        /** LLM schema conversion configuration. */\n        config?: Partial<IHttpLlmApplication.IConfig>;\n        /**\n         * Custom executor of the API function.\n         *\n         * Default executor is {@link HttpLlm.execute} function.\n         */\n        execute?: IHttpLlmController[\"execute\"];\n    }) => IHttpLlmController;\n    /**\n     * Convert OpenAPI document to LLM function calling application.\n     *\n     * Converts API operations to LLM-callable functions.\n     *\n     * @param props Composition properties\n     * @returns LLM function calling application\n     */\n    const application: (props: {\n        /** OpenAPI document to convert. */\n        document: OpenApi.IDocument | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApiV3_2.IDocument;\n        /** LLM schema conversion configuration. */\n        config?: Partial<IHttpLlmApplication.IConfig>;\n    }) => IHttpLlmApplication;\n    /** Properties for LLM function call. */\n    interface IFetchProps {\n        /** LLM function calling application. */\n        application: IHttpLlmApplication;\n        /** Function to call. */\n        function: IHttpLlmFunction;\n        /** HTTP connection info. */\n        connection: IHttpConnection;\n        /** Function arguments. */\n        input: object;\n    }\n    /**\n     * Execute LLM function call.\n     *\n     * Calls API endpoint and returns response body. Throws {@link HttpError} on\n     * non-2xx status.\n     *\n     * @param props Function call properties\n     * @returns Response body\n     * @throws HttpError on non-2xx status\n     */\n    const execute: (props: IFetchProps) => Promise<unknown>;\n    /**\n     * Propagate LLM function call.\n     *\n     * Calls API endpoint and returns full response including non-2xx. Use when\n     * you need to handle error responses yourself.\n     *\n     * @param props Function call properties\n     * @returns Full HTTP response\n     * @throws Error only on connection failure\n     */\n    const propagate: (props: IFetchProps) => Promise<IHttpResponse>;\n}\n",
    "node_modules/@typia/utils/lib/http/HttpMigration.d.ts": "import { IHttpConnection, IHttpMigrateApplication, IHttpMigrateRoute, IHttpResponse, OpenApi, OpenApiV3, OpenApiV3_1, OpenApiV3_2, SwaggerV2 } from \"@typia/interface\";\n/**\n * OpenAPI to HTTP migration utilities.\n *\n * `HttpMigration` converts OpenAPI documents into executable HTTP routes\n * ({@link IHttpMigrateApplication}). Unlike {@link HttpLlm} which targets LLM\n * function calling, this focuses on SDK/client code generation.\n *\n * Supports all OpenAPI versions (Swagger 2.0, OpenAPI 3.0, 3.1) through\n * automatic conversion to normalized {@link OpenApi} format.\n *\n * Main functions:\n *\n * - {@link application}: Convert OpenAPI document to\n *   {@link IHttpMigrateApplication}\n * - {@link execute}: Call a route and return response body\n * - {@link propagate}: Call a route and return full HTTP response (including\n *   non-2xx)\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace HttpMigration {\n    /**\n     * Convert OpenAPI document to migration application.\n     *\n     * @param document OpenAPI document (any version)\n     * @returns Migration application with callable routes\n     */\n    const application: (document: OpenApi.IDocument | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApiV3_2.IDocument) => IHttpMigrateApplication;\n    /**\n     * Execute HTTP route.\n     *\n     * @param props Fetch properties\n     * @returns Response body\n     * @throws HttpError on non-2xx status\n     */\n    const execute: (props: IFetchProps) => Promise<unknown>;\n    /**\n     * Execute HTTP route and return full response.\n     *\n     * @param props Fetch properties\n     * @returns Full HTTP response including non-2xx\n     */\n    const propagate: (props: IFetchProps) => Promise<IHttpResponse>;\n    /** Properties for HTTP route execution. */\n    interface IFetchProps {\n        /** HTTP connection info. */\n        connection: IHttpConnection;\n        /** Route to execute. */\n        route: IHttpMigrateRoute;\n        /** Path parameters. */\n        parameters: Array<string | number | boolean | bigint | null> | Record<string, string | number | boolean | bigint | null>;\n        /** Query parameters. */\n        query?: object | undefined;\n        /** Request body. */\n        body?: object | undefined;\n    }\n}\n",
    "node_modules/@typia/utils/lib/http/index.d.ts": "export * from \"./HttpError\";\nexport * from \"./HttpLlm\";\nexport * from \"./HttpMigration\";\n",
    "node_modules/@typia/utils/lib/http/internal/HttpLlmApplicationComposer.d.ts": "import { IHttpLlmApplication, IHttpMigrateApplication } from \"@typia/interface\";\n/**\n * Composes {@link IHttpLlmApplication} from an {@link IHttpMigrateApplication}.\n *\n * Converts OpenAPI-migrated HTTP routes into LLM function calling schemas,\n * filtering out unsupported methods (HEAD) and content types\n * (multipart/form-data), and shortening function names to fit the configured\n * maximum length.\n */\nexport declare namespace HttpLlmApplicationComposer {\n    /**\n     * Builds an {@link IHttpLlmApplication} from migrated HTTP routes.\n     *\n     * Iterates all routes, converts each to an {@link IHttpLlmFunction}, and\n     * collects conversion errors. Applies function name shortening at the end.\n     */\n    const application: (props: {\n        migrate: IHttpMigrateApplication;\n        config?: Partial<IHttpLlmApplication.IConfig>;\n    }) => IHttpLlmApplication;\n    /**\n     * Shortens function names exceeding the character limit.\n     *\n     * Tries progressively shorter accessor suffixes first, then falls back to\n     * index-prefixed names, and finally UUID as a last resort.\n     */\n    const shorten: (app: IHttpLlmApplication, limit?: number) => void;\n}\n",
    "node_modules/@typia/utils/lib/http/internal/HttpLlmFunctionFetcher.d.ts": "import { IHttpResponse } from \"@typia/interface\";\nimport type { HttpLlm } from \"../HttpLlm\";\nexport declare namespace HttpLlmFunctionFetcher {\n    const execute: (props: HttpLlm.IFetchProps) => Promise<unknown>;\n    const propagate: (props: HttpLlm.IFetchProps) => Promise<IHttpResponse>;\n}\n",
    "node_modules/@typia/utils/lib/http/internal/HttpMigrateApplicationComposer.d.ts": "import { IHttpMigrateApplication, OpenApi } from \"@typia/interface\";\nexport declare namespace HttpMigrateApplicationComposer {\n    const compose: (document: OpenApi.IDocument) => IHttpMigrateApplication;\n}\n",
    "node_modules/@typia/utils/lib/http/internal/HttpMigrateRouteAccessor.d.ts": "import { IHttpMigrateRoute } from \"@typia/interface\";\nexport declare namespace HttpMigrateRouteAccessor {\n    const overwrite: (routes: IHttpMigrateRoute[]) => void;\n}\n",
    "node_modules/@typia/utils/lib/http/internal/HttpMigrateRouteComposer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@typia/interface\";\nexport declare namespace HttpMigrateRouteComposer {\n    interface IProps {\n        document: OpenApi.IDocument;\n        method: \"head\" | \"get\" | \"post\" | \"put\" | \"patch\" | \"delete\" | \"query\";\n        path: string;\n        emendedPath: string;\n        operation: OpenApi.IOperation;\n    }\n    const compose: (props: IProps) => IHttpMigrateRoute | string[];\n}\n",
    "node_modules/@typia/utils/lib/http/internal/HttpMigrateRouteFetcher.d.ts": "import { IHttpResponse } from \"@typia/interface\";\nimport type { HttpMigration } from \"../HttpMigration\";\nexport declare namespace HttpMigrateRouteFetcher {\n    const execute: (props: HttpMigration.IFetchProps) => Promise<unknown>;\n    const propagate: (props: HttpMigration.IFetchProps) => Promise<IHttpResponse>;\n}\n",
    "node_modules/@typia/utils/lib/index.d.ts": "export * from \"./converters/index\";\nexport * from \"./http/index\";\nexport * from \"./utils/index\";\nexport * from \"./validators/index\";\n",
    "node_modules/@typia/utils/lib/utils/ArrayUtil.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/LlmJson.d.ts": "import { IJsonParseResult, ILlmSchema, ILlmStructuredOutput, IValidation } from \"@typia/interface\";\n/**\n * JSON utilities for LLM function calling.\n *\n * - {@link LlmJson.parse}: Lenient JSON parser for incomplete/malformed JSON\n * - {@link LlmJson.stringify}: Format validation errors for LLM feedback\n * - {@link LlmJson.validate}: Create a reusable validator from schema\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace LlmJson {\n    /**\n     * Coerce LLM arguments to match expected schema types.\n     *\n     * LLMs often return values with incorrect types (e.g., numbers as strings).\n     * This function recursively coerces values based on the schema:\n     *\n     * - `\"42\"` → `42` (when schema expects number)\n     * - `\"true\"` → `true` (when schema expects boolean)\n     * - `\"null\"` → `null` (when schema expects null)\n     * - `\"{...}\"` → `{...}` (when schema expects object)\n     * - `\"[...]\"` → `[...]` (when schema expects array)\n     *\n     * Use this when SDK provides already-parsed objects but values may have wrong\n     * types. For raw JSON strings, use {@link parse} instead.\n     *\n     * @param input Parsed arguments object from LLM\n     * @param parameters LLM function parameters schema for type coercion\n     * @returns Coerced arguments with corrected types\n     */\n    function coerce<T = unknown>(input: unknown, parameters: ILlmSchema.IParameters): T;\n    /**\n     * Parse lenient JSON with optional schema-based coercion.\n     *\n     * Handles incomplete/malformed JSON commonly produced by LLMs:\n     *\n     * - Unclosed brackets, strings, trailing commas\n     * - JavaScript-style comments (`//` and multi-line)\n     * - Unquoted object keys, incomplete keywords (`tru`, `fal`, `nul`)\n     * - Markdown code block extraction, junk prefix skipping\n     *\n     * When `parameters` schema is provided, also coerces double-stringified\n     * values: `\"42\"` → `42`, `\"true\"` → `true`, `\"{...}\"` → `{...}` based on\n     * expected types.\n     *\n     * Type validation is NOT performed - use {@link ILlmFunction.validate}.\n     *\n     * @param input Raw JSON string (potentially incomplete or malformed)\n     * @param parameters Optional LLM parameters schema for type coercion\n     * @returns Parse result with data on success, or partial data with errors\n     */\n    function parse<T = unknown>(input: string, parameters?: ILlmSchema.IParameters): IJsonParseResult<T>;\n    /**\n     * Format validation failure for LLM auto-correction feedback.\n     *\n     * When LLM generates invalid function call arguments, this produces annotated\n     * JSON with inline `// ❌` error comments at each invalid property. The output\n     * is wrapped in a markdown code block so that LLM can understand and correct\n     * its mistakes in the next turn.\n     *\n     * Below is an example of the output format:\n     *\n     * ```json\n     * {\n     *   \"name\": \"John\",\n     *   \"age\": \"twenty\", // ❌ [{\"path\":\"$input.age\",\"expected\":\"number & Type<\\\"uint32\\\">\"}]\n     *   \"email\": \"not-an-email\", // ❌ [{\"path\":\"$input.email\",\"expected\":\"string & Format<\\\"email\\\">\"}]\n     *   \"hobbies\": \"reading\" // ❌ [{\"path\":\"$input.hobbies\",\"expected\":\"Array<string>\"}]\n     * }\n     * ```\n     *\n     * @param failure Validation failure from {@link ILlmFunction.validate}\n     */\n    function stringify(failure: IValidation.IFailure): string;\n    /**\n     * Create a reusable validator from LLM parameters schema.\n     *\n     * When validation fails, format the failure with {@link stringify} for LLM\n     * auto-correction feedback.\n     *\n     * @param parameters LLM function parameters schema\n     * @param equals If `true`, reject extraneous properties not defined in the\n     *   schema. Otherwise, extra properties are ignored.\n     * @returns Validator function that checks data against the schema\n     */\n    function validate(parameters: ILlmSchema.IParameters, equals?: boolean | undefined): (value: unknown) => IValidation<unknown>;\n    /**\n     * Convert LLM parameters schema to structured output interface.\n     *\n     * Creates an {@link ILlmStructuredOutput} containing everything needed for\n     * handling LLM structured outputs: the parameters schema for prompting, and\n     * functions for parsing, coercing, and validating responses.\n     *\n     * This is useful when you have a parameters schema (e.g., from\n     * `typia.llm.parameters()`) and need the full structured output interface\n     * with all utility functions.\n     *\n     * @template T The expected output type\n     * @param parameters LLM parameters schema\n     * @param equals If `true`, reject extraneous properties not defined in the\n     *   schema during validation. Otherwise, extra properties are ignored.\n     * @returns Structured output interface with parse, coerce, and validate\n     */\n    function structuredOutput<T>(parameters: ILlmSchema.IParameters, equals?: boolean | undefined): ILlmStructuredOutput<T>;\n}\n",
    "node_modules/@typia/utils/lib/utils/MapUtil.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/NamingConvention.d.ts": "/**\n * String naming convention converters.\n *\n * `NamingConvention` converts between common code naming conventions:\n * camelCase, PascalCase, and snake_case. Handles edge cases like consecutive\n * uppercase letters (e.g., `XMLParser` → `xml_parser`) and leading\n * underscores.\n *\n * Functions:\n *\n * - {@link camel}: Convert to camelCase (`fooBar`)\n * - {@link pascal}: Convert to PascalCase (`FooBar`)\n * - {@link snake}: Convert to snake_case (`foo_bar`)\n * - {@link variable}: Test if string is valid JavaScript variable name\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace NamingConvention {\n    /**\n     * Convert to camelCase.\n     *\n     * @param str Input string\n     * @returns CamelCase string\n     */\n    function camel(str: string): string;\n    /**\n     * Convert to PascalCase.\n     *\n     * @param str Input string\n     * @returns PascalCase string\n     */\n    function pascal(str: string): string;\n    /**\n     * Convert to snake_case.\n     *\n     * @param str Input string\n     * @returns Snake_case string\n     */\n    function snake(str: string): string;\n    /**\n     * Capitalize first character.\n     *\n     * @param str Input string\n     * @returns Capitalized string\n     */\n    const capitalize: (str: string) => string;\n    /**\n     * Lowercase first character.\n     *\n     * @param str Input string\n     * @returns Localized string\n     */\n    const localize: (str: string) => string;\n    /**\n     * Check if string is valid JavaScript variable name.\n     *\n     * @param str String to check\n     * @returns True if valid variable name\n     */\n    const variable: (str: string) => boolean;\n    /**\n     * Check if string is JavaScript reserved word.\n     *\n     * @param str String to check\n     * @returns True if reserved word\n     */\n    const reserved: (str: string) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/utils/Singleton.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/StringUtil.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/dedent.d.ts": "/**\n * Remove common leading whitespace from template literal.\n *\n * Strips leading/trailing blank lines and removes the minimum indentation level\n * from all lines.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @param strings Template literal strings\n * @param values Interpolated values\n * @returns Dedented string\n */\nexport declare function dedent(strings: TemplateStringsArray, ...values: Array<boolean | number | string>): string;\n",
    "node_modules/@typia/utils/lib/utils/index.d.ts": "export * from \"./ArrayUtil\";\nexport * from \"./LlmJson\";\nexport * from \"./MapUtil\";\nexport * from \"./NamingConvention\";\nexport * from \"./Singleton\";\nexport * from \"./StringUtil\";\nexport * from \"./dedent\";\n",
    "node_modules/@typia/utils/lib/utils/internal/EndpointUtil.d.ts": "export declare namespace EndpointUtil {\n    const capitalize: (str: string) => string;\n    const pascal: (path: string) => string;\n    const splitWithNormalization: (path: string) => string[];\n    const reJoinWithDecimalParameters: (path: string) => string;\n    const normalize: (str: string) => string;\n    const escapeDuplicate: (keep: string[]) => (change: string) => string;\n}\n",
    "node_modules/@typia/utils/lib/utils/internal/JsonDescriptor.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare namespace JsonDescriptor {\n    const cascade: (props: {\n        prefix: string;\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema.IReference;\n        escape: boolean;\n    }) => string | undefined;\n    const take: (o: OpenApi.IJsonSchema.IObject) => string | undefined;\n}\n",
    "node_modules/@typia/utils/lib/utils/internal/OpenApiTypeCheckerBase.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/internal/coerceLlmArguments.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/internal/parseLenientJson.d.ts": "export {};\n",
    "node_modules/@typia/utils/lib/utils/internal/stringifyValidationFailure.d.ts": "import { IValidation } from \"@typia/interface\";\nexport declare function stringifyValidationFailure(failure: IValidation.IFailure): string;\n",
    "node_modules/@typia/utils/lib/validators/LlmTypeChecker.d.ts": "import { ILlmSchema } from \"@typia/interface\";\n/**\n * Type checker for LLM function calling schema.\n *\n * `LlmTypeChecker` is a type checker of {@link ILlmSchema}, the type schema for\n * LLM (Large Language Model) function calling.\n *\n * This checker provides type guard functions for validating schema types, and\n * operators for traversing and comparing schemas.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace LlmTypeChecker {\n    /**\n     * Test whether the schema is a null type.\n     *\n     * @param schema Target schema\n     * @returns Whether null type or not\n     */\n    const isNull: (schema: ILlmSchema) => schema is ILlmSchema.INull;\n    /**\n     * Test whether the schema is an unknown type.\n     *\n     * @param schema Target schema\n     * @returns Whether unknown type or not\n     */\n    const isUnknown: (schema: ILlmSchema) => schema is ILlmSchema.IUnknown;\n    /**\n     * Test whether the schema is a boolean type.\n     *\n     * @param schema Target schema\n     * @returns Whether boolean type or not\n     */\n    const isBoolean: (schema: ILlmSchema) => schema is ILlmSchema.IBoolean;\n    /**\n     * Test whether the schema is an integer type.\n     *\n     * @param schema Target schema\n     * @returns Whether integer type or not\n     */\n    const isInteger: (schema: ILlmSchema) => schema is ILlmSchema.IInteger;\n    /**\n     * Test whether the schema is a number type.\n     *\n     * @param schema Target schema\n     * @returns Whether number type or not\n     */\n    const isNumber: (schema: ILlmSchema) => schema is ILlmSchema.INumber;\n    /**\n     * Test whether the schema is a string type.\n     *\n     * @param schema Target schema\n     * @returns Whether string type or not\n     */\n    const isString: (schema: ILlmSchema) => schema is ILlmSchema.IString;\n    /**\n     * Test whether the schema is an array type.\n     *\n     * @param schema Target schema\n     * @returns Whether array type or not\n     */\n    const isArray: (schema: ILlmSchema) => schema is ILlmSchema.IArray;\n    /**\n     * Test whether the schema is an object type.\n     *\n     * @param schema Target schema\n     * @returns Whether object type or not\n     */\n    const isObject: (schema: ILlmSchema) => schema is ILlmSchema.IObject;\n    /**\n     * Test whether the schema is a reference type.\n     *\n     * @param schema Target schema\n     * @returns Whether reference type or not\n     */\n    const isReference: (schema: ILlmSchema) => schema is ILlmSchema.IReference;\n    /**\n     * Test whether the schema is a union type.\n     *\n     * @param schema Target schema\n     * @returns Whether union type or not\n     */\n    const isAnyOf: (schema: ILlmSchema) => schema is ILlmSchema.IAnyOf;\n    /**\n     * Visit every nested schemas.\n     *\n     * Visit every nested schemas of the target, and apply the `props.closure`\n     * function.\n     *\n     * Here is the list of occurring nested visitings:\n     *\n     * - {@link ILlmSchema.IAnyOf.anyOf}\n     * - {@link ILlmSchema.IReference}\n     * - {@link ILlmSchema.IObject.properties}\n     * - {@link ILlmSchema.IArray.items}\n     *\n     * @param props Properties for visiting\n     */\n    const visit: (props: {\n        closure: (schema: ILlmSchema, accessor: string) => void;\n        $defs?: Record<string, ILlmSchema> | undefined;\n        schema: ILlmSchema;\n        accessor?: string;\n        refAccessor?: string;\n    }) => void;\n    /**\n     * Test whether the `x` schema covers the `y` schema.\n     *\n     * @param props Properties for testing\n     * @returns Whether the `x` schema covers the `y` schema\n     */\n    const covers: (props: {\n        $defs?: Record<string, ILlmSchema> | undefined;\n        x: ILlmSchema;\n        y: ILlmSchema;\n    }) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/OpenApiTypeChecker.d.ts": "import { IJsonSchemaTransformError, IResult, OpenApi } from \"@typia/interface\";\n/**\n * Type checker for emended OpenAPI v3.1 JSON schemas.\n *\n * `OpenApiTypeChecker` provides type guard functions for\n * {@link OpenApi.IJsonSchema} (typia's normalized OpenAPI format). Use these to\n * narrow schema types before accessing type-specific properties.\n *\n * Type checkers:\n *\n * - Primitives: {@link isNull}, {@link isBoolean}, {@link isInteger},\n *   {@link isNumber}, {@link isString}\n * - Constants: {@link isConstant}\n * - Collections: {@link isArray}, {@link isTuple}, {@link isObject}\n * - Composition: {@link isOneOf}, {@link isReference}\n * - Special: {@link isUnknown}\n *\n * Also provides schema operations:\n *\n * - {@link visit}: Traverse and transform schemas recursively\n * - {@link covers}: Check if one schema subsumes another\n * - {@link escape}: Unwrap reference schemas\n *\n * For other OpenAPI versions, use {@link OpenApiV3TypeChecker},\n * {@link OpenApiV3_1TypeChecker}, or {@link SwaggerV2TypeChecker}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiTypeChecker {\n    /**\n     * Test whether the schema is a nul type.\n     *\n     * @param schema Target schema\n     * @returns Whether null type or not\n     */\n    const isNull: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.INull;\n    /**\n     * Test whether the schema is an unknown type.\n     *\n     * @param schema Target schema\n     * @returns Whether unknown type or not\n     */\n    const isUnknown: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IUnknown;\n    /**\n     * Test whether the schema is a constant type.\n     *\n     * @param schema Target schema\n     * @returns Whether constant type or not\n     */\n    const isConstant: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IConstant;\n    /**\n     * Test whether the schema is a boolean type.\n     *\n     * @param schema Target schema\n     * @returns Whether boolean type or not\n     */\n    const isBoolean: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IBoolean;\n    /**\n     * Test whether the schema is an integer type.\n     *\n     * @param schema Target schema\n     * @returns Whether integer type or not\n     */\n    const isInteger: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IInteger;\n    /**\n     * Test whether the schema is a number type.\n     *\n     * @param schema Target schema\n     * @returns Whether number type or not\n     */\n    const isNumber: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.INumber;\n    /**\n     * Test whether the schema is a string type.\n     *\n     * @param schema Target schema\n     * @returns Whether string type or not\n     */\n    const isString: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IString;\n    /**\n     * Test whether the schema is an array type.\n     *\n     * @param schema Target schema\n     * @returns Whether array type or not\n     */\n    const isArray: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IArray;\n    /**\n     * Test whether the schema is a tuple type.\n     *\n     * @param schema Target schema\n     * @returns Whether tuple type or not\n     */\n    const isTuple: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.ITuple;\n    /**\n     * Test whether the schema is an object type.\n     *\n     * @param schema Target schema\n     * @returns Whether object type or not\n     */\n    const isObject: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IObject;\n    /**\n     * Test whether the schema is a reference type.\n     *\n     * @param schema Target schema\n     * @returns Whether reference type or not\n     */\n    const isReference: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IReference;\n    /**\n     * Test whether the schema is an union type.\n     *\n     * @param schema Target schema\n     * @returns Whether union type or not\n     */\n    const isOneOf: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IOneOf;\n    /**\n     * Test whether the schema is recursive reference type.\n     *\n     * Test whether the target schema is a reference type, and test one thing more\n     * that the reference is self-recursive or not.\n     *\n     * @param props Properties for recursive reference test\n     * @returns Whether the schema is recursive reference type or not\n     */\n    const isRecursiveReference: (props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n    }) => boolean;\n    /**\n     * Escape from the {@link OpenApi.IJsonSchema.IReference} type.\n     *\n     * Escape from the {@link OpenApi.IJsonSchema.IReference} type, replacing the\n     * every references to the actual schemas. If the escape is successful, the\n     * returned schema never contains any {@link OpenApi.IJsonSchema.IReference}\n     * type in its structure.\n     *\n     * If the schema has a recursive reference, the recursive reference would be\n     * repeated as much as the `props.recursive` depth. If you've configured the\n     * `props.recursive` as `false` or `0`, it would be failed and return an\n     * {@link IJsonSchemaTransformError}. Also, if there's a\n     * {@link OpenApi.IJsonSchema.IReference} type which cannot find the matched\n     * type in the {@link OpenApi.IComponents.schemas}, it would also be failed and\n     * return an {@link IJsonSchemaTransformError} either.\n     *\n     * @param props Properties for escaping\n     * @returns Escaped schema, or error with reason\n     */\n    const escape: (props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        recursive: false | number;\n        accessor?: string;\n        refAccessor?: string;\n    }) => IResult<OpenApi.IJsonSchema, IJsonSchemaTransformError>;\n    /**\n     * Unreference the schema.\n     *\n     * Unreference the schema, replacing the {@link OpenApi.IJsonSchema.IReference}\n     * type to the actual schema. Different with {@link escape} is, the\n     * `unreference` function does not resolve every references in the schema, but\n     * resolve only one time.\n     *\n     * If there's a {@link OpenApi.IJsonSchema.IReference} type which cannot find\n     * the matched type in the {@link OpenApi.IComponents.schemas}, and you've\n     * called this `unreference()` function with the reference, it would also be\n     * failed and return an {@link IJsonSchemaTransformError} value.\n     *\n     * @param props Properties of unreference\n     * @returns Unreferenced schema\n     */\n    const unreference: (props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        accessor?: string;\n        refAccessor?: string;\n    }) => IResult<OpenApi.IJsonSchema, IJsonSchemaTransformError>;\n    /**\n     * Visit every nested schemas.\n     *\n     * Visit every nested schemas of the target, and apply the `props.closure`\n     * function.\n     *\n     * Here is the list of occurring nested visitings:\n     *\n     * - {@link OpenApi.IJsonSchema.IOneOf.oneOf}\n     * - {@link OpenApi.IJsonSchema.IReference}\n     * - {@link OpenApi.IJsonSchema.IObject.properties}\n     * - {@link OpenApi.IJsonSchema.IObject.additionalProperties}\n     * - {@link OpenApi.IJsonSchema.IArray.items}\n     * - {@link OpenApi.IJsonSchema.ITuple.prefixItems}\n     * - {@link OpenApi.IJsonSchema.ITuple.additionalItems}\n     *\n     * @param props Properties for visiting\n     */\n    const visit: (props: {\n        closure: (schema: OpenApi.IJsonSchema, accessor: string) => void;\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        accessor?: string;\n        refAccessor?: string;\n    }) => void;\n    /**\n     * Test whether the `x` schema covers the `y` schema.\n     *\n     * @param props Properties for testing\n     * @returns Whether the `x` schema covers the `y` schema\n     */\n    const covers: (props: {\n        components: OpenApi.IComponents;\n        x: OpenApi.IJsonSchema;\n        y: OpenApi.IJsonSchema;\n    }) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/OpenApiV3TypeChecker.d.ts": "import { OpenApiV3 } from \"@typia/interface\";\n/**\n * Type checker for raw OpenAPI v3.0 JSON schemas.\n *\n * `OpenApiV3TypeChecker` provides type guard functions for\n * {@link OpenApiV3.IJsonSchema} (raw, unemended format). For typia's normalized\n * format, use {@link OpenApiTypeChecker} instead.\n *\n * Key differences from v3.1: v3.0 uses `nullable: true` property instead of\n * union types, and has no `const` or tuple support.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiV3TypeChecker {\n    const isBoolean: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IBoolean;\n    const isInteger: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IInteger;\n    const isNumber: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.INumber;\n    const isString: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IString;\n    const isArray: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IArray;\n    const isObject: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IObject;\n    const isReference: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IReference;\n    const isAllOf: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IAllOf;\n    const isAnyOf: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IAnyOf;\n    const isOneOf: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.IOneOf;\n    const isNullOnly: (schema: OpenApiV3.IJsonSchema) => schema is OpenApiV3.IJsonSchema.INullOnly;\n}\n",
    "node_modules/@typia/utils/lib/validators/OpenApiV3_1TypeChecker.d.ts": "import { OpenApiV3_1 } from \"@typia/interface\";\n/**\n * Type checker for raw OpenAPI v3.1 JSON schemas.\n *\n * `OpenApiV3_1TypeChecker` provides type guard functions for\n * {@link OpenApiV3_1.IJsonSchema} (raw, unemended format). For typia's\n * normalized format, use {@link OpenApiTypeChecker} instead.\n *\n * Key v3.1 features: `const` keyword, `type` arrays (`[\"string\", \"null\"]`),\n * `prefixItems` for tuples, JSON Schema draft 2020-12 compatibility.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiV3_1TypeChecker {\n    const isConstant: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IConstant;\n    const isBoolean: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IBoolean;\n    const isInteger: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IInteger;\n    const isNumber: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.INumber;\n    const isString: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IString;\n    const isArray: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IArray;\n    const isObject: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IObject;\n    const isReference: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IReference;\n    const isRecursiveReference: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IRecursiveReference;\n    const isAllOf: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IAllOf;\n    const isAnyOf: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IAnyOf;\n    const isOneOf: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IOneOf;\n    const isNullOnly: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.INull;\n    const isMixed: (schema: OpenApiV3_1.IJsonSchema) => schema is OpenApiV3_1.IJsonSchema.IMixed;\n}\n",
    "node_modules/@typia/utils/lib/validators/OpenApiValidator.d.ts": "import { IValidation, OpenApi } from \"@typia/interface\";\n/**\n * OpenAPI JSON Schema validator.\n *\n * `OpenApiValidator` validates runtime data against {@link OpenApi.IJsonSchema}\n * definitions. Returns {@link IValidation} with detailed error paths and\n * expected types.\n *\n * Primary use case: Validating LLM-generated function call arguments. LLMs\n * frequently make type errors (e.g., `\"123\"` instead of `123`). Use the\n * validation errors to provide feedback and retry.\n *\n * Functions:\n *\n * - {@link create}: Create reusable validator function from schema\n * - {@link validate}: One-shot validation with inline schema\n *\n * Set `equals: true` to reject objects with extra properties (strict mode).\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace OpenApiValidator {\n    const create: (props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        required: boolean;\n        equals?: boolean;\n    }) => (value: unknown) => IValidation<unknown>;\n    const validate: (props: {\n        components: OpenApi.IComponents;\n        schema: OpenApi.IJsonSchema;\n        value: unknown;\n        required: boolean;\n        equals?: boolean;\n    }) => IValidation<unknown>;\n}\n",
    "node_modules/@typia/utils/lib/validators/SwaggerV2TypeChecker.d.ts": "import { SwaggerV2 } from \"@typia/interface\";\n/**\n * Type checker for Swagger v2.0 (OpenAPI v2) JSON schemas.\n *\n * `SwaggerV2TypeChecker` provides type guard functions for\n * {@link SwaggerV2.IJsonSchema}. For typia's normalized format, use\n * {@link OpenApiTypeChecker} instead.\n *\n * Key limitations vs OpenAPI v3.x: No `oneOf`/`anyOf`, no `nullable`, uses\n * `definitions` instead of `components.schemas`, body parameters use `in:\n * \"body\"` with `schema` property.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace SwaggerV2TypeChecker {\n    const isBoolean: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IBoolean;\n    const isInteger: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IInteger;\n    const isNumber: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.INumber;\n    const isString: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IString;\n    const isArray: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IArray;\n    const isObject: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IObject;\n    const isReference: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IReference;\n    const isAllOf: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IAllOf;\n    const isOneOf: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IOneOf;\n    const isAnyOf: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.IAnyOf;\n    const isNullOnly: (schema: SwaggerV2.IJsonSchema) => schema is SwaggerV2.IJsonSchema.INullOnly;\n}\n",
    "node_modules/@typia/utils/lib/validators/functional/_isBigintString.d.ts": "export declare const _isBigintString: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatByte.d.ts": "export declare const _isFormatByte: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatDate.d.ts": "export declare const _isFormatDate: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatDateTime.d.ts": "export declare const _isFormatDateTime: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatDuration.d.ts": "export declare const _isFormatDuration: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatEmail.d.ts": "export declare const _isFormatEmail: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatHostname.d.ts": "export declare const _isFormatHostname: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIdnEmail.d.ts": "export declare const _isFormatIdnEmail: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIdnHostname.d.ts": "export declare const _isFormatIdnHostname: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIpv4.d.ts": "export declare const _isFormatIpv4: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIpv6.d.ts": "export declare const _isFormatIpv6: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIri.d.ts": "export declare const _isFormatIri: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatIriReference.d.ts": "export declare const _isFormatIriReference: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatJsonPointer.d.ts": "export declare const _isFormatJsonPointer: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatPassword.d.ts": "export declare const _isFormatPassword: () => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatRegex.d.ts": "export declare const _isFormatRegex: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatRelativeJsonPointer.d.ts": "export declare const _isFormatRelativeJsonPointer: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatTime.d.ts": "export declare const _isFormatTime: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatUri.d.ts": "export declare const _isFormatUri: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatUriReference.d.ts": "export declare const _isFormatUriReference: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatUriTemplate.d.ts": "export declare const _isFormatUriTemplate: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatUrl.d.ts": "export declare const _isFormatUrl: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isFormatUuid.d.ts": "export declare const _isFormatUuid: (str: string) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/functional/_isUniqueItems.d.ts": "export declare const _isUniqueItems: (elements: any[]) => boolean;\n",
    "node_modules/@typia/utils/lib/validators/index.d.ts": "export * from \"./LlmTypeChecker\";\nexport * from \"./OpenApiTypeChecker\";\n",
    "node_modules/@typia/utils/lib/validators/internal/IOpenApiValidatorContext.d.ts": "import { IValidation, OpenApi } from \"@typia/interface\";\nexport interface IOpenApiValidatorContext<Schema extends OpenApi.IJsonSchema> {\n    components: OpenApi.IComponents;\n    schema: Schema;\n    value: unknown;\n    path: string;\n    report: (error: IValidation.IError & {\n        exceptionable: boolean;\n    }) => false;\n    exceptionable: boolean;\n    expected: string;\n    equals: boolean;\n    required: boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiArrayValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiArrayValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IArray>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiBooleanValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiBooleanValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IBoolean>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiConstantValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiConstantValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IConstant>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiIntegerValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiIntegerValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IInteger>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiNumberValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiNumberValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.INumber>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiObjectValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiObjectValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IObject>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiOneOfValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiOneOfValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IOneOf>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiSchemaNamingRule.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare namespace OpenApiSchemaNamingRule {\n    const getName: (schema: OpenApi.IJsonSchema, union?: boolean) => string;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiStationValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiStationValidator {\n    const validate: (ctx: Omit<IOpenApiValidatorContext<OpenApi.IJsonSchema>, \"expected\">, expected?: string) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiStringValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiStringValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IString>) => boolean;\n}\n",
    "node_modules/@typia/utils/lib/validators/internal/OpenApiTupleValidator.d.ts": "import { OpenApi } from \"@typia/interface\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiTupleValidator {\n    const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.ITuple>) => boolean;\n}\n",
    "node_modules/@typia/utils/package.json": "{\n  \"name\": \"@typia/utils\",\n  \"version\": \"12.0.1\",\n  \"description\": \"Superfast runtime validators with only one line\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"import\": \"./lib/index.mjs\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/typia\"\n  },\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/typia/issues\"\n  },\n  \"homepage\": \"https://typia.io\",\n  \"dependencies\": {\n    \"@typia/interface\": \"^12.0.1\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-commonjs\": \"^29.0.0\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.3\",\n    \"@rollup/plugin-typescript\": \"^12.3.0\",\n    \"rimraf\": \"^6.1.2\",\n    \"rollup\": \"^4.56.0\",\n    \"rollup-plugin-auto-external\": \"^2.0.0\",\n    \"rollup-plugin-node-externals\": \"^8.1.2\",\n    \"tinyglobby\": \"^0.2.12\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"README.md\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"keywords\": [\n    \"fast\",\n    \"json\",\n    \"stringify\",\n    \"typescript\",\n    \"transform\",\n    \"ajv\",\n    \"io-ts\",\n    \"zod\",\n    \"schema\",\n    \"json-schema\",\n    \"generator\",\n    \"assert\",\n    \"clone\",\n    \"is\",\n    \"validate\",\n    \"equal\",\n    \"runtime\",\n    \"type\",\n    \"typebox\",\n    \"checker\",\n    \"validator\",\n    \"safe\",\n    \"parse\",\n    \"prune\",\n    \"random\",\n    \"protobuf\",\n    \"llm\",\n    \"llm-function-calling\",\n    \"structured-output\",\n    \"openai\",\n    \"chatgpt\",\n    \"claude\",\n    \"gemini\",\n    \"llama\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc && rollup -c\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"module\": \"lib/index.mjs\",\n  \"types\": \"lib/index.d.ts\"\n}",
    "node_modules/ansi-escapes/index.d.ts": "/// <reference types=\"node\"/>\nimport {LiteralUnion} from 'type-fest';\n\ndeclare namespace ansiEscapes {\n\tinterface ImageOptions {\n\t\t/**\n\t\tThe width is given as a number followed by a unit, or the word `'auto'`.\n\n\t\t- `N`: N character cells.\n\t\t- `Npx`: N pixels.\n\t\t- `N%`: N percent of the session's width or height.\n\t\t- `auto`: The image's inherent size will be used to determine an appropriate dimension.\n\t\t*/\n\t\treadonly width?: LiteralUnion<'auto', number | string>;\n\n\t\t/**\n\t\tThe height is given as a number followed by a unit, or the word `'auto'`.\n\n\t\t- `N`: N character cells.\n\t\t- `Npx`: N pixels.\n\t\t- `N%`: N percent of the session's width or height.\n\t\t- `auto`: The image's inherent size will be used to determine an appropriate dimension.\n\t\t*/\n\t\treadonly height?: LiteralUnion<'auto', number | string>;\n\n\t\treadonly preserveAspectRatio?: boolean;\n\t}\n\n\tinterface AnnotationOptions {\n\t\t/**\n\t\tNonzero number of columns to annotate.\n\n\t\tDefault: The remainder of the line.\n\t\t*/\n\t\treadonly length?: number;\n\n\t\t/**\n\t\tStarting X coordinate.\n\n\t\tMust be used with `y` and `length`.\n\n\t\tDefault: The cursor position\n\t\t*/\n\t\treadonly x?: number;\n\n\t\t/**\n\t\tStarting Y coordinate.\n\n\t\tMust be used with `x` and `length`.\n\n\t\tDefault: Cursor position.\n\t\t*/\n\t\treadonly y?: number;\n\n\t\t/**\n\t\tCreate a \"hidden\" annotation.\n\n\t\tAnnotations created this way can be shown using the \"Show Annotations\" iTerm command.\n\t\t*/\n\t\treadonly isHidden?: boolean;\n\t}\n}\n\ndeclare const ansiEscapes: {\n\t/**\n\tSet the absolute position of the cursor. `x0` `y0` is the top left of the screen.\n\t*/\n\tcursorTo(x: number, y?: number): string;\n\n\t/**\n\tSet the position of the cursor relative to its current position.\n\t*/\n\tcursorMove(x: number, y?: number): string;\n\n\t/**\n\tMove cursor up a specific amount of rows.\n\n\t@param count - Count of rows to move up. Default is `1`.\n\t*/\n\tcursorUp(count?: number): string;\n\n\t/**\n\tMove cursor down a specific amount of rows.\n\n\t@param count - Count of rows to move down. Default is `1`.\n\t*/\n\tcursorDown(count?: number): string;\n\n\t/**\n\tMove cursor forward a specific amount of rows.\n\n\t@param count - Count of rows to move forward. Default is `1`.\n\t*/\n\tcursorForward(count?: number): string;\n\n\t/**\n\tMove cursor backward a specific amount of rows.\n\n\t@param count - Count of rows to move backward. Default is `1`.\n\t*/\n\tcursorBackward(count?: number): string;\n\n\t/**\n\tMove cursor to the left side.\n\t*/\n\tcursorLeft: string;\n\n\t/**\n\tSave cursor position.\n\t*/\n\tcursorSavePosition: string;\n\n\t/**\n\tRestore saved cursor position.\n\t*/\n\tcursorRestorePosition: string;\n\n\t/**\n\tGet cursor position.\n\t*/\n\tcursorGetPosition: string;\n\n\t/**\n\tMove cursor to the next line.\n\t*/\n\tcursorNextLine: string;\n\n\t/**\n\tMove cursor to the previous line.\n\t*/\n\tcursorPrevLine: string;\n\n\t/**\n\tHide cursor.\n\t*/\n\tcursorHide: string;\n\n\t/**\n\tShow cursor.\n\t*/\n\tcursorShow: string;\n\n\t/**\n\tErase from the current cursor position up the specified amount of rows.\n\n\t@param count - Count of rows to erase.\n\t*/\n\teraseLines(count: number): string;\n\n\t/**\n\tErase from the current cursor position to the end of the current line.\n\t*/\n\teraseEndLine: string;\n\n\t/**\n\tErase from the current cursor position to the start of the current line.\n\t*/\n\teraseStartLine: string;\n\n\t/**\n\tErase the entire current line.\n\t*/\n\teraseLine: string;\n\n\t/**\n\tErase the screen from the current line down to the bottom of the screen.\n\t*/\n\teraseDown: string;\n\n\t/**\n\tErase the screen from the current line up to the top of the screen.\n\t*/\n\teraseUp: string;\n\n\t/**\n\tErase the screen and move the cursor the top left position.\n\t*/\n\teraseScreen: string;\n\n\t/**\n\tScroll display up one line.\n\t*/\n\tscrollUp: string;\n\n\t/**\n\tScroll display down one line.\n\t*/\n\tscrollDown: string;\n\n\t/**\n\tClear the terminal screen. (Viewport)\n\t*/\n\tclearScreen: string;\n\n\t/**\n\tClear the whole terminal, including scrollback buffer. (Not just the visible part of it)\n\t*/\n\tclearTerminal: string;\n\n\t/**\n\tOutput a beeping sound.\n\t*/\n\tbeep: string;\n\n\t/**\n\tCreate a clickable link.\n\n\t[Supported terminals.](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda) Use [`supports-hyperlinks`](https://github.com/jamestalmage/supports-hyperlinks) to detect link support.\n\t*/\n\tlink(text: string, url: string): string;\n\n\t/**\n\tDisplay an image.\n\n\t_Currently only supported on iTerm2 >=3_\n\n\tSee [term-img](https://github.com/sindresorhus/term-img) for a higher-level module.\n\n\t@param buffer - Buffer of an image. Usually read in with `fs.readFile()`.\n\t*/\n\timage(buffer: Buffer, options?: ansiEscapes.ImageOptions): string;\n\n\tiTerm: {\n\t\t/**\n\t\t[Inform iTerm2](https://www.iterm2.com/documentation-escape-codes.html) of the current directory to help semantic history and enable [Cmd-clicking relative paths](https://coderwall.com/p/b7e82q/quickly-open-files-in-iterm-with-cmd-click).\n\n\t\t@param cwd - Current directory. Default: `process.cwd()`.\n\t\t*/\n\t\tsetCwd(cwd?: string): string;\n\n\t\t/**\n\t\tAn annotation looks like this when shown:\n\n\t\t![screenshot of iTerm annotation](https://user-images.githubusercontent.com/924465/64382136-b60ac700-cfe9-11e9-8a35-9682e8dc4b72.png)\n\n\t\tSee the [iTerm Proprietary Escape Codes documentation](https://iterm2.com/documentation-escape-codes.html) for more information.\n\n\t\t@param message - The message to display within the annotation. The `|` character is disallowed and will be stripped.\n\t\t@returns An escape code which will create an annotation when printed in iTerm2.\n\t\t*/\n\t\tannotation(message: string, options?: ansiEscapes.AnnotationOptions): string;\n\t};\n\n\t// TODO: remove this in the next major version\n\tdefault: typeof ansiEscapes;\n};\n\nexport = ansiEscapes;\n",
    "node_modules/ansi-escapes/package.json": "{\n\t\"name\": \"ansi-escapes\",\n\t\"version\": \"4.3.2\",\n\t\"description\": \"ANSI escape codes for manipulating the terminal\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/ansi-escapes\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"ansi\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"escapes\",\n\t\t\"formatting\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\",\n\t\t\"vt100\",\n\t\t\"sequence\",\n\t\t\"control\",\n\t\t\"code\",\n\t\t\"codes\",\n\t\t\"cursor\",\n\t\t\"iterm\",\n\t\t\"iterm2\"\n\t],\n\t\"dependencies\": {\n\t\t\"type-fest\": \"^0.21.3\"\n\t},\n\t\"devDependencies\": {\n\t\t\"@types/node\": \"^13.7.7\",\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"tsd\": \"^0.14.0\",\n\t\t\"xo\": \"^0.25.3\"\n\t}\n}\n",
    "node_modules/ansi-regex/index.d.ts": "declare namespace ansiRegex {\n\tinterface Options {\n\t\t/**\n\t\tMatch only the first ANSI escape.\n\n\t\t@default false\n\t\t*/\n\t\tonlyFirst: boolean;\n\t}\n}\n\n/**\nRegular expression for matching ANSI escape codes.\n\n@example\n```\nimport ansiRegex = require('ansi-regex');\n\nansiRegex().test('\\u001B[4mcake\\u001B[0m');\n//=> true\n\nansiRegex().test('cake');\n//=> false\n\n'\\u001B[4mcake\\u001B[0m'.match(ansiRegex());\n//=> ['\\u001B[4m', '\\u001B[0m']\n\n'\\u001B[4mcake\\u001B[0m'.match(ansiRegex({onlyFirst: true}));\n//=> ['\\u001B[4m']\n\n'\\u001B]8;;https://github.com\\u0007click\\u001B]8;;\\u0007'.match(ansiRegex());\n//=> ['\\u001B]8;;https://github.com\\u0007', '\\u001B]8;;\\u0007']\n```\n*/\ndeclare function ansiRegex(options?: ansiRegex.Options): RegExp;\n\nexport = ansiRegex;\n",
    "node_modules/ansi-regex/package.json": "{\n\t\"name\": \"ansi-regex\",\n\t\"version\": \"5.0.1\",\n\t\"description\": \"Regular expression for matching ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/ansi-regex\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\",\n\t\t\"view-supported\": \"node fixtures/view-codes.js\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"command-line\",\n\t\t\"text\",\n\t\t\"regex\",\n\t\t\"regexp\",\n\t\t\"re\",\n\t\t\"match\",\n\t\t\"test\",\n\t\t\"find\",\n\t\t\"pattern\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"tsd\": \"^0.9.0\",\n\t\t\"xo\": \"^0.25.3\"\n\t}\n}\n",
    "node_modules/ansi-styles/index.d.ts": "declare type CSSColor =\n\t| 'aliceblue'\n\t| 'antiquewhite'\n\t| 'aqua'\n\t| 'aquamarine'\n\t| 'azure'\n\t| 'beige'\n\t| 'bisque'\n\t| 'black'\n\t| 'blanchedalmond'\n\t| 'blue'\n\t| 'blueviolet'\n\t| 'brown'\n\t| 'burlywood'\n\t| 'cadetblue'\n\t| 'chartreuse'\n\t| 'chocolate'\n\t| 'coral'\n\t| 'cornflowerblue'\n\t| 'cornsilk'\n\t| 'crimson'\n\t| 'cyan'\n\t| 'darkblue'\n\t| 'darkcyan'\n\t| 'darkgoldenrod'\n\t| 'darkgray'\n\t| 'darkgreen'\n\t| 'darkgrey'\n\t| 'darkkhaki'\n\t| 'darkmagenta'\n\t| 'darkolivegreen'\n\t| 'darkorange'\n\t| 'darkorchid'\n\t| 'darkred'\n\t| 'darksalmon'\n\t| 'darkseagreen'\n\t| 'darkslateblue'\n\t| 'darkslategray'\n\t| 'darkslategrey'\n\t| 'darkturquoise'\n\t| 'darkviolet'\n\t| 'deeppink'\n\t| 'deepskyblue'\n\t| 'dimgray'\n\t| 'dimgrey'\n\t| 'dodgerblue'\n\t| 'firebrick'\n\t| 'floralwhite'\n\t| 'forestgreen'\n\t| 'fuchsia'\n\t| 'gainsboro'\n\t| 'ghostwhite'\n\t| 'gold'\n\t| 'goldenrod'\n\t| 'gray'\n\t| 'green'\n\t| 'greenyellow'\n\t| 'grey'\n\t| 'honeydew'\n\t| 'hotpink'\n\t| 'indianred'\n\t| 'indigo'\n\t| 'ivory'\n\t| 'khaki'\n\t| 'lavender'\n\t| 'lavenderblush'\n\t| 'lawngreen'\n\t| 'lemonchiffon'\n\t| 'lightblue'\n\t| 'lightcoral'\n\t| 'lightcyan'\n\t| 'lightgoldenrodyellow'\n\t| 'lightgray'\n\t| 'lightgreen'\n\t| 'lightgrey'\n\t| 'lightpink'\n\t| 'lightsalmon'\n\t| 'lightseagreen'\n\t| 'lightskyblue'\n\t| 'lightslategray'\n\t| 'lightslategrey'\n\t| 'lightsteelblue'\n\t| 'lightyellow'\n\t| 'lime'\n\t| 'limegreen'\n\t| 'linen'\n\t| 'magenta'\n\t| 'maroon'\n\t| 'mediumaquamarine'\n\t| 'mediumblue'\n\t| 'mediumorchid'\n\t| 'mediumpurple'\n\t| 'mediumseagreen'\n\t| 'mediumslateblue'\n\t| 'mediumspringgreen'\n\t| 'mediumturquoise'\n\t| 'mediumvioletred'\n\t| 'midnightblue'\n\t| 'mintcream'\n\t| 'mistyrose'\n\t| 'moccasin'\n\t| 'navajowhite'\n\t| 'navy'\n\t| 'oldlace'\n\t| 'olive'\n\t| 'olivedrab'\n\t| 'orange'\n\t| 'orangered'\n\t| 'orchid'\n\t| 'palegoldenrod'\n\t| 'palegreen'\n\t| 'paleturquoise'\n\t| 'palevioletred'\n\t| 'papayawhip'\n\t| 'peachpuff'\n\t| 'peru'\n\t| 'pink'\n\t| 'plum'\n\t| 'powderblue'\n\t| 'purple'\n\t| 'rebeccapurple'\n\t| 'red'\n\t| 'rosybrown'\n\t| 'royalblue'\n\t| 'saddlebrown'\n\t| 'salmon'\n\t| 'sandybrown'\n\t| 'seagreen'\n\t| 'seashell'\n\t| 'sienna'\n\t| 'silver'\n\t| 'skyblue'\n\t| 'slateblue'\n\t| 'slategray'\n\t| 'slategrey'\n\t| 'snow'\n\t| 'springgreen'\n\t| 'steelblue'\n\t| 'tan'\n\t| 'teal'\n\t| 'thistle'\n\t| 'tomato'\n\t| 'turquoise'\n\t| 'violet'\n\t| 'wheat'\n\t| 'white'\n\t| 'whitesmoke'\n\t| 'yellow'\n\t| 'yellowgreen';\n\ndeclare namespace ansiStyles {\n\tinterface ColorConvert {\n\t\t/**\n\t\tThe RGB color space.\n\n\t\t@param red - (`0`-`255`)\n\t\t@param green - (`0`-`255`)\n\t\t@param blue - (`0`-`255`)\n\t\t*/\n\t\trgb(red: number, green: number, blue: number): string;\n\n\t\t/**\n\t\tThe RGB HEX color space.\n\n\t\t@param hex - A hexadecimal string containing RGB data.\n\t\t*/\n\t\thex(hex: string): string;\n\n\t\t/**\n\t\t@param keyword - A CSS color name.\n\t\t*/\n\t\tkeyword(keyword: CSSColor): string;\n\n\t\t/**\n\t\tThe HSL color space.\n\n\t\t@param hue - (`0`-`360`)\n\t\t@param saturation - (`0`-`100`)\n\t\t@param lightness - (`0`-`100`)\n\t\t*/\n\t\thsl(hue: number, saturation: number, lightness: number): string;\n\n\t\t/**\n\t\tThe HSV color space.\n\n\t\t@param hue - (`0`-`360`)\n\t\t@param saturation - (`0`-`100`)\n\t\t@param value - (`0`-`100`)\n\t\t*/\n\t\thsv(hue: number, saturation: number, value: number): string;\n\n\t\t/**\n\t\tThe HSV color space.\n\n\t\t@param hue - (`0`-`360`)\n\t\t@param whiteness - (`0`-`100`)\n\t\t@param blackness - (`0`-`100`)\n\t\t*/\n\t\thwb(hue: number, whiteness: number, blackness: number): string;\n\n\t\t/**\n\t\tUse a [4-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4-bit) to set text color.\n\t\t*/\n\t\tansi(ansi: number): string;\n\n\t\t/**\n\t\tUse an [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.\n\t\t*/\n\t\tansi256(ansi: number): string;\n\t}\n\n\tinterface CSPair {\n\t\t/**\n\t\tThe ANSI terminal control sequence for starting this style.\n\t\t*/\n\t\treadonly open: string;\n\n\t\t/**\n\t\tThe ANSI terminal control sequence for ending this style.\n\t\t*/\n\t\treadonly close: string;\n\t}\n\n\tinterface ColorBase {\n\t\treadonly ansi: ColorConvert;\n\t\treadonly ansi256: ColorConvert;\n\t\treadonly ansi16m: ColorConvert;\n\n\t\t/**\n\t\tThe ANSI terminal control sequence for ending this color.\n\t\t*/\n\t\treadonly close: string;\n\t}\n\n\tinterface Modifier {\n\t\t/**\n\t\tResets the current color chain.\n\t\t*/\n\t\treadonly reset: CSPair;\n\n\t\t/**\n\t\tMake text bold.\n\t\t*/\n\t\treadonly bold: CSPair;\n\n\t\t/**\n\t\tEmitting only a small amount of light.\n\t\t*/\n\t\treadonly dim: CSPair;\n\n\t\t/**\n\t\tMake text italic. (Not widely supported)\n\t\t*/\n\t\treadonly italic: CSPair;\n\n\t\t/**\n\t\tMake text underline. (Not widely supported)\n\t\t*/\n\t\treadonly underline: CSPair;\n\n\t\t/**\n\t\tInverse background and foreground colors.\n\t\t*/\n\t\treadonly inverse: CSPair;\n\n\t\t/**\n\t\tPrints the text, but makes it invisible.\n\t\t*/\n\t\treadonly hidden: CSPair;\n\n\t\t/**\n\t\tPuts a horizontal line through the center of the text. (Not widely supported)\n\t\t*/\n\t\treadonly strikethrough: CSPair;\n\t}\n\n\tinterface ForegroundColor {\n\t\treadonly black: CSPair;\n\t\treadonly red: CSPair;\n\t\treadonly green: CSPair;\n\t\treadonly yellow: CSPair;\n\t\treadonly blue: CSPair;\n\t\treadonly cyan: CSPair;\n\t\treadonly magenta: CSPair;\n\t\treadonly white: CSPair;\n\n\t\t/**\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly gray: CSPair;\n\n\t\t/**\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly grey: CSPair;\n\n\t\treadonly blackBright: CSPair;\n\t\treadonly redBright: CSPair;\n\t\treadonly greenBright: CSPair;\n\t\treadonly yellowBright: CSPair;\n\t\treadonly blueBright: CSPair;\n\t\treadonly cyanBright: CSPair;\n\t\treadonly magentaBright: CSPair;\n\t\treadonly whiteBright: CSPair;\n\t}\n\n\tinterface BackgroundColor {\n\t\treadonly bgBlack: CSPair;\n\t\treadonly bgRed: CSPair;\n\t\treadonly bgGreen: CSPair;\n\t\treadonly bgYellow: CSPair;\n\t\treadonly bgBlue: CSPair;\n\t\treadonly bgCyan: CSPair;\n\t\treadonly bgMagenta: CSPair;\n\t\treadonly bgWhite: CSPair;\n\n\t\t/**\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGray: CSPair;\n\n\t\t/**\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGrey: CSPair;\n\n\t\treadonly bgBlackBright: CSPair;\n\t\treadonly bgRedBright: CSPair;\n\t\treadonly bgGreenBright: CSPair;\n\t\treadonly bgYellowBright: CSPair;\n\t\treadonly bgBlueBright: CSPair;\n\t\treadonly bgCyanBright: CSPair;\n\t\treadonly bgMagentaBright: CSPair;\n\t\treadonly bgWhiteBright: CSPair;\n\t}\n}\n\ndeclare const ansiStyles: {\n\treadonly modifier: ansiStyles.Modifier;\n\treadonly color: ansiStyles.ForegroundColor & ansiStyles.ColorBase;\n\treadonly bgColor: ansiStyles.BackgroundColor & ansiStyles.ColorBase;\n\treadonly codes: ReadonlyMap<number, number>;\n} & ansiStyles.BackgroundColor & ansiStyles.ForegroundColor & ansiStyles.Modifier;\n\nexport = ansiStyles;\n",
    "node_modules/ansi-styles/package.json": "{\n\t\"name\": \"ansi-styles\",\n\t\"version\": \"4.3.0\",\n\t\"description\": \"ANSI escape codes for styling strings in the terminal\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/ansi-styles\",\n\t\"funding\": \"https://github.com/chalk/ansi-styles?sponsor=1\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\",\n\t\t\"screenshot\": \"svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"color-convert\": \"^2.0.1\"\n\t},\n\t\"devDependencies\": {\n\t\t\"@types/color-convert\": \"^1.9.0\",\n\t\t\"ava\": \"^2.3.0\",\n\t\t\"svg-term-cli\": \"^2.1.1\",\n\t\t\"tsd\": \"^0.11.0\",\n\t\t\"xo\": \"^0.25.3\"\n\t}\n}\n",
    "node_modules/array-timsort/package.json": "{\n  \"name\": \"array-timsort\",\n  \"version\": \"1.0.3\",\n  \"description\": \"Fast JavaScript array sorting by implementing Python's Timsort algorithm\",\n  \"homepage\": \"https://github.com/kaelzhang/node-array-timsort\",\n  \"main\": \"./src\",\n  \"files\": [\n    \"src\"\n  ],\n  \"dependencies\": {},\n  \"devDependencies\": {\n    \"@ostai/eslint-config\": \"^3.5.0\",\n    \"ava\": \"^3.13.0\",\n    \"codecov\": \"^3.7.2\",\n    \"eslint\": \"^7.10.0\",\n    \"eslint-plugin-import\": \"^2.22.1\",\n    \"eslint-plugin-mocha\": \"^8.0.0\",\n    \"nyc\": \"^15.1.0\"\n  },\n  \"scripts\": {\n    \"benchmark\": \"node benchmark/index.js\",\n    \"test\": \"npm run test:only\",\n    \"test:only\": \"NODE_DEBUG=array-timsort nyc ava --timeout=10s --verbose\",\n    \"test:dev\": \"npm run test:only && npm run report:dev\",\n    \"lint\": \"eslint .\",\n    \"fix\": \"eslint . --fix\",\n    \"posttest\": \"npm run report\",\n    \"report\": \"nyc report --reporter=text-lcov > coverage.lcov && codecov\",\n    \"report:dev\": \"nyc report --reporter=html && npm run report:open\",\n    \"report:open\": \"open coverage/index.html\"\n  },\n  \"ava\": {\n    \"files\": [\n      \"test/*.test.js\"\n    ]\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/kaelzhang/node-array-timsort.git\"\n  },\n  \"keywords\": [\n    \"fast sort\",\n    \"array soft\",\n    \"sort\",\n    \"compare\",\n    \"TimSort\",\n    \"algorithm\",\n    \"python\",\n    \"performance\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/kaelzhang/node-array-timsort/issues\"\n  }\n}\n",
    "node_modules/base64-js/index.d.ts": "export function byteLength(b64: string): number;\nexport function toByteArray(b64: string): Uint8Array;\nexport function fromByteArray(uint8: Uint8Array): string;\n",
    "node_modules/base64-js/package.json": "{\n  \"name\": \"base64-js\",\n  \"description\": \"Base64 encoding/decoding in pure JS\",\n  \"version\": \"1.5.1\",\n  \"author\": \"T. Jameson Little <t.jameson.little@gmail.com>\",\n  \"typings\": \"index.d.ts\",\n  \"bugs\": {\n    \"url\": \"https://github.com/beatgammit/base64-js/issues\"\n  },\n  \"devDependencies\": {\n    \"babel-minify\": \"^0.5.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"browserify\": \"^16.3.0\",\n    \"standard\": \"*\",\n    \"tape\": \"4.x\"\n  },\n  \"homepage\": \"https://github.com/beatgammit/base64-js\",\n  \"keywords\": [\n    \"base64\"\n  ],\n  \"license\": \"MIT\",\n  \"main\": \"index.js\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/beatgammit/base64-js.git\"\n  },\n  \"scripts\": {\n    \"build\": \"browserify -s base64js -r ./ | minify > base64js.min.js\",\n    \"lint\": \"standard\",\n    \"test\": \"npm run lint && npm run unit\",\n    \"unit\": \"tape test/*.js\"\n  },\n  \"funding\": [\n    {\n      \"type\": \"github\",\n      \"url\": \"https://github.com/sponsors/feross\"\n    },\n    {\n      \"type\": \"patreon\",\n      \"url\": \"https://www.patreon.com/feross\"\n    },\n    {\n      \"type\": \"consulting\",\n      \"url\": \"https://feross.org/support\"\n    }\n  ]\n}\n",
    "node_modules/bl/package.json": "{\n  \"name\": \"bl\",\n  \"version\": \"4.1.0\",\n  \"description\": \"Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!\",\n  \"license\": \"MIT\",\n  \"main\": \"bl.js\",\n  \"scripts\": {\n    \"lint\": \"standard *.js test/*.js\",\n    \"test\": \"npm run lint && node test/test.js | faucet\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/rvagg/bl.git\"\n  },\n  \"homepage\": \"https://github.com/rvagg/bl\",\n  \"authors\": [\n    \"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)\",\n    \"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)\",\n    \"Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)\"\n  ],\n  \"keywords\": [\n    \"buffer\",\n    \"buffers\",\n    \"stream\",\n    \"awesomesauce\"\n  ],\n  \"dependencies\": {\n    \"buffer\": \"^5.5.0\",\n    \"inherits\": \"^2.0.4\",\n    \"readable-stream\": \"^3.4.0\"\n  },\n  \"devDependencies\": {\n    \"faucet\": \"~0.0.1\",\n    \"standard\": \"^14.3.0\",\n    \"tape\": \"^4.11.0\"\n  }\n}\n",
    "node_modules/buffer/index.d.ts": "export class Buffer extends Uint8Array {\n    length: number\n    write(string: string, offset?: number, length?: number, encoding?: string): number;\n    toString(encoding?: string, start?: number, end?: number): string;\n    toJSON(): { type: 'Buffer', data: any[] };\n    equals(otherBuffer: Buffer): boolean;\n    compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number;\n    copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;\n    slice(start?: number, end?: number): Buffer;\n    writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readUInt8(offset: number, noAssert?: boolean): number;\n    readUInt16LE(offset: number, noAssert?: boolean): number;\n    readUInt16BE(offset: number, noAssert?: boolean): number;\n    readUInt32LE(offset: number, noAssert?: boolean): number;\n    readUInt32BE(offset: number, noAssert?: boolean): number;\n    readInt8(offset: number, noAssert?: boolean): number;\n    readInt16LE(offset: number, noAssert?: boolean): number;\n    readInt16BE(offset: number, noAssert?: boolean): number;\n    readInt32LE(offset: number, noAssert?: boolean): number;\n    readInt32BE(offset: number, noAssert?: boolean): number;\n    readFloatLE(offset: number, noAssert?: boolean): number;\n    readFloatBE(offset: number, noAssert?: boolean): number;\n    readDoubleLE(offset: number, noAssert?: boolean): number;\n    readDoubleBE(offset: number, noAssert?: boolean): number;\n    reverse(): this;\n    swap16(): Buffer;\n    swap32(): Buffer;\n    swap64(): Buffer;\n    writeUInt8(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt16LE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt16BE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt32LE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt32BE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt8(value: number, offset: number, noAssert?: boolean): number;\n    writeInt16LE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt16BE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt32LE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt32BE(value: number, offset: number, noAssert?: boolean): number;\n    writeFloatLE(value: number, offset: number, noAssert?: boolean): number;\n    writeFloatBE(value: number, offset: number, noAssert?: boolean): number;\n    writeDoubleLE(value: number, offset: number, noAssert?: boolean): number;\n    writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;\n    fill(value: any, offset?: number, end?: number): this;\n    indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n    lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n    includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean;\n\n    /**\n     * Allocates a new buffer containing the given {str}.\n     *\n     * @param str String to store in buffer.\n     * @param encoding encoding to use, optional.  Default is 'utf8'\n     */\n    constructor (str: string, encoding?: string);\n    /**\n     * Allocates a new buffer of {size} octets.\n     *\n     * @param size count of octets to allocate.\n     */\n    constructor (size: number);\n    /**\n     * Allocates a new buffer containing the given {array} of octets.\n     *\n     * @param array The octets to store.\n     */\n    constructor (array: Uint8Array);\n    /**\n     * Produces a Buffer backed by the same allocated memory as\n     * the given {ArrayBuffer}.\n     *\n     *\n     * @param arrayBuffer The ArrayBuffer with which to share memory.\n     */\n    constructor (arrayBuffer: ArrayBuffer);\n    /**\n     * Allocates a new buffer containing the given {array} of octets.\n     *\n     * @param array The octets to store.\n     */\n    constructor (array: any[]);\n    /**\n     * Copies the passed {buffer} data onto a new {Buffer} instance.\n     *\n     * @param buffer The buffer to copy.\n     */\n    constructor (buffer: Buffer);\n    prototype: Buffer;\n    /**\n     * Allocates a new Buffer using an {array} of octets.\n     *\n     * @param array\n     */\n    static from(array: any[]): Buffer;\n    /**\n     * When passed a reference to the .buffer property of a TypedArray instance,\n     * the newly created Buffer will share the same allocated memory as the TypedArray.\n     * The optional {byteOffset} and {length} arguments specify a memory range\n     * within the {arrayBuffer} that will be shared by the Buffer.\n     *\n     * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer()\n     * @param byteOffset\n     * @param length\n     */\n    static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer;\n    /**\n     * Copies the passed {buffer} data onto a new Buffer instance.\n     *\n     * @param buffer\n     */\n    static from(buffer: Buffer | Uint8Array): Buffer;\n    /**\n     * Creates a new Buffer containing the given JavaScript string {str}.\n     * If provided, the {encoding} parameter identifies the character encoding.\n     * If not provided, {encoding} defaults to 'utf8'.\n     *\n     * @param str\n     */\n    static from(str: string, encoding?: string): Buffer;\n    /**\n     * Returns true if {obj} is a Buffer\n     *\n     * @param obj object to test.\n     */\n    static isBuffer(obj: any): obj is Buffer;\n    /**\n     * Returns true if {encoding} is a valid encoding argument.\n     * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex'\n     *\n     * @param encoding string to test.\n     */\n    static isEncoding(encoding: string): boolean;\n    /**\n     * Gives the actual byte length of a string. encoding defaults to 'utf8'.\n     * This is not the same as String.prototype.length since that returns the number of characters in a string.\n     *\n     * @param string string to test.\n     * @param encoding encoding used to evaluate (defaults to 'utf8')\n     */\n    static byteLength(string: string, encoding?: string): number;\n    /**\n     * Returns a buffer which is the result of concatenating all the buffers in the list together.\n     *\n     * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer.\n     * If the list has exactly one item, then the first item of the list is returned.\n     * If the list has more than one item, then a new Buffer is created.\n     *\n     * @param list An array of Buffer objects to concatenate\n     * @param totalLength Total length of the buffers when concatenated.\n     *   If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly.\n     */\n    static concat(list: Buffer[], totalLength?: number): Buffer;\n    /**\n     * The same as buf1.compare(buf2).\n     */\n    static compare(buf1: Buffer, buf2: Buffer): number;\n    /**\n     * Allocates a new buffer of {size} octets.\n     *\n     * @param size count of octets to allocate.\n     * @param fill if specified, buffer will be initialized by calling buf.fill(fill).\n     *    If parameter is omitted, buffer will be filled with zeros.\n     * @param encoding encoding used for call to buf.fill while initializing\n     */\n    static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer;\n    /**\n     * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents\n     * of the newly created Buffer are unknown and may contain sensitive data.\n     *\n     * @param size count of octets to allocate\n     */\n    static allocUnsafe(size: number): Buffer;\n    /**\n     * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents\n     * of the newly created Buffer are unknown and may contain sensitive data.\n     *\n     * @param size count of octets to allocate\n     */\n    static allocUnsafeSlow(size: number): Buffer;\n}\n",
    "node_modules/buffer/package.json": "{\n  \"name\": \"buffer\",\n  \"description\": \"Node.js Buffer API, for the browser\",\n  \"version\": \"5.7.1\",\n  \"author\": {\n    \"name\": \"Feross Aboukhadijeh\",\n    \"email\": \"feross@feross.org\",\n    \"url\": \"https://feross.org\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/feross/buffer/issues\"\n  },\n  \"contributors\": [\n    \"Romain Beauxis <toots@rastageeks.org>\",\n    \"James Halliday <mail@substack.net>\"\n  ],\n  \"dependencies\": {\n    \"base64-js\": \"^1.3.1\",\n    \"ieee754\": \"^1.1.13\"\n  },\n  \"devDependencies\": {\n    \"airtap\": \"^3.0.0\",\n    \"benchmark\": \"^2.1.4\",\n    \"browserify\": \"^17.0.0\",\n    \"concat-stream\": \"^2.0.0\",\n    \"hyperquest\": \"^2.1.3\",\n    \"is-buffer\": \"^2.0.4\",\n    \"is-nan\": \"^1.3.0\",\n    \"split\": \"^1.0.1\",\n    \"standard\": \"*\",\n    \"tape\": \"^5.0.1\",\n    \"through2\": \"^4.0.2\",\n    \"uglify-js\": \"^3.11.3\"\n  },\n  \"homepage\": \"https://github.com/feross/buffer\",\n  \"jspm\": {\n    \"map\": {\n      \"./index.js\": {\n        \"node\": \"@node/buffer\"\n      }\n    }\n  },\n  \"keywords\": [\n    \"arraybuffer\",\n    \"browser\",\n    \"browserify\",\n    \"buffer\",\n    \"compatible\",\n    \"dataview\",\n    \"uint8array\"\n  ],\n  \"license\": \"MIT\",\n  \"main\": \"index.js\",\n  \"types\": \"index.d.ts\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/feross/buffer.git\"\n  },\n  \"scripts\": {\n    \"perf\": \"browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html\",\n    \"perf-node\": \"node perf/bracket-notation.js && node perf/concat.js && node perf/copy-big.js && node perf/copy.js && node perf/new-big.js && node perf/new.js && node perf/readDoubleBE.js && node perf/readFloatBE.js && node perf/readUInt32LE.js && node perf/slice.js && node perf/writeFloatBE.js\",\n    \"size\": \"browserify -r ./ | uglifyjs -c -m | gzip | wc -c\",\n    \"test\": \"standard && node ./bin/test.js\",\n    \"test-browser-es5\": \"airtap -- test/*.js\",\n    \"test-browser-es5-local\": \"airtap --local -- test/*.js\",\n    \"test-browser-es6\": \"airtap -- test/*.js test/node/*.js\",\n    \"test-browser-es6-local\": \"airtap --local -- test/*.js test/node/*.js\",\n    \"test-node\": \"tape test/*.js test/node/*.js\",\n    \"update-authors\": \"./bin/update-authors.sh\"\n  },\n  \"standard\": {\n    \"ignore\": [\n      \"test/node/**/*.js\",\n      \"test/common.js\",\n      \"test/_polyfill.js\",\n      \"perf/**/*.js\"\n    ],\n    \"globals\": [\n      \"SharedArrayBuffer\"\n    ]\n  },\n  \"funding\": [\n    {\n      \"type\": \"github\",\n      \"url\": \"https://github.com/sponsors/feross\"\n    },\n    {\n      \"type\": \"patreon\",\n      \"url\": \"https://www.patreon.com/feross\"\n    },\n    {\n      \"type\": \"consulting\",\n      \"url\": \"https://feross.org/support\"\n    }\n  ]\n}\n",
    "node_modules/chalk/index.d.ts": "/**\nBasic foreground colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type ForegroundColor =\n\t| 'black'\n\t| 'red'\n\t| 'green'\n\t| 'yellow'\n\t| 'blue'\n\t| 'magenta'\n\t| 'cyan'\n\t| 'white'\n\t| 'gray'\n\t| 'grey'\n\t| 'blackBright'\n\t| 'redBright'\n\t| 'greenBright'\n\t| 'yellowBright'\n\t| 'blueBright'\n\t| 'magentaBright'\n\t| 'cyanBright'\n\t| 'whiteBright';\n\n/**\nBasic background colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type BackgroundColor =\n\t| 'bgBlack'\n\t| 'bgRed'\n\t| 'bgGreen'\n\t| 'bgYellow'\n\t| 'bgBlue'\n\t| 'bgMagenta'\n\t| 'bgCyan'\n\t| 'bgWhite'\n\t| 'bgGray'\n\t| 'bgGrey'\n\t| 'bgBlackBright'\n\t| 'bgRedBright'\n\t| 'bgGreenBright'\n\t| 'bgYellowBright'\n\t| 'bgBlueBright'\n\t| 'bgMagentaBright'\n\t| 'bgCyanBright'\n\t| 'bgWhiteBright';\n\n/**\nBasic colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type Color = ForegroundColor | BackgroundColor;\n\ndeclare type Modifiers =\n\t| 'reset'\n\t| 'bold'\n\t| 'dim'\n\t| 'italic'\n\t| 'underline'\n\t| 'inverse'\n\t| 'hidden'\n\t| 'strikethrough'\n\t| 'visible';\n\ndeclare namespace chalk {\n\t/**\n\tLevels:\n\t- `0` - All colors disabled.\n\t- `1` - Basic 16 colors support.\n\t- `2` - ANSI 256 colors support.\n\t- `3` - Truecolor 16 million colors support.\n\t*/\n\ttype Level = 0 | 1 | 2 | 3;\n\n\tinterface Options {\n\t\t/**\n\t\tSpecify the color support for Chalk.\n\n\t\tBy default, color support is automatically detected based on the environment.\n\n\t\tLevels:\n\t\t- `0` - All colors disabled.\n\t\t- `1` - Basic 16 colors support.\n\t\t- `2` - ANSI 256 colors support.\n\t\t- `3` - Truecolor 16 million colors support.\n\t\t*/\n\t\tlevel?: Level;\n\t}\n\n\t/**\n\tReturn a new Chalk instance.\n\t*/\n\ttype Instance = new (options?: Options) => Chalk;\n\n\t/**\n\tDetect whether the terminal supports color.\n\t*/\n\tinterface ColorSupport {\n\t\t/**\n\t\tThe color level used by Chalk.\n\t\t*/\n\t\tlevel: Level;\n\n\t\t/**\n\t\tReturn whether Chalk supports basic 16 colors.\n\t\t*/\n\t\thasBasic: boolean;\n\n\t\t/**\n\t\tReturn whether Chalk supports ANSI 256 colors.\n\t\t*/\n\t\thas256: boolean;\n\n\t\t/**\n\t\tReturn whether Chalk supports Truecolor 16 million colors.\n\t\t*/\n\t\thas16m: boolean;\n\t}\n\n\tinterface ChalkFunction {\n\t\t/**\n\t\tUse a template string.\n\n\t\t@remarks Template literals are unsupported for nested calls (see [issue #341](https://github.com/chalk/chalk/issues/341))\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tlog(chalk`\n\t\tCPU: {red ${cpu.totalPercent}%}\n\t\tRAM: {green ${ram.used / ram.total * 100}%}\n\t\tDISK: {rgb(255,131,0) ${disk.used / disk.total * 100}%}\n\t\t`);\n\t\t```\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tlog(chalk.red.bgBlack`2 + 3 = {bold ${2 + 3}}`)\n\t\t```\n\t\t*/\n\t\t(text: TemplateStringsArray, ...placeholders: unknown[]): string;\n\n\t\t(...text: unknown[]): string;\n\t}\n\n\tinterface Chalk extends ChalkFunction {\n\t\t/**\n\t\tReturn a new Chalk instance.\n\t\t*/\n\t\tInstance: Instance;\n\n\t\t/**\n\t\tThe color support for Chalk.\n\n\t\tBy default, color support is automatically detected based on the environment.\n\n\t\tLevels:\n\t\t- `0` - All colors disabled.\n\t\t- `1` - Basic 16 colors support.\n\t\t- `2` - ANSI 256 colors support.\n\t\t- `3` - Truecolor 16 million colors support.\n\t\t*/\n\t\tlevel: Level;\n\n\t\t/**\n\t\tUse HEX value to set text color.\n\n\t\t@param color - Hexadecimal value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.hex('#DEADED');\n\t\t```\n\t\t*/\n\t\thex(color: string): Chalk;\n\n\t\t/**\n\t\tUse keyword color value to set text color.\n\n\t\t@param color - Keyword value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.keyword('orange');\n\t\t```\n\t\t*/\n\t\tkeyword(color: string): Chalk;\n\n\t\t/**\n\t\tUse RGB values to set text color.\n\t\t*/\n\t\trgb(red: number, green: number, blue: number): Chalk;\n\n\t\t/**\n\t\tUse HSL values to set text color.\n\t\t*/\n\t\thsl(hue: number, saturation: number, lightness: number): Chalk;\n\n\t\t/**\n\t\tUse HSV values to set text color.\n\t\t*/\n\t\thsv(hue: number, saturation: number, value: number): Chalk;\n\n\t\t/**\n\t\tUse HWB values to set text color.\n\t\t*/\n\t\thwb(hue: number, whiteness: number, blackness: number): Chalk;\n\n\t\t/**\n\t\tUse a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set text color.\n\n\t\t30 <= code && code < 38 || 90 <= code && code < 98\n\t\tFor example, 31 for red, 91 for redBright.\n\t\t*/\n\t\tansi(code: number): Chalk;\n\n\t\t/**\n\t\tUse a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.\n\t\t*/\n\t\tansi256(index: number): Chalk;\n\n\t\t/**\n\t\tUse HEX value to set background color.\n\n\t\t@param color - Hexadecimal value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.bgHex('#DEADED');\n\t\t```\n\t\t*/\n\t\tbgHex(color: string): Chalk;\n\n\t\t/**\n\t\tUse keyword color value to set background color.\n\n\t\t@param color - Keyword value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.bgKeyword('orange');\n\t\t```\n\t\t*/\n\t\tbgKeyword(color: string): Chalk;\n\n\t\t/**\n\t\tUse RGB values to set background color.\n\t\t*/\n\t\tbgRgb(red: number, green: number, blue: number): Chalk;\n\n\t\t/**\n\t\tUse HSL values to set background color.\n\t\t*/\n\t\tbgHsl(hue: number, saturation: number, lightness: number): Chalk;\n\n\t\t/**\n\t\tUse HSV values to set background color.\n\t\t*/\n\t\tbgHsv(hue: number, saturation: number, value: number): Chalk;\n\n\t\t/**\n\t\tUse HWB values to set background color.\n\t\t*/\n\t\tbgHwb(hue: number, whiteness: number, blackness: number): Chalk;\n\n\t\t/**\n\t\tUse a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set background color.\n\n\t\t30 <= code && code < 38 || 90 <= code && code < 98\n\t\tFor example, 31 for red, 91 for redBright.\n\t\tUse the foreground code, not the background code (for example, not 41, nor 101).\n\t\t*/\n\t\tbgAnsi(code: number): Chalk;\n\n\t\t/**\n\t\tUse a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set background color.\n\t\t*/\n\t\tbgAnsi256(index: number): Chalk;\n\n\t\t/**\n\t\tModifier: Resets the current color chain.\n\t\t*/\n\t\treadonly reset: Chalk;\n\n\t\t/**\n\t\tModifier: Make text bold.\n\t\t*/\n\t\treadonly bold: Chalk;\n\n\t\t/**\n\t\tModifier: Emitting only a small amount of light.\n\t\t*/\n\t\treadonly dim: Chalk;\n\n\t\t/**\n\t\tModifier: Make text italic. (Not widely supported)\n\t\t*/\n\t\treadonly italic: Chalk;\n\n\t\t/**\n\t\tModifier: Make text underline. (Not widely supported)\n\t\t*/\n\t\treadonly underline: Chalk;\n\n\t\t/**\n\t\tModifier: Inverse background and foreground colors.\n\t\t*/\n\t\treadonly inverse: Chalk;\n\n\t\t/**\n\t\tModifier: Prints the text, but makes it invisible.\n\t\t*/\n\t\treadonly hidden: Chalk;\n\n\t\t/**\n\t\tModifier: Puts a horizontal line through the center of the text. (Not widely supported)\n\t\t*/\n\t\treadonly strikethrough: Chalk;\n\n\t\t/**\n\t\tModifier: Prints the text only when Chalk has a color support level > 0.\n\t\tCan be useful for things that are purely cosmetic.\n\t\t*/\n\t\treadonly visible: Chalk;\n\n\t\treadonly black: Chalk;\n\t\treadonly red: Chalk;\n\t\treadonly green: Chalk;\n\t\treadonly yellow: Chalk;\n\t\treadonly blue: Chalk;\n\t\treadonly magenta: Chalk;\n\t\treadonly cyan: Chalk;\n\t\treadonly white: Chalk;\n\n\t\t/*\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly gray: Chalk;\n\n\t\t/*\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly grey: Chalk;\n\n\t\treadonly blackBright: Chalk;\n\t\treadonly redBright: Chalk;\n\t\treadonly greenBright: Chalk;\n\t\treadonly yellowBright: Chalk;\n\t\treadonly blueBright: Chalk;\n\t\treadonly magentaBright: Chalk;\n\t\treadonly cyanBright: Chalk;\n\t\treadonly whiteBright: Chalk;\n\n\t\treadonly bgBlack: Chalk;\n\t\treadonly bgRed: Chalk;\n\t\treadonly bgGreen: Chalk;\n\t\treadonly bgYellow: Chalk;\n\t\treadonly bgBlue: Chalk;\n\t\treadonly bgMagenta: Chalk;\n\t\treadonly bgCyan: Chalk;\n\t\treadonly bgWhite: Chalk;\n\n\t\t/*\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGray: Chalk;\n\n\t\t/*\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGrey: Chalk;\n\n\t\treadonly bgBlackBright: Chalk;\n\t\treadonly bgRedBright: Chalk;\n\t\treadonly bgGreenBright: Chalk;\n\t\treadonly bgYellowBright: Chalk;\n\t\treadonly bgBlueBright: Chalk;\n\t\treadonly bgMagentaBright: Chalk;\n\t\treadonly bgCyanBright: Chalk;\n\t\treadonly bgWhiteBright: Chalk;\n\t}\n}\n\n/**\nMain Chalk object that allows to chain styles together.\nCall the last one as a method with a string argument.\nOrder doesn't matter, and later styles take precedent in case of a conflict.\nThis simply means that `chalk.red.yellow.green` is equivalent to `chalk.green`.\n*/\ndeclare const chalk: chalk.Chalk & chalk.ChalkFunction & {\n\tsupportsColor: chalk.ColorSupport | false;\n\tLevel: chalk.Level;\n\tColor: Color;\n\tForegroundColor: ForegroundColor;\n\tBackgroundColor: BackgroundColor;\n\tModifiers: Modifiers;\n\tstderr: chalk.Chalk & {supportsColor: chalk.ColorSupport | false};\n};\n\nexport = chalk;\n",
    "node_modules/chalk/package.json": "{\n\t\"name\": \"chalk\",\n\t\"version\": \"4.1.2\",\n\t\"description\": \"Terminal string styling done right\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/chalk\",\n\t\"funding\": \"https://github.com/chalk/chalk?sponsor=1\",\n\t\"main\": \"source\",\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava && tsd\",\n\t\t\"bench\": \"matcha benchmark.js\"\n\t},\n\t\"files\": [\n\t\t\"source\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"str\",\n\t\t\"ansi\",\n\t\t\"style\",\n\t\t\"styles\",\n\t\t\"tty\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.1.0\",\n\t\t\"supports-color\": \"^7.1.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"coveralls\": \"^3.0.7\",\n\t\t\"execa\": \"^4.0.0\",\n\t\t\"import-fresh\": \"^3.1.0\",\n\t\t\"matcha\": \"^0.7.0\",\n\t\t\"nyc\": \"^15.0.0\",\n\t\t\"resolve-from\": \"^5.0.0\",\n\t\t\"tsd\": \"^0.7.4\",\n\t\t\"xo\": \"^0.28.2\"\n\t},\n\t\"xo\": {\n\t\t\"rules\": {\n\t\t\t\"unicorn/prefer-string-slice\": \"off\",\n\t\t\t\"unicorn/prefer-includes\": \"off\",\n\t\t\t\"@typescript-eslint/member-ordering\": \"off\",\n\t\t\t\"no-redeclare\": \"off\",\n\t\t\t\"unicorn/string-content\": \"off\",\n\t\t\t\"unicorn/better-regex\": \"off\"\n\t\t}\n\t}\n}\n",
    "node_modules/chardet/package.json": "{\n  \"name\": \"chardet\",\n  \"version\": \"0.7.0\",\n  \"homepage\": \"https://github.com/runk/node-chardet\",\n  \"description\": \"Character detector\",\n  \"keywords\": [\n    \"encoding\",\n    \"character\",\n    \"utf8\",\n    \"detector\",\n    \"chardet\",\n    \"icu\"\n  ],\n  \"author\": \"Dmitry Shirokov <deadrunk@gmail.com>\",\n  \"contributors\": [\n    \"@spikying\",\n    \"@wtgtybhertgeghgtwtg\",\n    \"@suisho\",\n    \"@seangarner\",\n    \"@zevanty\"\n  ],\n  \"devDependencies\": {\n    \"github-publish-release\": \"^5.0.0\",\n    \"mocha\": \"^5.2.0\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git@github.com:runk/node-chardet.git\"\n  },\n  \"bugs\": {\n    \"mail\": \"deadrunk@gmail.com\",\n    \"url\": \"http://github.com/runk/node-chardet/issues\"\n  },\n  \"scripts\": {\n    \"test\": \"mocha -R spec --recursive --bail\",\n    \"release\": \"scripts/release\"\n  },\n  \"main\": \"index.js\",\n  \"engine\": {\n    \"node\": \">=4\"\n  },\n  \"readmeFilename\": \"README.md\",\n  \"directories\": {\n    \"test\": \"test\"\n  },\n  \"license\": \"MIT\"\n}\n",
    "node_modules/cli-cursor/index.d.ts": "/// <reference types=\"node\"/>\n\n/**\nShow cursor.\n\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\ncliCursor.show();\n```\n*/\nexport function show(stream?: NodeJS.WritableStream): void;\n\n/**\nHide cursor.\n\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\ncliCursor.hide();\n```\n*/\nexport function hide(stream?: NodeJS.WritableStream): void;\n\n/**\nToggle cursor visibility.\n\n@param force - Is useful to show or hide the cursor based on a boolean.\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\nconst unicornsAreAwesome = true;\ncliCursor.toggle(unicornsAreAwesome);\n```\n*/\nexport function toggle(force?: boolean, stream?: NodeJS.WritableStream): void;\n",
    "node_modules/cli-cursor/package.json": "{\n\t\"name\": \"cli-cursor\",\n\t\"version\": \"3.1.0\",\n\t\"description\": \"Toggle the CLI cursor\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/cli-cursor\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"cli\",\n\t\t\"cursor\",\n\t\t\"ansi\",\n\t\t\"toggle\",\n\t\t\"display\",\n\t\t\"show\",\n\t\t\"hide\",\n\t\t\"term\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"tty\",\n\t\t\"shell\",\n\t\t\"command-line\"\n\t],\n\t\"dependencies\": {\n\t\t\"restore-cursor\": \"^3.1.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"@types/node\": \"^12.0.7\",\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/cli-spinners/index.d.ts": "declare namespace cliSpinners {\n\ttype SpinnerName =\n\t\t| 'dots'\n\t\t| 'dots2'\n\t\t| 'dots3'\n\t\t| 'dots4'\n\t\t| 'dots5'\n\t\t| 'dots6'\n\t\t| 'dots7'\n\t\t| 'dots8'\n\t\t| 'dots9'\n\t\t| 'dots10'\n\t\t| 'dots11'\n\t\t| 'dots12'\n\t\t| 'dots8Bit'\n\t\t| 'sand'\n\t\t| 'line'\n\t\t| 'line2'\n\t\t| 'pipe'\n\t\t| 'simpleDots'\n\t\t| 'simpleDotsScrolling'\n\t\t| 'star'\n\t\t| 'star2'\n\t\t| 'flip'\n\t\t| 'hamburger'\n\t\t| 'growVertical'\n\t\t| 'growHorizontal'\n\t\t| 'balloon'\n\t\t| 'balloon2'\n\t\t| 'noise'\n\t\t| 'bounce'\n\t\t| 'boxBounce'\n\t\t| 'boxBounce2'\n\t\t| 'binary'\n\t\t| 'triangle'\n\t\t| 'arc'\n\t\t| 'circle'\n\t\t| 'squareCorners'\n\t\t| 'circleQuarters'\n\t\t| 'circleHalves'\n\t\t| 'squish'\n\t\t| 'toggle'\n\t\t| 'toggle2'\n\t\t| 'toggle3'\n\t\t| 'toggle4'\n\t\t| 'toggle5'\n\t\t| 'toggle6'\n\t\t| 'toggle7'\n\t\t| 'toggle8'\n\t\t| 'toggle9'\n\t\t| 'toggle10'\n\t\t| 'toggle11'\n\t\t| 'toggle12'\n\t\t| 'toggle13'\n\t\t| 'arrow'\n\t\t| 'arrow2'\n\t\t| 'arrow3'\n\t\t| 'bouncingBar'\n\t\t| 'bouncingBall'\n\t\t| 'smiley'\n\t\t| 'monkey'\n\t\t| 'hearts'\n\t\t| 'clock'\n\t\t| 'earth'\n\t\t| 'material'\n\t\t| 'moon'\n\t\t| 'runner'\n\t\t| 'pong'\n\t\t| 'shark'\n\t\t| 'dqpb'\n\t\t| 'weather'\n\t\t| 'christmas'\n\t\t| 'grenade'\n\t\t| 'point'\n\t\t| 'layer'\n\t\t| 'betaWave'\n\t\t| 'fingerDance'\n\t\t| 'fistBump'\n\t\t| 'soccerHeader'\n\t\t| 'mindblown'\n\t\t| 'speaker'\n\t\t| 'orangePulse'\n\t\t| 'bluePulse'\n\t\t| 'orangeBluePulse'\n\t\t| 'timeTravel'\n\t\t| 'aesthetic'\n\t\t| 'dwarfFortress';\n\n\tinterface Spinner {\n\t\t/**\n\t\tRecommended interval.\n\t\t*/\n\t\treadonly interval: number;\n\n\t\t/**\n\t\tA list of frames to show for the spinner.\n\t\t*/\n\t\treadonly frames: string[];\n\t}\n}\n\n/**\n70+ spinners for use in the terminal.\n\n@example\n```\nimport cliSpinners = require('cli-spinners');\n\nconsole.log(cliSpinners.dots);\n// {\n//   interval: 80,\n//   frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']\n// }\n```\n*/\ndeclare const cliSpinners: {\n\treadonly [spinnerName in cliSpinners.SpinnerName]: cliSpinners.Spinner;\n} & {\n\t/**\n\tReturns a random spinner each time it's called.\n\t*/\n\treadonly random: cliSpinners.Spinner;\n\n\t// TODO: Remove this for the next major release\n\tdefault: typeof cliSpinners;\n};\n\nexport = cliSpinners;\n",
    "node_modules/cli-spinners/package.json": "{\n\t\"name\": \"cli-spinners\",\n\t\"version\": \"2.9.2\",\n\t\"description\": \"Spinners for use in the terminal\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/cli-spinners\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=6\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\",\n\t\t\"asciicast\": \"asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\",\n\t\t\"spinners.json\"\n\t],\n\t\"keywords\": [\n\t\t\"cli\",\n\t\t\"spinner\",\n\t\t\"spinners\",\n\t\t\"terminal\",\n\t\t\"term\",\n\t\t\"console\",\n\t\t\"ascii\",\n\t\t\"unicode\",\n\t\t\"loading\",\n\t\t\"indicator\",\n\t\t\"progress\",\n\t\t\"busy\",\n\t\t\"wait\",\n\t\t\"idle\",\n\t\t\"json\"\n\t],\n\t\"devDependencies\": {\n\t\t\"@types/node\": \"^17.0.41\",\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"log-update\": \"^3.2.0\",\n\t\t\"string-length\": \"^4.0.1\",\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/cli-width/package.json": "{\n  \"name\": \"cli-width\",\n  \"version\": \"3.0.0\",\n  \"description\": \"Get stdout window width, with two fallbacks, tty and then a default.\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"node test | tspec\",\n    \"coverage\": \"nyc node test | tspec\",\n    \"coveralls\": \"npm run coverage -s && coveralls < coverage/lcov.info\",\n    \"release\": \"standard-version\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git@github.com:knownasilya/cli-width.git\"\n  },\n  \"author\": \"Ilya Radchenko <knownasilya@gmail.com>\",\n  \"license\": \"ISC\",\n  \"bugs\": {\n    \"url\": \"https://github.com/knownasilya/cli-width/issues\"\n  },\n  \"homepage\": \"https://github.com/knownasilya/cli-width\",\n  \"engines\": {\n    \"node\": \">= 10\"\n  },\n  \"devDependencies\": {\n    \"coveralls\": \"^3.0.11\",\n    \"nyc\": \"^15.0.1\",\n    \"standard-version\": \"^7.1.0\",\n    \"tap-spec\": \"^5.0.0\",\n    \"tape\": \"^4.13.2\"\n  }\n}\n",
    "node_modules/clone/package.json": "{\n  \"name\": \"clone\",\n  \"description\": \"deep cloning of objects and arrays\",\n  \"tags\": [\n    \"clone\",\n    \"object\",\n    \"array\",\n    \"function\",\n    \"date\"\n  ],\n  \"version\": \"1.0.4\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/pvorb/node-clone.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/pvorb/node-clone/issues\"\n  },\n  \"main\": \"clone.js\",\n  \"author\": \"Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/)\",\n  \"contributors\": [\n    \"Blake Miner <miner.blake@gmail.com> (http://www.blakeminer.com/)\",\n    \"Tian You <axqd001@gmail.com> (http://blog.axqd.net/)\",\n    \"George Stagas <gstagas@gmail.com> (http://stagas.com/)\",\n    \"Tobiasz Cudnik <tobiasz.cudnik@gmail.com> (https://github.com/TobiaszCudnik)\",\n    \"Pavel Lang <langpavel@phpskelet.org> (https://github.com/langpavel)\",\n    \"Dan MacTough (http://yabfog.com/)\",\n    \"w1nk (https://github.com/w1nk)\",\n    \"Hugh Kennedy (http://twitter.com/hughskennedy)\",\n    \"Dustin Diaz (http://dustindiaz.com)\",\n    \"Ilya Shaisultanov (https://github.com/diversario)\",\n    \"Nathan MacInnes <nathan@macinn.es> (http://macinn.es/)\",\n    \"Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)\",\n    \"Nathan Zadoks (https://github.com/nathan7)\",\n    \"Róbert Oroszi <robert+gh@oroszi.net> (https://github.com/oroce)\",\n    \"Aurélio A. Heckert (http://softwarelivre.org/aurium)\",\n    \"Guy Ellis (http://www.guyellisrocks.com/)\"\n  ],\n  \"license\": \"MIT\",\n  \"engines\": {\n    \"node\": \">=0.8\"\n  },\n  \"dependencies\": {},\n  \"devDependencies\": {\n    \"nodeunit\": \"~0.9.0\"\n  },\n  \"optionalDependencies\": {},\n  \"scripts\": {\n    \"test\": \"nodeunit test.js\"\n  }\n}\n",
    "node_modules/color-convert/package.json": "{\n  \"name\": \"color-convert\",\n  \"description\": \"Plain color conversion functions\",\n  \"version\": \"2.0.1\",\n  \"author\": \"Heather Arthur <fayearthur@gmail.com>\",\n  \"license\": \"MIT\",\n  \"repository\": \"Qix-/color-convert\",\n  \"scripts\": {\n    \"pretest\": \"xo\",\n    \"test\": \"node test/basic.js\"\n  },\n  \"engines\": {\n    \"node\": \">=7.0.0\"\n  },\n  \"keywords\": [\n    \"color\",\n    \"colour\",\n    \"convert\",\n    \"converter\",\n    \"conversion\",\n    \"rgb\",\n    \"hsl\",\n    \"hsv\",\n    \"hwb\",\n    \"cmyk\",\n    \"ansi\",\n    \"ansi16\"\n  ],\n  \"files\": [\n    \"index.js\",\n    \"conversions.js\",\n    \"route.js\"\n  ],\n  \"xo\": {\n    \"rules\": {\n      \"default-case\": 0,\n      \"no-inline-comments\": 0,\n      \"operator-linebreak\": 0\n    }\n  },\n  \"devDependencies\": {\n    \"chalk\": \"^2.4.2\",\n    \"xo\": \"^0.24.0\"\n  },\n  \"dependencies\": {\n    \"color-name\": \"~1.1.4\"\n  }\n}\n",
    "node_modules/color-name/package.json": "{\r\n  \"name\": \"color-name\",\r\n  \"version\": \"1.1.4\",\r\n  \"description\": \"A list of color names and its values\",\r\n  \"main\": \"index.js\",\r\n  \"files\": [\r\n    \"index.js\"\r\n  ],\r\n  \"scripts\": {\r\n    \"test\": \"node test.js\"\r\n  },\r\n  \"repository\": {\r\n    \"type\": \"git\",\r\n    \"url\": \"git@github.com:colorjs/color-name.git\"\r\n  },\r\n  \"keywords\": [\r\n    \"color-name\",\r\n    \"color\",\r\n    \"color-keyword\",\r\n    \"keyword\"\r\n  ],\r\n  \"author\": \"DY <dfcreative@gmail.com>\",\r\n  \"license\": \"MIT\",\r\n  \"bugs\": {\r\n    \"url\": \"https://github.com/colorjs/color-name/issues\"\r\n  },\r\n  \"homepage\": \"https://github.com/colorjs/color-name\"\r\n}\r\n",
    "node_modules/commander/package.json": "{\n  \"name\": \"commander\",\n  \"version\": \"10.0.1\",\n  \"description\": \"the complete solution for node.js command-line programs\",\n  \"keywords\": [\n    \"commander\",\n    \"command\",\n    \"option\",\n    \"parser\",\n    \"cli\",\n    \"argument\",\n    \"args\",\n    \"argv\"\n  ],\n  \"author\": \"TJ Holowaychuk <tj@vision-media.ca>\",\n  \"license\": \"MIT\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/tj/commander.js.git\"\n  },\n  \"scripts\": {\n    \"lint\": \"npm run lint:javascript && npm run lint:typescript\",\n    \"lint:javascript\": \"eslint index.js esm.mjs \\\"lib/*.js\\\" \\\"tests/**/*.js\\\"\",\n    \"lint:typescript\": \"eslint typings/*.ts tests/*.ts\",\n    \"test\": \"jest && npm run test-typings\",\n    \"test-esm\": \"node ./tests/esm-imports-test.mjs\",\n    \"test-typings\": \"tsd\",\n    \"typescript-checkJS\": \"tsc --allowJS --checkJS index.js lib/*.js --noEmit\",\n    \"test-all\": \"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm\"\n  },\n  \"files\": [\n    \"index.js\",\n    \"lib/*.js\",\n    \"esm.mjs\",\n    \"typings/index.d.ts\",\n    \"package-support.json\"\n  ],\n  \"type\": \"commonjs\",\n  \"main\": \"./index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./typings/index.d.ts\",\n      \"require\": \"./index.js\",\n      \"import\": \"./esm.mjs\"\n    },\n    \"./esm.mjs\": \"./esm.mjs\"\n  },\n  \"devDependencies\": {\n    \"@types/jest\": \"^29.2.4\",\n    \"@types/node\": \"^18.11.18\",\n    \"@typescript-eslint/eslint-plugin\": \"^5.47.1\",\n    \"@typescript-eslint/parser\": \"^5.47.1\",\n    \"eslint\": \"^8.30.0\",\n    \"eslint-config-standard\": \"^17.0.0\",\n    \"eslint-config-standard-with-typescript\": \"^24.0.0\",\n    \"eslint-plugin-import\": \"^2.26.0\",\n    \"eslint-plugin-jest\": \"^27.1.7\",\n    \"eslint-plugin-n\": \"^15.6.0\",\n    \"eslint-plugin-promise\": \"^6.1.1\",\n    \"jest\": \"^29.3.1\",\n    \"ts-jest\": \"^29.0.3\",\n    \"tsd\": \"^0.25.0\",\n    \"typescript\": \"^4.9.4\"\n  },\n  \"types\": \"typings/index.d.ts\",\n  \"jest\": {\n    \"testEnvironment\": \"node\",\n    \"collectCoverage\": true,\n    \"transform\": {\n      \"^.+\\\\.tsx?$\": \"ts-jest\"\n    },\n    \"testPathIgnorePatterns\": [\n      \"/node_modules/\"\n    ]\n  },\n  \"engines\": {\n    \"node\": \">=14\"\n  },\n  \"support\": true\n}\n",
    "node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n  code: string;\n  exitCode: number;\n  message: string;\n  nestedError?: string;\n\n  /**\n   * Constructs the CommanderError class\n   * @param exitCode - suggested exit code which could be used with process.exit\n   * @param code - an id string representing the error\n   * @param message - human-readable description of the error\n   * @constructor\n   */\n  constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n  /**\n   * Constructs the InvalidArgumentError class\n   * @param message - explanation of why argument is invalid\n   * @constructor\n   */\n  constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n  /** an id string representing the error */\n  code?: string;\n  /** suggested exit code which could be used with process.exit */\n  exitCode?: number;\n}\n\nexport class Argument {\n  description: string;\n  required: boolean;\n  variadic: boolean;\n\n  /**\n   * Initialize a new command argument with the given name and description.\n   * The default is that the argument is required, and you can explicitly\n   * indicate this with <> around the name. Put [] around the name for an optional argument.\n   */\n  constructor(arg: string, description?: string);\n\n  /**\n   * Return argument name.\n   */\n  name(): string;\n\n  /**\n   * Set the default value, and optionally supply the description to be displayed in the help.\n   */\n  default(value: unknown, description?: string): this;\n\n  /**\n   * Set the custom handler for processing CLI command arguments into argument values.\n   */\n  argParser<T>(fn: (value: string, previous: T) => T): this;\n\n  /**\n   * Only allow argument value to be one of choices.\n   */\n  choices(values: readonly string[]): this;\n\n  /**\n   * Make argument required.\n   */\n  argRequired(): this;\n\n  /**\n   * Make argument optional.\n   */\n  argOptional(): this;\n}\n\nexport class Option {\n  flags: string;\n  description: string;\n\n  required: boolean; // A value must be supplied when the option is specified.\n  optional: boolean; // A value is optional when the option is specified.\n  variadic: boolean;\n  mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n  short?: string;\n  long?: string;\n  negate: boolean;\n  defaultValue?: any;\n  defaultValueDescription?: string;\n  parseArg?: <T>(value: string, previous: T) => T;\n  hidden: boolean;\n  argChoices?: string[];\n\n  constructor(flags: string, description?: string);\n\n  /**\n   * Set the default value, and optionally supply the description to be displayed in the help.\n   */\n  default(value: unknown, description?: string): this;\n\n  /**\n   * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n   * The custom processing (parseArg) is called.\n   *\n   * @example\n   * ```ts\n   * new Option('--color').default('GREYSCALE').preset('RGB');\n   * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n   * ```\n   */\n  preset(arg: unknown): this;\n\n  /**\n   * Add option name(s) that conflict with this option.\n   * An error will be displayed if conflicting options are found during parsing.\n   *\n   * @example\n   * ```ts\n   * new Option('--rgb').conflicts('cmyk');\n   * new Option('--js').conflicts(['ts', 'jsx']);\n   * ```\n   */\n  conflicts(names: string | string[]): this;\n\n  /**\n   * Specify implied option values for when this option is set and the implied options are not.\n   *\n   * The custom processing (parseArg) is not called on the implied values.\n   *\n   * @example\n   * program\n   *   .addOption(new Option('--log', 'write logging information to file'))\n   *   .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n   */\n  implies(optionValues: OptionValues): this;\n\n  /**\n   * Set environment variable to check for option value.\n   *\n   * An environment variables is only used if when processed the current option value is\n   * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n   */\n  env(name: string): this;\n\n  /**\n   * Calculate the full description, including defaultValue etc.\n   */\n  fullDescription(): string;\n\n  /**\n   * Set the custom handler for processing CLI option arguments into option values.\n   */\n  argParser<T>(fn: (value: string, previous: T) => T): this;\n\n  /**\n   * Whether the option is mandatory and must have a value after parsing.\n   */\n  makeOptionMandatory(mandatory?: boolean): this;\n\n  /**\n   * Hide option in help.\n   */\n  hideHelp(hide?: boolean): this;\n\n  /**\n   * Only allow option value to be one of choices.\n   */\n  choices(values: readonly string[]): this;\n\n  /**\n   * Return option name.\n   */\n  name(): string;\n\n  /**\n   * Return option name, in a camelcase format that can be used\n   * as a object attribute key.\n   */\n  attributeName(): string;\n\n  /**\n   * Return whether a boolean option.\n   *\n   * Options are one of boolean, negated, required argument, or optional argument.\n   */\n  isBoolean(): boolean;\n}\n\nexport class Help {\n  /** output helpWidth, long lines are wrapped to fit */\n  helpWidth?: number;\n  sortSubcommands: boolean;\n  sortOptions: boolean;\n  showGlobalOptions: boolean;\n\n  constructor();\n\n  /** Get the command term to show in the list of subcommands. */\n  subcommandTerm(cmd: Command): string;\n  /** Get the command summary to show in the list of subcommands. */\n  subcommandDescription(cmd: Command): string;\n  /** Get the option term to show in the list of options. */\n  optionTerm(option: Option): string;\n  /** Get the option description to show in the list of options. */\n  optionDescription(option: Option): string;\n  /** Get the argument term to show in the list of arguments. */\n  argumentTerm(argument: Argument): string;\n  /** Get the argument description to show in the list of arguments. */\n  argumentDescription(argument: Argument): string;\n\n  /** Get the command usage to be displayed at the top of the built-in help. */\n  commandUsage(cmd: Command): string;\n  /** Get the description for the command. */\n  commandDescription(cmd: Command): string;\n\n  /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n  visibleCommands(cmd: Command): Command[];\n  /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n  visibleOptions(cmd: Command): Option[];\n  /** Get an array of the visible global options. (Not including help.) */\n  visibleGlobalOptions(cmd: Command): Option[];\n  /** Get an array of the arguments which have descriptions. */\n  visibleArguments(cmd: Command): Argument[];\n\n  /** Get the longest command term length. */\n  longestSubcommandTermLength(cmd: Command, helper: Help): number;\n  /** Get the longest option term length. */\n  longestOptionTermLength(cmd: Command, helper: Help): number;\n  /** Get the longest global option term length. */\n  longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n  /** Get the longest argument term length. */\n  longestArgumentTermLength(cmd: Command, helper: Help): number;\n  /** Calculate the pad width from the maximum term length. */\n  padWidth(cmd: Command, helper: Help): number;\n\n  /**\n   * Wrap the given string to width characters per line, with lines after the first indented.\n   * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n   */\n  wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n  /** Generate the built-in help text. */\n  formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n  from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n  error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n  error: boolean;\n  command: Command;\n}\nexport interface OutputConfiguration {\n  writeOut?(str: string): void;\n  writeErr?(str: string): void;\n  getOutHelpWidth?(): number;\n  getErrHelpWidth?(): number;\n  outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n  args: string[];\n  processedArgs: any[];\n  readonly commands: readonly Command[];\n  readonly options: readonly Option[];\n  parent: Command | null;\n\n  constructor(name?: string);\n\n  /**\n   * Set the program version to `str`.\n   *\n   * This method auto-registers the \"-V, --version\" flag\n   * which will print the version number when passed.\n   *\n   * You can optionally supply the  flags and description to override the defaults.\n   */\n  version(str: string, flags?: string, description?: string): this;\n\n  /**\n   * Define a command, implemented using an action handler.\n   *\n   * @remarks\n   * The command description is supplied using `.description`, not as a parameter to `.command`.\n   *\n   * @example\n   * ```ts\n   * program\n   *   .command('clone <source> [destination]')\n   *   .description('clone a repository into a newly created directory')\n   *   .action((source, destination) => {\n   *     console.log('clone command called');\n   *   });\n   * ```\n   *\n   * @param nameAndArgs - command name and arguments, args are  `<required>` or `[optional]` and last may also be `variadic...`\n   * @param opts - configuration options\n   * @returns new command\n   */\n  command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n  /**\n   * Define a command, implemented in a separate executable file.\n   *\n   * @remarks\n   * The command description is supplied as the second parameter to `.command`.\n   *\n   * @example\n   * ```ts\n   *  program\n   *    .command('start <service>', 'start named service')\n   *    .command('stop [service]', 'stop named service, or all if no name supplied');\n   * ```\n   *\n   * @param nameAndArgs - command name and arguments, args are  `<required>` or `[optional]` and last may also be `variadic...`\n   * @param description - description of executable command\n   * @param opts - configuration options\n   * @returns `this` command for chaining\n   */\n  command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n  /**\n   * Factory routine to create a new unattached command.\n   *\n   * See .command() for creating an attached subcommand, which uses this routine to\n   * create the command. You can override createCommand to customise subcommands.\n   */\n  createCommand(name?: string): Command;\n\n  /**\n   * Add a prepared subcommand.\n   *\n   * See .command() for creating an attached subcommand which inherits settings from its parent.\n   *\n   * @returns `this` command for chaining\n   */\n  addCommand(cmd: Command, opts?: CommandOptions): this;\n\n  /**\n   * Factory routine to create a new unattached argument.\n   *\n   * See .argument() for creating an attached argument, which uses this routine to\n   * create the argument. You can override createArgument to return a custom argument.\n   */\n  createArgument(name: string, description?: string): Argument;\n\n  /**\n   * Define argument syntax for command.\n   *\n   * The default is that the argument is required, and you can explicitly\n   * indicate this with <> around the name. Put [] around the name for an optional argument.\n   *\n   * @example\n   * ```\n   * program.argument('<input-file>');\n   * program.argument('[output-file]');\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n  argument(name: string, description?: string, defaultValue?: unknown): this;\n\n  /**\n   * Define argument syntax for command, adding a prepared argument.\n   *\n   * @returns `this` command for chaining\n   */\n  addArgument(arg: Argument): this;\n\n  /**\n   * Define argument syntax for command, adding multiple at once (without descriptions).\n   *\n   * See also .argument().\n   *\n   * @example\n   * ```\n   * program.arguments('<cmd> [env]');\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  arguments(names: string): this;\n\n  /**\n   * Override default decision whether to add implicit help command.\n   *\n   * @example\n   * ```\n   * addHelpCommand() // force on\n   * addHelpCommand(false); // force off\n   * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n  /**\n   * Add hook for life cycle event.\n   */\n  hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n  /**\n   * Register callback to use as replacement for calling process.exit.\n   */\n  exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n  /**\n   * Display error message and exit (or call exitOverride).\n   */\n  error(message: string, errorOptions?: ErrorOptions): never;\n\n  /**\n   * You can customise the help with a subclass of Help by overriding createHelp,\n   * or by overriding Help properties using configureHelp().\n   */\n  createHelp(): Help;\n\n  /**\n   * You can customise the help by overriding Help properties using configureHelp(),\n   * or with a subclass of Help by overriding createHelp().\n   */\n  configureHelp(configuration: HelpConfiguration): this;\n  /** Get configuration */\n  configureHelp(): HelpConfiguration;\n\n  /**\n   * The default output goes to stdout and stderr. You can customise this for special\n   * applications. You can also customise the display of errors by overriding outputError.\n   *\n   * The configuration properties are all functions:\n   * ```\n   * // functions to change where being written, stdout and stderr\n   * writeOut(str)\n   * writeErr(str)\n   * // matching functions to specify width for wrapping help\n   * getOutHelpWidth()\n   * getErrHelpWidth()\n   * // functions based on what is being written out\n   * outputError(str, write) // used for displaying errors, and not used for displaying help\n   * ```\n   */\n  configureOutput(configuration: OutputConfiguration): this;\n  /** Get configuration */\n  configureOutput(): OutputConfiguration;\n\n  /**\n   * Copy settings that are useful to have in common across root command and subcommands.\n   *\n   * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n   */\n  copyInheritedSettings(sourceCommand: Command): this;\n\n  /**\n   * Display the help or a custom message after an error occurs.\n   */\n  showHelpAfterError(displayHelp?: boolean | string): this;\n\n  /**\n   * Display suggestion of similar commands for unknown commands, or options for unknown options.\n   */\n  showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n  /**\n   * Register callback `fn` for the command.\n   *\n   * @example\n   * ```\n   * program\n   *   .command('serve')\n   *   .description('start service')\n   *   .action(function() {\n   *     // do work here\n   *   });\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  action(fn: (...args: any[]) => void | Promise<void>): this;\n\n  /**\n   * Define option with `flags`, `description` and optional\n   * coercion `fn`.\n   *\n   * The `flags` string contains the short and/or long flags,\n   * separated by comma, a pipe or space. The following are all valid\n   * all will output this way when `--help` is used.\n   *\n   *     \"-p, --pepper\"\n   *     \"-p|--pepper\"\n   *     \"-p --pepper\"\n   *\n   * @example\n   * ```\n   * // simple boolean defaulting to false\n   *  program.option('-p, --pepper', 'add pepper');\n   *\n   *  --pepper\n   *  program.pepper\n   *  // => Boolean\n   *\n   *  // simple boolean defaulting to true\n   *  program.option('-C, --no-cheese', 'remove cheese');\n   *\n   *  program.cheese\n   *  // => true\n   *\n   *  --no-cheese\n   *  program.cheese\n   *  // => false\n   *\n   *  // required argument\n   *  program.option('-C, --chdir <path>', 'change the working directory');\n   *\n   *  --chdir /tmp\n   *  program.chdir\n   *  // => \"/tmp\"\n   *\n   *  // optional argument\n   *  program.option('-c, --cheese [type]', 'add cheese [marble]');\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n  option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n  /** @deprecated since v7, instead use choices or a custom function */\n  option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n  /**\n   * Define a required option, which must have a value after parsing. This usually means\n   * the option must be specified on the command line. (Otherwise the same as .option().)\n   *\n   * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n   */\n  requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n  requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n  /** @deprecated since v7, instead use choices or a custom function */\n  requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n  /**\n   * Factory routine to create a new unattached option.\n   *\n   * See .option() for creating an attached option, which uses this routine to\n   * create the option. You can override createOption to return a custom option.\n   */\n\n  createOption(flags: string, description?: string): Option;\n\n  /**\n   * Add a prepared Option.\n   *\n   * See .option() and .requiredOption() for creating and attaching an option in a single call.\n   */\n  addOption(option: Option): this;\n\n  /**\n   * Whether to store option values as properties on command object,\n   * or store separately (specify false). In both cases the option values can be accessed using .opts().\n   *\n   * @returns `this` command for chaining\n   */\n  storeOptionsAsProperties<T extends OptionValues>(): this & T;\n  storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n  storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n  /**\n   * Retrieve option value.\n   */\n  getOptionValue(key: string): any;\n\n  /**\n   * Store option value.\n   */\n  setOptionValue(key: string, value: unknown): this;\n\n  /**\n   * Store option value and where the value came from.\n   */\n  setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n  /**\n   * Get source of option value.\n   */\n  getOptionValueSource(key: string): OptionValueSource | undefined;\n\n  /**\n    * Get source of option value. See also .optsWithGlobals().\n   */\n  getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n  /**\n   * Alter parsing of short flags with optional values.\n   *\n   * @example\n   * ```\n   * // for `.option('-f,--flag [value]'):\n   * .combineFlagAndOptionalValue(true)  // `-f80` is treated like `--flag=80`, this is the default behaviour\n   * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  combineFlagAndOptionalValue(combine?: boolean): this;\n\n  /**\n   * Allow unknown options on the command line.\n   *\n   * @returns `this` command for chaining\n   */\n  allowUnknownOption(allowUnknown?: boolean): this;\n\n  /**\n   * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n   *\n   * @returns `this` command for chaining\n   */\n  allowExcessArguments(allowExcess?: boolean): this;\n\n  /**\n   * Enable positional options. Positional means global options are specified before subcommands which lets\n   * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n   *\n   * The default behaviour is non-positional and global options may appear anywhere on the command line.\n   *\n   * @returns `this` command for chaining\n   */\n  enablePositionalOptions(positional?: boolean): this;\n\n  /**\n   * Pass through options that come after command-arguments rather than treat them as command-options,\n   * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n   * positional options to have been enabled on the program (parent commands).\n   *\n   * The default behaviour is non-positional and options may appear before or after command-arguments.\n   *\n   * @returns `this` command for chaining\n   */\n  passThroughOptions(passThrough?: boolean): this;\n\n  /**\n   * Parse `argv`, setting options and invoking commands when defined.\n   *\n   * The default expectation is that the arguments are from node and have the application as argv[0]\n   * and the script being run in argv[1], with user parameters after that.\n   *\n   * @example\n   * ```\n   * program.parse(process.argv);\n   * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n   * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  parse(argv?: readonly string[], options?: ParseOptions): this;\n\n  /**\n   * Parse `argv`, setting options and invoking commands when defined.\n   *\n   * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n   *\n   * The default expectation is that the arguments are from node and have the application as argv[0]\n   * and the script being run in argv[1], with user parameters after that.\n   *\n   * @example\n   * ```\n   * program.parseAsync(process.argv);\n   * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n   * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n   * ```\n   *\n   * @returns Promise\n   */\n  parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n  /**\n   * Parse options from `argv` removing known options,\n   * and return argv split into operands and unknown arguments.\n   *\n   *     argv => operands, unknown\n   *     --known kkk op => [op], []\n   *     op --known kkk => [op], []\n   *     sub --unknown uuu op => [sub], [--unknown uuu op]\n   *     sub -- --unknown uuu op => [sub --unknown uuu op], []\n   */\n  parseOptions(argv: string[]): ParseOptionsResult;\n\n  /**\n   * Return an object containing local option values as key-value pairs\n   */\n  opts<T extends OptionValues>(): T;\n\n  /**\n   * Return an object containing merged local and global option values as key-value pairs.\n   */\n  optsWithGlobals<T extends OptionValues>(): T;\n\n  /**\n   * Set the description.\n   *\n   * @returns `this` command for chaining\n   */\n\n  description(str: string): this;\n  /** @deprecated since v8, instead use .argument to add command argument with description */\n  description(str: string, argsDescription: Record<string, string>): this;\n  /**\n   * Get the description.\n   */\n  description(): string;\n\n  /**\n   * Set the summary. Used when listed as subcommand of parent.\n   *\n   * @returns `this` command for chaining\n   */\n\n  summary(str: string): this;\n  /**\n   * Get the summary.\n   */\n  summary(): string;\n\n  /**\n   * Set an alias for the command.\n   *\n   * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n   *\n   * @returns `this` command for chaining\n   */\n  alias(alias: string): this;\n  /**\n   * Get alias for the command.\n   */\n  alias(): string;\n\n  /**\n   * Set aliases for the command.\n   *\n   * Only the first alias is shown in the auto-generated help.\n   *\n   * @returns `this` command for chaining\n   */\n  aliases(aliases: readonly string[]): this;\n  /**\n   * Get aliases for the command.\n   */\n  aliases(): string[];\n\n  /**\n   * Set the command usage.\n   *\n   * @returns `this` command for chaining\n   */\n  usage(str: string): this;\n  /**\n   * Get the command usage.\n   */\n  usage(): string;\n\n  /**\n   * Set the name of the command.\n   *\n   * @returns `this` command for chaining\n   */\n  name(str: string): this;\n  /**\n   * Get the name of the command.\n   */\n  name(): string;\n\n  /**\n   * Set the name of the command from script filename, such as process.argv[1],\n   * or require.main.filename, or __filename.\n   *\n   * (Used internally and public although not documented in README.)\n   *\n   * @example\n   * ```ts\n   * program.nameFromFilename(require.main.filename);\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  nameFromFilename(filename: string): this;\n\n  /**\n   * Set the directory for searching for executable subcommands of this command.\n   *\n   * @example\n   * ```ts\n   * program.executableDir(__dirname);\n   * // or\n   * program.executableDir('subcommands');\n   * ```\n   *\n   * @returns `this` command for chaining\n   */\n  executableDir(path: string): this;\n  /**\n   * Get the executable search directory.\n   */\n  executableDir(): string;\n\n  /**\n   * Output help information for this command.\n   *\n   * Outputs built-in help, and custom text added using `.addHelpText()`.\n   *\n   */\n  outputHelp(context?: HelpContext): void;\n  /** @deprecated since v7 */\n  outputHelp(cb?: (str: string) => string): void;\n\n  /**\n   * Return command help documentation.\n   */\n  helpInformation(context?: HelpContext): string;\n\n  /**\n   * You can pass in flags and a description to override the help\n   * flags and help description for your command. Pass in false\n   * to disable the built-in help option.\n   */\n  helpOption(flags?: string | boolean, description?: string): this;\n\n  /**\n   * Output help information and exit.\n   *\n   * Outputs built-in help, and custom text added using `.addHelpText()`.\n   */\n  help(context?: HelpContext): never;\n  /** @deprecated since v7 */\n  help(cb?: (str: string) => string): never;\n\n  /**\n   * Add additional text to be displayed with the built-in help.\n   *\n   * Position is 'before' or 'after' to affect just this command,\n   * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n   */\n  addHelpText(position: AddHelpTextPosition, text: string): this;\n  addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n  /**\n   * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n   */\n  on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n  hidden?: boolean;\n  isDefault?: boolean;\n  /** @deprecated since v7, replaced by hidden */\n  noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n  executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n  operands: string[];\n  unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
    "node_modules/comment-json/index.d.ts": "// Original from DefinitelyTyped. Thanks a million\n// Type definitions for comment-json 1.1\n// Project: https://github.com/kaelzhang/node-comment-json\n// Definitions by: Jason Dent <https://github.com/Jason3S>\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n\ndeclare const commentSymbol: unique symbol\n\nexport type CommentPrefix = 'before'\n  | 'after-prop'\n  | 'after-colon'\n  | 'after-value'\n  | 'after'\n\nexport type CommentDescriptor = `${CommentPrefix}:${string}`\n  | 'before'\n  | 'before-all'\n  | 'after-all'\n\nexport type CommentSymbol = typeof commentSymbol\n\nexport class CommentArray<TValue> extends Array<TValue> {\n  [commentSymbol]: CommentToken[]\n}\n\nexport type CommentJSONValue = number\n  | string\n  | null\n  | boolean\n  | CommentArray<CommentJSONValue>\n  | CommentObject\n\nexport interface CommentObject {\n  [key: string]: CommentJSONValue\n  [commentSymbol]: CommentToken[]\n}\n\nexport interface CommentToken {\n  type: 'BlockComment' | 'LineComment'\n  // The content of the comment, including whitespaces and line breaks\n  value: string\n  // If the start location is the same line as the previous token,\n  // then `inline` is `true`\n  inline: boolean\n  // But pay attention that,\n  // locations will NOT be maintained when stringified\n  loc: CommentLocation\n}\n\nexport interface CommentLocation {\n  // The start location begins at the `//` or `/*` symbol\n  start: Location\n  // The end location of multi-line comment ends at the `*/` symbol\n  end: Location\n}\n\nexport interface Location {\n  line: number\n  column: number\n}\n\nexport type Reviver = (k: number | string, v: unknown) => unknown\n\n/**\n * Converts a JavaScript Object Notation (JSON) string into an object.\n * @param json A valid JSON string.\n * @param reviver A function that transforms the results. This function is called for each member of the object.\n * @param removesComments If true, the comments won't be maintained, which is often used when we want to get a clean object.\n * If a member contains nested objects, the nested objects are transformed before the parent object is.\n */\nexport function parse(\n  json: string,\n  reviver?: Reviver | null,\n  removesComments?: boolean\n): CommentJSONValue\n\n/**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer A function that transforms the results or an array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\nexport function stringify(\n  value: unknown,\n  replacer?: (\n    (key: string, value: unknown) => unknown\n  ) | Array<number | string> | null,\n  space?: string | number\n): string\n\n\nexport function tokenize(input: string, config?: TokenizeOptions): Token[]\n\nexport interface Token {\n  type: string\n  value: string\n}\n\nexport interface TokenizeOptions {\n  tolerant?: boolean\n  range?: boolean\n  loc?: boolean\n  comment?: boolean\n}\n\nexport function assign<TTarget, TSource>(\n  target: TTarget,\n  source: TSource,\n  // Although it actually accepts more key types and filters then`,\n  // we set the type of `keys` stricter\n  keys?: readonly (number | string)[]\n): TTarget\n",
    "node_modules/comment-json/package.json": "{\n  \"name\": \"comment-json\",\n  \"version\": \"4.2.5\",\n  \"description\": \"Parse and stringify JSON with comments. It will retain comments even after saved!\",\n  \"main\": \"src/index.js\",\n  \"types\": \"index.d.ts\",\n  \"scripts\": {\n    \"test\": \"npm run test:only\",\n    \"test:only\": \"npm run test:ts && npm run test:node\",\n    \"test:ts\": \"tsc -b test/ts/tsconfig.build.json && node test/ts/test-ts.js\",\n    \"test:node\": \"NODE_DEBUG=comment-json nyc ava --timeout=10s --verbose\",\n    \"test:dev\": \"npm run test:only && npm run report:dev\",\n    \"lint\": \"eslint .\",\n    \"fix\": \"eslint . --fix\",\n    \"posttest\": \"npm run report\",\n    \"report\": \"nyc report --reporter=text-lcov > coverage.lcov && codecov\",\n    \"report:dev\": \"nyc report --reporter=html && npm run report:open\",\n    \"report:open\": \"open coverage/index.html\"\n  },\n  \"files\": [\n    \"src/\",\n    \"index.d.ts\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/kaelzhang/node-comment-json.git\"\n  },\n  \"keywords\": [\n    \"comment-json\",\n    \"comments\",\n    \"annotations\",\n    \"json\",\n    \"json-stringify\",\n    \"json-parse\",\n    \"parser\",\n    \"comments-json\",\n    \"json-comments\"\n  ],\n  \"engines\": {\n    \"node\": \">= 6\"\n  },\n  \"ava\": {\n    \"files\": [\n      \"test/*.test.js\"\n    ]\n  },\n  \"author\": \"kaelzhang\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/kaelzhang/node-comment-json/issues\"\n  },\n  \"devDependencies\": {\n    \"@ostai/eslint-config\": \"^3.6.0\",\n    \"ava\": \"^4.0.1\",\n    \"codecov\": \"^3.8.2\",\n    \"eslint\": \"^8.8.0\",\n    \"eslint-plugin-import\": \"^2.25.4\",\n    \"nyc\": \"^15.1.0\",\n    \"test-fixture\": \"^2.4.1\",\n    \"typescript\": \"^4.5.5\"\n  },\n  \"dependencies\": {\n    \"array-timsort\": \"^1.0.3\",\n    \"core-util-is\": \"^1.0.3\",\n    \"esprima\": \"^4.0.1\",\n    \"has-own-prop\": \"^2.0.0\",\n    \"repeat-string\": \"^1.6.1\"\n  }\n}\n",
    "node_modules/core-util-is/package.json": "{\n  \"name\": \"core-util-is\",\n  \"version\": \"1.0.3\",\n  \"description\": \"The `util.is*` functions introduced in Node v0.12.\",\n  \"main\": \"lib/util.js\",\n  \"files\": [\n    \"lib\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/isaacs/core-util-is\"\n  },\n  \"keywords\": [\n    \"util\",\n    \"isBuffer\",\n    \"isArray\",\n    \"isNumber\",\n    \"isString\",\n    \"isRegExp\",\n    \"isThis\",\n    \"isThat\",\n    \"polyfill\"\n  ],\n  \"author\": \"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/isaacs/core-util-is/issues\"\n  },\n  \"scripts\": {\n    \"test\": \"tap test.js\",\n    \"preversion\": \"npm test\",\n    \"postversion\": \"npm publish\",\n    \"prepublishOnly\": \"git push origin --follow-tags\"\n  },\n  \"devDependencies\": {\n    \"tap\": \"^15.0.9\"\n  }\n}\n",
    "node_modules/defaults/package.json": "{\n\t\"name\": \"defaults\",\n\t\"version\": \"1.0.4\",\n\t\"description\": \"merge single level defaults over a config object\",\n\t\"main\": \"index.js\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"scripts\": {\n\t\t\"test\": \"node test.js\"\n\t},\n\t\"repository\": {\n\t\t\"type\": \"git\",\n\t\t\"url\": \"git://github.com/sindresorhus/node-defaults.git\"\n\t},\n\t\"keywords\": [\n\t\t\"config\",\n\t\t\"defaults\",\n\t\t\"options\",\n\t\t\"object\",\n\t\t\"merge\",\n\t\t\"assign\",\n\t\t\"properties\",\n\t\t\"deep\"\n\t],\n\t\"author\": \"Elijah Insua <tmpvar@gmail.com>\",\n\t\"license\": \"MIT\",\n\t\"readmeFilename\": \"README.md\",\n\t\"dependencies\": {\n\t\t\"clone\": \"^1.0.2\"\n\t},\n\t\"devDependencies\": {\n\t\t\"tap\": \"^2.0.0\"\n\t}\n}\n",
    "node_modules/drange/package.json": "{\n  \"name\": \"drange\",\n  \"version\": \"1.1.1\",\n  \"description\": \"For adding, subtracting, and indexing discontinuous ranges of numbers\",\n  \"keywords\": [\n    \"discontinuous\",\n    \"range\",\n    \"set\"\n  ],\n  \"main\": \"lib/index.js\",\n  \"files\": [\n    \"lib\",\n    \"types/index.d.ts\"\n  ],\n  \"scripts\": {\n    \"test\": \"istanbul cover node_modules/.bin/_mocha -- test/*-test.js\",\n    \"dtslint\": \"dtslint types\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/fent/node-drange.git\"\n  },\n  \"author\": \"David Tudury <david.tudury@gmail.com>\",\n  \"contributors\": [\n    \"fent (https://github.com/fent)\"\n  ],\n  \"devDependencies\": {\n    \"istanbul\": \"^0.4.5\",\n    \"mocha\": \"^5.0.0\"\n  },\n  \"engines\": {\n    \"node\": \">=4\"\n  },\n  \"license\": \"MIT\",\n  \"types\": \"./types\"\n}\n",
    "node_modules/drange/types/index.d.ts": "declare namespace DRange {\n    interface SubRange {\n        low: number;\n        high: number;\n        length: number;\n    }\n}\n\n/**\n * For adding/subtracting sets of range of numbers.\n */\ndeclare class DRange {\n    /**\n     * Creates a new instance of DRange.\n     */\n    constructor(low?: number, high?: number);\n\n    /**\n     * The total length of all subranges\n     */\n    length: number;\n\n    /**\n     * Adds a subrange\n     */\n    add(low: number, high?: number): this;\n    /**\n     * Adds all of another DRange's subranges\n     */\n    add(drange: DRange): this;\n\n    /**\n     * Subtracts a subrange\n     */\n    subtract(low?: number, high?: number): this;\n    /**\n     * Subtracts all of another DRange's subranges\n     */\n    subtract(drange: DRange): this;\n\n    /**\n     * Keep only subranges that overlap the given subrange\n     */\n    intersect(low?: number, high?: number): this;\n    /**\n     * Intersect all of another DRange's subranges\n     */\n    intersect(drange: DRange): this;\n\n    /**\n     * Get the number at the specified index\n     */\n    index(i: number): number;\n\n    /**\n     * Clones the drange, so that changes to it are not reflected on its clone\n     */\n    clone(): this;\n\n    toString(): string;\n\n    /**\n     * Get contained numbers\n     */\n    numbers(): number[];\n\n    /**\n     * Get copy of subranges\n     */\n    subranges(): DRange.SubRange[];\n}\n\nexport = DRange;\n",
    "node_modules/emoji-regex/index.d.ts": "declare module 'emoji-regex' {\n    function emojiRegex(): RegExp;\n\n    export default emojiRegex;\n}\n\ndeclare module 'emoji-regex/text' {\n    function emojiRegex(): RegExp;\n\n    export default emojiRegex;\n}\n\ndeclare module 'emoji-regex/es2015' {\n    function emojiRegex(): RegExp;\n\n    export default emojiRegex;\n}\n\ndeclare module 'emoji-regex/es2015/text' {\n    function emojiRegex(): RegExp;\n\n    export default emojiRegex;\n}\n",
    "node_modules/emoji-regex/package.json": "{\n  \"name\": \"emoji-regex\",\n  \"version\": \"8.0.0\",\n  \"description\": \"A regular expression to match all Emoji-only symbols as per the Unicode Standard.\",\n  \"homepage\": \"https://mths.be/emoji-regex\",\n  \"main\": \"index.js\",\n  \"types\": \"index.d.ts\",\n  \"keywords\": [\n    \"unicode\",\n    \"regex\",\n    \"regexp\",\n    \"regular expressions\",\n    \"code points\",\n    \"symbols\",\n    \"characters\",\n    \"emoji\"\n  ],\n  \"license\": \"MIT\",\n  \"author\": {\n    \"name\": \"Mathias Bynens\",\n    \"url\": \"https://mathiasbynens.be/\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/mathiasbynens/emoji-regex.git\"\n  },\n  \"bugs\": \"https://github.com/mathiasbynens/emoji-regex/issues\",\n  \"files\": [\n    \"LICENSE-MIT.txt\",\n    \"index.js\",\n    \"index.d.ts\",\n    \"text.js\",\n    \"es2015/index.js\",\n    \"es2015/text.js\"\n  ],\n  \"scripts\": {\n    \"build\": \"rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js\",\n    \"test\": \"mocha\",\n    \"test:watch\": \"npm run test -- --watch\"\n  },\n  \"devDependencies\": {\n    \"@babel/cli\": \"^7.2.3\",\n    \"@babel/core\": \"^7.3.4\",\n    \"@babel/plugin-proposal-unicode-property-regex\": \"^7.2.0\",\n    \"@babel/preset-env\": \"^7.3.4\",\n    \"mocha\": \"^6.0.2\",\n    \"regexgen\": \"^1.3.0\",\n    \"unicode-12.0.0\": \"^0.7.9\"\n  }\n}\n",
    "node_modules/escape-string-regexp/package.json": "{\n  \"name\": \"escape-string-regexp\",\n  \"version\": \"1.0.5\",\n  \"description\": \"Escape RegExp special characters\",\n  \"license\": \"MIT\",\n  \"repository\": \"sindresorhus/escape-string-regexp\",\n  \"author\": {\n    \"name\": \"Sindre Sorhus\",\n    \"email\": \"sindresorhus@gmail.com\",\n    \"url\": \"sindresorhus.com\"\n  },\n  \"maintainers\": [\n    \"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)\",\n    \"Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)\"\n  ],\n  \"engines\": {\n    \"node\": \">=0.8.0\"\n  },\n  \"scripts\": {\n    \"test\": \"xo && ava\"\n  },\n  \"files\": [\n    \"index.js\"\n  ],\n  \"keywords\": [\n    \"escape\",\n    \"regex\",\n    \"regexp\",\n    \"re\",\n    \"regular\",\n    \"expression\",\n    \"string\",\n    \"str\",\n    \"special\",\n    \"characters\"\n  ],\n  \"devDependencies\": {\n    \"ava\": \"*\",\n    \"xo\": \"*\"\n  }\n}\n",
    "node_modules/esprima/package.json": "{\n  \"name\": \"esprima\",\n  \"description\": \"ECMAScript parsing infrastructure for multipurpose analysis\",\n  \"homepage\": \"http://esprima.org\",\n  \"main\": \"dist/esprima.js\",\n  \"bin\": {\n    \"esparse\": \"./bin/esparse.js\",\n    \"esvalidate\": \"./bin/esvalidate.js\"\n  },\n  \"version\": \"4.0.1\",\n  \"files\": [\n    \"bin\",\n    \"dist/esprima.js\"\n  ],\n  \"engines\": {\n    \"node\": \">=4\"\n  },\n  \"author\": {\n    \"name\": \"Ariya Hidayat\",\n    \"email\": \"ariya.hidayat@gmail.com\"\n  },\n  \"maintainers\": [\n    {\n      \"name\": \"Ariya Hidayat\",\n      \"email\": \"ariya.hidayat@gmail.com\",\n      \"web\": \"http://ariya.ofilabs.com\"\n    }\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/jquery/esprima.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/jquery/esprima/issues\"\n  },\n  \"license\": \"BSD-2-Clause\",\n  \"devDependencies\": {\n    \"codecov.io\": \"~0.1.6\",\n    \"escomplex-js\": \"1.2.0\",\n    \"everything.js\": \"~1.0.3\",\n    \"glob\": \"~7.1.0\",\n    \"istanbul\": \"~0.4.0\",\n    \"json-diff\": \"~0.3.1\",\n    \"karma\": \"~1.3.0\",\n    \"karma-chrome-launcher\": \"~2.0.0\",\n    \"karma-detect-browsers\": \"~2.2.3\",\n    \"karma-edge-launcher\": \"~0.2.0\",\n    \"karma-firefox-launcher\": \"~1.0.0\",\n    \"karma-ie-launcher\": \"~1.0.0\",\n    \"karma-mocha\": \"~1.3.0\",\n    \"karma-safari-launcher\": \"~1.0.0\",\n    \"karma-safaritechpreview-launcher\": \"~0.0.4\",\n    \"karma-sauce-launcher\": \"~1.1.0\",\n    \"lodash\": \"~3.10.1\",\n    \"mocha\": \"~3.2.0\",\n    \"node-tick-processor\": \"~0.0.2\",\n    \"regenerate\": \"~1.3.2\",\n    \"temp\": \"~0.8.3\",\n    \"tslint\": \"~5.1.0\",\n    \"typescript\": \"~2.3.2\",\n    \"typescript-formatter\": \"~5.1.3\",\n    \"unicode-8.0.0\": \"~0.7.0\",\n    \"webpack\": \"~1.14.0\"\n  },\n  \"keywords\": [\n    \"ast\",\n    \"ecmascript\",\n    \"esprima\",\n    \"javascript\",\n    \"parser\",\n    \"syntax\"\n  ],\n  \"scripts\": {\n    \"check-version\": \"node test/check-version.js\",\n    \"tslint\": \"tslint src/*.ts\",\n    \"code-style\": \"tsfmt --verify src/*.ts && tsfmt --verify test/*.js\",\n    \"format-code\": \"tsfmt -r src/*.ts && tsfmt -r test/*.js\",\n    \"complexity\": \"node test/check-complexity.js\",\n    \"static-analysis\": \"npm run check-version && npm run tslint && npm run code-style && npm run complexity\",\n    \"hostile-env-tests\": \"node test/hostile-environment-tests.js\",\n    \"unit-tests\": \"node test/unit-tests.js\",\n    \"api-tests\": \"mocha -R dot test/api-tests.js\",\n    \"grammar-tests\": \"node test/grammar-tests.js\",\n    \"regression-tests\": \"node test/regression-tests.js\",\n    \"all-tests\": \"npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests\",\n    \"verify-line-ending\": \"node test/verify-line-ending.js\",\n    \"generate-fixtures\": \"node tools/generate-fixtures.js\",\n    \"browser-tests\": \"npm run compile && npm run generate-fixtures && cd test && karma start --single-run\",\n    \"saucelabs-evergreen\": \"cd test && karma start saucelabs-evergreen.conf.js\",\n    \"saucelabs-safari\": \"cd test && karma start saucelabs-safari.conf.js\",\n    \"saucelabs-ie\": \"cd test && karma start saucelabs-ie.conf.js\",\n    \"saucelabs\": \"npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari\",\n    \"analyze-coverage\": \"istanbul cover test/unit-tests.js\",\n    \"check-coverage\": \"istanbul check-coverage --statement 100 --branch 100 --function 100\",\n    \"dynamic-analysis\": \"npm run analyze-coverage && npm run check-coverage\",\n    \"compile\": \"tsc -p src/ && webpack && node tools/fixupbundle.js\",\n    \"test\": \"npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis\",\n    \"prepublish\": \"npm run compile\",\n    \"profile\": \"node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor\",\n    \"benchmark-parser\": \"node -expose_gc test/benchmark-parser.js\",\n    \"benchmark-tokenizer\": \"node --expose_gc test/benchmark-tokenizer.js\",\n    \"benchmark\": \"npm run benchmark-parser && npm run benchmark-tokenizer\",\n    \"codecov\": \"istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml\",\n    \"downstream\": \"node test/downstream.js\",\n    \"travis\": \"npm test\",\n    \"circleci\": \"npm test && npm run codecov && npm run downstream\",\n    \"appveyor\": \"npm run compile && npm run all-tests && npm run browser-tests\",\n    \"droneio\": \"npm run compile && npm run all-tests && npm run saucelabs\",\n    \"generate-regex\": \"node tools/generate-identifier-regex.js\",\n    \"generate-xhtml-entities\": \"node tools/generate-xhtml-entities.js\"\n  }\n}\n",
    "node_modules/external-editor/main/errors/CreateFileError.d.ts": "/***\n * Node External Editor\n *\n * Kevin Gravier <kevin@mrkmg.com>\n * MIT 2018\n */\nexport declare class CreateFileError extends Error {\n    originalError: Error;\n    constructor(originalError: Error);\n}\n",
    "node_modules/external-editor/main/errors/LaunchEditorError.d.ts": "/***\n * Node External Editor\n *\n * Kevin Gravier <kevin@mrkmg.com>\n * MIT 2018\n */\nexport declare class LaunchEditorError extends Error {\n    originalError: Error;\n    constructor(originalError: Error);\n}\n",
    "node_modules/external-editor/main/errors/ReadFileError.d.ts": "/***\n * Node External Editor\n *\n * Kevin Gravier <kevin@mrkmg.com>\n * MIT 2018\n */\nexport declare class ReadFileError extends Error {\n    originalError: Error;\n    constructor(originalError: Error);\n}\n",
    "node_modules/external-editor/main/errors/RemoveFileError.d.ts": "/***\n * Node External Editor\n *\n * Kevin Gravier <kevin@mrkmg.com>\n * MIT 2018\n */\nexport declare class RemoveFileError extends Error {\n    originalError: Error;\n    constructor(originalError: Error);\n}\n",
    "node_modules/external-editor/main/index.d.ts": "/***\n * Node External Editor\n *\n * Kevin Gravier <kevin@mrkmg.com>\n * MIT 2019\n */\nimport { CreateFileError } from \"./errors/CreateFileError\";\nimport { LaunchEditorError } from \"./errors/LaunchEditorError\";\nimport { ReadFileError } from \"./errors/ReadFileError\";\nimport { RemoveFileError } from \"./errors/RemoveFileError\";\nexport interface IEditorParams {\n    args: string[];\n    bin: string;\n}\nexport interface IFileOptions {\n    prefix?: string;\n    postfix?: string;\n    mode?: number;\n    template?: string;\n    dir?: string;\n}\nexport declare type StringCallback = (err: Error, result: string) => void;\nexport declare type VoidCallback = () => void;\nexport { CreateFileError, LaunchEditorError, ReadFileError, RemoveFileError };\nexport declare function edit(text?: string, fileOptions?: IFileOptions): string;\nexport declare function editAsync(text: string, callback: StringCallback, fileOptions?: IFileOptions): void;\nexport declare class ExternalEditor {\n    private static splitStringBySpace;\n    text: string;\n    tempFile: string;\n    editor: IEditorParams;\n    lastExitStatus: number;\n    private fileOptions;\n    readonly temp_file: string;\n    readonly last_exit_status: number;\n    constructor(text?: string, fileOptions?: IFileOptions);\n    run(): string;\n    runAsync(callback: StringCallback): void;\n    cleanup(): void;\n    private determineEditor;\n    private createTemporaryFile;\n    private readTemporaryFile;\n    private removeTemporaryFile;\n    private launchEditor;\n    private launchEditorAsync;\n}\n",
    "node_modules/external-editor/package.json": "{\n  \"name\": \"external-editor\",\n  \"version\": \"3.1.0\",\n  \"description\": \"Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT\",\n  \"main\": \"main/index.js\",\n  \"types\": \"main/index.d.ts\",\n  \"scripts\": {\n    \"test\": \"mocha --recursive --require ts-node/register --timeout 10000 ./test/spec 'test/spec/**/*.ts'\",\n    \"compile\": \"tsc -p tsconfig.json\",\n    \"lint\": \"tslint './src/**/*.ts' './test/**/*.ts'\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/mrkmg/node-external-editor.git\"\n  },\n  \"keywords\": [\n    \"editor\",\n    \"external\",\n    \"user\",\n    \"visual\"\n  ],\n  \"author\": \"Kevin Gravier <kevin@mrkmg.com> (https://mrkmg.com)\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/mrkmg/node-external-editor/issues\"\n  },\n  \"homepage\": \"https://github.com/mrkmg/node-external-editor#readme\",\n  \"dependencies\": {\n    \"chardet\": \"^0.7.0\",\n    \"iconv-lite\": \"^0.4.24\",\n    \"tmp\": \"^0.0.33\"\n  },\n  \"engines\": {\n    \"node\": \">=4\"\n  },\n  \"devDependencies\": {\n    \"@types/chai\": \"^4.1.4\",\n    \"@types/chardet\": \"^0.5.0\",\n    \"@types/mocha\": \"^5.2.5\",\n    \"@types/node\": \"^10.14.12\",\n    \"@types/tmp\": \"0.0.33\",\n    \"chai\": \"^4.0.0\",\n    \"es6-shim\": \"^0.35.3\",\n    \"mocha\": \"^5.2.0\",\n    \"ts-node\": \"^7.0.1\",\n    \"tslint\": \"^5.18.0\",\n    \"typescript\": \"^3.5.2\"\n  },\n  \"files\": [\n    \"main\",\n    \"example_sync.js\",\n    \"example_async.js\"\n  ],\n  \"config\": {\n    \"ndt\": {\n      \"versions\": [\n        \"major\"\n      ]\n    }\n  }\n}\n",
    "node_modules/figures/index.d.ts": "declare const figureSet: {\n\treadonly tick: string;\n\treadonly cross: string;\n\treadonly star: string;\n\treadonly square: string;\n\treadonly squareSmall: string;\n\treadonly squareSmallFilled: string;\n\treadonly play: string;\n\treadonly circle: string;\n\treadonly circleFilled: string;\n\treadonly circleDotted: string;\n\treadonly circleDouble: string;\n\treadonly circleCircle: string;\n\treadonly circleCross: string;\n\treadonly circlePipe: string;\n\treadonly circleQuestionMark: string;\n\treadonly bullet: string;\n\treadonly dot: string;\n\treadonly line: string;\n\treadonly ellipsis: string;\n\treadonly pointer: string;\n\treadonly pointerSmall: string;\n\treadonly info: string;\n\treadonly warning: string;\n\treadonly hamburger: string;\n\treadonly smiley: string;\n\treadonly mustache: string;\n\treadonly heart: string;\n\treadonly nodejs: string;\n\treadonly arrowUp: string;\n\treadonly arrowDown: string;\n\treadonly arrowLeft: string;\n\treadonly arrowRight: string;\n\treadonly radioOn: string;\n\treadonly radioOff: string;\n\treadonly checkboxOn: string;\n\treadonly checkboxOff: string;\n\treadonly checkboxCircleOn: string;\n\treadonly checkboxCircleOff: string;\n\treadonly questionMarkPrefix: string;\n\treadonly oneHalf: string;\n\treadonly oneThird: string;\n\treadonly oneQuarter: string;\n\treadonly oneFifth: string;\n\treadonly oneSixth: string;\n\treadonly oneSeventh: string;\n\treadonly oneEighth: string;\n\treadonly oneNinth: string;\n\treadonly oneTenth: string;\n\treadonly twoThirds: string;\n\treadonly twoFifths: string;\n\treadonly threeQuarters: string;\n\treadonly threeFifths: string;\n\treadonly threeEighths: string;\n\treadonly fourFifths: string;\n\treadonly fiveSixths: string;\n\treadonly fiveEighths: string;\n\treadonly sevenEighth: string;\n}\n\ntype FigureSet = typeof figureSet\n\ndeclare const figures: {\n\t/**\n\tReplace Unicode symbols depending on the OS.\n\n\t@param string - String where the Unicode symbols will be replaced with fallback symbols depending on the OS.\n\t@returns The input with replaced fallback Unicode symbols on Windows.\n\n\t@example\n\t```\n\timport figures = require('figures');\n\n\tconsole.log(figures('✔︎ check'));\n\t// On non-Windows OSes:  ✔︎ check\n\t// On Windows:           √ check\n\n\tconsole.log(figures.tick);\n\t// On non-Windows OSes:  ✔︎\n\t// On Windows:           √\n\t```\n\t*/\n\t(string: string): string;\n\n\t/**\n\tSymbols to use when not running on Windows.\n\t*/\n\treadonly main: FigureSet;\n\n\t/**\n\tSymbols to use when running on Windows.\n\t*/\n\treadonly windows: FigureSet;\n} & FigureSet;\n\nexport = figures;\n",
    "node_modules/figures/package.json": "{\n\t\"name\": \"figures\",\n\t\"version\": \"3.2.0\",\n\t\"description\": \"Unicode symbols with Windows CMD fallbacks\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/figures\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\",\n\t\t\"make\": \"./makefile.js\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"unicode\",\n\t\t\"cli\",\n\t\t\"cmd\",\n\t\t\"command-line\",\n\t\t\"characters\",\n\t\t\"symbol\",\n\t\t\"symbols\",\n\t\t\"figure\",\n\t\t\"figures\",\n\t\t\"fallback\"\n\t],\n\t\"dependencies\": {\n\t\t\"escape-string-regexp\": \"^1.0.5\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"markdown-table\": \"^1.1.2\",\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/has-flag/index.d.ts": "/**\nCheck if [`argv`](https://nodejs.org/docs/latest/api/process.html#process_process_argv) has a specific flag.\n\n@param flag - CLI flag to look for. The `--` prefix is optional.\n@param argv - CLI arguments. Default: `process.argv`.\n@returns Whether the flag exists.\n\n@example\n```\n// $ ts-node foo.ts -f --unicorn --foo=bar -- --rainbow\n\n// foo.ts\nimport hasFlag = require('has-flag');\n\nhasFlag('unicorn');\n//=> true\n\nhasFlag('--unicorn');\n//=> true\n\nhasFlag('f');\n//=> true\n\nhasFlag('-f');\n//=> true\n\nhasFlag('foo=bar');\n//=> true\n\nhasFlag('foo');\n//=> false\n\nhasFlag('rainbow');\n//=> false\n```\n*/\ndeclare function hasFlag(flag: string, argv?: string[]): boolean;\n\nexport = hasFlag;\n",
    "node_modules/has-flag/package.json": "{\n\t\"name\": \"has-flag\",\n\t\"version\": \"4.0.0\",\n\t\"description\": \"Check if argv has a specific flag\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/has-flag\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"has\",\n\t\t\"check\",\n\t\t\"detect\",\n\t\t\"contains\",\n\t\t\"find\",\n\t\t\"flag\",\n\t\t\"cli\",\n\t\t\"command-line\",\n\t\t\"argv\",\n\t\t\"process\",\n\t\t\"arg\",\n\t\t\"args\",\n\t\t\"argument\",\n\t\t\"arguments\",\n\t\t\"getopt\",\n\t\t\"minimist\",\n\t\t\"optimist\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/has-own-prop/index.d.ts": "/**\nShortcut for `Object.prototype.hasOwnProperty.call(object, property)`.\n\n@example\n```\nimport hasOwnProp = require('has-own-prop');\n\nhasOwnProp({}, 'hello');\n//=> false\n\nhasOwnProp([1, 2, 3], 0);\n//=> true\n```\n*/\ndeclare function hasOwnProp(object: unknown, key: string | number | symbol): boolean;\n\nexport = hasOwnProp;\n",
    "node_modules/has-own-prop/package.json": "{\n\t\"name\": \"has-own-prop\",\n\t\"version\": \"2.0.0\",\n\t\"description\": \"A safer `.hasOwnProperty()`\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/has-own-prop\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"object\",\n\t\t\"has\",\n\t\t\"own\",\n\t\t\"property\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"tsd\": \"^0.7.3\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/iconv-lite/lib/index.d.ts": "/*---------------------------------------------------------------------------------------------\n *  Copyright (c) Microsoft Corporation. All rights reserved.\n *  Licensed under the MIT License.\n *  REQUIREMENT: This definition is dependent on the @types/node definition.\n *  Install with `npm install @types/node --save-dev`\n *--------------------------------------------------------------------------------------------*/\n\ndeclare module 'iconv-lite' {\n\texport function decode(buffer: Buffer, encoding: string, options?: Options): string;\n\n\texport function encode(content: string, encoding: string, options?: Options): Buffer;\n\n\texport function encodingExists(encoding: string): boolean;\n\n\texport function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;\n\n\texport function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;\n}\n\nexport interface Options {\n    stripBOM?: boolean;\n    addBOM?: boolean;\n    defaultEncoding?: string;\n}\n",
    "node_modules/iconv-lite/package.json": "{\n    \"name\": \"iconv-lite\",\n    \"description\": \"Convert character encodings in pure javascript.\",\n    \"version\": \"0.4.24\",\n    \"license\": \"MIT\",\n    \"keywords\": [\n        \"iconv\",\n        \"convert\",\n        \"charset\",\n        \"icu\"\n    ],\n    \"author\": \"Alexander Shtuchkin <ashtuchkin@gmail.com>\",\n    \"main\": \"./lib/index.js\",\n    \"typings\": \"./lib/index.d.ts\",\n    \"homepage\": \"https://github.com/ashtuchkin/iconv-lite\",\n    \"bugs\": \"https://github.com/ashtuchkin/iconv-lite/issues\",\n    \"repository\": {\n        \"type\": \"git\",\n        \"url\": \"git://github.com/ashtuchkin/iconv-lite.git\"\n    },\n    \"engines\": {\n        \"node\": \">=0.10.0\"\n    },\n    \"scripts\": {\n        \"coverage\": \"istanbul cover _mocha -- --grep .\",\n        \"coverage-open\": \"open coverage/lcov-report/index.html\",\n        \"test\": \"mocha --reporter spec --grep .\"\n    },\n    \"browser\": {\n        \"./lib/extend-node\": false,\n        \"./lib/streams\": false\n    },\n    \"devDependencies\": {\n        \"mocha\": \"^3.1.0\",\n        \"request\": \"~2.87.0\",\n        \"unorm\": \"*\",\n        \"errto\": \"*\",\n        \"async\": \"*\",\n        \"istanbul\": \"*\",\n        \"semver\": \"*\",\n        \"iconv\": \"*\"\n    },\n    \"dependencies\": {\n        \"safer-buffer\": \">= 2.1.2 < 3\"\n    }\n}\n",
    "node_modules/ieee754/index.d.ts": "declare namespace ieee754 {\n    export function read(\n        buffer: Uint8Array, offset: number, isLE: boolean, mLen: number,\n        nBytes: number): number;\n    export function write(\n        buffer: Uint8Array, value: number, offset: number, isLE: boolean,\n        mLen: number, nBytes: number): void;\n  }\n  \n  export = ieee754;",
    "node_modules/ieee754/package.json": "{\n  \"name\": \"ieee754\",\n  \"description\": \"Read/write IEEE754 floating point numbers from/to a Buffer or array-like object\",\n  \"version\": \"1.2.1\",\n  \"author\": {\n    \"name\": \"Feross Aboukhadijeh\",\n    \"email\": \"feross@feross.org\",\n    \"url\": \"https://feross.org\"\n  },\n  \"contributors\": [\n    \"Romain Beauxis <toots@rastageeks.org>\"\n  ],\n  \"devDependencies\": {\n    \"airtap\": \"^3.0.0\",\n    \"standard\": \"*\",\n    \"tape\": \"^5.0.1\"\n  },\n  \"keywords\": [\n    \"IEEE 754\",\n    \"buffer\",\n    \"convert\",\n    \"floating point\",\n    \"ieee754\"\n  ],\n  \"license\": \"BSD-3-Clause\",\n  \"main\": \"index.js\",\n  \"types\": \"index.d.ts\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/feross/ieee754.git\"\n  },\n  \"scripts\": {\n    \"test\": \"standard && npm run test-node && npm run test-browser\",\n    \"test-browser\": \"airtap -- test/*.js\",\n    \"test-browser-local\": \"airtap --local -- test/*.js\",\n    \"test-node\": \"tape test/*.js\"\n  },\n  \"funding\": [\n    {\n      \"type\": \"github\",\n      \"url\": \"https://github.com/sponsors/feross\"\n    },\n    {\n      \"type\": \"patreon\",\n      \"url\": \"https://www.patreon.com/feross\"\n    },\n    {\n      \"type\": \"consulting\",\n      \"url\": \"https://feross.org/support\"\n    }\n  ]\n}\n",
    "node_modules/inherits/package.json": "{\n  \"name\": \"inherits\",\n  \"description\": \"Browser-friendly inheritance fully compatible with standard node.js inherits()\",\n  \"version\": \"2.0.4\",\n  \"keywords\": [\n    \"inheritance\",\n    \"class\",\n    \"klass\",\n    \"oop\",\n    \"object-oriented\",\n    \"inherits\",\n    \"browser\",\n    \"browserify\"\n  ],\n  \"main\": \"./inherits.js\",\n  \"browser\": \"./inherits_browser.js\",\n  \"repository\": \"git://github.com/isaacs/inherits\",\n  \"license\": \"ISC\",\n  \"scripts\": {\n    \"test\": \"tap\"\n  },\n  \"devDependencies\": {\n    \"tap\": \"^14.2.4\"\n  },\n  \"files\": [\n    \"inherits.js\",\n    \"inherits_browser.js\"\n  ]\n}\n",
    "node_modules/inquirer/package.json": "{\n  \"name\": \"inquirer\",\n  \"version\": \"8.2.6\",\n  \"description\": \"A collection of common interactive command line user interfaces.\",\n  \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n  \"files\": [\n    \"lib\",\n    \"README.md\"\n  ],\n  \"main\": \"lib/inquirer.js\",\n  \"keywords\": [\n    \"command\",\n    \"prompt\",\n    \"stdin\",\n    \"cli\",\n    \"tty\",\n    \"menu\"\n  ],\n  \"engines\": {\n    \"node\": \">=12.0.0\"\n  },\n  \"devDependencies\": {\n    \"chai\": \"^4.3.6\",\n    \"chai-string\": \"^1.5.0\",\n    \"chalk-pipe\": \"^5.1.1\",\n    \"cmdify\": \"^0.0.4\",\n    \"mocha\": \"^9.2.2\",\n    \"mockery\": \"^2.1.0\",\n    \"nyc\": \"^15.0.0\",\n    \"sinon\": \"^13.0.2\",\n    \"terminal-link\": \"^2.1.1\"\n  },\n  \"scripts\": {\n    \"test\": \"nyc mocha test/**/* -r ./test/before\",\n    \"posttest\": \"mkdir -p ../../coverage && nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n    \"prepublishOnly\": \"cp ../../README.md .\",\n    \"postpublish\": \"rm -f README.md\"\n  },\n  \"repository\": \"SBoudrias/Inquirer.js\",\n  \"license\": \"MIT\",\n  \"dependencies\": {\n    \"ansi-escapes\": \"^4.2.1\",\n    \"chalk\": \"^4.1.1\",\n    \"cli-cursor\": \"^3.1.0\",\n    \"cli-width\": \"^3.0.0\",\n    \"external-editor\": \"^3.0.3\",\n    \"figures\": \"^3.0.0\",\n    \"lodash\": \"^4.17.21\",\n    \"mute-stream\": \"0.0.8\",\n    \"ora\": \"^5.4.1\",\n    \"run-async\": \"^2.4.0\",\n    \"rxjs\": \"^7.5.5\",\n    \"string-width\": \"^4.1.0\",\n    \"strip-ansi\": \"^6.0.0\",\n    \"through\": \"^2.3.6\",\n    \"wrap-ansi\": \"^6.0.1\"\n  },\n  \"gitHead\": \"30ec0483de28849e56bd6b9b61daaabf8edea16f\"\n}\n",
    "node_modules/is-fullwidth-code-point/index.d.ts": "/**\nCheck if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms).\n\n@param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character.\n\n@example\n```\nimport isFullwidthCodePoint from 'is-fullwidth-code-point';\n\nisFullwidthCodePoint('谢'.codePointAt(0));\n//=> true\n\nisFullwidthCodePoint('a'.codePointAt(0));\n//=> false\n```\n*/\nexport default function isFullwidthCodePoint(codePoint: number): boolean;\n",
    "node_modules/is-fullwidth-code-point/package.json": "{\n\t\"name\": \"is-fullwidth-code-point\",\n\t\"version\": \"3.0.0\",\n\t\"description\": \"Check if the character represented by a given Unicode code point is fullwidth\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/is-fullwidth-code-point\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd-check\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"fullwidth\",\n\t\t\"full-width\",\n\t\t\"full\",\n\t\t\"width\",\n\t\t\"unicode\",\n\t\t\"character\",\n\t\t\"string\",\n\t\t\"codepoint\",\n\t\t\"code\",\n\t\t\"point\",\n\t\t\"is\",\n\t\t\"detect\",\n\t\t\"check\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.3.1\",\n\t\t\"tsd-check\": \"^0.5.0\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/is-interactive/index.d.ts": "/// <reference types=\"node\"/>\n\ndeclare namespace isInteractive {\n\tinterface Options {\n\t\t/**\n\t\tThe stream to check.\n\n\t\t@default process.stdout\n\t\t*/\n\t\treadonly stream?: NodeJS.WritableStream;\n\t}\n}\n\n/**\nCheck if stdout or stderr is [interactive](https://unix.stackexchange.com/a/43389/7678).\n\nIt checks that the stream is [TTY](https://jameshfisher.com/2017/12/09/what-is-a-tty/), not a dumb terminal, and not running in a CI.\n\nThis can be useful to decide whether to present interactive UI or animations in the terminal.\n\n@example\n```\nimport isInteractive = require('is-interactive');\n\nisInteractive();\n//=> true\n```\n*/\ndeclare function isInteractive(options?: isInteractive.Options): boolean;\n\nexport = isInteractive;\n",
    "node_modules/is-interactive/package.json": "{\n\t\"name\": \"is-interactive\",\n\t\"version\": \"1.0.0\",\n\t\"description\": \"Check if stdout or stderr is interactive\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/is-interactive\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"interactive\",\n\t\t\"stdout\",\n\t\t\"stderr\",\n\t\t\"detect\",\n\t\t\"is\",\n\t\t\"terminal\",\n\t\t\"shell\",\n\t\t\"tty\"\n\t],\n\t\"devDependencies\": {\n\t\t\"@types/node\": \"^12.0.12\",\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"tsd\": \"^0.7.3\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/is-unicode-supported/index.d.ts": "/**\nDetect whether the terminal supports Unicode.\n\n@example\n```\nimport isUnicodeSupported = require('is-unicode-supported');\n\nisUnicodeSupported();\n//=> true\n```\n*/\ndeclare function isUnicodeSupported(): boolean;\n\nexport = isUnicodeSupported;\n",
    "node_modules/is-unicode-supported/package.json": "{\n\t\"name\": \"is-unicode-supported\",\n\t\"version\": \"0.1.0\",\n\t\"description\": \"Detect whether the terminal supports Unicode\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/is-unicode-supported\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"terminal\",\n\t\t\"unicode\",\n\t\t\"detect\",\n\t\t\"utf8\",\n\t\t\"console\",\n\t\t\"shell\",\n\t\t\"support\",\n\t\t\"supports\",\n\t\t\"supported\",\n\t\t\"check\",\n\t\t\"detection\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"tsd\": \"^0.14.0\",\n\t\t\"xo\": \"^0.38.2\"\n\t}\n}\n",
    "node_modules/lodash/package.json": "{\n  \"name\": \"lodash\",\n  \"version\": \"4.17.21\",\n  \"description\": \"Lodash modular utilities.\",\n  \"keywords\": \"modules, stdlib, util\",\n  \"homepage\": \"https://lodash.com/\",\n  \"repository\": \"lodash/lodash\",\n  \"icon\": \"https://lodash.com/icon.svg\",\n  \"license\": \"MIT\",\n  \"main\": \"lodash.js\",\n  \"author\": \"John-David Dalton <john.david.dalton@gmail.com>\",\n  \"contributors\": [\n    \"John-David Dalton <john.david.dalton@gmail.com>\",\n    \"Mathias Bynens <mathias@qiwi.be>\"\n  ],\n  \"scripts\": { \"test\": \"echo \\\"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\\\"\" }\n}\n",
    "node_modules/log-symbols/index.d.ts": "/**\nColored symbols for various log levels.\n\nIncludes fallbacks for Windows CMD which only supports a [limited character set](https://en.wikipedia.org/wiki/Code_page_437).\n\n@example\n```\nimport logSymbols = require('log-symbols');\n\nconsole.log(logSymbols.success, 'Finished successfully!');\n// Terminals with Unicode support:     ✔ Finished successfully!\n// Terminals without Unicode support:  √ Finished successfully!\n```\n*/\ndeclare const logSymbols: {\n\treadonly info: string;\n\n\treadonly success: string;\n\n\treadonly warning: string;\n\n\treadonly error: string;\n};\n\nexport = logSymbols;\n",
    "node_modules/log-symbols/package.json": "{\n\t\"name\": \"log-symbols\",\n\t\"version\": \"4.1.0\",\n\t\"description\": \"Colored symbols for various log levels. Example: `✔︎ Success`\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/log-symbols\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\",\n\t\t\"browser.js\"\n\t],\n\t\"keywords\": [\n\t\t\"unicode\",\n\t\t\"cli\",\n\t\t\"cmd\",\n\t\t\"command-line\",\n\t\t\"characters\",\n\t\t\"symbol\",\n\t\t\"symbols\",\n\t\t\"figure\",\n\t\t\"figures\",\n\t\t\"fallback\",\n\t\t\"windows\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"terminal\",\n\t\t\"stdout\"\n\t],\n\t\"dependencies\": {\n\t\t\"chalk\": \"^4.1.0\",\n\t\t\"is-unicode-supported\": \"^0.1.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"strip-ansi\": \"^6.0.0\",\n\t\t\"tsd\": \"^0.14.0\",\n\t\t\"xo\": \"^0.38.2\"\n\t},\n\t\"browser\": \"browser.js\"\n}\n",
    "node_modules/mimic-fn/index.d.ts": "declare const mimicFn: {\n\t/**\n\tMake a function mimic another one. It will copy over the properties `name`, `length`, `displayName`, and any custom properties you may have set.\n\n\t@param to - Mimicking function.\n\t@param from - Function to mimic.\n\t@returns The modified `to` function.\n\n\t@example\n\t```\n\timport mimicFn = require('mimic-fn');\n\n\tfunction foo() {}\n\tfoo.unicorn = '🦄';\n\n\tfunction wrapper() {\n\t\treturn foo();\n\t}\n\n\tconsole.log(wrapper.name);\n\t//=> 'wrapper'\n\n\tmimicFn(wrapper, foo);\n\n\tconsole.log(wrapper.name);\n\t//=> 'foo'\n\n\tconsole.log(wrapper.unicorn);\n\t//=> '🦄'\n\t```\n\t*/\n\t<\n\t\tArgumentsType extends unknown[],\n\t\tReturnType,\n\t\tFunctionType extends (...arguments: ArgumentsType) => ReturnType\n\t>(\n\t\tto: (...arguments: ArgumentsType) => ReturnType,\n\t\tfrom: FunctionType\n\t): FunctionType;\n\n\t// TODO: Remove this for the next major release, refactor the whole definition to:\n\t// declare function mimicFn<\n\t//\tArgumentsType extends unknown[],\n\t//\tReturnType,\n\t//\tFunctionType extends (...arguments: ArgumentsType) => ReturnType\n\t// >(\n\t//\tto: (...arguments: ArgumentsType) => ReturnType,\n\t//\tfrom: FunctionType\n\t// ): FunctionType;\n\t// export = mimicFn;\n\tdefault: typeof mimicFn;\n};\n\nexport = mimicFn;\n",
    "node_modules/mimic-fn/package.json": "{\n\t\"name\": \"mimic-fn\",\n\t\"version\": \"2.1.0\",\n\t\"description\": \"Make a function mimic another one\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/mimic-fn\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=6\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"function\",\n\t\t\"mimic\",\n\t\t\"imitate\",\n\t\t\"rename\",\n\t\t\"copy\",\n\t\t\"inherit\",\n\t\t\"properties\",\n\t\t\"name\",\n\t\t\"func\",\n\t\t\"fn\",\n\t\t\"set\",\n\t\t\"infer\",\n\t\t\"change\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"tsd\": \"^0.7.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/mute-stream/package.json": "{\n  \"name\": \"mute-stream\",\n  \"version\": \"0.0.8\",\n  \"main\": \"mute.js\",\n  \"directories\": {\n    \"test\": \"test\"\n  },\n  \"devDependencies\": {\n    \"tap\": \"^12.1.1\"\n  },\n  \"scripts\": {\n    \"test\": \"tap test/*.js --cov\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/isaacs/mute-stream\"\n  },\n  \"keywords\": [\n    \"mute\",\n    \"stream\",\n    \"pipe\"\n  ],\n  \"author\": \"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)\",\n  \"license\": \"ISC\",\n  \"description\": \"Bytes go in, but they don't come out (when muted).\",\n  \"files\": [\n    \"mute.js\"\n  ]\n}\n",
    "node_modules/onetime/index.d.ts": "declare namespace onetime {\n\tinterface Options {\n\t\t/**\n\t\tThrow an error when called more than once.\n\n\t\t@default false\n\t\t*/\n\t\tthrow?: boolean;\n\t}\n}\n\ndeclare const onetime: {\n\t/**\n\tEnsure a function is only called once. When called multiple times it will return the return value from the first call.\n\n\t@param fn - Function that should only be called once.\n\t@returns A function that only calls `fn` once.\n\n\t@example\n\t```\n\timport onetime = require('onetime');\n\n\tlet i = 0;\n\n\tconst foo = onetime(() => ++i);\n\n\tfoo(); //=> 1\n\tfoo(); //=> 1\n\tfoo(); //=> 1\n\n\tonetime.callCount(foo); //=> 3\n\t```\n\t*/\n\t<ArgumentsType extends unknown[], ReturnType>(\n\t\tfn: (...arguments: ArgumentsType) => ReturnType,\n\t\toptions?: onetime.Options\n\t): (...arguments: ArgumentsType) => ReturnType;\n\n\t/**\n\tGet the number of times `fn` has been called.\n\n\t@param fn - Function to get call count from.\n\t@returns A number representing how many times `fn` has been called.\n\n\t@example\n\t```\n\timport onetime = require('onetime');\n\n\tconst foo = onetime(() => {});\n\tfoo();\n\tfoo();\n\tfoo();\n\n\tconsole.log(onetime.callCount(foo));\n\t//=> 3\n\t```\n\t*/\n\tcallCount(fn: (...arguments: any[]) => unknown): number;\n\n\t// TODO: Remove this for the next major release\n\tdefault: typeof onetime;\n};\n\nexport = onetime;\n",
    "node_modules/onetime/package.json": "{\n\t\"name\": \"onetime\",\n\t\"version\": \"5.1.2\",\n\t\"description\": \"Ensure a function is only called once\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/onetime\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=6\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"once\",\n\t\t\"function\",\n\t\t\"one\",\n\t\t\"onetime\",\n\t\t\"func\",\n\t\t\"fn\",\n\t\t\"single\",\n\t\t\"call\",\n\t\t\"called\",\n\t\t\"prevent\"\n\t],\n\t\"dependencies\": {\n\t\t\"mimic-fn\": \"^2.1.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"tsd\": \"^0.7.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/ora/index.d.ts": "import {SpinnerName} from 'cli-spinners';\n\ndeclare namespace ora {\n\tinterface Spinner {\n\t\treadonly interval?: number;\n\t\treadonly frames: string[];\n\t}\n\n\ttype Color =\n\t\t| 'black'\n\t\t| 'red'\n\t\t| 'green'\n\t\t| 'yellow'\n\t\t| 'blue'\n\t\t| 'magenta'\n\t\t| 'cyan'\n\t\t| 'white'\n\t\t| 'gray';\n\n\ttype PrefixTextGenerator = () => string;\n\n\tinterface Options {\n\t\t/**\n\t\tText to display after the spinner.\n\t\t*/\n\t\treadonly text?: string;\n\n\t\t/**\n\t\tText or a function that returns text to display before the spinner. No prefix text will be displayed if set to an empty string.\n\t\t*/\n\t\treadonly prefixText?: string | PrefixTextGenerator;\n\n\t\t/**\n\t\tName of one of the provided spinners. See [`example.js`](https://github.com/BendingBender/ora/blob/main/example.js) in this repo if you want to test out different spinners. On Windows, it will always use the line spinner as the Windows command-line doesn't have proper Unicode support.\n\n\t\t@default 'dots'\n\n\t\tOr an object like:\n\n\t\t@example\n\t\t```\n\t\t{\n\t\t\tinterval: 80, // Optional\n\t\t\tframes: ['-', '+', '-']\n\t\t}\n\t\t```\n\t\t*/\n\t\treadonly spinner?: SpinnerName | Spinner;\n\n\t\t/**\n\t\tColor of the spinner.\n\n\t\t@default 'cyan'\n\t\t*/\n\t\treadonly color?: Color;\n\n\t\t/**\n\t\tSet to `false` to stop Ora from hiding the cursor.\n\n\t\t@default true\n\t\t*/\n\t\treadonly hideCursor?: boolean;\n\n\t\t/**\n\t\tIndent the spinner with the given number of spaces.\n\n\t\t@default 0\n\t\t*/\n\t\treadonly indent?: number;\n\n\t\t/**\n\t\tInterval between each frame.\n\n\t\tSpinners provide their own recommended interval, so you don't really need to specify this.\n\n\t\tDefault: Provided by the spinner or `100`.\n\t\t*/\n\t\treadonly interval?: number;\n\n\t\t/**\n\t\tStream to write the output.\n\n\t\tYou could for example set this to `process.stdout` instead.\n\n\t\t@default process.stderr\n\t\t*/\n\t\treadonly stream?: NodeJS.WritableStream;\n\n\t\t/**\n\t\tForce enable/disable the spinner. If not specified, the spinner will be enabled if the `stream` is being run inside a TTY context (not spawned or piped) and/or not in a CI environment.\n\n\t\tNote that `{isEnabled: false}` doesn't mean it won't output anything. It just means it won't output the spinner, colors, and other ansi escape codes. It will still log text.\n\t\t*/\n\t\treadonly isEnabled?: boolean;\n\n\t\t/**\n\t\tDisable the spinner and all log text. All output is suppressed and `isEnabled` will be considered `false`.\n\n\t\t@default false\n\t\t*/\n\t\treadonly isSilent?: boolean;\n\n\t\t/**\n\t\tDiscard stdin input (except Ctrl+C) while running if it's TTY. This prevents the spinner from twitching on input, outputting broken lines on `Enter` key presses, and prevents buffering of input while the spinner is running.\n\n\t\tThis has no effect on Windows as there's no good way to implement discarding stdin properly there.\n\n\t\t@default true\n\t\t*/\n\t\treadonly discardStdin?: boolean;\n\t}\n\n\tinterface PersistOptions {\n\t\t/**\n\t\tSymbol to replace the spinner with.\n\n\t\t@default ' '\n\t\t*/\n\t\treadonly symbol?: string;\n\n\t\t/**\n\t\tText to be persisted after the symbol.\n\n\t\tDefault: Current `text`.\n\t\t*/\n\t\treadonly text?: string;\n\n\t\t/**\n\t\tText or a function that returns text to be persisted before the symbol. No prefix text will be displayed if set to an empty string.\n\n\t\tDefault: Current `prefixText`.\n\t\t*/\n\t\treadonly prefixText?: string | PrefixTextGenerator;\n\t}\n\n\tinterface Ora {\n\t\t/**\n\t\tA boolean of whether the instance is currently spinning.\n\t\t*/\n\t\treadonly isSpinning: boolean;\n\n\t\t/**\n\t\tChange the text after the spinner.\n\t\t*/\n\t\ttext: string;\n\n\t\t/**\n\t\tChange the text or function that returns text before the spinner. No prefix text will be displayed if set to an empty string.\n\t\t*/\n\t\tprefixText: string | PrefixTextGenerator;\n\n\t\t/**\n\t\tChange the spinner color.\n\t\t*/\n\t\tcolor: Color;\n\n\t\t/**\n\t\tChange the spinner.\n\t\t*/\n\t\tspinner: SpinnerName | Spinner;\n\n\t\t/**\n\t\tChange the spinner indent.\n\t\t*/\n\t\tindent: number;\n\n\t\t/**\n\t\tStart the spinner.\n\n\t\t@param text - Set the current text.\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tstart(text?: string): Ora;\n\n\t\t/**\n\t\tStop and clear the spinner.\n\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tstop(): Ora;\n\n\t\t/**\n\t\tStop the spinner, change it to a green `✔` and persist the current text, or `text` if provided.\n\n\t\t@param text - Will persist text if provided.\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tsucceed(text?: string): Ora;\n\n\t\t/**\n\t\tStop the spinner, change it to a red `✖` and persist the current text, or `text` if provided.\n\n\t\t@param text - Will persist text if provided.\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tfail(text?: string): Ora;\n\n\t\t/**\n\t\tStop the spinner, change it to a yellow `⚠` and persist the current text, or `text` if provided.\n\n\t\t@param text - Will persist text if provided.\n\t\t@returns The spinner instance.\n\t\t*/\n\t\twarn(text?: string): Ora;\n\n\t\t/**\n\t\tStop the spinner, change it to a blue `ℹ` and persist the current text, or `text` if provided.\n\n\t\t@param text - Will persist text if provided.\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tinfo(text?: string): Ora;\n\n\t\t/**\n\t\tStop the spinner and change the symbol or text.\n\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tstopAndPersist(options?: PersistOptions): Ora;\n\n\t\t/**\n\t\tClear the spinner.\n\n\t\t@returns The spinner instance.\n\t\t*/\n\t\tclear(): Ora;\n\n\t\t/**\n\t\tManually render a new frame.\n\n\t\t@returns The spinner instance.\n\t\t*/\n\t\trender(): Ora;\n\n\t\t/**\n\t\tGet a new frame.\n\n\t\t@returns The spinner instance text.\n\t\t*/\n\t\tframe(): string;\n\t}\n}\n\ndeclare const ora: {\n\t/**\n\tElegant terminal spinner.\n\n\t@param options - If a string is provided, it is treated as a shortcut for `options.text`.\n\n\t@example\n\t```\n\timport ora = require('ora');\n\n\tconst spinner = ora('Loading unicorns').start();\n\n\tsetTimeout(() => {\n\t\tspinner.color = 'yellow';\n\t\tspinner.text = 'Loading rainbows';\n\t}, 1000);\n\t```\n\t*/\n\t(options?: ora.Options | string): ora.Ora;\n\n\t/**\n\tStarts a spinner for a promise. The spinner is stopped with `.succeed()` if the promise fulfills or with `.fail()` if it rejects.\n\n\t@param action - The promise to start the spinner for.\n\t@param options - If a string is provided, it is treated as a shortcut for `options.text`.\n\t@returns The spinner instance.\n\t*/\n\tpromise(\n\t\taction: PromiseLike<unknown>,\n\t\toptions?: ora.Options | string\n\t): ora.Ora;\n};\n\nexport = ora;\n",
    "node_modules/ora/package.json": "{\n\t\"name\": \"ora\",\n\t\"version\": \"5.4.1\",\n\t\"description\": \"Elegant terminal spinner\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/ora\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"cli\",\n\t\t\"spinner\",\n\t\t\"spinners\",\n\t\t\"terminal\",\n\t\t\"term\",\n\t\t\"console\",\n\t\t\"ascii\",\n\t\t\"unicode\",\n\t\t\"loading\",\n\t\t\"indicator\",\n\t\t\"progress\",\n\t\t\"busy\",\n\t\t\"wait\",\n\t\t\"idle\"\n\t],\n\t\"dependencies\": {\n\t\t\"bl\": \"^4.1.0\",\n\t\t\"chalk\": \"^4.1.0\",\n\t\t\"cli-cursor\": \"^3.1.0\",\n\t\t\"cli-spinners\": \"^2.5.0\",\n\t\t\"is-interactive\": \"^1.0.0\",\n\t\t\"is-unicode-supported\": \"^0.1.0\",\n\t\t\"log-symbols\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\",\n\t\t\"wcwidth\": \"^1.0.1\"\n\t},\n\t\"devDependencies\": {\n\t\t\"@types/node\": \"^14.14.35\",\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"get-stream\": \"^6.0.0\",\n\t\t\"tsd\": \"^0.14.0\",\n\t\t\"xo\": \"^0.38.2\"\n\t}\n}\n",
    "node_modules/os-tmpdir/package.json": "{\n  \"name\": \"os-tmpdir\",\n  \"version\": \"1.0.2\",\n  \"description\": \"Node.js os.tmpdir() ponyfill\",\n  \"license\": \"MIT\",\n  \"repository\": \"sindresorhus/os-tmpdir\",\n  \"author\": {\n    \"name\": \"Sindre Sorhus\",\n    \"email\": \"sindresorhus@gmail.com\",\n    \"url\": \"sindresorhus.com\"\n  },\n  \"engines\": {\n    \"node\": \">=0.10.0\"\n  },\n  \"scripts\": {\n    \"test\": \"xo && ava\"\n  },\n  \"files\": [\n    \"index.js\"\n  ],\n  \"keywords\": [\n    \"built-in\",\n    \"core\",\n    \"ponyfill\",\n    \"polyfill\",\n    \"shim\",\n    \"os\",\n    \"tmpdir\",\n    \"tempdir\",\n    \"tmp\",\n    \"temp\",\n    \"dir\",\n    \"directory\",\n    \"env\",\n    \"environment\"\n  ],\n  \"devDependencies\": {\n    \"ava\": \"*\",\n    \"xo\": \"^0.16.0\"\n  }\n}\n",
    "node_modules/package-manager-detector/dist/commands.d.ts": "import { c as AgentCommands, b as AgentCommandValue, R as ResolvedCommand, A as Agent, C as Command } from './shared/package-manager-detector.ncFwAKgD.js';\n\ndeclare const COMMANDS: {\n    npm: AgentCommands;\n    yarn: AgentCommands;\n    'yarn@berry': AgentCommands;\n    pnpm: AgentCommands;\n    'pnpm@6': AgentCommands;\n    bun: AgentCommands;\n    deno: AgentCommands;\n};\n/**\n * Resolve the command for the agent merging the command arguments with the provided arguments.\n *\n * For example, to show how to install `@antfu/ni` globally using `pnpm`:\n * ```js\n * import { resolveCommand } from 'package-manager-detector/commands'\n * const { command, args } = resolveCommand('pnpm', 'global', ['@antfu/ni'])\n * console.log(`${command} ${args.join(' ')}`) // 'pnpm add -g @antfu/ni'\n * ```\n *\n * @param agent The agent to use.\n * @param command the command to resolve.\n * @param args The arguments to pass to the command.\n * @returns {ResolvedCommand} The resolved command or `null` if the agent command is not found.\n */\ndeclare function resolveCommand(agent: Agent, command: Command, args: string[]): ResolvedCommand | null;\n/**\n * Construct the command from the agent command merging the command arguments with the provided arguments.\n * @param value {AgentCommandValue} The agent command to use.\n * @param args The arguments to pass to the command.\n * @returns {ResolvedCommand} The resolved command or `null` if the command is `null`.\n */\ndeclare function constructCommand(value: AgentCommandValue, args: string[]): ResolvedCommand | null;\n\nexport { COMMANDS, constructCommand, resolveCommand };\n",
    "node_modules/package-manager-detector/dist/constants.d.ts": "import { A as Agent, a as AgentName } from './shared/package-manager-detector.ncFwAKgD.js';\n\ndeclare const AGENTS: Agent[];\ndeclare const LOCKS: Record<string, AgentName>;\ndeclare const INSTALL_PAGE: Record<Agent, string>;\n\nexport { AGENTS, INSTALL_PAGE, LOCKS };\n",
    "node_modules/package-manager-detector/dist/detect.d.ts": "import * as quansync_types from 'quansync/types';\nimport { d as DetectResult, D as DetectOptions, a as AgentName } from './shared/package-manager-detector.ncFwAKgD.js';\n\n/**\n * Detects the package manager used in the running process.\n *\n * This method will check for `process.env.npm_config_user_agent`.\n */\ndeclare function getUserAgent(): AgentName | null;\n/**\n * Detects the package manager used in the project.\n * @param options {DetectOptions} The options to use when detecting the package manager.\n * @returns {Promise<DetectResult | null>} The detected package manager or `null` if not found.\n */\ndeclare const detect: quansync_types.QuansyncFn<DetectResult | null, [options?: DetectOptions | undefined]>;\ndeclare const detectSync: (options?: DetectOptions | undefined) => DetectResult | null;\n\nexport { detect, detectSync, getUserAgent };\n",
    "node_modules/package-manager-detector/dist/index.d.ts": "export { COMMANDS, constructCommand, resolveCommand } from './commands.js';\nexport { AGENTS, INSTALL_PAGE, LOCKS } from './constants.js';\nexport { detect, detectSync, getUserAgent } from './detect.js';\nexport { A as Agent, b as AgentCommandValue, c as AgentCommands, a as AgentName, C as Command, D as DetectOptions, d as DetectResult, R as ResolvedCommand } from './shared/package-manager-detector.ncFwAKgD.js';\nimport 'quansync/types';\n",
    "node_modules/package-manager-detector/dist/shared/package-manager-detector.ncFwAKgD.d.ts": "type Agent = 'npm' | 'yarn' | 'yarn@berry' | 'pnpm' | 'pnpm@6' | 'bun' | 'deno';\ntype AgentName = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'deno';\ntype AgentCommandValue = (string | number)[] | ((args: string[]) => string[]) | null;\ninterface AgentCommands {\n    'agent': AgentCommandValue;\n    'run': AgentCommandValue;\n    'install': AgentCommandValue;\n    'frozen': AgentCommandValue;\n    'global': AgentCommandValue;\n    'add': AgentCommandValue;\n    'upgrade': AgentCommandValue;\n    'upgrade-interactive': AgentCommandValue;\n    'execute': AgentCommandValue;\n    'execute-local': AgentCommandValue;\n    'uninstall': AgentCommandValue;\n    'global_uninstall': AgentCommandValue;\n}\ntype Command = keyof AgentCommands;\ninterface ResolvedCommand {\n    /**\n     * CLI command.\n     */\n    command: string;\n    /**\n     * Arguments for the CLI command, merged with user arguments.\n     */\n    args: string[];\n}\ninterface DetectOptions {\n    /**\n     * Current working directory to start looking up for package manager.\n     * @default `process.cwd()`\n     */\n    cwd?: string;\n    /**\n     * Callback when unknown package manager from package.json.\n     * @param packageManager - The `packageManager` value from package.json file.\n     */\n    onUnknown?: (packageManager: string) => DetectResult | null | undefined;\n}\ninterface DetectResult {\n    /**\n     * Agent name without the specifier.\n     *\n     * Can be `npm`, `yarn`, `pnpm`, `bun`, or `deno`.\n     */\n    name: AgentName;\n    /**\n     * Agent specifier to resolve the command.\n     *\n     * May contain '@' to differentiate the version (e.g. 'yarn@berry').\n     * Use `name` for the agent name without the specifier.\n     */\n    agent: Agent;\n    /**\n     * Specific version of the agent, read from `packageManager` field in package.json.\n     */\n    version?: string;\n}\n\nexport type { Agent as A, Command as C, DetectOptions as D, ResolvedCommand as R, AgentName as a, AgentCommandValue as b, AgentCommands as c, DetectResult as d };\n",
    "node_modules/package-manager-detector/package.json": "{\n  \"name\": \"package-manager-detector\",\n  \"type\": \"module\",\n  \"version\": \"0.2.11\",\n  \"description\": \"Package manager detector\",\n  \"author\": \"Anthony Fu <anthonyfu117@hotmail.com>\",\n  \"license\": \"MIT\",\n  \"homepage\": \"https://github.com/antfu-collective/package-manager-detector#readme\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/antfu-collective/package-manager-detector.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/antfu-collective/package-manager-detector/issues\"\n  },\n  \"sideEffects\": false,\n  \"exports\": {\n    \".\": {\n      \"import\": \"./dist/index.mjs\",\n      \"require\": \"./dist/index.cjs\"\n    },\n    \"./commands\": {\n      \"import\": \"./dist/commands.mjs\",\n      \"require\": \"./dist/commands.cjs\"\n    },\n    \"./detect\": {\n      \"import\": \"./dist/detect.mjs\",\n      \"require\": \"./dist/detect.cjs\"\n    },\n    \"./constants\": {\n      \"import\": \"./dist/constants.mjs\",\n      \"require\": \"./dist/constants.cjs\"\n    }\n  },\n  \"main\": \"./dist/index.cjs\",\n  \"module\": \"./dist/index.mjs\",\n  \"types\": \"./dist/index.d.ts\",\n  \"typesVersions\": {\n    \"*\": {\n      \"commands\": [\n        \"./dist/commands.d.ts\"\n      ],\n      \"detect\": [\n        \"./dist/detect.d.ts\"\n      ],\n      \"constants\": [\n        \"./dist/constants.d.ts\"\n      ]\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"dependencies\": {\n    \"quansync\": \"^0.2.7\"\n  },\n  \"devDependencies\": {\n    \"@antfu/eslint-config\": \"^4.3.0\",\n    \"@types/fs-extra\": \"^11.0.4\",\n    \"@types/node\": \"^22.13.8\",\n    \"bumpp\": \"^10.0.3\",\n    \"eslint\": \"^9.21.0\",\n    \"fs-extra\": \"^11.3.0\",\n    \"typescript\": \"^5.8.2\",\n    \"unbuild\": \"^3.5.0\",\n    \"unplugin-quansync\": \"^0.3.3\",\n    \"vitest\": \"^3.0.7\"\n  },\n  \"scripts\": {\n    \"build\": \"unbuild\",\n    \"stub\": \"unbuild --stub\",\n    \"release\": \"bumpp\",\n    \"lint\": \"eslint .\",\n    \"test\": \"vitest\"\n  }\n}",
    "node_modules/quansync/dist/index.d.ts": "import type { QuansyncFn, QuansyncGenerator, QuansyncGeneratorFn, QuansyncInputObject, QuansyncOptions } from './types.js';\nexport { QuansyncAwaitableGenerator, QuansyncInput } from './types.js';\n\n\n\n\n\n\n\n\n\n\n\ndeclare const GET_IS_ASYNC: unique symbol;\ndeclare class QuansyncError extends Error {\n    constructor(message?: string);\n}\n/**\n * Creates a new Quansync function, a \"superposition\" between async and sync.\n */\ndeclare function quansync<Return, Args extends any[] = []>(input: QuansyncInputObject<Return, Args>): QuansyncFn<Return, Args>;\ndeclare function quansync<Return, Args extends any[] = []>(input: QuansyncGeneratorFn<Return, Args> | Promise<Return>, options?: QuansyncOptions): QuansyncFn<Return, Args>;\n/**\n * Converts a promise to a Quansync generator.\n */\ndeclare function toGenerator<T>(promise: Promise<T> | QuansyncGenerator<T> | T): QuansyncGenerator<T>;\n/**\n * @returns `true` if the current context is async, `false` otherwise.\n */\ndeclare const getIsAsync: QuansyncFn<boolean, []>;\n\nexport { GET_IS_ASYNC, QuansyncError, getIsAsync, quansync, toGenerator };\nexport type { QuansyncFn, QuansyncGenerator, QuansyncGeneratorFn, QuansyncInputObject, QuansyncOptions };\n",
    "node_modules/quansync/dist/macro.d.ts": "import type { QuansyncFn, QuansyncGeneratorFn, QuansyncInputObject, QuansyncOptions } from './types.js';\nexport { QuansyncAwaitableGenerator, QuansyncGenerator, QuansyncInput } from './types.js';\n\n\n\n\n\n\n\n\n\n/**\n * This function is equivalent to `quansync` from main entry\n * but accepts a fake argument type of async functions.\n *\n * This requires to be used with the macro transformer `unplugin-quansync`.\n * Do NOT use it directly.\n *\n * @internal\n */\ndeclare const quansync: {\n    <Return, Args extends any[] = []>(input: QuansyncInputObject<Return, Args>): QuansyncFn<Return, Args>;\n    <Return, Args extends any[] = []>(input: QuansyncGeneratorFn<Return, Args> | Promise<Return> | ((...args: Args) => Promise<Return> | Return), options?: QuansyncOptions): QuansyncFn<Return, Args>;\n};\n\nexport { quansync };\nexport type { QuansyncFn, QuansyncGeneratorFn, QuansyncInputObject, QuansyncOptions };\n",
    "node_modules/quansync/dist/types.d.ts": "interface QuansyncOptions {\n    onYield?: (value: any, isAsync: boolean) => any;\n}\ninterface QuansyncInputObject<Return, Args extends any[]> extends QuansyncOptions {\n    name?: string;\n    sync: (...args: Args) => Return;\n    async: (...args: Args) => Promise<Return>;\n}\ntype QuansyncGeneratorFn<Return, Args extends any[]> = ((...args: Args) => QuansyncGenerator<Return>);\ntype QuansyncInput<Return, Args extends any[]> = QuansyncInputObject<Return, Args> | QuansyncGeneratorFn<Return, Args>;\ntype QuansyncGenerator<Return = any, Yield = unknown> = Generator<Yield, Return, Awaited<Yield>> & {\n    __quansync?: true;\n};\ntype QuansyncAwaitableGenerator<Return = any, Yield = unknown> = QuansyncGenerator<Return, Yield> & PromiseLike<Return>;\n/**\n * \"Superposition\" function that can be consumed in both sync and async contexts.\n */\ntype QuansyncFn<Return = any, Args extends any[] = []> = ((...args: Args) => QuansyncAwaitableGenerator<Return>) & {\n    sync: (...args: Args) => Return;\n    async: (...args: Args) => Promise<Return>;\n};\n\nexport type { QuansyncAwaitableGenerator, QuansyncFn, QuansyncGenerator, QuansyncGeneratorFn, QuansyncInput, QuansyncInputObject, QuansyncOptions };\n",
    "node_modules/quansync/package.json": "{\n  \"name\": \"quansync\",\n  \"type\": \"module\",\n  \"version\": \"0.2.10\",\n  \"description\": \"Create sync/async APIs with usable logic\",\n  \"author\": \"Anthony Fu <anthonyfu117@hotmail.com>\",\n  \"contributors\": [\n    {\n      \"name\": \"三咲智子 Kevin Deng\",\n      \"email\": \"sxzz@sxzz.moe\"\n    }\n  ],\n  \"license\": \"MIT\",\n  \"funding\": [\n    {\n      \"type\": \"individual\",\n      \"url\": \"https://github.com/sponsors/antfu\"\n    },\n    {\n      \"type\": \"individual\",\n      \"url\": \"https://github.com/sponsors/sxzz\"\n    }\n  ],\n  \"homepage\": \"https://github.com/quansync-dev/quansync#readme\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/quansync-dev/quansync.git\"\n  },\n  \"bugs\": \"https://github.com/quansync-dev/quansync/issues\",\n  \"keywords\": [\n    \"async\",\n    \"sync\",\n    \"generator\"\n  ],\n  \"sideEffects\": false,\n  \"exports\": {\n    \".\": {\n      \"import\": \"./dist/index.mjs\",\n      \"require\": \"./dist/index.cjs\"\n    },\n    \"./macro\": {\n      \"import\": \"./dist/macro.mjs\",\n      \"require\": \"./dist/macro.cjs\"\n    },\n    \"./types\": {\n      \"import\": \"./dist/types.mjs\",\n      \"require\": \"./dist/types.cjs\"\n    }\n  },\n  \"main\": \"./dist/index.mjs\",\n  \"module\": \"./dist/index.mjs\",\n  \"types\": \"./dist/index.d.mts\",\n  \"typesVersions\": {\n    \"*\": {\n      \"*\": [\n        \"./dist/*\",\n        \"./*\"\n      ]\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"devDependencies\": {\n    \"@antfu/eslint-config\": \"^4.10.1\",\n    \"@types/node\": \"^22.13.10\",\n    \"bumpp\": \"^10.1.0\",\n    \"eslint\": \"^9.22.0\",\n    \"gensync\": \"1.0.0-beta.2\",\n    \"lint-staged\": \"^15.5.0\",\n    \"mitata\": \"^1.0.34\",\n    \"simple-git-hooks\": \"^2.11.1\",\n    \"tsx\": \"^4.19.3\",\n    \"typescript\": \"^5.8.2\",\n    \"unbuild\": \"^3.5.0\",\n    \"vite\": \"^6.2.2\",\n    \"vitest\": \"^3.0.9\"\n  },\n  \"simple-git-hooks\": {\n    \"pre-commit\": \"pnpm lint-staged\"\n  },\n  \"lint-staged\": {\n    \"*\": \"eslint --fix\"\n  },\n  \"scripts\": {\n    \"build\": \"unbuild\",\n    \"dev\": \"unbuild --stub\",\n    \"lint\": \"eslint .\",\n    \"release\": \"bumpp && pnpm publish\",\n    \"start\": \"tsx src/index.ts\",\n    \"benchmark\": \"node scripts/benchmark.js\",\n    \"test\": \"vitest\",\n    \"typecheck\": \"tsc --noEmit\"\n  }\n}",
    "node_modules/randexp/package.json": "{\n  \"name\": \"randexp\",\n  \"description\": \"Create random strings that match a given regular expression.\",\n  \"keywords\": [\n    \"regex\",\n    \"regexp\",\n    \"regular expression\",\n    \"random\",\n    \"test\"\n  ],\n  \"version\": \"0.5.3\",\n  \"homepage\": \"http://fent.github.io/randexp.js/\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/fent/randexp.js.git\"\n  },\n  \"author\": \"fent (https://github.com/fent)\",\n  \"main\": \"./lib/randexp.js\",\n  \"files\": [\n    \"lib\",\n    \"types/index.d.ts\"\n  ],\n  \"scripts\": {\n    \"version\": \"gulp build && git add build\",\n    \"test\": \"istanbul cover node_modules/.bin/_mocha -- test/*-test.js\",\n    \"dtslint\": \"dtslint types --onlyTestTsNext\"\n  },\n  \"directories\": {\n    \"lib\": \"./lib\"\n  },\n  \"dependencies\": {\n    \"drange\": \"^1.0.2\",\n    \"ret\": \"^0.2.0\"\n  },\n  \"devDependencies\": {\n    \"browserify\": \"^16.1.0\",\n    \"gulp\": \"^3.9.0\",\n    \"gulp-header\": \"^2.0.1\",\n    \"gulp-insert\": \"^0.5.0\",\n    \"gulp-uglify\": \"^3.0.0\",\n    \"istanbul\": \"*\",\n    \"mocha\": \"^5.0.0\",\n    \"vinyl-buffer\": \"^1.0.1\",\n    \"vinyl-source-stream\": \"^1.1.2\"\n  },\n  \"engines\": {\n    \"node\": \">=4\"\n  },\n  \"license\": \"MIT\",\n  \"types\": \"./types\"\n}\n",
    "node_modules/randexp/types/index.d.ts": "import * as DRange from \"drange\";\n\ndeclare namespace RandExp {}\n\ndeclare class RandExp {\n    static randexp(pattern: string | RegExp, flags?: string): string;\n    static sugar(): void;\n    constructor(pattern: string | RegExp, flags?: string);\n    gen(): string;\n    defaultRange: DRange;\n    randInt: (from: number, to: number) => number;\n    max: number;\n}\n\nexport = RandExp;\n",
    "node_modules/readable-stream/package.json": "{\n  \"name\": \"readable-stream\",\n  \"version\": \"3.6.2\",\n  \"description\": \"Streams3, a user-land copy of the stream library from Node.js\",\n  \"main\": \"readable.js\",\n  \"engines\": {\n    \"node\": \">= 6\"\n  },\n  \"dependencies\": {\n    \"inherits\": \"^2.0.3\",\n    \"string_decoder\": \"^1.1.1\",\n    \"util-deprecate\": \"^1.0.1\"\n  },\n  \"devDependencies\": {\n    \"@babel/cli\": \"^7.2.0\",\n    \"@babel/core\": \"^7.2.0\",\n    \"@babel/polyfill\": \"^7.0.0\",\n    \"@babel/preset-env\": \"^7.2.0\",\n    \"airtap\": \"0.0.9\",\n    \"assert\": \"^1.4.0\",\n    \"bl\": \"^2.0.0\",\n    \"deep-strict-equal\": \"^0.2.0\",\n    \"events.once\": \"^2.0.2\",\n    \"glob\": \"^7.1.2\",\n    \"gunzip-maybe\": \"^1.4.1\",\n    \"hyperquest\": \"^2.1.3\",\n    \"lolex\": \"^2.6.0\",\n    \"nyc\": \"^11.0.0\",\n    \"pump\": \"^3.0.0\",\n    \"rimraf\": \"^2.6.2\",\n    \"tap\": \"^12.0.0\",\n    \"tape\": \"^4.9.0\",\n    \"tar-fs\": \"^1.16.2\",\n    \"util-promisify\": \"^2.1.0\"\n  },\n  \"scripts\": {\n    \"test\": \"tap -J --no-esm test/parallel/*.js test/ours/*.js\",\n    \"ci\": \"TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap\",\n    \"test-browsers\": \"airtap --sauce-connect --loopback airtap.local -- test/browser.js\",\n    \"test-browser-local\": \"airtap --open --local -- test/browser.js\",\n    \"cover\": \"nyc npm test\",\n    \"report\": \"nyc report --reporter=lcov\",\n    \"update-browser-errors\": \"babel -o errors-browser.js errors.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/nodejs/readable-stream\"\n  },\n  \"keywords\": [\n    \"readable\",\n    \"stream\",\n    \"pipe\"\n  ],\n  \"browser\": {\n    \"util\": false,\n    \"worker_threads\": false,\n    \"./errors\": \"./errors-browser.js\",\n    \"./readable.js\": \"./readable-browser.js\",\n    \"./lib/internal/streams/from.js\": \"./lib/internal/streams/from-browser.js\",\n    \"./lib/internal/streams/stream.js\": \"./lib/internal/streams/stream-browser.js\"\n  },\n  \"nyc\": {\n    \"include\": [\n      \"lib/**.js\"\n    ]\n  },\n  \"license\": \"MIT\"\n}\n",
    "node_modules/repeat-string/package.json": "{\n  \"name\": \"repeat-string\",\n  \"description\": \"Repeat the given string n times. Fastest implementation for repeating a string.\",\n  \"version\": \"1.6.1\",\n  \"homepage\": \"https://github.com/jonschlinkert/repeat-string\",\n  \"author\": \"Jon Schlinkert (http://github.com/jonschlinkert)\",\n  \"contributors\": [\n    \"Brian Woodward <brian.woodward@gmail.com> (https://github.com/doowb)\",\n    \"Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)\",\n    \"Linus Unnebäck <linus@folkdatorn.se> (http://linus.unnebäck.se)\",\n    \"Thijs Busser <tbusser@gmail.com> (http://tbusser.net)\",\n    \"Titus <tituswormer@gmail.com> (wooorm.com)\"\n  ],\n  \"repository\": \"jonschlinkert/repeat-string\",\n  \"bugs\": {\n    \"url\": \"https://github.com/jonschlinkert/repeat-string/issues\"\n  },\n  \"license\": \"MIT\",\n  \"files\": [\n    \"index.js\"\n  ],\n  \"main\": \"index.js\",\n  \"engines\": {\n    \"node\": \">=0.10\"\n  },\n  \"scripts\": {\n    \"test\": \"mocha\"\n  },\n  \"devDependencies\": {\n    \"ansi-cyan\": \"^0.1.1\",\n    \"benchmarked\": \"^0.2.5\",\n    \"gulp-format-md\": \"^0.1.11\",\n    \"isobject\": \"^2.1.0\",\n    \"mocha\": \"^3.1.2\",\n    \"repeating\": \"^3.0.0\",\n    \"text-table\": \"^0.2.0\",\n    \"yargs-parser\": \"^4.0.2\"\n  },\n  \"keywords\": [\n    \"fast\",\n    \"fastest\",\n    \"fill\",\n    \"left\",\n    \"left-pad\",\n    \"multiple\",\n    \"pad\",\n    \"padding\",\n    \"repeat\",\n    \"repeating\",\n    \"repetition\",\n    \"right\",\n    \"right-pad\",\n    \"string\",\n    \"times\"\n  ],\n  \"verb\": {\n    \"toc\": false,\n    \"layout\": \"default\",\n    \"tasks\": [\n      \"readme\"\n    ],\n    \"plugins\": [\n      \"gulp-format-md\"\n    ],\n    \"related\": {\n      \"list\": [\n        \"repeat-element\"\n      ]\n    },\n    \"helpers\": [\n      \"./benchmark/helper.js\"\n    ],\n    \"reflinks\": [\n      \"verb\"\n    ]\n  }\n}\n",
    "node_modules/restore-cursor/index.d.ts": "/**\nGracefully restore the CLI cursor on exit.\n\n@example\n```\nimport restoreCursor = require('restore-cursor');\n\nrestoreCursor();\n```\n*/\ndeclare function restoreCursor(): void;\n\nexport = restoreCursor;\n",
    "node_modules/restore-cursor/package.json": "{\n\t\"name\": \"restore-cursor\",\n\t\"version\": \"3.1.0\",\n\t\"description\": \"Gracefully restore the CLI cursor on exit\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/restore-cursor\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"exit\",\n\t\t\"quit\",\n\t\t\"process\",\n\t\t\"graceful\",\n\t\t\"shutdown\",\n\t\t\"sigterm\",\n\t\t\"sigint\",\n\t\t\"terminate\",\n\t\t\"kill\",\n\t\t\"stop\",\n\t\t\"cli\",\n\t\t\"cursor\",\n\t\t\"ansi\",\n\t\t\"show\",\n\t\t\"term\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"tty\",\n\t\t\"shell\",\n\t\t\"command-line\"\n\t],\n\t\"dependencies\": {\n\t\t\"onetime\": \"^5.1.0\",\n\t\t\"signal-exit\": \"^3.0.2\"\n\t},\n\t\"devDependencies\": {\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/ret/package.json": "{\n  \"name\": \"ret\",\n  \"description\": \"Tokenizes a string that represents a regular expression.\",\n  \"keywords\": [\n    \"regex\",\n    \"regexp\",\n    \"regular expression\",\n    \"parser\",\n    \"tokenizer\"\n  ],\n  \"version\": \"0.2.2\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/fent/ret.js.git\"\n  },\n  \"author\": \"fent (https://github.com/fent)\",\n  \"main\": \"./lib/index.js\",\n  \"files\": [\n    \"lib\"\n  ],\n  \"scripts\": {\n    \"test\": \"istanbul cover vows -- --spec test/*-test.js\"\n  },\n  \"directories\": {\n    \"lib\": \"./lib\"\n  },\n  \"devDependencies\": {\n    \"istanbul\": \"^0.4.5\",\n    \"vows\": \"^0.8.1\"\n  },\n  \"engines\": {\n    \"node\": \">=4\"\n  },\n  \"license\": \"MIT\"\n}\n",
    "node_modules/run-async/package.json": "{\n  \"name\": \"run-async\",\n  \"version\": \"2.4.1\",\n  \"description\": \"Utility method to run function either synchronously or asynchronously using the common `this.async()` style.\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"mocha -R spec\"\n  },\n  \"engines\": {\n    \"node\": \">=0.12.0\"\n  },\n  \"repository\": \"SBoudrias/run-async\",\n  \"keywords\": [\n    \"flow\",\n    \"flow-control\",\n    \"async\"\n  ],\n  \"files\": [\n    \"index.js\"\n  ],\n  \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n  \"license\": \"MIT\",\n  \"dependencies\": {},\n  \"devDependencies\": {\n    \"mocha\": \"^7.1.0\"\n  }\n}\n",
    "node_modules/rxjs/dist/types/ajax/index.d.ts": "export { ajax } from '../internal/ajax/ajax';\nexport { AjaxError, AjaxTimeoutError } from '../internal/ajax/errors';\nexport { AjaxResponse } from '../internal/ajax/AjaxResponse';\nexport { AjaxRequest, AjaxConfig, AjaxDirection } from '../internal/ajax/types';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/dist/types/fetch/index.d.ts": "export { fromFetch } from '../internal/observable/dom/fetch';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/dist/types/index.d.ts": "/// <reference path=\"operators/index.d.ts\" />\n/// <reference path=\"testing/index.d.ts\" />\nexport { Observable } from './internal/Observable';\nexport { ConnectableObservable } from './internal/observable/ConnectableObservable';\nexport { GroupedObservable } from './internal/operators/groupBy';\nexport { Operator } from './internal/Operator';\nexport { observable } from './internal/symbol/observable';\nexport { animationFrames } from './internal/observable/dom/animationFrames';\nexport { Subject } from './internal/Subject';\nexport { BehaviorSubject } from './internal/BehaviorSubject';\nexport { ReplaySubject } from './internal/ReplaySubject';\nexport { AsyncSubject } from './internal/AsyncSubject';\nexport { asap, asapScheduler } from './internal/scheduler/asap';\nexport { async, asyncScheduler } from './internal/scheduler/async';\nexport { queue, queueScheduler } from './internal/scheduler/queue';\nexport { animationFrame, animationFrameScheduler } from './internal/scheduler/animationFrame';\nexport { VirtualTimeScheduler, VirtualAction } from './internal/scheduler/VirtualTimeScheduler';\nexport { Scheduler } from './internal/Scheduler';\nexport { Subscription } from './internal/Subscription';\nexport { Subscriber } from './internal/Subscriber';\nexport { Notification, NotificationKind } from './internal/Notification';\nexport { pipe } from './internal/util/pipe';\nexport { noop } from './internal/util/noop';\nexport { identity } from './internal/util/identity';\nexport { isObservable } from './internal/util/isObservable';\nexport { lastValueFrom } from './internal/lastValueFrom';\nexport { firstValueFrom } from './internal/firstValueFrom';\nexport { ArgumentOutOfRangeError } from './internal/util/ArgumentOutOfRangeError';\nexport { EmptyError } from './internal/util/EmptyError';\nexport { NotFoundError } from './internal/util/NotFoundError';\nexport { ObjectUnsubscribedError } from './internal/util/ObjectUnsubscribedError';\nexport { SequenceError } from './internal/util/SequenceError';\nexport { TimeoutError } from './internal/operators/timeout';\nexport { UnsubscriptionError } from './internal/util/UnsubscriptionError';\nexport { bindCallback } from './internal/observable/bindCallback';\nexport { bindNodeCallback } from './internal/observable/bindNodeCallback';\nexport { combineLatest } from './internal/observable/combineLatest';\nexport { concat } from './internal/observable/concat';\nexport { connectable } from './internal/observable/connectable';\nexport { defer } from './internal/observable/defer';\nexport { empty } from './internal/observable/empty';\nexport { forkJoin } from './internal/observable/forkJoin';\nexport { from } from './internal/observable/from';\nexport { fromEvent } from './internal/observable/fromEvent';\nexport { fromEventPattern } from './internal/observable/fromEventPattern';\nexport { generate } from './internal/observable/generate';\nexport { iif } from './internal/observable/iif';\nexport { interval } from './internal/observable/interval';\nexport { merge } from './internal/observable/merge';\nexport { never } from './internal/observable/never';\nexport { of } from './internal/observable/of';\nexport { onErrorResumeNext } from './internal/observable/onErrorResumeNext';\nexport { pairs } from './internal/observable/pairs';\nexport { partition } from './internal/observable/partition';\nexport { race } from './internal/observable/race';\nexport { range } from './internal/observable/range';\nexport { throwError } from './internal/observable/throwError';\nexport { timer } from './internal/observable/timer';\nexport { using } from './internal/observable/using';\nexport { zip } from './internal/observable/zip';\nexport { scheduled } from './internal/scheduled/scheduled';\nexport { EMPTY } from './internal/observable/empty';\nexport { NEVER } from './internal/observable/never';\nexport * from './internal/types';\nexport { config, GlobalConfig } from './internal/config';\nexport { audit } from './internal/operators/audit';\nexport { auditTime } from './internal/operators/auditTime';\nexport { buffer } from './internal/operators/buffer';\nexport { bufferCount } from './internal/operators/bufferCount';\nexport { bufferTime } from './internal/operators/bufferTime';\nexport { bufferToggle } from './internal/operators/bufferToggle';\nexport { bufferWhen } from './internal/operators/bufferWhen';\nexport { catchError } from './internal/operators/catchError';\nexport { combineAll } from './internal/operators/combineAll';\nexport { combineLatestAll } from './internal/operators/combineLatestAll';\nexport { combineLatestWith } from './internal/operators/combineLatestWith';\nexport { concatAll } from './internal/operators/concatAll';\nexport { concatMap } from './internal/operators/concatMap';\nexport { concatMapTo } from './internal/operators/concatMapTo';\nexport { concatWith } from './internal/operators/concatWith';\nexport { connect, ConnectConfig } from './internal/operators/connect';\nexport { count } from './internal/operators/count';\nexport { debounce } from './internal/operators/debounce';\nexport { debounceTime } from './internal/operators/debounceTime';\nexport { defaultIfEmpty } from './internal/operators/defaultIfEmpty';\nexport { delay } from './internal/operators/delay';\nexport { delayWhen } from './internal/operators/delayWhen';\nexport { dematerialize } from './internal/operators/dematerialize';\nexport { distinct } from './internal/operators/distinct';\nexport { distinctUntilChanged } from './internal/operators/distinctUntilChanged';\nexport { distinctUntilKeyChanged } from './internal/operators/distinctUntilKeyChanged';\nexport { elementAt } from './internal/operators/elementAt';\nexport { endWith } from './internal/operators/endWith';\nexport { every } from './internal/operators/every';\nexport { exhaust } from './internal/operators/exhaust';\nexport { exhaustAll } from './internal/operators/exhaustAll';\nexport { exhaustMap } from './internal/operators/exhaustMap';\nexport { expand } from './internal/operators/expand';\nexport { filter } from './internal/operators/filter';\nexport { finalize } from './internal/operators/finalize';\nexport { find } from './internal/operators/find';\nexport { findIndex } from './internal/operators/findIndex';\nexport { first } from './internal/operators/first';\nexport { groupBy, BasicGroupByOptions, GroupByOptionsWithElement } from './internal/operators/groupBy';\nexport { ignoreElements } from './internal/operators/ignoreElements';\nexport { isEmpty } from './internal/operators/isEmpty';\nexport { last } from './internal/operators/last';\nexport { map } from './internal/operators/map';\nexport { mapTo } from './internal/operators/mapTo';\nexport { materialize } from './internal/operators/materialize';\nexport { max } from './internal/operators/max';\nexport { mergeAll } from './internal/operators/mergeAll';\nexport { flatMap } from './internal/operators/flatMap';\nexport { mergeMap } from './internal/operators/mergeMap';\nexport { mergeMapTo } from './internal/operators/mergeMapTo';\nexport { mergeScan } from './internal/operators/mergeScan';\nexport { mergeWith } from './internal/operators/mergeWith';\nexport { min } from './internal/operators/min';\nexport { multicast } from './internal/operators/multicast';\nexport { observeOn } from './internal/operators/observeOn';\nexport { onErrorResumeNextWith } from './internal/operators/onErrorResumeNextWith';\nexport { pairwise } from './internal/operators/pairwise';\nexport { pluck } from './internal/operators/pluck';\nexport { publish } from './internal/operators/publish';\nexport { publishBehavior } from './internal/operators/publishBehavior';\nexport { publishLast } from './internal/operators/publishLast';\nexport { publishReplay } from './internal/operators/publishReplay';\nexport { raceWith } from './internal/operators/raceWith';\nexport { reduce } from './internal/operators/reduce';\nexport { repeat, RepeatConfig } from './internal/operators/repeat';\nexport { repeatWhen } from './internal/operators/repeatWhen';\nexport { retry, RetryConfig } from './internal/operators/retry';\nexport { retryWhen } from './internal/operators/retryWhen';\nexport { refCount } from './internal/operators/refCount';\nexport { sample } from './internal/operators/sample';\nexport { sampleTime } from './internal/operators/sampleTime';\nexport { scan } from './internal/operators/scan';\nexport { sequenceEqual } from './internal/operators/sequenceEqual';\nexport { share, ShareConfig } from './internal/operators/share';\nexport { shareReplay, ShareReplayConfig } from './internal/operators/shareReplay';\nexport { single } from './internal/operators/single';\nexport { skip } from './internal/operators/skip';\nexport { skipLast } from './internal/operators/skipLast';\nexport { skipUntil } from './internal/operators/skipUntil';\nexport { skipWhile } from './internal/operators/skipWhile';\nexport { startWith } from './internal/operators/startWith';\nexport { subscribeOn } from './internal/operators/subscribeOn';\nexport { switchAll } from './internal/operators/switchAll';\nexport { switchMap } from './internal/operators/switchMap';\nexport { switchMapTo } from './internal/operators/switchMapTo';\nexport { switchScan } from './internal/operators/switchScan';\nexport { take } from './internal/operators/take';\nexport { takeLast } from './internal/operators/takeLast';\nexport { takeUntil } from './internal/operators/takeUntil';\nexport { takeWhile } from './internal/operators/takeWhile';\nexport { tap, TapObserver } from './internal/operators/tap';\nexport { throttle, ThrottleConfig } from './internal/operators/throttle';\nexport { throttleTime } from './internal/operators/throttleTime';\nexport { throwIfEmpty } from './internal/operators/throwIfEmpty';\nexport { timeInterval } from './internal/operators/timeInterval';\nexport { timeout, TimeoutConfig, TimeoutInfo } from './internal/operators/timeout';\nexport { timeoutWith } from './internal/operators/timeoutWith';\nexport { timestamp } from './internal/operators/timestamp';\nexport { toArray } from './internal/operators/toArray';\nexport { window } from './internal/operators/window';\nexport { windowCount } from './internal/operators/windowCount';\nexport { windowTime } from './internal/operators/windowTime';\nexport { windowToggle } from './internal/operators/windowToggle';\nexport { windowWhen } from './internal/operators/windowWhen';\nexport { withLatestFrom } from './internal/operators/withLatestFrom';\nexport { zipAll } from './internal/operators/zipAll';\nexport { zipWith } from './internal/operators/zipWith';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts": "declare const anyCatcherSymbol: unique symbol;\n/**\n * This is just a type that we're using to identify `any` being passed to\n * function overloads. This is used because of situations like {@link forkJoin},\n * where it could return an `Observable<T[]>` or an `Observable<{ [key: K]: T }>`,\n * so `forkJoin(any)` would mean we need to return `Observable<unknown>`.\n */\nexport declare type AnyCatcher = typeof anyCatcherSymbol;\nexport {};\n//# sourceMappingURL=AnyCatcher.d.ts.map",
    "node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts": "import { Subject } from './Subject';\n/**\n * A variant of Subject that only emits a value when it completes. It will emit\n * its latest value to all its observers on completion.\n */\nexport declare class AsyncSubject<T> extends Subject<T> {\n    private _value;\n    private _hasValue;\n    private _isComplete;\n    next(value: T): void;\n    complete(): void;\n}\n//# sourceMappingURL=AsyncSubject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts": "import { Subject } from './Subject';\n/**\n * A variant of Subject that requires an initial value and emits its current\n * value whenever it is subscribed to.\n */\nexport declare class BehaviorSubject<T> extends Subject<T> {\n    private _value;\n    constructor(_value: T);\n    get value(): T;\n    getValue(): T;\n    next(value: T): void;\n}\n//# sourceMappingURL=BehaviorSubject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Notification.d.ts": "import { PartialObserver, ObservableNotification, CompleteNotification, NextNotification, ErrorNotification } from './types';\nimport { Observable } from './Observable';\n/**\n * @deprecated Use a string literal instead. `NotificationKind` will be replaced with a type alias in v8.\n * It will not be replaced with a const enum as those are not compatible with isolated modules.\n */\nexport declare enum NotificationKind {\n    NEXT = \"N\",\n    ERROR = \"E\",\n    COMPLETE = \"C\"\n}\n/**\n * Represents a push-based event or value that an {@link Observable} can emit.\n * This class is particularly useful for operators that manage notifications,\n * like {@link materialize}, {@link dematerialize}, {@link observeOn}, and\n * others. Besides wrapping the actual delivered value, it also annotates it\n * with metadata of, for instance, what type of push message it is (`next`,\n * `error`, or `complete`).\n *\n * @see {@link materialize}\n * @see {@link dematerialize}\n * @see {@link observeOn}\n * @deprecated It is NOT recommended to create instances of `Notification` directly.\n * Rather, try to create POJOs matching the signature outlined in {@link ObservableNotification}.\n * For example: `{ kind: 'N', value: 1 }`, `{ kind: 'E', error: new Error('bad') }`, or `{ kind: 'C' }`.\n * Will be removed in v8.\n */\nexport declare class Notification<T> {\n    readonly kind: 'N' | 'E' | 'C';\n    readonly value?: T | undefined;\n    readonly error?: any;\n    /**\n     * A value signifying that the notification will \"next\" if observed. In truth,\n     * This is really synonymous with just checking `kind === \"N\"`.\n     * @deprecated Will be removed in v8. Instead, just check to see if the value of `kind` is `\"N\"`.\n     */\n    readonly hasValue: boolean;\n    /**\n     * Creates a \"Next\" notification object.\n     * @param kind Always `'N'`\n     * @param value The value to notify with if observed.\n     * @deprecated Internal implementation detail. Use {@link Notification#createNext createNext} instead.\n     */\n    constructor(kind: 'N', value?: T);\n    /**\n     * Creates an \"Error\" notification object.\n     * @param kind Always `'E'`\n     * @param value Always `undefined`\n     * @param error The error to notify with if observed.\n     * @deprecated Internal implementation detail. Use {@link Notification#createError createError} instead.\n     */\n    constructor(kind: 'E', value: undefined, error: any);\n    /**\n     * Creates a \"completion\" notification object.\n     * @param kind Always `'C'`\n     * @deprecated Internal implementation detail. Use {@link Notification#createComplete createComplete} instead.\n     */\n    constructor(kind: 'C');\n    /**\n     * Executes the appropriate handler on a passed `observer` given the `kind` of notification.\n     * If the handler is missing it will do nothing. Even if the notification is an error, if\n     * there is no error handler on the observer, an error will not be thrown, it will noop.\n     * @param observer The observer to notify.\n     */\n    observe(observer: PartialObserver<T>): void;\n    /**\n     * Executes a notification on the appropriate handler from a list provided.\n     * If a handler is missing for the kind of notification, nothing is called\n     * and no error is thrown, it will be a noop.\n     * @param next A next handler\n     * @param error An error handler\n     * @param complete A complete handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    do(next: (value: T) => void, error: (err: any) => void, complete: () => void): void;\n    /**\n     * Executes a notification on the appropriate handler from a list provided.\n     * If a handler is missing for the kind of notification, nothing is called\n     * and no error is thrown, it will be a noop.\n     * @param next A next handler\n     * @param error An error handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    do(next: (value: T) => void, error: (err: any) => void): void;\n    /**\n     * Executes the next handler if the Notification is of `kind` `\"N\"`. Otherwise\n     * this will not error, and it will be a noop.\n     * @param next The next handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    do(next: (value: T) => void): void;\n    /**\n     * Executes a notification on the appropriate handler from a list provided.\n     * If a handler is missing for the kind of notification, nothing is called\n     * and no error is thrown, it will be a noop.\n     * @param next A next handler\n     * @param error An error handler\n     * @param complete A complete handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    accept(next: (value: T) => void, error: (err: any) => void, complete: () => void): void;\n    /**\n     * Executes a notification on the appropriate handler from a list provided.\n     * If a handler is missing for the kind of notification, nothing is called\n     * and no error is thrown, it will be a noop.\n     * @param next A next handler\n     * @param error An error handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    accept(next: (value: T) => void, error: (err: any) => void): void;\n    /**\n     * Executes the next handler if the Notification is of `kind` `\"N\"`. Otherwise\n     * this will not error, and it will be a noop.\n     * @param next The next handler\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    accept(next: (value: T) => void): void;\n    /**\n     * Executes the appropriate handler on a passed `observer` given the `kind` of notification.\n     * If the handler is missing it will do nothing. Even if the notification is an error, if\n     * there is no error handler on the observer, an error will not be thrown, it will noop.\n     * @param observer The observer to notify.\n     * @deprecated Replaced with {@link Notification#observe observe}. Will be removed in v8.\n     */\n    accept(observer: PartialObserver<T>): void;\n    /**\n     * Returns a simple Observable that just delivers the notification represented\n     * by this Notification instance.\n     *\n     * @deprecated Will be removed in v8. To convert a `Notification` to an {@link Observable},\n     * use {@link of} and {@link dematerialize}: `of(notification).pipe(dematerialize())`.\n     */\n    toObservable(): Observable<T>;\n    private static completeNotification;\n    /**\n     * A shortcut to create a Notification instance of the type `next` from a\n     * given value.\n     * @param value The `next` value.\n     * @return The \"next\" Notification representing the argument.\n     * @deprecated It is NOT recommended to create instances of `Notification` directly.\n     * Rather, try to create POJOs matching the signature outlined in {@link ObservableNotification}.\n     * For example: `{ kind: 'N', value: 1 }`, `{ kind: 'E', error: new Error('bad') }`, or `{ kind: 'C' }`.\n     * Will be removed in v8.\n     */\n    static createNext<T>(value: T): Notification<T> & NextNotification<T>;\n    /**\n     * A shortcut to create a Notification instance of the type `error` from a\n     * given error.\n     * @param err The `error` error.\n     * @return The \"error\" Notification representing the argument.\n     * @deprecated It is NOT recommended to create instances of `Notification` directly.\n     * Rather, try to create POJOs matching the signature outlined in {@link ObservableNotification}.\n     * For example: `{ kind: 'N', value: 1 }`, `{ kind: 'E', error: new Error('bad') }`, or `{ kind: 'C' }`.\n     * Will be removed in v8.\n     */\n    static createError(err?: any): Notification<never> & ErrorNotification;\n    /**\n     * A shortcut to create a Notification instance of the type `complete`.\n     * @return The valueless \"complete\" Notification.\n     * @deprecated It is NOT recommended to create instances of `Notification` directly.\n     * Rather, try to create POJOs matching the signature outlined in {@link ObservableNotification}.\n     * For example: `{ kind: 'N', value: 1 }`, `{ kind: 'E', error: new Error('bad') }`, or `{ kind: 'C' }`.\n     * Will be removed in v8.\n     */\n    static createComplete(): Notification<never> & CompleteNotification;\n}\n/**\n * Executes the appropriate handler on a passed `observer` given the `kind` of notification.\n * If the handler is missing it will do nothing. Even if the notification is an error, if\n * there is no error handler on the observer, an error will not be thrown, it will noop.\n * @param notification The notification object to observe.\n * @param observer The observer to notify.\n */\nexport declare function observeNotification<T>(notification: ObservableNotification<T>, observer: PartialObserver<T>): void;\n//# sourceMappingURL=Notification.d.ts.map",
    "node_modules/rxjs/dist/types/internal/NotificationFactories.d.ts": "export {};\n//# sourceMappingURL=NotificationFactories.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Observable.d.ts": "import { Operator } from './Operator';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { TeardownLogic, OperatorFunction, Subscribable, Observer } from './types';\n/**\n * A representation of any set of values over any amount of time. This is the most basic building block\n * of RxJS.\n */\nexport declare class Observable<T> implements Subscribable<T> {\n    /**\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     */\n    source: Observable<any> | undefined;\n    /**\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     */\n    operator: Operator<any, T> | undefined;\n    /**\n     * @param subscribe The function that is called when the Observable is\n     * initially subscribed to. This function is given a Subscriber, to which new values\n     * can be `next`ed, or an `error` method can be called to raise an error, or\n     * `complete` can be called to notify of a successful completion.\n     */\n    constructor(subscribe?: (this: Observable<T>, subscriber: Subscriber<T>) => TeardownLogic);\n    /**\n     * Creates a new Observable by calling the Observable constructor\n     * @param subscribe the subscriber function to be passed to the Observable constructor\n     * @return A new observable.\n     * @deprecated Use `new Observable()` instead. Will be removed in v8.\n     */\n    static create: (...args: any[]) => any;\n    /**\n     * Creates a new Observable, with this Observable instance as the source, and the passed\n     * operator defined as the new observable's operator.\n     * @param operator the operator defining the operation to take on the observable\n     * @return A new observable with the Operator applied.\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     * If you have implemented an operator using `lift`, it is recommended that you create an\n     * operator by simply returning `new Observable()` directly. See \"Creating new operators from\n     * scratch\" section here: https://rxjs.dev/guide/operators\n     */\n    lift<R>(operator?: Operator<T, R>): Observable<R>;\n    subscribe(observerOrNext?: Partial<Observer<T>> | ((value: T) => void)): Subscription;\n    /** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\n    subscribe(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): Subscription;\n    /**\n     * Used as a NON-CANCELLABLE means of subscribing to an observable, for use with\n     * APIs that expect promises, like `async/await`. You cannot unsubscribe from this.\n     *\n     * **WARNING**: Only use this with observables you *know* will complete. If the source\n     * observable does not complete, you will end up with a promise that is hung up, and\n     * potentially all of the state of an async function hanging out in memory. To avoid\n     * this situation, look into adding something like {@link timeout}, {@link take},\n     * {@link takeWhile}, or {@link takeUntil} amongst others.\n     *\n     * #### Example\n     *\n     * ```ts\n     * import { interval, take } from 'rxjs';\n     *\n     * const source$ = interval(1000).pipe(take(4));\n     *\n     * async function getTotal() {\n     *   let total = 0;\n     *\n     *   await source$.forEach(value => {\n     *     total += value;\n     *     console.log('observable -> ' + value);\n     *   });\n     *\n     *   return total;\n     * }\n     *\n     * getTotal().then(\n     *   total => console.log('Total: ' + total)\n     * );\n     *\n     * // Expected:\n     * // 'observable -> 0'\n     * // 'observable -> 1'\n     * // 'observable -> 2'\n     * // 'observable -> 3'\n     * // 'Total: 6'\n     * ```\n     *\n     * @param next A handler for each value emitted by the observable.\n     * @return A promise that either resolves on observable completion or\n     * rejects with the handled error.\n     */\n    forEach(next: (value: T) => void): Promise<void>;\n    /**\n     * @param next a handler for each value emitted by the observable\n     * @param promiseCtor a constructor function used to instantiate the Promise\n     * @return a promise that either resolves on observable completion or\n     *  rejects with the handled error\n     * @deprecated Passing a Promise constructor will no longer be available\n     * in upcoming versions of RxJS. This is because it adds weight to the library, for very\n     * little benefit. If you need this functionality, it is recommended that you either\n     * polyfill Promise, or you create an adapter to convert the returned native promise\n     * to whatever promise implementation you wanted. Will be removed in v8.\n     */\n    forEach(next: (value: T) => void, promiseCtor: PromiseConstructorLike): Promise<void>;\n    pipe(): Observable<T>;\n    pipe<A>(op1: OperatorFunction<T, A>): Observable<A>;\n    pipe<A, B>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>): Observable<B>;\n    pipe<A, B, C>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>): Observable<C>;\n    pipe<A, B, C, D>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>): Observable<D>;\n    pipe<A, B, C, D, E>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>): Observable<E>;\n    pipe<A, B, C, D, E, F>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>, op6: OperatorFunction<E, F>): Observable<F>;\n    pipe<A, B, C, D, E, F, G>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>, op6: OperatorFunction<E, F>, op7: OperatorFunction<F, G>): Observable<G>;\n    pipe<A, B, C, D, E, F, G, H>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>, op6: OperatorFunction<E, F>, op7: OperatorFunction<F, G>, op8: OperatorFunction<G, H>): Observable<H>;\n    pipe<A, B, C, D, E, F, G, H, I>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>, op6: OperatorFunction<E, F>, op7: OperatorFunction<F, G>, op8: OperatorFunction<G, H>, op9: OperatorFunction<H, I>): Observable<I>;\n    pipe<A, B, C, D, E, F, G, H, I>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>, op4: OperatorFunction<C, D>, op5: OperatorFunction<D, E>, op6: OperatorFunction<E, F>, op7: OperatorFunction<F, G>, op8: OperatorFunction<G, H>, op9: OperatorFunction<H, I>, ...operations: OperatorFunction<any, any>[]): Observable<unknown>;\n    /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n    toPromise(): Promise<T | undefined>;\n    /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n    toPromise(PromiseCtor: typeof Promise): Promise<T | undefined>;\n    /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n    toPromise(PromiseCtor: PromiseConstructorLike): Promise<T | undefined>;\n}\n//# sourceMappingURL=Observable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Operator.d.ts": "import { Subscriber } from './Subscriber';\nimport { TeardownLogic } from './types';\n/***\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\nexport interface Operator<T, R> {\n    call(subscriber: Subscriber<R>, source: any): TeardownLogic;\n}\n//# sourceMappingURL=Operator.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts": "import { Subject } from './Subject';\nimport { TimestampProvider } from './types';\n/**\n * A variant of {@link Subject} that \"replays\" old values to new subscribers by emitting them when they first subscribe.\n *\n * `ReplaySubject` has an internal buffer that will store a specified number of values that it has observed. Like `Subject`,\n * `ReplaySubject` \"observes\" values by having them passed to its `next` method. When it observes a value, it will store that\n * value for a time determined by the configuration of the `ReplaySubject`, as passed to its constructor.\n *\n * When a new subscriber subscribes to the `ReplaySubject` instance, it will synchronously emit all values in its buffer in\n * a First-In-First-Out (FIFO) manner. The `ReplaySubject` will also complete, if it has observed completion; and it will\n * error if it has observed an error.\n *\n * There are two main configuration items to be concerned with:\n *\n * 1. `bufferSize` - This will determine how many items are stored in the buffer, defaults to infinite.\n * 2. `windowTime` - The amount of time to hold a value in the buffer before removing it from the buffer.\n *\n * Both configurations may exist simultaneously. So if you would like to buffer a maximum of 3 values, as long as the values\n * are less than 2 seconds old, you could do so with a `new ReplaySubject(3, 2000)`.\n *\n * ### Differences with BehaviorSubject\n *\n * `BehaviorSubject` is similar to `new ReplaySubject(1)`, with a couple of exceptions:\n *\n * 1. `BehaviorSubject` comes \"primed\" with a single value upon construction.\n * 2. `ReplaySubject` will replay values, even after observing an error, where `BehaviorSubject` will not.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n * @see {@link shareReplay}\n */\nexport declare class ReplaySubject<T> extends Subject<T> {\n    private _bufferSize;\n    private _windowTime;\n    private _timestampProvider;\n    private _buffer;\n    private _infiniteTimeWindow;\n    /**\n     * @param _bufferSize The size of the buffer to replay on subscription\n     * @param _windowTime The amount of time the buffered items will stay buffered\n     * @param _timestampProvider An object with a `now()` method that provides the current timestamp. This is used to\n     * calculate the amount of time something has been buffered.\n     */\n    constructor(_bufferSize?: number, _windowTime?: number, _timestampProvider?: TimestampProvider);\n    next(value: T): void;\n    private _trimBuffer;\n}\n//# sourceMappingURL=ReplaySubject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Scheduler.d.ts": "import { Action } from './scheduler/Action';\nimport { Subscription } from './Subscription';\nimport { SchedulerLike, SchedulerAction } from './types';\n/**\n * An execution context and a data structure to order tasks and schedule their\n * execution. Provides a notion of (potentially virtual) time, through the\n * `now()` getter method.\n *\n * Each unit of work in a Scheduler is called an `Action`.\n *\n * ```ts\n * class Scheduler {\n *   now(): number;\n *   schedule(work, delay?, state?): Subscription;\n * }\n * ```\n *\n * @deprecated Scheduler is an internal implementation detail of RxJS, and\n * should not be used directly. Rather, create your own class and implement\n * {@link SchedulerLike}. Will be made internal in v8.\n */\nexport declare class Scheduler implements SchedulerLike {\n    private schedulerActionCtor;\n    static now: () => number;\n    constructor(schedulerActionCtor: typeof Action, now?: () => number);\n    /**\n     * A getter method that returns a number representing the current time\n     * (at the time this function was called) according to the scheduler's own\n     * internal clock.\n     * @return A number that represents the current time. May or may not\n     * have a relation to wall-clock time. May or may not refer to a time unit\n     * (e.g. milliseconds).\n     */\n    now: () => number;\n    /**\n     * Schedules a function, `work`, for execution. May happen at some point in\n     * the future, according to the `delay` parameter, if specified. May be passed\n     * some context object, `state`, which will be passed to the `work` function.\n     *\n     * The given arguments will be processed an stored as an Action object in a\n     * queue of actions.\n     *\n     * @param work A function representing a task, or some unit of work to be\n     * executed by the Scheduler.\n     * @param delay Time to wait before executing the work, where the time unit is\n     * implicit and defined by the Scheduler itself.\n     * @param state Some contextual data that the `work` function uses when called\n     * by the Scheduler.\n     * @return A subscription in order to be able to unsubscribe the scheduled work.\n     */\n    schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay?: number, state?: T): Subscription;\n}\n//# sourceMappingURL=Scheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Subject.d.ts": "import { Operator } from './Operator';\nimport { Observable } from './Observable';\nimport { Observer, SubscriptionLike } from './types';\n/**\n * A Subject is a special type of Observable that allows values to be\n * multicasted to many Observers. Subjects are like EventEmitters.\n *\n * Every Subject is an Observable and an Observer. You can subscribe to a\n * Subject, and you can call next to feed values as well as error and complete.\n */\nexport declare class Subject<T> extends Observable<T> implements SubscriptionLike {\n    closed: boolean;\n    private currentObservers;\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    observers: Observer<T>[];\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    isStopped: boolean;\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    hasError: boolean;\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    thrownError: any;\n    /**\n     * Creates a \"subject\" by basically gluing an observer to an observable.\n     *\n     * @deprecated Recommended you do not use. Will be removed at some point in the future. Plans for replacement still under discussion.\n     */\n    static create: (...args: any[]) => any;\n    constructor();\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    lift<R>(operator: Operator<T, R>): Observable<R>;\n    next(value: T): void;\n    error(err: any): void;\n    complete(): void;\n    unsubscribe(): void;\n    get observed(): boolean;\n    /**\n     * Creates a new Observable with this Subject as the source. You can do this\n     * to create custom Observer-side logic of the Subject and conceal it from\n     * code that uses the Observable.\n     * @return Observable that this Subject casts to.\n     */\n    asObservable(): Observable<T>;\n}\nexport declare class AnonymousSubject<T> extends Subject<T> {\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    destination?: Observer<T> | undefined;\n    constructor(\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    destination?: Observer<T> | undefined, source?: Observable<T>);\n    next(value: T): void;\n    error(err: any): void;\n    complete(): void;\n}\n//# sourceMappingURL=Subject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Subscriber.d.ts": "import { Observer } from './types';\nimport { Subscription } from './Subscription';\n/**\n * Implements the {@link Observer} interface and extends the\n * {@link Subscription} class. While the {@link Observer} is the public API for\n * consuming the values of an {@link Observable}, all Observers get converted to\n * a Subscriber, in order to provide Subscription-like capabilities such as\n * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for\n * implementing operators, but it is rarely used as a public API.\n */\nexport declare class Subscriber<T> extends Subscription implements Observer<T> {\n    /**\n     * A static factory for a Subscriber, given a (potentially partial) definition\n     * of an Observer.\n     * @param next The `next` callback of an Observer.\n     * @param error The `error` callback of an\n     * Observer.\n     * @param complete The `complete` callback of an\n     * Observer.\n     * @return A Subscriber wrapping the (partially defined)\n     * Observer represented by the given arguments.\n     * @deprecated Do not use. Will be removed in v8. There is no replacement for this\n     * method, and there is no reason to be creating instances of `Subscriber` directly.\n     * If you have a specific use case, please file an issue.\n     */\n    static create<T>(next?: (x?: T) => void, error?: (e?: any) => void, complete?: () => void): Subscriber<T>;\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    protected isStopped: boolean;\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    protected destination: Subscriber<any> | Observer<any>;\n    /**\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     * There is no reason to directly create an instance of Subscriber. This type is exported for typings reasons.\n     */\n    constructor(destination?: Subscriber<any> | Observer<any>);\n    /**\n     * The {@link Observer} callback to receive notifications of type `next` from\n     * the Observable, with a value. The Observable may call this method 0 or more\n     * times.\n     * @param value The `next` value.\n     */\n    next(value: T): void;\n    /**\n     * The {@link Observer} callback to receive notifications of type `error` from\n     * the Observable, with an attached `Error`. Notifies the Observer that\n     * the Observable has experienced an error condition.\n     * @param err The `error` exception.\n     */\n    error(err?: any): void;\n    /**\n     * The {@link Observer} callback to receive a valueless notification of type\n     * `complete` from the Observable. Notifies the Observer that the Observable\n     * has finished sending push-based notifications.\n     */\n    complete(): void;\n    unsubscribe(): void;\n    protected _next(value: T): void;\n    protected _error(err: any): void;\n    protected _complete(): void;\n}\nexport declare class SafeSubscriber<T> extends Subscriber<T> {\n    constructor(observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null, error?: ((e?: any) => void) | null, complete?: (() => void) | null);\n}\n/**\n * The observer used as a stub for subscriptions where the user did not\n * pass any arguments to `subscribe`. Comes with the default error handling\n * behavior.\n */\nexport declare const EMPTY_OBSERVER: Readonly<Observer<any>> & {\n    closed: true;\n};\n//# sourceMappingURL=Subscriber.d.ts.map",
    "node_modules/rxjs/dist/types/internal/Subscription.d.ts": "import { SubscriptionLike, TeardownLogic } from './types';\n/**\n * Represents a disposable resource, such as the execution of an Observable. A\n * Subscription has one important method, `unsubscribe`, that takes no argument\n * and just disposes the resource held by the subscription.\n *\n * Additionally, subscriptions may be grouped together through the `add()`\n * method, which will attach a child Subscription to the current Subscription.\n * When a Subscription is unsubscribed, all its children (and its grandchildren)\n * will be unsubscribed as well.\n */\nexport declare class Subscription implements SubscriptionLike {\n    private initialTeardown?;\n    static EMPTY: Subscription;\n    /**\n     * A flag to indicate whether this Subscription has already been unsubscribed.\n     */\n    closed: boolean;\n    private _parentage;\n    /**\n     * The list of registered finalizers to execute upon unsubscription. Adding and removing from this\n     * list occurs in the {@link #add} and {@link #remove} methods.\n     */\n    private _finalizers;\n    /**\n     * @param initialTeardown A function executed first as part of the finalization\n     * process that is kicked off when {@link #unsubscribe} is called.\n     */\n    constructor(initialTeardown?: (() => void) | undefined);\n    /**\n     * Disposes the resources held by the subscription. May, for instance, cancel\n     * an ongoing Observable execution or cancel any other type of work that\n     * started when the Subscription was created.\n     */\n    unsubscribe(): void;\n    /**\n     * Adds a finalizer to this subscription, so that finalization will be unsubscribed/called\n     * when this subscription is unsubscribed. If this subscription is already {@link #closed},\n     * because it has already been unsubscribed, then whatever finalizer is passed to it\n     * will automatically be executed (unless the finalizer itself is also a closed subscription).\n     *\n     * Closed Subscriptions cannot be added as finalizers to any subscription. Adding a closed\n     * subscription to a any subscription will result in no operation. (A noop).\n     *\n     * Adding a subscription to itself, or adding `null` or `undefined` will not perform any\n     * operation at all. (A noop).\n     *\n     * `Subscription` instances that are added to this instance will automatically remove themselves\n     * if they are unsubscribed. Functions and {@link Unsubscribable} objects that you wish to remove\n     * will need to be removed manually with {@link #remove}\n     *\n     * @param teardown The finalization logic to add to this subscription.\n     */\n    add(teardown: TeardownLogic): void;\n    /**\n     * Checks to see if a this subscription already has a particular parent.\n     * This will signal that this subscription has already been added to the parent in question.\n     * @param parent the parent to check for\n     */\n    private _hasParent;\n    /**\n     * Adds a parent to this subscription so it can be removed from the parent if it\n     * unsubscribes on it's own.\n     *\n     * NOTE: THIS ASSUMES THAT {@link _hasParent} HAS ALREADY BEEN CHECKED.\n     * @param parent The parent subscription to add\n     */\n    private _addParent;\n    /**\n     * Called on a child when it is removed via {@link #remove}.\n     * @param parent The parent to remove\n     */\n    private _removeParent;\n    /**\n     * Removes a finalizer from this subscription that was previously added with the {@link #add} method.\n     *\n     * Note that `Subscription` instances, when unsubscribed, will automatically remove themselves\n     * from every other `Subscription` they have been added to. This means that using the `remove` method\n     * is not a common thing and should be used thoughtfully.\n     *\n     * If you add the same finalizer instance of a function or an unsubscribable object to a `Subscription` instance\n     * more than once, you will need to call `remove` the same number of times to remove all instances.\n     *\n     * All finalizer instances are removed to free up memory upon unsubscription.\n     *\n     * @param teardown The finalizer to remove from this subscription\n     */\n    remove(teardown: Exclude<TeardownLogic, void>): void;\n}\nexport declare const EMPTY_SUBSCRIPTION: Subscription;\nexport declare function isSubscription(value: any): value is Subscription;\n//# sourceMappingURL=Subscription.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ajax/AjaxResponse.d.ts": "import { AjaxRequest, AjaxResponseType } from './types';\n/**\n * A normalized response from an AJAX request. To get the data from the response,\n * you will want to read the `response` property.\n *\n * - DO NOT create instances of this class directly.\n * - DO NOT subclass this class.\n *\n * It is advised not to hold this object in memory, as it has a reference to\n * the original XHR used to make the request, as well as properties containing\n * request and response data.\n *\n * @see {@link ajax}\n * @see {@link AjaxConfig}\n */\nexport declare class AjaxResponse<T> {\n    /**\n     * The original event object from the raw XHR event.\n     */\n    readonly originalEvent: ProgressEvent;\n    /**\n     * The XMLHttpRequest object used to make the request.\n     * NOTE: It is advised not to hold this in memory, as it will retain references to all of it's event handlers\n     * and many other things related to the request.\n     */\n    readonly xhr: XMLHttpRequest;\n    /**\n     * The request parameters used to make the HTTP request.\n     */\n    readonly request: AjaxRequest;\n    /**\n     * The event type. This can be used to discern between different events\n     * if you're using progress events with {@link includeDownloadProgress} or\n     * {@link includeUploadProgress} settings in {@link AjaxConfig}.\n     *\n     * The event type consists of two parts: the {@link AjaxDirection} and the\n     * the event type. Merged with `_`, they form the `type` string. The\n     * direction can be an `upload` or a `download` direction, while an event can\n     * be `loadstart`, `progress` or `load`.\n     *\n     * `download_load` is the type of event when download has finished and the\n     * response is available.\n     */\n    readonly type: AjaxResponseType;\n    /** The HTTP status code */\n    readonly status: number;\n    /**\n     * The response data, if any. Note that this will automatically be converted to the proper type\n     */\n    readonly response: T;\n    /**\n     * The responseType set on the request. (For example: `\"\"`, `\"arraybuffer\"`, `\"blob\"`, `\"document\"`, `\"json\"`, or `\"text\"`)\n     * @deprecated There isn't much reason to examine this. It's the same responseType set (or defaulted) on the ajax config.\n     * If you really need to examine this value, you can check it on the `request` or the `xhr`. Will be removed in v8.\n     */\n    readonly responseType: XMLHttpRequestResponseType;\n    /**\n     * The total number of bytes loaded so far. To be used with {@link total} while\n     * calculating progress. (You will want to set {@link includeDownloadProgress} or\n     * {@link includeDownloadProgress})\n     */\n    readonly loaded: number;\n    /**\n     * The total number of bytes to be loaded. To be used with {@link loaded} while\n     * calculating progress. (You will want to set {@link includeDownloadProgress} or\n     * {@link includeDownloadProgress})\n     */\n    readonly total: number;\n    /**\n     * A dictionary of the response headers.\n     */\n    readonly responseHeaders: Record<string, string>;\n    /**\n     * A normalized response from an AJAX request. To get the data from the response,\n     * you will want to read the `response` property.\n     *\n     * - DO NOT create instances of this class directly.\n     * - DO NOT subclass this class.\n     *\n     * @param originalEvent The original event object from the XHR `onload` event.\n     * @param xhr The `XMLHttpRequest` object used to make the request. This is useful for examining status code, etc.\n     * @param request The request settings used to make the HTTP request.\n     * @param type The type of the event emitted by the {@link ajax} Observable\n     */\n    constructor(\n    /**\n     * The original event object from the raw XHR event.\n     */\n    originalEvent: ProgressEvent, \n    /**\n     * The XMLHttpRequest object used to make the request.\n     * NOTE: It is advised not to hold this in memory, as it will retain references to all of it's event handlers\n     * and many other things related to the request.\n     */\n    xhr: XMLHttpRequest, \n    /**\n     * The request parameters used to make the HTTP request.\n     */\n    request: AjaxRequest, \n    /**\n     * The event type. This can be used to discern between different events\n     * if you're using progress events with {@link includeDownloadProgress} or\n     * {@link includeUploadProgress} settings in {@link AjaxConfig}.\n     *\n     * The event type consists of two parts: the {@link AjaxDirection} and the\n     * the event type. Merged with `_`, they form the `type` string. The\n     * direction can be an `upload` or a `download` direction, while an event can\n     * be `loadstart`, `progress` or `load`.\n     *\n     * `download_load` is the type of event when download has finished and the\n     * response is available.\n     */\n    type?: AjaxResponseType);\n}\n//# sourceMappingURL=AjaxResponse.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ajax/ajax.d.ts": "import { Observable } from '../Observable';\nimport { AjaxConfig } from './types';\nimport { AjaxResponse } from './AjaxResponse';\nexport interface AjaxCreationMethod {\n    /**\n     * Creates an observable that will perform an AJAX request using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default.\n     *\n     * This is the most configurable option, and the basis for all other AJAX calls in the library.\n     *\n     * ## Example\n     *\n     * ```ts\n     * import { ajax } from 'rxjs/ajax';\n     * import { map, catchError, of } from 'rxjs';\n     *\n     * const obs$ = ajax({\n     *   method: 'GET',\n     *   url: 'https://api.github.com/users?per_page=5',\n     *   responseType: 'json'\n     * }).pipe(\n     *   map(userResponse => console.log('users: ', userResponse)),\n     *   catchError(error => {\n     *     console.log('error: ', error);\n     *     return of(error);\n     *   })\n     * );\n     * ```\n     */\n    <T>(config: AjaxConfig): Observable<AjaxResponse<T>>;\n    /**\n     * Perform an HTTP GET using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope. Defaults to a `responseType` of `\"json\"`.\n     *\n     * ## Example\n     *\n     * ```ts\n     * import { ajax } from 'rxjs/ajax';\n     * import { map, catchError, of } from 'rxjs';\n     *\n     * const obs$ = ajax('https://api.github.com/users?per_page=5').pipe(\n     *   map(userResponse => console.log('users: ', userResponse)),\n     *   catchError(error => {\n     *     console.log('error: ', error);\n     *     return of(error);\n     *   })\n     * );\n     * ```\n     */\n    <T>(url: string): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP GET using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and a `responseType` of `\"json\"`.\n     *\n     * @param url The URL to get the resource from\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    get<T>(url: string, headers?: Record<string, string>): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP POST using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and a `responseType` of `\"json\"`.\n     *\n     * Before sending the value passed to the `body` argument, it is automatically serialized\n     * based on the specified `responseType`. By default, a JavaScript object will be serialized\n     * to JSON. A `responseType` of `application/x-www-form-urlencoded` will flatten any provided\n     * dictionary object to a url-encoded string.\n     *\n     * @param url The URL to get the resource from\n     * @param body The content to send. The body is automatically serialized.\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    post<T>(url: string, body?: any, headers?: Record<string, string>): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP PUT using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and a `responseType` of `\"json\"`.\n     *\n     * Before sending the value passed to the `body` argument, it is automatically serialized\n     * based on the specified `responseType`. By default, a JavaScript object will be serialized\n     * to JSON. A `responseType` of `application/x-www-form-urlencoded` will flatten any provided\n     * dictionary object to a url-encoded string.\n     *\n     * @param url The URL to get the resource from\n     * @param body The content to send. The body is automatically serialized.\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    put<T>(url: string, body?: any, headers?: Record<string, string>): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP PATCH using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and a `responseType` of `\"json\"`.\n     *\n     * Before sending the value passed to the `body` argument, it is automatically serialized\n     * based on the specified `responseType`. By default, a JavaScript object will be serialized\n     * to JSON. A `responseType` of `application/x-www-form-urlencoded` will flatten any provided\n     * dictionary object to a url-encoded string.\n     *\n     * @param url The URL to get the resource from\n     * @param body The content to send. The body is automatically serialized.\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    patch<T>(url: string, body?: any, headers?: Record<string, string>): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP DELETE using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and a `responseType` of `\"json\"`.\n     *\n     * @param url The URL to get the resource from\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    delete<T>(url: string, headers?: Record<string, string>): Observable<AjaxResponse<T>>;\n    /**\n     * Performs an HTTP GET using the\n     * [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) in\n     * global scope by default, and returns the hydrated JavaScript object from the\n     * response.\n     *\n     * @param url The URL to get the resource from\n     * @param headers Optional headers. Case-Insensitive.\n     */\n    getJSON<T>(url: string, headers?: Record<string, string>): Observable<T>;\n}\n/**\n * There is an ajax operator on the Rx object.\n *\n * It creates an observable for an Ajax request with either a request object with\n * url, headers, etc or a string for a URL.\n *\n * ## Examples\n *\n * Using `ajax()` to fetch the response object that is being returned from API\n *\n * ```ts\n * import { ajax } from 'rxjs/ajax';\n * import { map, catchError, of } from 'rxjs';\n *\n * const obs$ = ajax('https://api.github.com/users?per_page=5').pipe(\n *   map(userResponse => console.log('users: ', userResponse)),\n *   catchError(error => {\n *     console.log('error: ', error);\n *     return of(error);\n *   })\n * );\n *\n * obs$.subscribe({\n *   next: value => console.log(value),\n *   error: err => console.log(err)\n * });\n * ```\n *\n * Using `ajax.getJSON()` to fetch data from API\n *\n * ```ts\n * import { ajax } from 'rxjs/ajax';\n * import { map, catchError, of } from 'rxjs';\n *\n * const obs$ = ajax.getJSON('https://api.github.com/users?per_page=5').pipe(\n *   map(userResponse => console.log('users: ', userResponse)),\n *   catchError(error => {\n *     console.log('error: ', error);\n *     return of(error);\n *   })\n * );\n *\n * obs$.subscribe({\n *   next: value => console.log(value),\n *   error: err => console.log(err)\n * });\n * ```\n *\n * Using `ajax()` with object as argument and method POST with a two seconds delay\n *\n * ```ts\n * import { ajax } from 'rxjs/ajax';\n * import { map, catchError, of } from 'rxjs';\n *\n * const users = ajax({\n *   url: 'https://httpbin.org/delay/2',\n *   method: 'POST',\n *   headers: {\n *     'Content-Type': 'application/json',\n *     'rxjs-custom-header': 'Rxjs'\n *   },\n *   body: {\n *     rxjs: 'Hello World!'\n *   }\n * }).pipe(\n *   map(response => console.log('response: ', response)),\n *   catchError(error => {\n *     console.log('error: ', error);\n *     return of(error);\n *   })\n * );\n *\n * users.subscribe({\n *   next: value => console.log(value),\n *   error: err => console.log(err)\n * });\n * ```\n *\n * Using `ajax()` to fetch. An error object that is being returned from the request\n *\n * ```ts\n * import { ajax } from 'rxjs/ajax';\n * import { map, catchError, of } from 'rxjs';\n *\n * const obs$ = ajax('https://api.github.com/404').pipe(\n *   map(userResponse => console.log('users: ', userResponse)),\n *   catchError(error => {\n *     console.log('error: ', error);\n *     return of(error);\n *   })\n * );\n *\n * obs$.subscribe({\n *   next: value => console.log(value),\n *   error: err => console.log(err)\n * });\n * ```\n */\nexport declare const ajax: AjaxCreationMethod;\nexport declare function fromAjax<T>(init: AjaxConfig): Observable<AjaxResponse<T>>;\n//# sourceMappingURL=ajax.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ajax/errors.d.ts": "import { AjaxRequest } from './types';\n/**\n * A normalized AJAX error.\n *\n * @see {@link ajax}\n */\nexport interface AjaxError extends Error {\n    /**\n     * The XHR instance associated with the error.\n     */\n    xhr: XMLHttpRequest;\n    /**\n     * The AjaxRequest associated with the error.\n     */\n    request: AjaxRequest;\n    /**\n     * The HTTP status code, if the request has completed. If not,\n     * it is set to `0`.\n     */\n    status: number;\n    /**\n     * The responseType (e.g. 'json', 'arraybuffer', or 'xml').\n     */\n    responseType: XMLHttpRequestResponseType;\n    /**\n     * The response data.\n     */\n    response: any;\n}\nexport interface AjaxErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (message: string, xhr: XMLHttpRequest, request: AjaxRequest): AjaxError;\n}\n/**\n * Thrown when an error occurs during an AJAX request.\n * This is only exported because it is useful for checking to see if an error\n * is an `instanceof AjaxError`. DO NOT create new instances of `AjaxError` with\n * the constructor.\n *\n * @see {@link ajax}\n */\nexport declare const AjaxError: AjaxErrorCtor;\nexport interface AjaxTimeoutError extends AjaxError {\n}\nexport interface AjaxTimeoutErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (xhr: XMLHttpRequest, request: AjaxRequest): AjaxTimeoutError;\n}\n/**\n * Thrown when an AJAX request times out. Not to be confused with {@link TimeoutError}.\n *\n * This is exported only because it is useful for checking to see if errors are an\n * `instanceof AjaxTimeoutError`. DO NOT use the constructor to create an instance of\n * this type.\n *\n * @see {@link ajax}\n */\nexport declare const AjaxTimeoutError: AjaxTimeoutErrorCtor;\n//# sourceMappingURL=errors.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ajax/getXHRResponse.d.ts": "/**\n * Gets what should be in the `response` property of the XHR. However,\n * since we still support the final versions of IE, we need to do a little\n * checking here to make sure that we get the right thing back. Consequently,\n * we need to do a JSON.parse() in here, which *could* throw if the response\n * isn't valid JSON.\n *\n * This is used both in creating an AjaxResponse, and in creating certain errors\n * that we throw, so we can give the user whatever was in the response property.\n *\n * @param xhr The XHR to examine the response of\n */\nexport declare function getXHRResponse(xhr: XMLHttpRequest): any;\n//# sourceMappingURL=getXHRResponse.d.ts.map",
    "node_modules/rxjs/dist/types/internal/ajax/types.d.ts": "import { PartialObserver } from '../types';\n/**\n * Valid Ajax direction types. Prefixes the event `type` in the\n * {@link AjaxResponse} object with \"upload_\" for events related\n * to uploading and \"download_\" for events related to downloading.\n */\nexport declare type AjaxDirection = 'upload' | 'download';\nexport declare type ProgressEventType = 'loadstart' | 'progress' | 'load';\nexport declare type AjaxResponseType = `${AjaxDirection}_${ProgressEventType}`;\n/**\n * The object containing values RxJS used to make the HTTP request.\n *\n * This is provided in {@link AjaxError} instances as the `request`\n * object.\n */\nexport interface AjaxRequest {\n    /**\n     * The URL requested.\n     */\n    url: string;\n    /**\n     * The body to send over the HTTP request.\n     */\n    body?: any;\n    /**\n     * The HTTP method used to make the HTTP request.\n     */\n    method: string;\n    /**\n     * Whether or not the request was made asynchronously.\n     */\n    async: boolean;\n    /**\n     * The headers sent over the HTTP request.\n     */\n    headers: Readonly<Record<string, any>>;\n    /**\n     * The timeout value used for the HTTP request.\n     * Note: this is only honored if the request is asynchronous (`async` is `true`).\n     */\n    timeout: number;\n    /**\n     * The user credentials user name sent with the HTTP request.\n     */\n    user?: string;\n    /**\n     * The user credentials password sent with the HTTP request.\n     */\n    password?: string;\n    /**\n     * Whether or not the request was a CORS request.\n     */\n    crossDomain: boolean;\n    /**\n     * Whether or not a CORS request was sent with credentials.\n     * If `false`, will also ignore cookies in the CORS response.\n     */\n    withCredentials: boolean;\n    /**\n     * The [`responseType`](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType) set before sending the request.\n     */\n    responseType: XMLHttpRequestResponseType;\n}\n/**\n * Configuration for the {@link ajax} creation function.\n */\nexport interface AjaxConfig {\n    /** The address of the resource to request via HTTP. */\n    url: string;\n    /**\n     * The body of the HTTP request to send.\n     *\n     * This is serialized, by default, based off of the value of the `\"content-type\"` header.\n     * For example, if the `\"content-type\"` is `\"application/json\"`, the body will be serialized\n     * as JSON. If the `\"content-type\"` is `\"application/x-www-form-urlencoded\"`, whatever object passed\n     * to the body will be serialized as URL, using key-value pairs based off of the keys and values of the object.\n     * In all other cases, the body will be passed directly.\n     */\n    body?: any;\n    /**\n     * Whether or not to send the request asynchronously. Defaults to `true`.\n     * If set to `false`, this will block the thread until the AJAX request responds.\n     */\n    async?: boolean;\n    /**\n     * The HTTP Method to use for the request. Defaults to \"GET\".\n     */\n    method?: string;\n    /**\n     * The HTTP headers to apply.\n     *\n     * Note that, by default, RxJS will add the following headers under certain conditions:\n     *\n     * 1. If the `\"content-type\"` header is **NOT** set, and the `body` is [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData),\n     *    a `\"content-type\"` of `\"application/x-www-form-urlencoded; charset=UTF-8\"` will be set automatically.\n     * 2. If the `\"x-requested-with\"` header is **NOT** set, and the `crossDomain` configuration property is **NOT** explicitly set to `true`,\n     *    (meaning it is not a CORS request), a `\"x-requested-with\"` header with a value of `\"XMLHttpRequest\"` will be set automatically.\n     *    This header is generally meaningless, and is set by libraries and frameworks using `XMLHttpRequest` to make HTTP requests.\n     */\n    headers?: Readonly<Record<string, any>>;\n    /**\n     * The time to wait before causing the underlying XMLHttpRequest to timeout. This is only honored if the\n     * `async` configuration setting is unset or set to `true`. Defaults to `0`, which is idiomatic for \"never timeout\".\n     */\n    timeout?: number;\n    /** The user credentials user name to send with the HTTP request */\n    user?: string;\n    /** The user credentials password to send with the HTTP request*/\n    password?: string;\n    /**\n     * Whether or not to send the HTTP request as a CORS request.\n     * Defaults to `false`.\n     *\n     * @deprecated Will be removed in version 8. Cross domain requests and what creates a cross\n     * domain request, are dictated by the browser, and a boolean that forces it to be cross domain\n     * does not make sense. If you need to force cross domain, make sure you're making a secure request,\n     * then add a custom header to the request or use `withCredentials`. For more information on what\n     * triggers a cross domain request, see the [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Requests_with_credentials).\n     * In particular, the section on [Simple Requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Simple_requests) is useful\n     * for understanding when CORS will not be used.\n     */\n    crossDomain?: boolean;\n    /**\n     * To send user credentials in a CORS request, set to `true`. To exclude user credentials from\n     * a CORS request, _OR_ when cookies are to be ignored by the CORS response, set to `false`.\n     *\n     * Defaults to `false`.\n     */\n    withCredentials?: boolean;\n    /**\n     * The name of your site's XSRF cookie.\n     */\n    xsrfCookieName?: string;\n    /**\n     * The name of a custom header that you can use to send your XSRF cookie.\n     */\n    xsrfHeaderName?: string;\n    /**\n     * Can be set to change the response type.\n     * Valid values are `\"arraybuffer\"`, `\"blob\"`, `\"document\"`, `\"json\"`, and `\"text\"`.\n     * Note that the type of `\"document\"` (such as an XML document) is ignored if the global context is\n     * not `Window`.\n     *\n     * Defaults to `\"json\"`.\n     */\n    responseType?: XMLHttpRequestResponseType;\n    /**\n     * An optional factory used to create the XMLHttpRequest object used to make the AJAX request.\n     * This is useful in environments that lack `XMLHttpRequest`, or in situations where you\n     * wish to override the default `XMLHttpRequest` for some reason.\n     *\n     * If not provided, the `XMLHttpRequest` in global scope will be used.\n     *\n     * NOTE: This AJAX implementation relies on the built-in serialization and setting\n     * of Content-Type headers that is provided by standards-compliant XMLHttpRequest implementations,\n     * be sure any implementation you use meets that standard.\n     */\n    createXHR?: () => XMLHttpRequest;\n    /**\n     * An observer for watching the upload progress of an HTTP request. Will\n     * emit progress events, and completes on the final upload load event, will error for\n     * any XHR error or timeout.\n     *\n     * This will **not** error for errored status codes. Rather, it will always _complete_ when\n     * the HTTP response comes back.\n     *\n     * @deprecated If you're looking for progress events, use {@link includeDownloadProgress} and\n     * {@link includeUploadProgress} instead. Will be removed in v8.\n     */\n    progressSubscriber?: PartialObserver<ProgressEvent>;\n    /**\n     * If `true`, will emit all download progress and load complete events as {@link AjaxResponse}\n     * from the observable. The final download event will also be emitted as a {@link AjaxResponse}.\n     *\n     * If both this and {@link includeUploadProgress} are `false`, then only the {@link AjaxResponse} will\n     * be emitted from the resulting observable.\n     */\n    includeDownloadProgress?: boolean;\n    /**\n     * If `true`, will emit all upload progress and load complete events as {@link AjaxResponse}\n     * from the observable. The final download event will also be emitted as a {@link AjaxResponse}.\n     *\n     * If both this and {@link includeDownloadProgress} are `false`, then only the {@link AjaxResponse} will\n     * be emitted from the resulting observable.\n     */\n    includeUploadProgress?: boolean;\n    /**\n     * Query string parameters to add to the URL in the request.\n     * <em>This will require a polyfill for `URL` and `URLSearchParams` in Internet Explorer!</em>\n     *\n     * Accepts either a query string, a `URLSearchParams` object, a dictionary of key/value pairs, or an\n     * array of key/value entry tuples. (Essentially, it takes anything that `new URLSearchParams` would normally take).\n     *\n     * If, for some reason you have a query string in the `url` argument, this will append to the query string in the url,\n     * but it will also overwrite the value of any keys that are an exact match. In other words, a url of `/test?a=1&b=2`,\n     * with queryParams of `{ b: 5, c: 6 }` will result in a url of roughly `/test?a=1&b=5&c=6`.\n     */\n    queryParams?: string | URLSearchParams | Record<string, string | number | boolean | string[] | number[] | boolean[]> | [string, string | number | boolean | string[] | number[] | boolean[]][];\n}\n//# sourceMappingURL=types.d.ts.map",
    "node_modules/rxjs/dist/types/internal/config.d.ts": "import { Subscriber } from './Subscriber';\nimport { ObservableNotification } from './types';\n/**\n * The {@link GlobalConfig} object for RxJS. It is used to configure things\n * like how to react on unhandled errors.\n */\nexport declare const config: GlobalConfig;\n/**\n * The global configuration object for RxJS, used to configure things\n * like how to react on unhandled errors. Accessible via {@link config}\n * object.\n */\nexport interface GlobalConfig {\n    /**\n     * A registration point for unhandled errors from RxJS. These are errors that\n     * cannot were not handled by consuming code in the usual subscription path. For\n     * example, if you have this configured, and you subscribe to an observable without\n     * providing an error handler, errors from that subscription will end up here. This\n     * will _always_ be called asynchronously on another job in the runtime. This is because\n     * we do not want errors thrown in this user-configured handler to interfere with the\n     * behavior of the library.\n     */\n    onUnhandledError: ((err: any) => void) | null;\n    /**\n     * A registration point for notifications that cannot be sent to subscribers because they\n     * have completed, errored or have been explicitly unsubscribed. By default, next, complete\n     * and error notifications sent to stopped subscribers are noops. However, sometimes callers\n     * might want a different behavior. For example, with sources that attempt to report errors\n     * to stopped subscribers, a caller can configure RxJS to throw an unhandled error instead.\n     * This will _always_ be called asynchronously on another job in the runtime. This is because\n     * we do not want errors thrown in this user-configured handler to interfere with the\n     * behavior of the library.\n     */\n    onStoppedNotification: ((notification: ObservableNotification<any>, subscriber: Subscriber<any>) => void) | null;\n    /**\n     * The promise constructor used by default for {@link Observable#toPromise toPromise} and {@link Observable#forEach forEach}\n     * methods.\n     *\n     * @deprecated As of version 8, RxJS will no longer support this sort of injection of a\n     * Promise constructor. If you need a Promise implementation other than native promises,\n     * please polyfill/patch Promise as you see appropriate. Will be removed in v8.\n     */\n    Promise?: PromiseConstructorLike;\n    /**\n     * If true, turns on synchronous error rethrowing, which is a deprecated behavior\n     * in v6 and higher. This behavior enables bad patterns like wrapping a subscribe\n     * call in a try/catch block. It also enables producer interference, a nasty bug\n     * where a multicast can be broken for all observers by a downstream consumer with\n     * an unhandled error. DO NOT USE THIS FLAG UNLESS IT'S NEEDED TO BUY TIME\n     * FOR MIGRATION REASONS.\n     *\n     * @deprecated As of version 8, RxJS will no longer support synchronous throwing\n     * of unhandled errors. All errors will be thrown on a separate call stack to prevent bad\n     * behaviors described above. Will be removed in v8.\n     */\n    useDeprecatedSynchronousErrorHandling: boolean;\n    /**\n     * If true, enables an as-of-yet undocumented feature from v5: The ability to access\n     * `unsubscribe()` via `this` context in `next` functions created in observers passed\n     * to `subscribe`.\n     *\n     * This is being removed because the performance was severely problematic, and it could also cause\n     * issues when types other than POJOs are passed to subscribe as subscribers, as they will likely have\n     * their `this` context overwritten.\n     *\n     * @deprecated As of version 8, RxJS will no longer support altering the\n     * context of next functions provided as part of an observer to Subscribe. Instead,\n     * you will have access to a subscription or a signal or token that will allow you to do things like\n     * unsubscribe and test closed status. Will be removed in v8.\n     */\n    useDeprecatedNextContext: boolean;\n}\n//# sourceMappingURL=config.d.ts.map",
    "node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts": "import { Observable } from './Observable';\nexport interface FirstValueFromConfig<T> {\n    defaultValue: T;\n}\nexport declare function firstValueFrom<T, D>(source: Observable<T>, config: FirstValueFromConfig<D>): Promise<T | D>;\nexport declare function firstValueFrom<T>(source: Observable<T>): Promise<T>;\n//# sourceMappingURL=firstValueFrom.d.ts.map",
    "node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts": "import { Observable } from './Observable';\nexport interface LastValueFromConfig<T> {\n    defaultValue: T;\n}\nexport declare function lastValueFrom<T, D>(source: Observable<T>, config: LastValueFromConfig<D>): Promise<T | D>;\nexport declare function lastValueFrom<T>(source: Observable<T>): Promise<T>;\n//# sourceMappingURL=lastValueFrom.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts": "import { Subject } from '../Subject';\nimport { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\n/**\n * @class ConnectableObservable<T>\n * @deprecated Will be removed in v8. Use {@link connectable} to create a connectable observable.\n * If you are using the `refCount` method of `ConnectableObservable`, use the {@link share} operator\n * instead.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare class ConnectableObservable<T> extends Observable<T> {\n    source: Observable<T>;\n    protected subjectFactory: () => Subject<T>;\n    protected _subject: Subject<T> | null;\n    protected _refCount: number;\n    protected _connection: Subscription | null;\n    /**\n     * @param source The source observable\n     * @param subjectFactory The factory that creates the subject used internally.\n     * @deprecated Will be removed in v8. Use {@link connectable} to create a connectable observable.\n     * `new ConnectableObservable(source, factory)` is equivalent to\n     * `connectable(source, { connector: factory })`.\n     * When the `refCount()` method is needed, the {@link share} operator should be used instead:\n     * `new ConnectableObservable(source, factory).refCount()` is equivalent to\n     * `source.pipe(share({ connector: factory }))`.\n     * Details: https://rxjs.dev/deprecations/multicasting\n     */\n    constructor(source: Observable<T>, subjectFactory: () => Subject<T>);\n    protected getSubject(): Subject<T>;\n    protected _teardown(): void;\n    /**\n     * @deprecated {@link ConnectableObservable} will be removed in v8. Use {@link connectable} instead.\n     * Details: https://rxjs.dev/deprecations/multicasting\n     */\n    connect(): Subscription;\n    /**\n     * @deprecated {@link ConnectableObservable} will be removed in v8. Use the {@link share} operator instead.\n     * Details: https://rxjs.dev/deprecations/multicasting\n     */\n    refCount(): Observable<T>;\n}\n//# sourceMappingURL=ConnectableObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts": "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nexport declare function bindCallback(callbackFunc: (...args: any[]) => void, resultSelector: (...args: any[]) => any, scheduler?: SchedulerLike): (...args: any[]) => Observable<any>;\nexport declare function bindCallback<A extends readonly unknown[], R extends readonly unknown[]>(callbackFunc: (...args: [...A, (...res: R) => void]) => void, schedulerLike?: SchedulerLike): (...arg: A) => Observable<R extends [] ? void : R extends [any] ? R[0] : R>;\n//# sourceMappingURL=bindCallback.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/bindCallbackInternals.d.ts": "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nexport declare function bindCallbackInternals(isNodeStyle: boolean, callbackFunc: any, resultSelector?: any, scheduler?: SchedulerLike): (...args: any[]) => Observable<unknown>;\n//# sourceMappingURL=bindCallbackInternals.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nexport declare function bindNodeCallback(callbackFunc: (...args: any[]) => void, resultSelector: (...args: any[]) => any, scheduler?: SchedulerLike): (...args: any[]) => Observable<any>;\nexport declare function bindNodeCallback<A extends readonly unknown[], R extends readonly unknown[]>(callbackFunc: (...args: [...A, (err: any, ...res: R) => void]) => void, schedulerLike?: SchedulerLike): (...arg: A) => Observable<R extends [] ? void : R extends [any] ? R[0] : R>;\n//# sourceMappingURL=bindNodeCallback.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf, ObservableInputTuple } from '../types';\nimport { Subscriber } from '../Subscriber';\nimport { AnyCatcher } from '../AnyCatcher';\n/**\n * You have passed `any` here, we can't figure out if it is\n * an array or an object, so you're getting `unknown`. Use better types.\n * @param arg Something typed as `any`\n */\nexport declare function combineLatest<T extends AnyCatcher>(arg: T): Observable<unknown>;\nexport declare function combineLatest(sources: []): Observable<never>;\nexport declare function combineLatest<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function combineLatest<A extends readonly unknown[], R>(sources: readonly [...ObservableInputTuple<A>], resultSelector: (...values: A) => R, scheduler: SchedulerLike): Observable<R>;\nexport declare function combineLatest<A extends readonly unknown[], R>(sources: readonly [...ObservableInputTuple<A>], resultSelector: (...values: A) => R): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function combineLatest<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>], scheduler: SchedulerLike): Observable<A>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport declare function combineLatest<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function combineLatest<A extends readonly unknown[], R>(...sourcesAndResultSelectorAndScheduler: [...ObservableInputTuple<A>, (...values: A) => R, SchedulerLike]): Observable<R>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport declare function combineLatest<A extends readonly unknown[], R>(...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function combineLatest<A extends readonly unknown[]>(...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]): Observable<A>;\nexport declare function combineLatest(sourcesObject: {\n    [K in any]: never;\n}): Observable<never>;\nexport declare function combineLatest<T extends Record<string, ObservableInput<any>>>(sourcesObject: T): Observable<{\n    [K in keyof T]: ObservedValueOf<T[K]>;\n}>;\nexport declare function combineLatestInit(observables: ObservableInput<any>[], scheduler?: SchedulerLike, valueTransform?: (values: any[]) => any): (subscriber: Subscriber<any>) => void;\n//# sourceMappingURL=combineLatest.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/concat.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInputTuple, SchedulerLike } from '../types';\nexport declare function concat<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\nexport declare function concat<T extends readonly unknown[]>(...inputsAndScheduler: [...ObservableInputTuple<T>, SchedulerLike]): Observable<T[number]>;\n//# sourceMappingURL=concat.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/connectable.d.ts": "import { Connectable, ObservableInput, SubjectLike } from '../types';\nexport interface ConnectableConfig<T> {\n    /**\n     * A factory function used to create the Subject through which the source\n     * is multicast. By default this creates a {@link Subject}.\n     */\n    connector: () => SubjectLike<T>;\n    /**\n     * If true, the resulting observable will reset internal state upon disconnection\n     * and return to a \"cold\" state. This allows the resulting observable to be\n     * reconnected.\n     * If false, upon disconnection, the connecting subject will remain the\n     * connecting subject, meaning the resulting observable will not go \"cold\" again,\n     * and subsequent repeats or resubscriptions will resubscribe to that same subject.\n     */\n    resetOnDisconnect?: boolean;\n}\n/**\n * Creates an observable that multicasts once `connect()` is called on it.\n *\n * @param source The observable source to make connectable.\n * @param config The configuration object for `connectable`.\n * @returns A \"connectable\" observable, that has a `connect()` method, that you must call to\n * connect the source to all consumers through the subject provided as the connector.\n */\nexport declare function connectable<T>(source: ObservableInput<T>, config?: ConnectableConfig<T>): Connectable<T>;\n//# sourceMappingURL=connectable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/defer.d.ts": "import { Observable } from '../Observable';\nimport { ObservedValueOf, ObservableInput } from '../types';\n/**\n * Creates an Observable that, on subscribe, calls an Observable factory to\n * make an Observable for each new Observer.\n *\n * <span class=\"informal\">Creates the Observable lazily, that is, only when it\n * is subscribed.\n * </span>\n *\n * ![](defer.png)\n *\n * `defer` allows you to create an Observable only when the Observer\n * subscribes. It waits until an Observer subscribes to it, calls the given\n * factory function to get an Observable -- where a factory function typically\n * generates a new Observable -- and subscribes the Observer to this Observable.\n * In case the factory function returns a falsy value, then EMPTY is used as\n * Observable instead. Last but not least, an exception during the factory\n * function call is transferred to the Observer by calling `error`.\n *\n * ## Example\n *\n * Subscribe to either an Observable of clicks or an Observable of interval, at random\n *\n * ```ts\n * import { defer, fromEvent, interval } from 'rxjs';\n *\n * const clicksOrInterval = defer(() => {\n *   return Math.random() > 0.5\n *     ? fromEvent(document, 'click')\n *     : interval(1000);\n * });\n * clicksOrInterval.subscribe(x => console.log(x));\n *\n * // Results in the following behavior:\n * // If the result of Math.random() is greater than 0.5 it will listen\n * // for clicks anywhere on the \"document\"; when document is clicked it\n * // will log a MouseEvent object to the console. If the result is less\n * // than 0.5 it will emit ascending numbers, one every second(1000ms).\n * ```\n *\n * @see {@link Observable}\n *\n * @param observableFactory The Observable factory function to invoke for each\n * Observer that subscribes to the output Observable. May also return any\n * `ObservableInput`, which will be converted on the fly to an Observable.\n * @return An Observable whose Observers' subscriptions trigger an invocation of the\n * given Observable factory function.\n */\nexport declare function defer<R extends ObservableInput<any>>(observableFactory: () => R): Observable<ObservedValueOf<R>>;\n//# sourceMappingURL=defer.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/dom/WebSocketSubject.d.ts": "import { AnonymousSubject } from '../../Subject';\nimport { Observable } from '../../Observable';\nimport { Operator } from '../../Operator';\nimport { Observer, NextObserver } from '../../types';\n/**\n * WebSocketSubjectConfig is a plain Object that allows us to make our\n * webSocket configurable.\n *\n * <span class=\"informal\">Provides flexibility to {@link webSocket}</span>\n *\n * It defines a set of properties to provide custom behavior in specific\n * moments of the socket's lifecycle. When the connection opens we can\n * use `openObserver`, when the connection is closed `closeObserver`, if we\n * are interested in listening for data coming from server: `deserializer`,\n * which allows us to customize the deserialization strategy of data before passing it\n * to the socket client. By default, `deserializer` is going to apply `JSON.parse` to each message coming\n * from the Server.\n *\n * ## Examples\n *\n * **deserializer**, the default for this property is `JSON.parse` but since there are just two options\n * for incoming data, either be text or binary data. We can apply a custom deserialization strategy\n * or just simply skip the default behaviour.\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const wsSubject = webSocket({\n *   url: 'ws://localhost:8081',\n *   //Apply any transformation of your choice.\n *   deserializer: ({ data }) => data\n * });\n *\n * wsSubject.subscribe(console.log);\n *\n * // Let's suppose we have this on the Server: ws.send('This is a msg from the server')\n * //output\n * //\n * // This is a msg from the server\n * ```\n *\n * **serializer** allows us to apply custom serialization strategy but for the outgoing messages.\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const wsSubject = webSocket({\n *   url: 'ws://localhost:8081',\n *   // Apply any transformation of your choice.\n *   serializer: msg => JSON.stringify({ channel: 'webDevelopment', msg: msg })\n * });\n *\n * wsSubject.subscribe(() => subject.next('msg to the server'));\n *\n * // Let's suppose we have this on the Server:\n * //   ws.on('message', msg => console.log);\n * //   ws.send('This is a msg from the server');\n * // output at server side:\n * //\n * // {\"channel\":\"webDevelopment\",\"msg\":\"msg to the server\"}\n * ```\n *\n * **closeObserver** allows us to set a custom error when an error raises up.\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const wsSubject = webSocket({\n *   url: 'ws://localhost:8081',\n *   closeObserver: {\n *     next() {\n *       const customError = { code: 6666, reason: 'Custom evil reason' }\n *       console.log(`code: ${ customError.code }, reason: ${ customError.reason }`);\n *     }\n *   }\n * });\n *\n * // output\n * // code: 6666, reason: Custom evil reason\n * ```\n *\n * **openObserver**, Let's say we need to make some kind of init task before sending/receiving msgs to the\n * webSocket or sending notification that the connection was successful, this is when\n * openObserver is useful for.\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const wsSubject = webSocket({\n *   url: 'ws://localhost:8081',\n *   openObserver: {\n *     next: () => {\n *       console.log('Connection ok');\n *     }\n *   }\n * });\n *\n * // output\n * // Connection ok\n * ```\n */\nexport interface WebSocketSubjectConfig<T> {\n    /** The url of the socket server to connect to */\n    url: string;\n    /** The protocol to use to connect */\n    protocol?: string | Array<string>;\n    /** @deprecated Will be removed in v8. Use {@link deserializer} instead. */\n    resultSelector?: (e: MessageEvent) => T;\n    /**\n     * A serializer used to create messages from passed values before the\n     * messages are sent to the server. Defaults to JSON.stringify.\n     */\n    serializer?: (value: T) => WebSocketMessage;\n    /**\n     * A deserializer used for messages arriving on the socket from the\n     * server. Defaults to JSON.parse.\n     */\n    deserializer?: (e: MessageEvent) => T;\n    /**\n     * An Observer that watches when open events occur on the underlying web socket.\n     */\n    openObserver?: NextObserver<Event>;\n    /**\n     * An Observer that watches when close events occur on the underlying web socket\n     */\n    closeObserver?: NextObserver<CloseEvent>;\n    /**\n     * An Observer that watches when a close is about to occur due to\n     * unsubscription.\n     */\n    closingObserver?: NextObserver<void>;\n    /**\n     * A WebSocket constructor to use. This is useful for situations like using a\n     * WebSocket impl in Node (WebSocket is a DOM API), or for mocking a WebSocket\n     * for testing purposes\n     */\n    WebSocketCtor?: {\n        new (url: string, protocols?: string | string[]): WebSocket;\n    };\n    /** Sets the `binaryType` property of the underlying WebSocket. */\n    binaryType?: 'blob' | 'arraybuffer';\n}\nexport declare type WebSocketMessage = string | ArrayBuffer | Blob | ArrayBufferView;\nexport declare class WebSocketSubject<T> extends AnonymousSubject<T> {\n    private _config;\n    private _socket;\n    constructor(urlConfigOrSource: string | WebSocketSubjectConfig<T> | Observable<T>, destination?: Observer<T>);\n    /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n    lift<R>(operator: Operator<T, R>): WebSocketSubject<R>;\n    private _resetState;\n    /**\n     * Creates an {@link Observable}, that when subscribed to, sends a message,\n     * defined by the `subMsg` function, to the server over the socket to begin a\n     * subscription to data over that socket. Once data arrives, the\n     * `messageFilter` argument will be used to select the appropriate data for\n     * the resulting Observable. When finalization occurs, either due to\n     * unsubscription, completion, or error, a message defined by the `unsubMsg`\n     * argument will be sent to the server over the WebSocketSubject.\n     *\n     * @param subMsg A function to generate the subscription message to be sent to\n     * the server. This will still be processed by the serializer in the\n     * WebSocketSubject's config. (Which defaults to JSON serialization)\n     * @param unsubMsg A function to generate the unsubscription message to be\n     * sent to the server at finalization. This will still be processed by the\n     * serializer in the WebSocketSubject's config.\n     * @param messageFilter A predicate for selecting the appropriate messages\n     * from the server for the output stream.\n     */\n    multiplex(subMsg: () => any, unsubMsg: () => any, messageFilter: (value: T) => boolean): Observable<T>;\n    private _connectSocket;\n    unsubscribe(): void;\n}\n//# sourceMappingURL=WebSocketSubject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts": "import { Observable } from '../../Observable';\nimport { TimestampProvider } from '../../types';\n/**\n * An observable of animation frames\n *\n * Emits the amount of time elapsed since subscription and the timestamp on each animation frame.\n * Defaults to milliseconds provided to the requestAnimationFrame's callback. Does not end on its own.\n *\n * Every subscription will start a separate animation loop. Since animation frames are always scheduled\n * by the browser to occur directly before a repaint, scheduling more than one animation frame synchronously\n * should not be much different or have more overhead than looping over an array of events during\n * a single animation frame. However, if for some reason the developer would like to ensure the\n * execution of animation-related handlers are all executed during the same task by the engine,\n * the `share` operator can be used.\n *\n * This is useful for setting up animations with RxJS.\n *\n * ## Examples\n *\n * Tweening a div to move it on the screen\n *\n * ```ts\n * import { animationFrames, map, takeWhile, endWith } from 'rxjs';\n *\n * function tween(start: number, end: number, duration: number) {\n *   const diff = end - start;\n *   return animationFrames().pipe(\n *     // Figure out what percentage of time has passed\n *     map(({ elapsed }) => elapsed / duration),\n *     // Take the vector while less than 100%\n *     takeWhile(v => v < 1),\n *     // Finish with 100%\n *     endWith(1),\n *     // Calculate the distance traveled between start and end\n *     map(v => v * diff + start)\n *   );\n * }\n *\n * // Setup a div for us to move around\n * const div = document.createElement('div');\n * document.body.appendChild(div);\n * div.style.position = 'absolute';\n * div.style.width = '40px';\n * div.style.height = '40px';\n * div.style.backgroundColor = 'lime';\n * div.style.transform = 'translate3d(10px, 0, 0)';\n *\n * tween(10, 200, 4000).subscribe(x => {\n *   div.style.transform = `translate3d(${ x }px, 0, 0)`;\n * });\n * ```\n *\n * Providing a custom timestamp provider\n *\n * ```ts\n * import { animationFrames, TimestampProvider } from 'rxjs';\n *\n * // A custom timestamp provider\n * let now = 0;\n * const customTSProvider: TimestampProvider = {\n *   now() { return now++; }\n * };\n *\n * const source$ = animationFrames(customTSProvider);\n *\n * // Log increasing numbers 0...1...2... on every animation frame.\n * source$.subscribe(({ elapsed }) => console.log(elapsed));\n * ```\n *\n * @param timestampProvider An object with a `now` method that provides a numeric timestamp\n */\nexport declare function animationFrames(timestampProvider?: TimestampProvider): Observable<{\n    timestamp: number;\n    elapsed: number;\n}>;\n//# sourceMappingURL=animationFrames.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/dom/fetch.d.ts": "import { Observable } from '../../Observable';\nimport { ObservableInput } from '../../types';\nexport declare function fromFetch<T>(input: string | Request, init: RequestInit & {\n    selector: (response: Response) => ObservableInput<T>;\n}): Observable<T>;\nexport declare function fromFetch(input: string | Request, init?: RequestInit): Observable<Response>;\n//# sourceMappingURL=fetch.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/dom/webSocket.d.ts": "import { WebSocketSubject, WebSocketSubjectConfig } from './WebSocketSubject';\n/**\n * Wrapper around the w3c-compatible WebSocket object provided by the browser.\n *\n * <span class=\"informal\">{@link Subject} that communicates with a server via WebSocket</span>\n *\n * `webSocket` is a factory function that produces a `WebSocketSubject`,\n * which can be used to make WebSocket connection with an arbitrary endpoint.\n * `webSocket` accepts as an argument either a string with url of WebSocket endpoint, or an\n * {@link WebSocketSubjectConfig} object for providing additional configuration, as\n * well as Observers for tracking lifecycle of WebSocket connection.\n *\n * When `WebSocketSubject` is subscribed, it attempts to make a socket connection,\n * unless there is one made already. This means that many subscribers will always listen\n * on the same socket, thus saving resources. If however, two instances are made of `WebSocketSubject`,\n * even if these two were provided with the same url, they will attempt to make separate\n * connections. When consumer of a `WebSocketSubject` unsubscribes, socket connection is closed,\n * only if there are no more subscribers still listening. If after some time a consumer starts\n * subscribing again, connection is reestablished.\n *\n * Once connection is made, whenever a new message comes from the server, `WebSocketSubject` will emit that\n * message as a value in the stream. By default, a message from the socket is parsed via `JSON.parse`. If you\n * want to customize how deserialization is handled (if at all), you can provide custom `resultSelector`\n * function in {@link WebSocketSubject}. When connection closes, stream will complete, provided it happened without\n * any errors. If at any point (starting, maintaining or closing a connection) there is an error,\n * stream will also error with whatever WebSocket API has thrown.\n *\n * By virtue of being a {@link Subject}, `WebSocketSubject` allows for receiving and sending messages from the server. In order\n * to communicate with a connected endpoint, use `next`, `error` and `complete` methods. `next` sends a value to the server, so bear in mind\n * that this value will not be serialized beforehand. Because of This, `JSON.stringify` will have to be called on a value by hand,\n * before calling `next` with a result. Note also that if at the moment of nexting value\n * there is no socket connection (for example no one is subscribing), those values will be buffered, and sent when connection\n * is finally established. `complete` method closes socket connection. `error` does the same,\n * as well as notifying the server that something went wrong via status code and string with details of what happened.\n * Since status code is required in WebSocket API, `WebSocketSubject` does not allow, like regular `Subject`,\n * arbitrary values being passed to the `error` method. It needs to be called with an object that has `code`\n * property with status code number and optional `reason` property with string describing details\n * of an error.\n *\n * Calling `next` does not affect subscribers of `WebSocketSubject` - they have no\n * information that something was sent to the server (unless of course the server\n * responds somehow to a message). On the other hand, since calling `complete` triggers\n * an attempt to close socket connection. If that connection is closed without any errors, stream will\n * complete, thus notifying all subscribers. And since calling `error` closes\n * socket connection as well, just with a different status code for the server, if closing itself proceeds\n * without errors, subscribed Observable will not error, as one might expect, but complete as usual. In both cases\n * (calling `complete` or `error`), if process of closing socket connection results in some errors, *then* stream\n * will error.\n *\n * **Multiplexing**\n *\n * `WebSocketSubject` has an additional operator, not found in other Subjects. It is called `multiplex` and it is\n * used to simulate opening several socket connections, while in reality maintaining only one.\n * For example, an application has both chat panel and real-time notifications about sport news. Since these are two distinct functions,\n * it would make sense to have two separate connections for each. Perhaps there could even be two separate services with WebSocket\n * endpoints, running on separate machines with only GUI combining them together. Having a socket connection\n * for each functionality could become too resource expensive. It is a common pattern to have single\n * WebSocket endpoint that acts as a gateway for the other services (in this case chat and sport news services).\n * Even though there is a single connection in a client app, having the ability to manipulate streams as if it\n * were two separate sockets is desirable. This eliminates manually registering and unregistering in a gateway for\n * given service and filter out messages of interest. This is exactly what `multiplex` method is for.\n *\n * Method accepts three parameters. First two are functions returning subscription and unsubscription messages\n * respectively. These are messages that will be sent to the server, whenever consumer of resulting Observable\n * subscribes and unsubscribes. Server can use them to verify that some kind of messages should start or stop\n * being forwarded to the client. In case of the above example application, after getting subscription message with proper identifier,\n * gateway server can decide that it should connect to real sport news service and start forwarding messages from it.\n * Note that both messages will be sent as returned by the functions, they are by default serialized using JSON.stringify, just\n * as messages pushed via `next`. Also bear in mind that these messages will be sent on *every* subscription and\n * unsubscription. This is potentially dangerous, because one consumer of an Observable may unsubscribe and the server\n * might stop sending messages, since it got unsubscription message. This needs to be handled\n * on the server or using {@link publish} on a Observable returned from 'multiplex'.\n *\n * Last argument to `multiplex` is a `messageFilter` function which should return a boolean. It is used to filter out messages\n * sent by the server to only those that belong to simulated WebSocket stream. For example, server might mark these\n * messages with some kind of string identifier on a message object and `messageFilter` would return `true`\n * if there is such identifier on an object emitted by the socket. Messages which returns `false` in `messageFilter` are simply skipped,\n * and are not passed down the stream.\n *\n * Return value of `multiplex` is an Observable with messages incoming from emulated socket connection. Note that this\n * is not a `WebSocketSubject`, so calling `next` or `multiplex` again will fail. For pushing values to the\n * server, use root `WebSocketSubject`.\n *\n * ## Examples\n *\n * Listening for messages from the server\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const subject = webSocket('ws://localhost:8081');\n *\n * subject.subscribe({\n *   next: msg => console.log('message received: ' + msg), // Called whenever there is a message from the server.\n *   error: err => console.log(err), // Called if at any point WebSocket API signals some kind of error.\n *   complete: () => console.log('complete') // Called when connection is closed (for whatever reason).\n *  });\n * ```\n *\n * Pushing messages to the server\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const subject = webSocket('ws://localhost:8081');\n *\n * subject.subscribe();\n * // Note that at least one consumer has to subscribe to the created subject - otherwise \"nexted\" values will be just buffered and not sent,\n * // since no connection was established!\n *\n * subject.next({ message: 'some message' });\n * // This will send a message to the server once a connection is made. Remember value is serialized with JSON.stringify by default!\n *\n * subject.complete(); // Closes the connection.\n *\n * subject.error({ code: 4000, reason: 'I think our app just broke!' });\n * // Also closes the connection, but let's the server know that this closing is caused by some error.\n * ```\n *\n * Multiplexing WebSocket\n *\n * ```ts\n * import { webSocket } from 'rxjs/webSocket';\n *\n * const subject = webSocket('ws://localhost:8081');\n *\n * const observableA = subject.multiplex(\n *   () => ({ subscribe: 'A' }), // When server gets this message, it will start sending messages for 'A'...\n *   () => ({ unsubscribe: 'A' }), // ...and when gets this one, it will stop.\n *   message => message.type === 'A' // If the function returns `true` message is passed down the stream. Skipped if the function returns false.\n * );\n *\n * const observableB = subject.multiplex( // And the same goes for 'B'.\n *   () => ({ subscribe: 'B' }),\n *   () => ({ unsubscribe: 'B' }),\n *   message => message.type === 'B'\n * );\n *\n * const subA = observableA.subscribe(messageForA => console.log(messageForA));\n * // At this moment WebSocket connection is established. Server gets '{\"subscribe\": \"A\"}' message and starts sending messages for 'A',\n * // which we log here.\n *\n * const subB = observableB.subscribe(messageForB => console.log(messageForB));\n * // Since we already have a connection, we just send '{\"subscribe\": \"B\"}' message to the server. It starts sending messages for 'B',\n * // which we log here.\n *\n * subB.unsubscribe();\n * // Message '{\"unsubscribe\": \"B\"}' is sent to the server, which stops sending 'B' messages.\n *\n * subA.unsubscribe();\n * // Message '{\"unsubscribe\": \"A\"}' makes the server stop sending messages for 'A'. Since there is no more subscribers to root Subject,\n * // socket connection closes.\n * ```\n *\n * @param urlConfigOrSource The WebSocket endpoint as an url or an object with configuration and additional Observers.\n * @return Subject which allows to both send and receive messages via WebSocket connection.\n */\nexport declare function webSocket<T>(urlConfigOrSource: string | WebSocketSubjectConfig<T>): WebSocketSubject<T>;\n//# sourceMappingURL=webSocket.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/empty.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * A simple Observable that emits no items to the Observer and immediately\n * emits a complete notification.\n *\n * <span class=\"informal\">Just emits 'complete', and nothing else.</span>\n *\n * ![](empty.png)\n *\n * A simple Observable that only emits the complete notification. It can be used\n * for composing with other Observables, such as in a {@link mergeMap}.\n *\n * ## Examples\n *\n * Log complete notification\n *\n * ```ts\n * import { EMPTY } from 'rxjs';\n *\n * EMPTY.subscribe({\n *   next: () => console.log('Next'),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Outputs\n * // Complete!\n * ```\n *\n * Emit the number 7, then complete\n *\n * ```ts\n * import { EMPTY, startWith } from 'rxjs';\n *\n * const result = EMPTY.pipe(startWith(7));\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // 7\n * ```\n *\n * Map and flatten only odd numbers to the sequence `'a'`, `'b'`, `'c'`\n *\n * ```ts\n * import { interval, mergeMap, of, EMPTY } from 'rxjs';\n *\n * const interval$ = interval(1000);\n * const result = interval$.pipe(\n *   mergeMap(x => x % 2 === 1 ? of('a', 'b', 'c') : EMPTY),\n * );\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following to the console:\n * // x is equal to the count on the interval, e.g. (0, 1, 2, 3, ...)\n * // x will occur every 1000ms\n * // if x % 2 is equal to 1, print a, b, c (each on its own)\n * // if x % 2 is not equal to 1, nothing will be output\n * ```\n *\n * @see {@link Observable}\n * @see {@link NEVER}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport declare const EMPTY: Observable<never>;\n/**\n * @param scheduler A {@link SchedulerLike} to use for scheduling\n * the emission of the complete notification.\n * @deprecated Replaced with the {@link EMPTY} constant or {@link scheduled} (e.g. `scheduled([], scheduler)`). Will be removed in v8.\n */\nexport declare function empty(scheduler?: SchedulerLike): Observable<never>;\n//# sourceMappingURL=empty.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts": "import { Observable } from '../Observable';\nimport { ObservedValueOf, ObservableInputTuple, ObservableInput } from '../types';\nimport { AnyCatcher } from '../AnyCatcher';\n/**\n * You have passed `any` here, we can't figure out if it is\n * an array or an object, so you're getting `unknown`. Use better types.\n * @param arg Something typed as `any`\n */\nexport declare function forkJoin<T extends AnyCatcher>(arg: T): Observable<unknown>;\nexport declare function forkJoin(scheduler: null | undefined): Observable<never>;\nexport declare function forkJoin(sources: readonly []): Observable<never>;\nexport declare function forkJoin<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;\nexport declare function forkJoin<A extends readonly unknown[], R>(sources: readonly [...ObservableInputTuple<A>], resultSelector: (...values: A) => R): Observable<R>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport declare function forkJoin<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport declare function forkJoin<A extends readonly unknown[], R>(...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]): Observable<R>;\nexport declare function forkJoin(sourcesObject: {\n    [K in any]: never;\n}): Observable<never>;\nexport declare function forkJoin<T extends Record<string, ObservableInput<any>>>(sourcesObject: T): Observable<{\n    [K in keyof T]: ObservedValueOf<T[K]>;\n}>;\n//# sourceMappingURL=forkJoin.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/from.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf } from '../types';\nexport declare function from<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function from<O extends ObservableInput<any>>(input: O, scheduler: SchedulerLike | undefined): Observable<ObservedValueOf<O>>;\n//# sourceMappingURL=from.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts": "import { Observable } from '../Observable';\nexport interface NodeStyleEventEmitter {\n    addListener(eventName: string | symbol, handler: NodeEventHandler): this;\n    removeListener(eventName: string | symbol, handler: NodeEventHandler): this;\n}\nexport declare type NodeEventHandler = (...args: any[]) => void;\nexport interface NodeCompatibleEventEmitter {\n    addListener(eventName: string, handler: NodeEventHandler): void | {};\n    removeListener(eventName: string, handler: NodeEventHandler): void | {};\n}\nexport interface JQueryStyleEventEmitter<TContext, T> {\n    on(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n    off(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n}\nexport interface EventListenerObject<E> {\n    handleEvent(evt: E): void;\n}\nexport interface HasEventTargetAddRemove<E> {\n    addEventListener(type: string, listener: ((evt: E) => void) | EventListenerObject<E> | null, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener(type: string, listener: ((evt: E) => void) | EventListenerObject<E> | null, options?: EventListenerOptions | boolean): void;\n}\nexport interface EventListenerOptions {\n    capture?: boolean;\n    passive?: boolean;\n    once?: boolean;\n}\nexport interface AddEventListenerOptions extends EventListenerOptions {\n    once?: boolean;\n    passive?: boolean;\n}\nexport declare function fromEvent<T>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string): Observable<T>;\nexport declare function fromEvent<T, R>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string, resultSelector: (event: T) => R): Observable<R>;\nexport declare function fromEvent<T>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string, options: EventListenerOptions): Observable<T>;\nexport declare function fromEvent<T, R>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string, options: EventListenerOptions, resultSelector: (event: T) => R): Observable<R>;\nexport declare function fromEvent(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport declare function fromEvent<T>(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<T>;\nexport declare function fromEvent<R>(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string, resultSelector: (...args: any[]) => R): Observable<R>;\nexport declare function fromEvent(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport declare function fromEvent<T>(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string): Observable<T>;\nexport declare function fromEvent<R>(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string, resultSelector: (...args: any[]) => R): Observable<R>;\nexport declare function fromEvent<T>(target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>, eventName: string): Observable<T>;\nexport declare function fromEvent<T, R>(target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>, eventName: string, resultSelector: (value: T, ...args: any[]) => R): Observable<R>;\n//# sourceMappingURL=fromEvent.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts": "import { Observable } from '../Observable';\nimport { NodeEventHandler } from './fromEvent';\nexport declare function fromEventPattern<T>(addHandler: (handler: NodeEventHandler) => any, removeHandler?: (handler: NodeEventHandler, signal?: any) => void): Observable<T>;\nexport declare function fromEventPattern<T>(addHandler: (handler: NodeEventHandler) => any, removeHandler?: (handler: NodeEventHandler, signal?: any) => void, resultSelector?: (...args: any[]) => T): Observable<T>;\n//# sourceMappingURL=fromEventPattern.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/fromSubscribable.d.ts": "import { Observable } from '../Observable';\nimport { Subscribable } from '../types';\n/**\n * Used to convert a subscribable to an observable.\n *\n * Currently, this is only used within internals.\n *\n * TODO: Discuss ObservableInput supporting \"Subscribable\".\n * https://github.com/ReactiveX/rxjs/issues/5909\n *\n * @param subscribable A subscribable\n */\nexport declare function fromSubscribable<T>(subscribable: Subscribable<T>): Observable<T>;\n//# sourceMappingURL=fromSubscribable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/generate.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\ndeclare type ConditionFunc<S> = (state: S) => boolean;\ndeclare type IterateFunc<S> = (state: S) => S;\ndeclare type ResultFunc<S, T> = (state: S) => T;\nexport interface GenerateBaseOptions<S> {\n    /**\n     * Initial state.\n     */\n    initialState: S;\n    /**\n     * Condition function that accepts state and returns boolean.\n     * When it returns false, the generator stops.\n     * If not specified, a generator never stops.\n     */\n    condition?: ConditionFunc<S>;\n    /**\n     * Iterate function that accepts state and returns new state.\n     */\n    iterate: IterateFunc<S>;\n    /**\n     * SchedulerLike to use for generation process.\n     * By default, a generator starts immediately.\n     */\n    scheduler?: SchedulerLike;\n}\nexport interface GenerateOptions<T, S> extends GenerateBaseOptions<S> {\n    /**\n     * Result selection function that accepts state and returns a value to emit.\n     */\n    resultSelector: ResultFunc<S, T>;\n}\n/**\n * Generates an observable sequence by running a state-driven loop\n * producing the sequence's elements, using the specified scheduler\n * to send out observer messages.\n *\n * ![](generate.png)\n *\n * ## Examples\n *\n * Produces sequence of numbers\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate(0, x => x < 3, x => x + 1, x => x);\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * ```\n *\n * Use `asapScheduler`\n *\n * ```ts\n * import { generate, asapScheduler } from 'rxjs';\n *\n * const result = generate(1, x => x < 5, x => x * 2, x => x + 1, asapScheduler);\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 2\n * // 3\n * // 5\n * ```\n *\n * @see {@link from}\n * @see {@link Observable}\n *\n * @param initialState Initial state.\n * @param condition Condition to terminate generation (upon returning false).\n * @param iterate Iteration step function.\n * @param resultSelector Selector function for results produced in the sequence.\n * @param scheduler A {@link SchedulerLike} on which to run the generator loop.\n * If not provided, defaults to emit immediately.\n * @returns The generated sequence.\n * @deprecated Instead of passing separate arguments, use the options argument.\n * Signatures taking separate arguments will be removed in v8.\n */\nexport declare function generate<T, S>(initialState: S, condition: ConditionFunc<S>, iterate: IterateFunc<S>, resultSelector: ResultFunc<S, T>, scheduler?: SchedulerLike): Observable<T>;\n/**\n * Generates an Observable by running a state-driven loop\n * that emits an element on each iteration.\n *\n * <span class=\"informal\">Use it instead of nexting values in a for loop.</span>\n *\n * ![](generate.png)\n *\n * `generate` allows you to create a stream of values generated with a loop very similar to\n * a traditional for loop. The first argument of `generate` is a beginning value. The second argument\n * is a function that accepts this value and tests if some condition still holds. If it does,\n * then the loop continues, if not, it stops. The third value is a function which takes the\n * previously defined value and modifies it in some way on each iteration. Note how these three parameters\n * are direct equivalents of three expressions in a traditional for loop: the first expression\n * initializes some state (for example, a numeric index), the second tests if the loop can perform the next\n * iteration (for example, if the index is lower than 10) and the third states how the defined value\n * will be modified on every step (for example, the index will be incremented by one).\n *\n * Return value of a `generate` operator is an Observable that on each loop iteration\n * emits a value. First of all, the condition function is ran. If it returns true, then the Observable\n * emits the currently stored value (initial value at the first iteration) and finally updates\n * that value with iterate function. If at some point the condition returns false, then the Observable\n * completes at that moment.\n *\n * Optionally you can pass a fourth parameter to `generate` - a result selector function which allows you\n * to immediately map the value that would normally be emitted by an Observable.\n *\n * If you find three anonymous functions in `generate` call hard to read, you can provide\n * a single object to the operator instead where the object has the properties: `initialState`,\n * `condition`, `iterate` and `resultSelector`, which should have respective values that you\n * would normally pass to `generate`. `resultSelector` is still optional, but that form\n * of calling `generate` allows you to omit `condition` as well. If you omit it, that means\n * condition always holds, or in other words the resulting Observable will never complete.\n *\n * Both forms of `generate` can optionally accept a scheduler. In case of a multi-parameter call,\n * scheduler simply comes as a last argument (no matter if there is a `resultSelector`\n * function or not). In case of a single-parameter call, you can provide it as a\n * `scheduler` property on the object passed to the operator. In both cases, a scheduler decides when\n * the next iteration of the loop will happen and therefore when the next value will be emitted\n * by the Observable. For example, to ensure that each value is pushed to the Observer\n * on a separate task in the event loop, you could use the `async` scheduler. Note that\n * by default (when no scheduler is passed) values are simply emitted synchronously.\n *\n *\n * ## Examples\n *\n * Use with condition and iterate functions\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate(0, x => x < 3, x => x + 1);\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 'Complete!'\n * ```\n *\n * Use with condition, iterate and resultSelector functions\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate(0, x => x < 3, x => x + 1, x => x * 1000);\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Logs:\n * // 0\n * // 1000\n * // 2000\n * // 'Complete!'\n * ```\n *\n * Use with options object\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate({\n *   initialState: 0,\n *   condition(value) { return value < 3; },\n *   iterate(value) { return value + 1; },\n *   resultSelector(value) { return value * 1000; }\n * });\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Logs:\n * // 0\n * // 1000\n * // 2000\n * // 'Complete!'\n * ```\n *\n * Use options object without condition function\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate({\n *   initialState: 0,\n *   iterate(value) { return value + 1; },\n *   resultSelector(value) { return value * 1000; }\n * });\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!') // This will never run\n * });\n *\n * // Logs:\n * // 0\n * // 1000\n * // 2000\n * // 3000\n * // ...and never stops.\n * ```\n *\n * @see {@link from}\n *\n * @param initialState Initial state.\n * @param condition Condition to terminate generation (upon returning false).\n * @param iterate Iteration step function.\n * @param scheduler A {@link Scheduler} on which to run the generator loop. If not\n * provided, defaults to emitting immediately.\n * @return The generated sequence.\n * @deprecated Instead of passing separate arguments, use the options argument.\n * Signatures taking separate arguments will be removed in v8.\n */\nexport declare function generate<S>(initialState: S, condition: ConditionFunc<S>, iterate: IterateFunc<S>, scheduler?: SchedulerLike): Observable<S>;\n/**\n * Generates an observable sequence by running a state-driven loop\n * producing the sequence's elements, using the specified scheduler\n * to send out observer messages.\n * The overload accepts options object that might contain initial state, iterate,\n * condition and scheduler.\n *\n * ![](generate.png)\n *\n * ## Examples\n *\n * Use options object with condition function\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate({\n *   initialState: 0,\n *   condition: x => x < 3,\n *   iterate: x => x + 1\n * });\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 'Complete!'\n * ```\n *\n * @see {@link from}\n * @see {@link Observable}\n *\n * @param options Object that must contain initialState, iterate and might contain condition and scheduler.\n * @returns The generated sequence.\n */\nexport declare function generate<S>(options: GenerateBaseOptions<S>): Observable<S>;\n/**\n * Generates an observable sequence by running a state-driven loop\n * producing the sequence's elements, using the specified scheduler\n * to send out observer messages.\n * The overload accepts options object that might contain initial state, iterate,\n * condition, result selector and scheduler.\n *\n * ![](generate.png)\n *\n * ## Examples\n *\n * Use options object with condition and iterate function\n *\n * ```ts\n * import { generate } from 'rxjs';\n *\n * const result = generate({\n *   initialState: 0,\n *   condition: x => x < 3,\n *   iterate: x => x + 1,\n *   resultSelector: x => x\n * });\n *\n * result.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('Complete!')\n * });\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 'Complete!'\n * ```\n *\n * @see {@link from}\n * @see {@link Observable}\n *\n * @param options Object that must contain initialState, iterate, resultSelector and might contain condition and scheduler.\n * @returns The generated sequence.\n */\nexport declare function generate<T, S>(options: GenerateOptions<T, S>): Observable<T>;\nexport {};\n//# sourceMappingURL=generate.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/iif.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput } from '../types';\n/**\n * Checks a boolean at subscription time, and chooses between one of two observable sources\n *\n * `iif` expects a function that returns a boolean (the `condition` function), and two sources,\n * the `trueResult` and the `falseResult`, and returns an Observable.\n *\n * At the moment of subscription, the `condition` function is called. If the result is `true`, the\n * subscription will be to the source passed as the `trueResult`, otherwise, the subscription will be\n * to the source passed as the `falseResult`.\n *\n * If you need to check more than two options to choose between more than one observable, have a look at the {@link defer} creation method.\n *\n * ## Examples\n *\n * Change at runtime which Observable will be subscribed\n *\n * ```ts\n * import { iif, of } from 'rxjs';\n *\n * let subscribeToFirst;\n * const firstOrSecond = iif(\n *   () => subscribeToFirst,\n *   of('first'),\n *   of('second')\n * );\n *\n * subscribeToFirst = true;\n * firstOrSecond.subscribe(value => console.log(value));\n *\n * // Logs:\n * // 'first'\n *\n * subscribeToFirst = false;\n * firstOrSecond.subscribe(value => console.log(value));\n *\n * // Logs:\n * // 'second'\n * ```\n *\n * Control access to an Observable\n *\n * ```ts\n * import { iif, of, EMPTY } from 'rxjs';\n *\n * let accessGranted;\n * const observableIfYouHaveAccess = iif(\n *   () => accessGranted,\n *   of('It seems you have an access...'),\n *   EMPTY\n * );\n *\n * accessGranted = true;\n * observableIfYouHaveAccess.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('The end')\n * });\n *\n * // Logs:\n * // 'It seems you have an access...'\n * // 'The end'\n *\n * accessGranted = false;\n * observableIfYouHaveAccess.subscribe({\n *   next: value => console.log(value),\n *   complete: () => console.log('The end')\n * });\n *\n * // Logs:\n * // 'The end'\n * ```\n *\n * @see {@link defer}\n *\n * @param condition Condition which Observable should be chosen.\n * @param trueResult An Observable that will be subscribed if condition is true.\n * @param falseResult An Observable that will be subscribed if condition is false.\n * @return An observable that proxies to `trueResult` or `falseResult`, depending on the result of the `condition` function.\n */\nexport declare function iif<T, F>(condition: () => boolean, trueResult: ObservableInput<T>, falseResult: ObservableInput<F>): Observable<T | F>;\n//# sourceMappingURL=iif.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/innerFrom.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, ObservedValueOf, ReadableStreamLike } from '../types';\nexport declare function innerFrom<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\n/**\n * Creates an RxJS Observable from an object that implements `Symbol.observable`.\n * @param obj An object that properly implements `Symbol.observable`.\n */\nexport declare function fromInteropObservable<T>(obj: any): Observable<T>;\n/**\n * Synchronously emits the values of an array like and completes.\n * This is exported because there are creation functions and operators that need to\n * make direct use of the same logic, and there's no reason to make them run through\n * `from` conditionals because we *know* they're dealing with an array.\n * @param array The array to emit values from\n */\nexport declare function fromArrayLike<T>(array: ArrayLike<T>): Observable<T>;\nexport declare function fromPromise<T>(promise: PromiseLike<T>): Observable<T>;\nexport declare function fromIterable<T>(iterable: Iterable<T>): Observable<T>;\nexport declare function fromAsyncIterable<T>(asyncIterable: AsyncIterable<T>): Observable<T>;\nexport declare function fromReadableStreamLike<T>(readableStream: ReadableStreamLike<T>): Observable<T>;\n//# sourceMappingURL=innerFrom.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/interval.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * Creates an Observable that emits sequential numbers every specified\n * interval of time, on a specified {@link SchedulerLike}.\n *\n * <span class=\"informal\">Emits incremental numbers periodically in time.</span>\n *\n * ![](interval.png)\n *\n * `interval` returns an Observable that emits an infinite sequence of\n * ascending integers, with a constant interval of time of your choosing\n * between those emissions. The first emission is not sent immediately, but\n * only after the first period has passed. By default, this operator uses the\n * `async` {@link SchedulerLike} to provide a notion of time, but you may pass any\n * {@link SchedulerLike} to it.\n *\n * ## Example\n *\n * Emits ascending numbers, one every second (1000ms) up to the number 3\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const numbers = interval(1000);\n *\n * const takeFourNumbers = numbers.pipe(take(4));\n *\n * takeFourNumbers.subscribe(x => console.log('Next: ', x));\n *\n * // Logs:\n * // Next: 0\n * // Next: 1\n * // Next: 2\n * // Next: 3\n * ```\n *\n * @see {@link timer}\n * @see {@link delay}\n *\n * @param period The interval size in milliseconds (by default) or the time unit determined\n * by the scheduler's clock.\n * @param scheduler The {@link SchedulerLike} to use for scheduling the emission of values,\n * and providing a notion of \"time\".\n * @return An Observable that emits a sequential number each time interval.\n */\nexport declare function interval(period?: number, scheduler?: SchedulerLike): Observable<number>;\n//# sourceMappingURL=interval.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/merge.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInputTuple, SchedulerLike } from '../types';\nexport declare function merge<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\nexport declare function merge<A extends readonly unknown[]>(...sourcesAndConcurrency: [...ObservableInputTuple<A>, number?]): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function merge<A extends readonly unknown[]>(...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike?]): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function merge<A extends readonly unknown[]>(...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number?, SchedulerLike?]): Observable<A[number]>;\n//# sourceMappingURL=merge.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/never.d.ts": "import { Observable } from '../Observable';\n/**\n * An Observable that emits no items to the Observer and never completes.\n *\n * ![](never.png)\n *\n * A simple Observable that emits neither values nor errors nor the completion\n * notification. It can be used for testing purposes or for composing with other\n * Observables. Please note that by never emitting a complete notification, this\n * Observable keeps the subscription from being disposed automatically.\n * Subscriptions need to be manually disposed.\n *\n * ##  Example\n *\n * Emit the number 7, then never emit anything else (not even complete)\n *\n * ```ts\n * import { NEVER, startWith } from 'rxjs';\n *\n * const info = () => console.log('Will not be called');\n *\n * const result = NEVER.pipe(startWith(7));\n * result.subscribe({\n *   next: x => console.log(x),\n *   error: info,\n *   complete: info\n * });\n * ```\n *\n * @see {@link Observable}\n * @see {@link EMPTY}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport declare const NEVER: Observable<never>;\n/**\n * @deprecated Replaced with the {@link NEVER} constant. Will be removed in v8.\n */\nexport declare function never(): Observable<never>;\n//# sourceMappingURL=never.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/of.d.ts": "import { SchedulerLike, ValueFromArray } from '../types';\nimport { Observable } from '../Observable';\nexport declare function of(value: null): Observable<null>;\nexport declare function of(value: undefined): Observable<undefined>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function of(scheduler: SchedulerLike): Observable<never>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function of<A extends readonly unknown[]>(...valuesAndScheduler: [...A, SchedulerLike]): Observable<ValueFromArray<A>>;\nexport declare function of(): Observable<never>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport declare function of<T>(): Observable<T>;\nexport declare function of<T>(value: T): Observable<T>;\nexport declare function of<A extends readonly unknown[]>(...values: A): Observable<ValueFromArray<A>>;\n//# sourceMappingURL=of.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInputTuple } from '../types';\nexport declare function onErrorResumeNext<A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\nexport declare function onErrorResumeNext<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\n//# sourceMappingURL=onErrorResumeNext.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/pairs.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * @deprecated Use `from(Object.entries(obj))` instead. Will be removed in v8.\n */\nexport declare function pairs<T>(arr: readonly T[], scheduler?: SchedulerLike): Observable<[string, T]>;\n/**\n * @deprecated Use `from(Object.entries(obj))` instead. Will be removed in v8.\n */\nexport declare function pairs<O extends Record<string, unknown>>(obj: O, scheduler?: SchedulerLike): Observable<[keyof O, O[keyof O]]>;\n/**\n * @deprecated Use `from(Object.entries(obj))` instead. Will be removed in v8.\n */\nexport declare function pairs<T>(iterable: Iterable<T>, scheduler?: SchedulerLike): Observable<[string, T]>;\n/**\n * @deprecated Use `from(Object.entries(obj))` instead. Will be removed in v8.\n */\nexport declare function pairs(n: number | bigint | boolean | ((...args: any[]) => any) | symbol, scheduler?: SchedulerLike): Observable<[never, never]>;\n//# sourceMappingURL=pairs.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/partition.d.ts": "import { ObservableInput } from '../types';\nimport { Observable } from '../Observable';\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function partition<T, U extends T, A>(source: ObservableInput<T>, predicate: (this: A, value: T, index: number) => value is U, thisArg: A): [Observable<U>, Observable<Exclude<T, U>>];\nexport declare function partition<T, U extends T>(source: ObservableInput<T>, predicate: (value: T, index: number) => value is U): [Observable<U>, Observable<Exclude<T, U>>];\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function partition<T, A>(source: ObservableInput<T>, predicate: (this: A, value: T, index: number) => boolean, thisArg: A): [Observable<T>, Observable<T>];\nexport declare function partition<T>(source: ObservableInput<T>, predicate: (value: T, index: number) => boolean): [Observable<T>, Observable<T>];\n//# sourceMappingURL=partition.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/race.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, ObservableInputTuple } from '../types';\nimport { Subscriber } from '../Subscriber';\nexport declare function race<T extends readonly unknown[]>(inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\nexport declare function race<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\n/**\n * An observable initializer function for both the static version and the\n * operator version of race.\n * @param sources The sources to race\n */\nexport declare function raceInit<T>(sources: ObservableInput<T>[]): (subscriber: Subscriber<T>) => void;\n//# sourceMappingURL=race.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/range.d.ts": "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nexport declare function range(start: number, count?: number): Observable<number>;\n/**\n * @deprecated The `scheduler` parameter will be removed in v8. Use `range(start, count).pipe(observeOn(scheduler))` instead. Details: Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport declare function range(start: number, count: number | undefined, scheduler: SchedulerLike): Observable<number>;\n//# sourceMappingURL=range.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/throwError.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * Creates an observable that will create an error instance and push it to the consumer as an error\n * immediately upon subscription.\n *\n * <span class=\"informal\">Just errors and does nothing else</span>\n *\n * ![](throw.png)\n *\n * This creation function is useful for creating an observable that will create an error and error every\n * time it is subscribed to. Generally, inside of most operators when you might want to return an errored\n * observable, this is unnecessary. In most cases, such as in the inner return of {@link concatMap},\n * {@link mergeMap}, {@link defer}, and many others, you can simply throw the error, and RxJS will pick\n * that up and notify the consumer of the error.\n *\n * ## Example\n *\n * Create a simple observable that will create a new error with a timestamp and log it\n * and the message every time you subscribe to it\n *\n * ```ts\n * import { throwError } from 'rxjs';\n *\n * let errorCount = 0;\n *\n * const errorWithTimestamp$ = throwError(() => {\n *   const error: any = new Error(`This is error number ${ ++errorCount }`);\n *   error.timestamp = Date.now();\n *   return error;\n * });\n *\n * errorWithTimestamp$.subscribe({\n *   error: err => console.log(err.timestamp, err.message)\n * });\n *\n * errorWithTimestamp$.subscribe({\n *   error: err => console.log(err.timestamp, err.message)\n * });\n *\n * // Logs the timestamp and a new error message for each subscription\n * ```\n *\n * ### Unnecessary usage\n *\n * Using `throwError` inside of an operator or creation function\n * with a callback, is usually not necessary\n *\n * ```ts\n * import { of, concatMap, timer, throwError } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n *   concatMap(ms => {\n *     if (ms < 10000) {\n *       return timer(ms);\n *     } else {\n *       // This is probably overkill.\n *       return throwError(() => new Error(`Invalid time ${ ms }`));\n *     }\n *   })\n * )\n * .subscribe({\n *   next: console.log,\n *   error: console.error\n * });\n * ```\n *\n * You can just throw the error instead\n *\n * ```ts\n * import { of, concatMap, timer } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n *   concatMap(ms => {\n *     if (ms < 10000) {\n *       return timer(ms);\n *     } else {\n *       // Cleaner and easier to read for most folks.\n *       throw new Error(`Invalid time ${ ms }`);\n *     }\n *   })\n * )\n * .subscribe({\n *   next: console.log,\n *   error: console.error\n * });\n * ```\n *\n * @param errorFactory A factory function that will create the error instance that is pushed.\n */\nexport declare function throwError(errorFactory: () => any): Observable<never>;\n/**\n * Returns an observable that will error with the specified error immediately upon subscription.\n *\n * @param error The error instance to emit\n * @deprecated Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is\n * because it will create the error at the moment it should be created and capture a more appropriate stack trace. If\n * for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);`.\n */\nexport declare function throwError(error: any): Observable<never>;\n/**\n * Notifies the consumer of an error using a given scheduler by scheduling it at delay `0` upon subscription.\n *\n * @param errorOrErrorFactory An error instance or error factory\n * @param scheduler A scheduler to use to schedule the error notification\n * @deprecated The `scheduler` parameter will be removed in v8.\n * Use `throwError` in combination with {@link observeOn}: `throwError(() => new Error('test')).pipe(observeOn(scheduler));`.\n * Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport declare function throwError(errorOrErrorFactory: any, scheduler: SchedulerLike): Observable<never>;\n//# sourceMappingURL=throwError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/timer.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * Creates an observable that will wait for a specified time period, or exact date, before\n * emitting the number 0.\n *\n * <span class=\"informal\">Used to emit a notification after a delay.</span>\n *\n * This observable is useful for creating delays in code, or racing against other values\n * for ad-hoc timeouts.\n *\n * The `delay` is specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Examples\n *\n * Wait 3 seconds and start another observable\n *\n * You might want to use `timer` to delay subscription to an\n * observable by a set amount of time. Here we use a timer with\n * {@link concatMapTo} or {@link concatMap} in order to wait\n * a few seconds and start a subscription to a source.\n *\n * ```ts\n * import { of, timer, concatMap } from 'rxjs';\n *\n * // This could be any observable\n * const source = of(1, 2, 3);\n *\n * timer(3000)\n *   .pipe(concatMap(() => source))\n *   .subscribe(console.log);\n * ```\n *\n * Take all values until the start of the next minute\n *\n * Using a `Date` as the trigger for the first emission, you can\n * do things like wait until midnight to fire an event, or in this case,\n * wait until a new minute starts (chosen so the example wouldn't take\n * too long to run) in order to stop watching a stream. Leveraging\n * {@link takeUntil}.\n *\n * ```ts\n * import { interval, takeUntil, timer } from 'rxjs';\n *\n * // Build a Date object that marks the\n * // next minute.\n * const currentDate = new Date();\n * const startOfNextMinute = new Date(\n *   currentDate.getFullYear(),\n *   currentDate.getMonth(),\n *   currentDate.getDate(),\n *   currentDate.getHours(),\n *   currentDate.getMinutes() + 1\n * );\n *\n * // This could be any observable stream\n * const source = interval(1000);\n *\n * const result = source.pipe(\n *   takeUntil(timer(startOfNextMinute))\n * );\n *\n * result.subscribe(console.log);\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `dueTime`.\n *\n * @param due If a `number`, the amount of time in milliseconds to wait before emitting.\n * If a `Date`, the exact time at which to emit.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport declare function timer(due: number | Date, scheduler?: SchedulerLike): Observable<0>;\n/**\n * Creates an observable that starts an interval after a specified delay, emitting incrementing numbers -- starting at `0` --\n * on each interval after words.\n *\n * The `delay` and `intervalDuration` are specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Example\n *\n * ### Start an interval that starts right away\n *\n * Since {@link interval} waits for the passed delay before starting,\n * sometimes that's not ideal. You may want to start an interval immediately.\n * `timer` works well for this. Here we have both side-by-side so you can\n * see them in comparison.\n *\n * Note that this observable will never complete.\n *\n * ```ts\n * import { timer, interval } from 'rxjs';\n *\n * timer(0, 1000).subscribe(n => console.log('timer', n));\n * interval(1000).subscribe(n => console.log('interval', n));\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `startDue`.\n * @param startDue If a `number`, is the time to wait before starting the interval.\n * If a `Date`, is the exact time at which to start the interval.\n * @param intervalDuration The delay between each value emitted in the interval. Passing a\n * negative number here will result in immediate completion after the first value is emitted, as though\n * no `intervalDuration` was passed at all.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport declare function timer(startDue: number | Date, intervalDuration: number, scheduler?: SchedulerLike): Observable<number>;\n/**\n * @deprecated The signature allowing `undefined` to be passed for `intervalDuration` will be removed in v8. Use the `timer(dueTime, scheduler?)` signature instead.\n */\nexport declare function timer(dueTime: number | Date, unused: undefined, scheduler?: SchedulerLike): Observable<0>;\n//# sourceMappingURL=timer.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/using.d.ts": "import { Observable } from '../Observable';\nimport { Unsubscribable, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Creates an Observable that uses a resource which will be disposed at the same time as the Observable.\n *\n * <span class=\"informal\">Use it when you catch yourself cleaning up after an Observable.</span>\n *\n * `using` is a factory operator, which accepts two functions. First function returns a disposable resource.\n * It can be an arbitrary object that implements `unsubscribe` method. Second function will be injected with\n * that object and should return an Observable. That Observable can use resource object during its execution.\n * Both functions passed to `using` will be called every time someone subscribes - neither an Observable nor\n * resource object will be shared in any way between subscriptions.\n *\n * When Observable returned by `using` is subscribed, Observable returned from the second function will be subscribed\n * as well. All its notifications (nexted values, completion and error events) will be emitted unchanged by the output\n * Observable. If however someone unsubscribes from the Observable or source Observable completes or errors by itself,\n * the `unsubscribe` method on resource object will be called. This can be used to do any necessary clean up, which\n * otherwise would have to be handled by hand. Note that complete or error notifications are not emitted when someone\n * cancels subscription to an Observable via `unsubscribe`, so `using` can be used as a hook, allowing you to make\n * sure that all resources which need to exist during an Observable execution will be disposed at appropriate time.\n *\n * @see {@link defer}\n *\n * @param resourceFactory A function which creates any resource object that implements `unsubscribe` method.\n * @param observableFactory A function which creates an Observable, that can use injected resource object.\n * @return An Observable that behaves the same as Observable returned by `observableFactory`, but\n * which - when completed, errored or unsubscribed - will also call `unsubscribe` on created resource object.\n */\nexport declare function using<T extends ObservableInput<any>>(resourceFactory: () => Unsubscribable | void, observableFactory: (resource: Unsubscribable | void) => T | void): Observable<ObservedValueOf<T>>;\n//# sourceMappingURL=using.d.ts.map",
    "node_modules/rxjs/dist/types/internal/observable/zip.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInputTuple } from '../types';\nexport declare function zip<A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport declare function zip<A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>], resultSelector: (...values: A) => R): Observable<R>;\nexport declare function zip<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport declare function zip<A extends readonly unknown[], R>(...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]): Observable<R>;\n//# sourceMappingURL=zip.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/OperatorSubscriber.d.ts": "import { Subscriber } from '../Subscriber';\n/**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional teardown logic here. This will only be called on teardown if the\n * subscriber itself is not already closed. This is called after all other teardown logic is executed.\n */\nexport declare function createOperatorSubscriber<T>(destination: Subscriber<any>, onNext?: (value: T) => void, onComplete?: () => void, onError?: (err: any) => void, onFinalize?: () => void): Subscriber<T>;\n/**\n * A generic helper for allowing operators to be created with a Subscriber and\n * use closures to capture necessary state from the operator function itself.\n */\nexport declare class OperatorSubscriber<T> extends Subscriber<T> {\n    private onFinalize?;\n    private shouldUnsubscribe?;\n    /**\n     * Creates an instance of an `OperatorSubscriber`.\n     * @param destination The downstream subscriber.\n     * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n     * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n     * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n     * and send to the `destination` error handler.\n     * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n     * this handler are sent to the `destination` error handler.\n     * @param onFinalize Additional finalization logic here. This will only be called on finalization if the\n     * subscriber itself is not already closed. This is called after all other finalization logic is executed.\n     * @param shouldUnsubscribe An optional check to see if an unsubscribe call should truly unsubscribe.\n     * NOTE: This currently **ONLY** exists to support the strange behavior of {@link groupBy}, where unsubscription\n     * to the resulting observable does not actually disconnect from the source if there are active subscriptions\n     * to any grouped observable. (DO NOT EXPOSE OR USE EXTERNALLY!!!)\n     */\n    constructor(destination: Subscriber<any>, onNext?: (value: T) => void, onComplete?: () => void, onError?: (err: any) => void, onFinalize?: (() => void) | undefined, shouldUnsubscribe?: (() => boolean) | undefined);\n    unsubscribe(): void;\n}\n//# sourceMappingURL=OperatorSubscriber.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/audit.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Ignores source values for a duration determined by another Observable, then\n * emits the most recent value from the source Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link auditTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](audit.svg)\n *\n * `audit` is similar to `throttle`, but emits the last value from the silenced\n * time window, instead of the first value. `audit` emits the most recent value\n * from the source Observable on the output Observable as soon as its internal\n * timer becomes disabled, and ignores source values while the timer is enabled.\n * Initially, the timer is disabled. As soon as the first source value arrives,\n * the timer is enabled by calling the `durationSelector` function with the\n * source value, which returns the \"duration\" Observable. When the duration\n * Observable emits a value, the timer is disabled, then the most\n * recent source value is emitted on the output Observable, and this process\n * repeats for the next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, audit, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(audit(ev => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttle}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the silencing\n * duration, returned as an Observable or a Promise.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport declare function audit<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=audit.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Ignores source values for `duration` milliseconds, then emits the most recent\n * value from the source Observable, then repeats this process.\n *\n * <span class=\"informal\">When it sees a source value, it ignores that plus\n * the next ones for `duration` milliseconds, and then it emits the most recent\n * value from the source.</span>\n *\n * ![](auditTime.png)\n *\n * `auditTime` is similar to `throttleTime`, but emits the last value from the\n * silenced time window, instead of the first value. `auditTime` emits the most\n * recent value from the source Observable on the output Observable as soon as\n * its internal timer becomes disabled, and ignores source values while the\n * timer is enabled. Initially, the timer is disabled. As soon as the first\n * source value arrives, the timer is enabled. After `duration` milliseconds (or\n * the time unit determined internally by the optional `scheduler`) has passed,\n * the timer is disabled, then the most recent source value is emitted on the\n * output Observable, and this process repeats for the next source value.\n * Optionally takes a {@link SchedulerLike} for managing timers.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, auditTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(auditTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param duration Time to wait before emitting the most recent source value,\n * measured in milliseconds or the time unit determined internally by the\n * optional `scheduler`.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers\n * that handle the rate-limiting behavior.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport declare function auditTime<T>(duration: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=auditTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/buffer.d.ts": "import { OperatorFunction, ObservableInput } from '../types';\n/**\n * Buffers the source Observable values until `closingNotifier` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when another Observable emits.</span>\n *\n * ![](buffer.png)\n *\n * Buffers the incoming Observable values until the given `closingNotifier`\n * `ObservableInput` (that internally gets converted to an Observable)\n * emits a value, at which point it emits the buffer on the output\n * Observable and starts a new buffer internally, awaiting the next time\n * `closingNotifier` emits.\n *\n * ## Example\n *\n * On every click, emit array of most recent interval events\n *\n * ```ts\n * import { fromEvent, interval, buffer } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const intervalEvents = interval(1000);\n * const buffered = intervalEvents.pipe(buffer(clicks));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link window}\n *\n * @param closingNotifier An `ObservableInput` that signals the\n * buffer to be emitted on the output Observable.\n * @return A function that returns an Observable of buffers, which are arrays\n * of values.\n */\nexport declare function buffer<T>(closingNotifier: ObservableInput<any>): OperatorFunction<T, T[]>;\n//# sourceMappingURL=buffer.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * ![](bufferCount.png)\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * ## Examples\n *\n * Emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * On every click, emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2, 1));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param bufferSize The maximum size of the buffer emitted.\n * @param startBufferEvery Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport declare function bufferCount<T>(bufferSize: number, startBufferEvery?: number | null): OperatorFunction<T, T[]>;\n//# sourceMappingURL=bufferCount.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts": "import { OperatorFunction, SchedulerLike } from '../types';\nexport declare function bufferTime<T>(bufferTimeSpan: number, scheduler?: SchedulerLike): OperatorFunction<T, T[]>;\nexport declare function bufferTime<T>(bufferTimeSpan: number, bufferCreationInterval: number | null | undefined, scheduler?: SchedulerLike): OperatorFunction<T, T[]>;\nexport declare function bufferTime<T>(bufferTimeSpan: number, bufferCreationInterval: number | null | undefined, maxBufferSize: number, scheduler?: SchedulerLike): OperatorFunction<T, T[]>;\n//# sourceMappingURL=bufferTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts": "import { OperatorFunction, ObservableInput } from '../types';\n/**\n * Buffers the source Observable values starting from an emission from\n * `openings` and ending when the output of `closingSelector` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array. Starts\n * collecting only when `opening` emits, and calls the `closingSelector`\n * function to get an Observable that tells when to close the buffer.</span>\n *\n * ![](bufferToggle.png)\n *\n * Buffers values from the source by opening the buffer via signals from an\n * Observable provided to `openings`, and closing and sending the buffers when\n * a Subscribable or Promise returned by the `closingSelector` function emits.\n *\n * ## Example\n *\n * Every other second, emit the click events from the next 500ms\n *\n * ```ts\n * import { fromEvent, interval, bufferToggle, EMPTY } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const openings = interval(1000);\n * const buffered = clicks.pipe(bufferToggle(openings, i =>\n *   i % 2 ? interval(500) : EMPTY\n * ));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferWhen}\n * @see {@link windowToggle}\n *\n * @param openings A Subscribable or Promise of notifications to start new\n * buffers.\n * @param closingSelector A function that takes\n * the value emitted by the `openings` observable and returns a Subscribable or Promise,\n * which, when it emits, signals that the associated buffer should be emitted\n * and cleared.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport declare function bufferToggle<T, O>(openings: ObservableInput<O>, closingSelector: (value: O) => ObservableInput<any>): OperatorFunction<T, T[]>;\n//# sourceMappingURL=bufferToggle.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts": "import { ObservableInput, OperatorFunction } from '../types';\n/**\n * Buffers the source Observable values, using a factory function of closing\n * Observables to determine when to close, emit, and reset the buffer.\n *\n * <span class=\"informal\">Collects values from the past as an array. When it\n * starts collecting values, it calls a function that returns an Observable that\n * tells when to close the buffer and restart collecting.</span>\n *\n * ![](bufferWhen.svg)\n *\n * Opens a buffer immediately, then closes the buffer when the observable\n * returned by calling `closingSelector` function emits a value. When it closes\n * the buffer, it immediately opens a new buffer and repeats the process.\n *\n * ## Example\n *\n * Emit an array of the last clicks every [1-5] random seconds\n *\n * ```ts\n * import { fromEvent, bufferWhen, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(\n *   bufferWhen(() => interval(1000 + Math.random() * 4000))\n * );\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link windowWhen}\n *\n * @param closingSelector A function that takes no arguments and returns an\n * Observable that signals buffer closure.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport declare function bufferWhen<T>(closingSelector: () => ObservableInput<any>): OperatorFunction<T, T[]>;\n//# sourceMappingURL=bufferWhen.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/catchError.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nexport declare function catchError<T, O extends ObservableInput<any>>(selector: (err: any, caught: Observable<T>) => O): OperatorFunction<T, T | ObservedValueOf<O>>;\n//# sourceMappingURL=catchError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts": "import { combineLatestAll } from './combineLatestAll';\n/**\n * @deprecated Renamed to {@link combineLatestAll}. Will be removed in v8.\n */\nexport declare const combineAll: typeof combineLatestAll;\n//# sourceMappingURL=combineAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts": "import { ObservableInputTuple, OperatorFunction } from '../types';\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport declare function combineLatest<T, A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>], project: (...values: [T, ...A]) => R): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport declare function combineLatest<T, A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport declare function combineLatest<T, A extends readonly unknown[], R>(...sourcesAndProject: [...ObservableInputTuple<A>, (...values: [T, ...A]) => R]): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport declare function combineLatest<T, A extends readonly unknown[], R>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n//# sourceMappingURL=combineLatest.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts": "import { OperatorFunction, ObservableInput } from '../types';\nexport declare function combineLatestAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;\nexport declare function combineLatestAll<T>(): OperatorFunction<any, T[]>;\nexport declare function combineLatestAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;\nexport declare function combineLatestAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;\n//# sourceMappingURL=combineLatestAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts": "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\n/**\n * Create an observable that combines the latest values from all passed observables and the source\n * into arrays and emits them.\n *\n * Returns an observable, that when subscribed to, will subscribe to the source observable and all\n * sources provided as arguments. Once all sources emit at least one value, all of the latest values\n * will be emitted as an array. After that, every time any source emits a value, all of the latest values\n * will be emitted as an array.\n *\n * This is a useful operator for eagerly calculating values based off of changed inputs.\n *\n * ## Example\n *\n * Simple concatenation of values from two inputs\n *\n * ```ts\n * import { fromEvent, combineLatestWith, map } from 'rxjs';\n *\n * // Setup: Add two inputs to the page\n * const input1 = document.createElement('input');\n * document.body.appendChild(input1);\n * const input2 = document.createElement('input');\n * document.body.appendChild(input2);\n *\n * // Get streams of changes\n * const input1Changes$ = fromEvent(input1, 'change');\n * const input2Changes$ = fromEvent(input2, 'change');\n *\n * // Combine the changes by adding them together\n * input1Changes$.pipe(\n *   combineLatestWith(input2Changes$),\n *   map(([e1, e2]) => (<HTMLInputElement>e1.target).value + ' - ' + (<HTMLInputElement>e2.target).value)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @param otherSources the other sources to subscribe to.\n * @return A function that returns an Observable that emits the latest\n * emissions from both source and provided Observables.\n */\nexport declare function combineLatestWith<T, A extends readonly unknown[]>(...otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n//# sourceMappingURL=combineLatestWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/concat.d.ts": "import { ObservableInputTuple, OperatorFunction, SchedulerLike } from '../types';\n/** @deprecated Replaced with {@link concatWith}. Will be removed in v8. */\nexport declare function concat<T, A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link concatWith}. Will be removed in v8. */\nexport declare function concat<T, A extends readonly unknown[]>(...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=concat.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Converts a higher-order Observable into a first-order Observable by\n * concatenating the inner Observables in order.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables by putting one\n * inner Observable after the other.</span>\n *\n * ![](concatAll.svg)\n *\n * Joins every Observable emitted by the source (a higher-order Observable), in\n * a serial fashion. It subscribes to each inner Observable only after the\n * previous inner Observable has completed, and merges all of their values into\n * the returned observable.\n *\n * __Warning:__ If the source Observable emits Observables quickly and\n * endlessly, and the inner Observables it emits generally complete slower than\n * the source emits, you can run into memory issues as the incoming Observables\n * collect in an unbounded buffer.\n *\n * Note: `concatAll` is equivalent to `mergeAll` with concurrency parameter set\n * to `1`.\n *\n * ## Example\n *\n * For each click event, tick every second from 0 to 3, with no concurrency\n *\n * ```ts\n * import { fromEvent, map, interval, take, concatAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n *   map(() => interval(1000).pipe(take(4)))\n * );\n * const firstOrder = higherOrder.pipe(concatAll());\n * firstOrder.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // (results are not concurrent)\n * // For every click on the \"document\" it will emit values 0 to 3 spaced\n * // on a 1000ms interval\n * // one click = 1000ms-> 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concat}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link exhaustAll}\n * @see {@link mergeAll}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @return A function that returns an Observable emitting values from all the\n * inner Observables concatenated.\n */\nexport declare function concatAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>>;\n//# sourceMappingURL=concatAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nexport declare function concatMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function concatMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: undefined): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function concatMap<T, R, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;\n//# sourceMappingURL=concatMap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\n/** @deprecated Will be removed in v9. Use {@link concatMap} instead: `concatMap(() => result)` */\nexport declare function concatMapTo<O extends ObservableInput<unknown>>(observable: O): OperatorFunction<unknown, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function concatMapTo<O extends ObservableInput<unknown>>(observable: O, resultSelector: undefined): OperatorFunction<unknown, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function concatMapTo<T, R, O extends ObservableInput<unknown>>(observable: O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;\n//# sourceMappingURL=concatMapTo.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts": "import { ObservableInputTuple, OperatorFunction } from '../types';\n/**\n * Emits all of the values from the source observable, then, once it completes, subscribes\n * to each observable source provided, one at a time, emitting all of their values, and not subscribing\n * to the next one until it completes.\n *\n * `concat(a$, b$, c$)` is the same as `a$.pipe(concatWith(b$, c$))`.\n *\n * ## Example\n *\n * Listen for one mouse click, then listen for all mouse moves.\n *\n * ```ts\n * import { fromEvent, map, take, concatWith } from 'rxjs';\n *\n * const clicks$ = fromEvent(document, 'click');\n * const moves$ = fromEvent(document, 'mousemove');\n *\n * clicks$.pipe(\n *   map(() => 'click'),\n *   take(1),\n *   concatWith(\n *     moves$.pipe(\n *       map(() => 'move')\n *     )\n *   )\n * )\n * .subscribe(x => console.log(x));\n *\n * // 'click'\n * // 'move'\n * // 'move'\n * // 'move'\n * // ...\n * ```\n *\n * @param otherSources Other observable sources to subscribe to, in sequence, after the original source is complete.\n * @return A function that returns an Observable that concatenates\n * subscriptions to the source and provided Observables subscribing to the next\n * only once the current subscription completes.\n */\nexport declare function concatWith<T, A extends readonly unknown[]>(...otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=concatWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/connect.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf, SubjectLike } from '../types';\nimport { Observable } from '../Observable';\n/**\n * An object used to configure {@link connect} operator.\n */\nexport interface ConnectConfig<T> {\n    /**\n     * A factory function used to create the Subject through which the source\n     * is multicast. By default, this creates a {@link Subject}.\n     */\n    connector: () => SubjectLike<T>;\n}\n/**\n * Creates an observable by multicasting the source within a function that\n * allows the developer to define the usage of the multicast prior to connection.\n *\n * This is particularly useful if the observable source you wish to multicast could\n * be synchronous or asynchronous. This sets it apart from {@link share}, which, in the\n * case of totally synchronous sources will fail to share a single subscription with\n * multiple consumers, as by the time the subscription to the result of {@link share}\n * has returned, if the source is synchronous its internal reference count will jump from\n * 0 to 1 back to 0 and reset.\n *\n * To use `connect`, you provide a `selector` function that will give you\n * a multicast observable that is not yet connected. You then use that multicast observable\n * to create a resulting observable that, when subscribed, will set up your multicast. This is\n * generally, but not always, accomplished with {@link merge}.\n *\n * Note that using a {@link takeUntil} inside of `connect`'s `selector` _might_ mean you were looking\n * to use the {@link takeWhile} operator instead.\n *\n * When you subscribe to the result of `connect`, the `selector` function will be called. After\n * the `selector` function returns, the observable it returns will be subscribed to, _then_ the\n * multicast will be connected to the source.\n *\n * ## Example\n *\n * Sharing a totally synchronous observable\n *\n * ```ts\n * import { of, tap, connect, merge, map, filter } from 'rxjs';\n *\n * const source$ = of(1, 2, 3, 4, 5).pipe(\n *   tap({\n *     subscribe: () => console.log('subscription started'),\n *     next: n => console.log(`source emitted ${ n }`)\n *   })\n * );\n *\n * source$.pipe(\n *   // Notice in here we're merging 3 subscriptions to `shared$`.\n *   connect(shared$ => merge(\n *     shared$.pipe(map(n => `all ${ n }`)),\n *     shared$.pipe(filter(n => n % 2 === 0), map(n => `even ${ n }`)),\n *     shared$.pipe(filter(n => n % 2 === 1), map(n => `odd ${ n }`))\n *   ))\n * )\n * .subscribe(console.log);\n *\n * // Expected output: (notice only one subscription)\n * 'subscription started'\n * 'source emitted 1'\n * 'all 1'\n * 'odd 1'\n * 'source emitted 2'\n * 'all 2'\n * 'even 2'\n * 'source emitted 3'\n * 'all 3'\n * 'odd 3'\n * 'source emitted 4'\n * 'all 4'\n * 'even 4'\n * 'source emitted 5'\n * 'all 5'\n * 'odd 5'\n * ```\n *\n * @param selector A function used to set up the multicast. Gives you a multicast observable\n * that is not yet connected. With that, you're expected to create and return\n * and Observable, that when subscribed to, will utilize the multicast observable.\n * After this function is executed -- and its return value subscribed to -- the\n * operator will subscribe to the source, and the connection will be made.\n * @param config The configuration object for `connect`.\n */\nexport declare function connect<T, O extends ObservableInput<unknown>>(selector: (shared: Observable<T>) => O, config?: ConnectConfig<T>): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=connect.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/count.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Counts the number of emissions on the source and emits that number when the\n * source completes.\n *\n * <span class=\"informal\">Tells how many values were emitted, when the source\n * completes.</span>\n *\n * ![](count.png)\n *\n * `count` transforms an Observable that emits values into an Observable that\n * emits a single value that represents the number of values emitted by the\n * source Observable. If the source Observable terminates with an error, `count`\n * will pass this error notification along without emitting a value first. If\n * the source Observable does not terminate at all, `count` will neither emit\n * a value nor terminate. This operator takes an optional `predicate` function\n * as argument, in which case the output emission will represent the number of\n * source values that matched `true` with the `predicate`.\n *\n * ## Examples\n *\n * Counts how many seconds have passed before the first click happened\n *\n * ```ts\n * import { interval, fromEvent, takeUntil, count } from 'rxjs';\n *\n * const seconds = interval(1000);\n * const clicks = fromEvent(document, 'click');\n * const secondsBeforeClick = seconds.pipe(takeUntil(clicks));\n * const result = secondsBeforeClick.pipe(count());\n * result.subscribe(x => console.log(x));\n * ```\n *\n * Counts how many odd numbers are there between 1 and 7\n *\n * ```ts\n * import { range, count } from 'rxjs';\n *\n * const numbers = range(1, 7);\n * const result = numbers.pipe(count(i => i % 2 === 1));\n * result.subscribe(x => console.log(x));\n * // Results in:\n * // 4\n * ```\n *\n * @see {@link max}\n * @see {@link min}\n * @see {@link reduce}\n *\n * @param predicate A function that is used to analyze the value and the index and\n * determine whether or not to increment the count. Return `true` to increment the count,\n * and return `false` to keep the count the same.\n * If the predicate is not provided, every value will be counted.\n * @return A function that returns an Observable that emits one number that\n * represents the count of emissions.\n */\nexport declare function count<T>(predicate?: (value: T, index: number) => boolean): OperatorFunction<T, number>;\n//# sourceMappingURL=count.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/debounce.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Emits a notification from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * ![](debounce.svg)\n *\n * `debounce` delays notifications emitted by the source Observable, but drops previous\n * pending delayed emissions if a new notification arrives on the source Observable.\n * This operator keeps track of the most recent notification from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The notification is emitted only when the duration\n * Observable emits a next notification, and if no other notification was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * notification appears before the duration Observable emits, the previous notification will\n * not be emitted and a new duration is scheduled from `durationSelector` is scheduled.\n * If the completing event happens during the scheduled duration the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during the scheduled duration or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, scan, debounce, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(\n *   scan(i => ++i, 1),\n *   debounce(i => interval(200 * i))\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n */\nexport declare function debounce<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=debounce.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Emits a notification from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent notification from each burst of emissions.</span>\n *\n * ![](debounceTime.png)\n *\n * `debounceTime` delays notifications emitted by the source Observable, but drops\n * previous pending delayed emissions if a new notification arrives on the source\n * Observable. This operator keeps track of the most recent notification from the\n * source Observable, and emits that only when `dueTime` has passed\n * without any other notification appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous notification will be dropped\n * and will not be emitted and a new `dueTime` is scheduled.\n * If the completing event happens during `dueTime` the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during `dueTime` or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * notification to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link SchedulerLike} for\n * managing timers.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, debounceTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(debounceTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param dueTime The timeout duration in milliseconds (or the time unit determined\n * internally by the optional `scheduler`) for the window of time required to wait\n * for emission silence before emitting the most recent source value.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers that\n * handle the timeout for each value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified `dueTime`, and may drop some values\n * if they occur too frequently.\n */\nexport declare function debounceTime<T>(dueTime: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=debounceTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Emits a given value if the source Observable completes without emitting any\n * `next` value, otherwise mirrors the source Observable.\n *\n * <span class=\"informal\">If the source Observable turns out to be empty, then\n * this operator will emit a default value.</span>\n *\n * ![](defaultIfEmpty.png)\n *\n * `defaultIfEmpty` emits the values emitted by the source Observable or a\n * specified default value if the source Observable is empty (completes without\n * having emitted any `next` value).\n *\n * ## Example\n *\n * If no clicks happen in 5 seconds, then emit 'no clicks'\n *\n * ```ts\n * import { fromEvent, takeUntil, interval, defaultIfEmpty } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const clicksBeforeFive = clicks.pipe(takeUntil(interval(5000)));\n * const result = clicksBeforeFive.pipe(defaultIfEmpty('no clicks'));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link empty}\n * @see {@link last}\n *\n * @param defaultValue The default value used if the source\n * Observable is empty.\n * @return A function that returns an Observable that emits either the\n * specified `defaultValue` if the source Observable emits no items, or the\n * values emitted by the source Observable.\n */\nexport declare function defaultIfEmpty<T, R>(defaultValue: R): OperatorFunction<T, T | R>;\n//# sourceMappingURL=defaultIfEmpty.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/delay.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Delays the emission of items from the source Observable by a given timeout or\n * until a given Date.\n *\n * <span class=\"informal\">Time shifts each item by some specified amount of\n * milliseconds.</span>\n *\n * ![](delay.svg)\n *\n * If the delay argument is a Number, this operator time shifts the source\n * Observable by that amount of time expressed in milliseconds. The relative\n * time intervals between the values are preserved.\n *\n * If the delay argument is a Date, this operator time shifts the start of the\n * Observable execution until the given date occurs.\n *\n * ## Examples\n *\n * Delay each click by one second\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(delay(1000)); // each click emitted after 1 second\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * Delay all clicks until a future date happens\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const date = new Date('March 15, 2050 12:00:00'); // in the future\n * const delayedClicks = clicks.pipe(delay(date)); // click emitted only after that date\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delayWhen}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param due The delay duration in milliseconds (a `number`) or a `Date` until\n * which the emission of the source items is delayed.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers\n * that handle the time-shift for each item.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified timeout or Date.\n */\nexport declare function delay<T>(due: number | Date, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=delay.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts": "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/** @deprecated The `subscriptionDelay` parameter will be removed in v8. */\nexport declare function delayWhen<T>(delayDurationSelector: (value: T, index: number) => ObservableInput<any>, subscriptionDelay: Observable<any>): MonoTypeOperatorFunction<T>;\nexport declare function delayWhen<T>(delayDurationSelector: (value: T, index: number) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=delayWhen.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts": "import { OperatorFunction, ObservableNotification, ValueFromNotification } from '../types';\n/**\n * Converts an Observable of {@link ObservableNotification} objects into the emissions\n * that they represent.\n *\n * <span class=\"informal\">Unwraps {@link ObservableNotification} objects as actual `next`,\n * `error` and `complete` emissions. The opposite of {@link materialize}.</span>\n *\n * ![](dematerialize.png)\n *\n * `dematerialize` is assumed to operate an Observable that only emits\n * {@link ObservableNotification} objects as `next` emissions, and does not emit any\n * `error`. Such Observable is the output of a `materialize` operation. Those\n * notifications are then unwrapped using the metadata they contain, and emitted\n * as `next`, `error`, and `complete` on the output Observable.\n *\n * Use this operator in conjunction with {@link materialize}.\n *\n * ## Example\n *\n * Convert an Observable of Notifications to an actual Observable\n *\n * ```ts\n * import { NextNotification, ErrorNotification, of, dematerialize } from 'rxjs';\n *\n * const notifA: NextNotification<string> = { kind: 'N', value: 'A' };\n * const notifB: NextNotification<string> = { kind: 'N', value: 'B' };\n * const notifE: ErrorNotification = { kind: 'E', error: new TypeError('x.toUpperCase is not a function') };\n *\n * const materialized = of(notifA, notifB, notifE);\n *\n * const upperCase = materialized.pipe(dematerialize());\n * upperCase.subscribe({\n *   next: x => console.log(x),\n *   error: e => console.error(e)\n * });\n *\n * // Results in:\n * // A\n * // B\n * // TypeError: x.toUpperCase is not a function\n * ```\n *\n * @see {@link materialize}\n *\n * @return A function that returns an Observable that emits items and\n * notifications embedded in Notification objects emitted by the source\n * Observable.\n */\nexport declare function dematerialize<N extends ObservableNotification<any>>(): OperatorFunction<N, ValueFromNotification<N>>;\n//# sourceMappingURL=dematerialize.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/distinct.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from previous items.\n *\n * If a `keySelector` function is provided, then it will project each value from the source observable into a new value that it will\n * check for equality with previously projected values. If the `keySelector` function is not provided, it will use each value from the\n * source observable directly with an equality check against previous values.\n *\n * In JavaScript runtimes that support `Set`, this operator will use a `Set` to improve performance of the distinct value checking.\n *\n * In other runtimes, this operator will use a minimal implementation of `Set` that relies on an `Array` and `indexOf` under the\n * hood, so performance will degrade as more values are checked for distinction. Even in newer browsers, a long-running `distinct`\n * use might result in memory leaks. To help alleviate this in some scenarios, an optional `flushes` parameter is also provided so\n * that the internal `Set` can be \"flushed\", basically clearing it of values.\n *\n * ## Examples\n *\n * A simple example with numbers\n *\n * ```ts\n * import { of, distinct } from 'rxjs';\n *\n * of(1, 1, 2, 2, 2, 1, 2, 3, 4, 3, 2, 1)\n *   .pipe(distinct())\n *   .subscribe(x => console.log(x));\n *\n * // Outputs\n * // 1\n * // 2\n * // 3\n * // 4\n * ```\n *\n * An example using the `keySelector` function\n *\n * ```ts\n * import { of, distinct } from 'rxjs';\n *\n * of(\n *   { age: 4, name: 'Foo'},\n *   { age: 7, name: 'Bar'},\n *   { age: 5, name: 'Foo'}\n * )\n * .pipe(distinct(({ name }) => name))\n * .subscribe(x => console.log(x));\n *\n * // Outputs\n * // { age: 4, name: 'Foo' }\n * // { age: 7, name: 'Bar' }\n * ```\n * @see {@link distinctUntilChanged}\n * @see {@link distinctUntilKeyChanged}\n *\n * @param keySelector Optional `function` to select which value you want to check as distinct.\n * @param flushes Optional `ObservableInput` for flushing the internal HashSet of the operator.\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values.\n */\nexport declare function distinct<T, K>(keySelector?: (value: T) => K, flushes?: ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=distinct.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts": "import { MonoTypeOperatorFunction } from '../types';\nexport declare function distinctUntilChanged<T>(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction<T>;\nexport declare function distinctUntilChanged<T, K>(comparator: (previous: K, current: K) => boolean, keySelector: (value: T) => K): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=distinctUntilChanged.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts": "import { MonoTypeOperatorFunction } from '../types';\nexport declare function distinctUntilKeyChanged<T>(key: keyof T): MonoTypeOperatorFunction<T>;\nexport declare function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=distinctUntilKeyChanged.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Emits the single value at the specified `index` in a sequence of emissions\n * from the source Observable.\n *\n * <span class=\"informal\">Emits only the i-th value, then completes.</span>\n *\n * ![](elementAt.png)\n *\n * `elementAt` returns an Observable that emits the item at the specified\n * `index` in the source Observable, or a default value if that `index` is out\n * of range and the `default` argument is provided. If the `default` argument is\n * not given and the `index` is out of range, the output Observable will emit an\n * `ArgumentOutOfRangeError` error.\n *\n * ## Example\n *\n * Emit only the third click event\n *\n * ```ts\n * import { fromEvent, elementAt } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(elementAt(2));\n * result.subscribe(x => console.log(x));\n *\n * // Results in:\n * // click 1 = nothing\n * // click 2 = nothing\n * // click 3 = MouseEvent object logged to console\n * ```\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link skip}\n * @see {@link single}\n * @see {@link take}\n *\n * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an\n * `ArgumentOutOfRangeError` to the Observer's `error` callback if `i < 0` or the\n * Observable has completed before emitting the i-th `next` notification.\n *\n * @param index Is the number `i` for the i-th source emission that has happened\n * since the subscription, starting from the number `0`.\n * @param defaultValue The default value returned for missing indices.\n * @return A function that returns an Observable that emits a single item, if\n * it is found. Otherwise, it will emit the default value if given. If not, it\n * emits an error.\n */\nexport declare function elementAt<T, D = T>(index: number, defaultValue?: D): OperatorFunction<T, T | D>;\n//# sourceMappingURL=elementAt.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/endWith.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike, OperatorFunction, ValueFromArray } from '../types';\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function endWith<T>(scheduler: SchedulerLike): MonoTypeOperatorFunction<T>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function endWith<T, A extends unknown[] = T[]>(...valuesAndScheduler: [...A, SchedulerLike]): OperatorFunction<T, T | ValueFromArray<A>>;\nexport declare function endWith<T, A extends unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n//# sourceMappingURL=endWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/every.d.ts": "import { Observable } from '../Observable';\nimport { Falsy, OperatorFunction } from '../types';\nexport declare function every<T>(predicate: BooleanConstructor): OperatorFunction<T, Exclude<T, Falsy> extends never ? false : boolean>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function every<T>(predicate: BooleanConstructor, thisArg: any): OperatorFunction<T, Exclude<T, Falsy> extends never ? false : boolean>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function every<T, A>(predicate: (this: A, value: T, index: number, source: Observable<T>) => boolean, thisArg: A): OperatorFunction<T, boolean>;\nexport declare function every<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean): OperatorFunction<T, boolean>;\n//# sourceMappingURL=every.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts": "import { exhaustAll } from './exhaustAll';\n/**\n * @deprecated Renamed to {@link exhaustAll}. Will be removed in v8.\n */\nexport declare const exhaust: typeof exhaustAll;\n//# sourceMappingURL=exhaust.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Converts a higher-order Observable into a first-order Observable by dropping\n * inner Observables while the previous inner Observable has not yet completed.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables by dropping the\n * next inner Observables while the current inner is still executing.</span>\n *\n * ![](exhaustAll.svg)\n *\n * `exhaustAll` subscribes to an Observable that emits Observables, also known as a\n * higher-order Observable. Each time it observes one of these emitted inner\n * Observables, the output Observable begins emitting the items emitted by that\n * inner Observable. So far, it behaves like {@link mergeAll}. However,\n * `exhaustAll` ignores every new inner Observable if the previous Observable has\n * not yet completed. Once that one completes, it will accept and flatten the\n * next inner Observable and repeat this process.\n *\n * ## Example\n *\n * Run a finite timer for each click, only if there is no currently active timer\n *\n * ```ts\n * import { fromEvent, map, interval, take, exhaustAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n *   map(() => interval(1000).pipe(take(5)))\n * );\n * const result = higherOrder.pipe(exhaustAll());\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link mergeAll}\n * @see {@link exhaustMap}\n * @see {@link zipAll}\n *\n * @return A function that returns an Observable that takes a source of\n * Observables and propagates the first Observable exclusively until it\n * completes before subscribing to the next.\n */\nexport declare function exhaustAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>>;\n//# sourceMappingURL=exhaustAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nexport declare function exhaustMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function exhaustMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: undefined): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function exhaustMap<T, I, R>(project: (value: T, index: number) => ObservableInput<I>, resultSelector: (outerValue: T, innerValue: I, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;\n//# sourceMappingURL=exhaustMap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/expand.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf, SchedulerLike } from '../types';\nexport declare function expand<T, O extends ObservableInput<unknown>>(project: (value: T, index: number) => O, concurrent?: number, scheduler?: SchedulerLike): OperatorFunction<T, ObservedValueOf<O>>;\n/**\n * @deprecated The `scheduler` parameter will be removed in v8. If you need to schedule the inner subscription,\n * use `subscribeOn` within the projection function: `expand((value) => fn(value).pipe(subscribeOn(scheduler)))`.\n * Details: Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport declare function expand<T, O extends ObservableInput<unknown>>(project: (value: T, index: number) => O, concurrent: number | undefined, scheduler: SchedulerLike): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=expand.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/filter.d.ts": "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function filter<T, S extends T, A>(predicate: (this: A, value: T, index: number) => value is S, thisArg: A): OperatorFunction<T, S>;\nexport declare function filter<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport declare function filter<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function filter<T, A>(predicate: (this: A, value: T, index: number) => boolean, thisArg: A): MonoTypeOperatorFunction<T>;\nexport declare function filter<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=filter.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/finalize.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Returns an Observable that mirrors the source Observable, but will call a specified function when\n * the source terminates on complete or error.\n * The specified function will also be called when the subscriber explicitly unsubscribes.\n *\n * ## Examples\n *\n * Execute callback function when the observable completes\n *\n * ```ts\n * import { interval, take, finalize } from 'rxjs';\n *\n * // emit value in sequence every 1 second\n * const source = interval(1000);\n * const example = source.pipe(\n *   take(5), //take only the first 5 values\n *   finalize(() => console.log('Sequence complete')) // Execute when the observable completes\n * );\n * const subscribe = example.subscribe(val => console.log(val));\n *\n * // results:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * // 'Sequence complete'\n * ```\n *\n * Execute callback function when the subscriber explicitly unsubscribes\n *\n * ```ts\n * import { interval, finalize, tap, noop, timer } from 'rxjs';\n *\n * const source = interval(100).pipe(\n *   finalize(() => console.log('[finalize] Called')),\n *   tap({\n *     next: () => console.log('[next] Called'),\n *     error: () => console.log('[error] Not called'),\n *     complete: () => console.log('[tap complete] Not called')\n *   })\n * );\n *\n * const sub = source.subscribe({\n *   next: x => console.log(x),\n *   error: noop,\n *   complete: () => console.log('[complete] Not called')\n * });\n *\n * timer(150).subscribe(() => sub.unsubscribe());\n *\n * // results:\n * // '[next] Called'\n * // 0\n * // '[finalize] Called'\n * ```\n *\n * @param callback Function to be called when source terminates.\n * @return A function that returns an Observable that mirrors the source, but\n * will call the specified function on termination.\n */\nexport declare function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=finalize.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/find.d.ts": "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction, TruthyTypesOf } from '../types';\nexport declare function find<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function find<T, S extends T, A>(predicate: (this: A, value: T, index: number, source: Observable<T>) => value is S, thisArg: A): OperatorFunction<T, S | undefined>;\nexport declare function find<T, S extends T>(predicate: (value: T, index: number, source: Observable<T>) => value is S): OperatorFunction<T, S | undefined>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function find<T, A>(predicate: (this: A, value: T, index: number, source: Observable<T>) => boolean, thisArg: A): OperatorFunction<T, T | undefined>;\nexport declare function find<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean): OperatorFunction<T, T | undefined>;\nexport declare function createFind<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg: any, emit: 'value' | 'index'): (source: Observable<T>, subscriber: Subscriber<any>) => void;\n//# sourceMappingURL=find.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts": "import { Observable } from '../Observable';\nimport { Falsy, OperatorFunction } from '../types';\nexport declare function findIndex<T>(predicate: BooleanConstructor): OperatorFunction<T, T extends Falsy ? -1 : number>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function findIndex<T>(predicate: BooleanConstructor, thisArg: any): OperatorFunction<T, T extends Falsy ? -1 : number>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function findIndex<T, A>(predicate: (this: A, value: T, index: number, source: Observable<T>) => boolean, thisArg: A): OperatorFunction<T, number>;\nexport declare function findIndex<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean): OperatorFunction<T, number>;\n//# sourceMappingURL=findIndex.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/first.d.ts": "import { Observable } from '../Observable';\nimport { OperatorFunction, TruthyTypesOf } from '../types';\nexport declare function first<T, D = T>(predicate?: null, defaultValue?: D): OperatorFunction<T, T | D>;\nexport declare function first<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport declare function first<T, D>(predicate: BooleanConstructor, defaultValue: D): OperatorFunction<T, TruthyTypesOf<T> | D>;\nexport declare function first<T, S extends T>(predicate: (value: T, index: number, source: Observable<T>) => value is S, defaultValue?: S): OperatorFunction<T, S>;\nexport declare function first<T, S extends T, D>(predicate: (value: T, index: number, source: Observable<T>) => value is S, defaultValue: D): OperatorFunction<T, S | D>;\nexport declare function first<T, D = T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, defaultValue?: D): OperatorFunction<T, T | D>;\n//# sourceMappingURL=first.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts": "import { mergeMap } from './mergeMap';\n/**\n * @deprecated Renamed to {@link mergeMap}. Will be removed in v8.\n */\nexport declare const flatMap: typeof mergeMap;\n//# sourceMappingURL=flatMap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts": "import { Observable } from '../Observable';\nimport { Subject } from '../Subject';\nimport { ObservableInput, OperatorFunction, SubjectLike } from '../types';\nexport interface BasicGroupByOptions<K, T> {\n    element?: undefined;\n    duration?: (grouped: GroupedObservable<K, T>) => ObservableInput<any>;\n    connector?: () => SubjectLike<T>;\n}\nexport interface GroupByOptionsWithElement<K, E, T> {\n    element: (value: T) => E;\n    duration?: (grouped: GroupedObservable<K, E>) => ObservableInput<any>;\n    connector?: () => SubjectLike<E>;\n}\nexport declare function groupBy<T, K>(key: (value: T) => K, options: BasicGroupByOptions<K, T>): OperatorFunction<T, GroupedObservable<K, T>>;\nexport declare function groupBy<T, K, E>(key: (value: T) => K, options: GroupByOptionsWithElement<K, E, T>): OperatorFunction<T, GroupedObservable<K, E>>;\nexport declare function groupBy<T, K extends T>(key: (value: T) => value is K): OperatorFunction<T, GroupedObservable<true, K> | GroupedObservable<false, Exclude<T, K>>>;\nexport declare function groupBy<T, K>(key: (value: T) => K): OperatorFunction<T, GroupedObservable<K, T>>;\n/**\n * @deprecated use the options parameter instead.\n */\nexport declare function groupBy<T, K>(key: (value: T) => K, element: void, duration: (grouped: GroupedObservable<K, T>) => Observable<any>): OperatorFunction<T, GroupedObservable<K, T>>;\n/**\n * @deprecated use the options parameter instead.\n */\nexport declare function groupBy<T, K, R>(key: (value: T) => K, element?: (value: T) => R, duration?: (grouped: GroupedObservable<K, R>) => Observable<any>): OperatorFunction<T, GroupedObservable<K, R>>;\n/**\n * Groups the items emitted by an Observable according to a specified criterion,\n * and emits these grouped items as `GroupedObservables`, one\n * {@link GroupedObservable} per group.\n *\n * ![](groupBy.png)\n *\n * When the Observable emits an item, a key is computed for this item with the key function.\n *\n * If a {@link GroupedObservable} for this key exists, this {@link GroupedObservable} emits. Otherwise, a new\n * {@link GroupedObservable} for this key is created and emits.\n *\n * A {@link GroupedObservable} represents values belonging to the same group represented by a common key. The common\n * key is available as the `key` field of a {@link GroupedObservable} instance.\n *\n * The elements emitted by {@link GroupedObservable}s are by default the items emitted by the Observable, or elements\n * returned by the element function.\n *\n * ## Examples\n *\n * Group objects by `id` and return as array\n *\n * ```ts\n * import { of, groupBy, mergeMap, reduce } from 'rxjs';\n *\n * of(\n *   { id: 1, name: 'JavaScript' },\n *   { id: 2, name: 'Parcel' },\n *   { id: 2, name: 'webpack' },\n *   { id: 1, name: 'TypeScript' },\n *   { id: 3, name: 'TSLint' }\n * ).pipe(\n *   groupBy(p => p.id),\n *   mergeMap(group$ => group$.pipe(reduce((acc, cur) => [...acc, cur], [])))\n * )\n * .subscribe(p => console.log(p));\n *\n * // displays:\n * // [{ id: 1, name: 'JavaScript' }, { id: 1, name: 'TypeScript'}]\n * // [{ id: 2, name: 'Parcel' }, { id: 2, name: 'webpack'}]\n * // [{ id: 3, name: 'TSLint' }]\n * ```\n *\n * Pivot data on the `id` field\n *\n * ```ts\n * import { of, groupBy, mergeMap, reduce, map } from 'rxjs';\n *\n * of(\n *   { id: 1, name: 'JavaScript' },\n *   { id: 2, name: 'Parcel' },\n *   { id: 2, name: 'webpack' },\n *   { id: 1, name: 'TypeScript' },\n *   { id: 3, name: 'TSLint' }\n * ).pipe(\n *   groupBy(p => p.id, { element: p => p.name }),\n *   mergeMap(group$ => group$.pipe(reduce((acc, cur) => [...acc, cur], [`${ group$.key }`]))),\n *   map(arr => ({ id: parseInt(arr[0], 10), values: arr.slice(1) }))\n * )\n * .subscribe(p => console.log(p));\n *\n * // displays:\n * // { id: 1, values: [ 'JavaScript', 'TypeScript' ] }\n * // { id: 2, values: [ 'Parcel', 'webpack' ] }\n * // { id: 3, values: [ 'TSLint' ] }\n * ```\n *\n * @param key A function that extracts the key\n * for each item.\n * @param element A function that extracts the\n * return element for each item.\n * @param duration\n * A function that returns an Observable to determine how long each group should\n * exist.\n * @param connector Factory function to create an\n * intermediate Subject through which grouped elements are emitted.\n * @return A function that returns an Observable that emits GroupedObservables,\n * each of which corresponds to a unique key value and each of which emits\n * those items from the source Observable that share that key value.\n *\n * @deprecated Use the options parameter instead.\n */\nexport declare function groupBy<T, K, R>(key: (value: T) => K, element?: (value: T) => R, duration?: (grouped: GroupedObservable<K, R>) => Observable<any>, connector?: () => Subject<R>): OperatorFunction<T, GroupedObservable<K, R>>;\n/**\n * An observable of values that is the emitted by the result of a {@link groupBy} operator,\n * contains a `key` property for the grouping.\n */\nexport interface GroupedObservable<K, T> extends Observable<T> {\n    /**\n     * The key value for the grouped notifications.\n     */\n    readonly key: K;\n}\n//# sourceMappingURL=groupBy.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`.\n *\n * ![](ignoreElements.png)\n *\n * The `ignoreElements` operator suppresses all items emitted by the source Observable,\n * but allows its termination notification (either `error` or `complete`) to pass through unchanged.\n *\n * If you do not care about the items being emitted by an Observable, but you do want to be notified\n * when it completes or when it terminates with an error, you can apply the `ignoreElements` operator\n * to the Observable, which will ensure that it will never call its observers’ `next` handlers.\n *\n * ## Example\n *\n * Ignore all `next` emissions from the source\n *\n * ```ts\n * import { of, ignoreElements } from 'rxjs';\n *\n * of('you', 'talking', 'to', 'me')\n *   .pipe(ignoreElements())\n *   .subscribe({\n *     next: word => console.log(word),\n *     error: err => console.log('error:', err),\n *     complete: () => console.log('the end'),\n *   });\n *\n * // result:\n * // 'the end'\n * ```\n *\n * @return A function that returns an empty Observable that only calls\n * `complete` or `error`, based on which one is called by the source\n * Observable.\n */\nexport declare function ignoreElements(): OperatorFunction<unknown, never>;\n//# sourceMappingURL=ignoreElements.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Emits `false` if the input Observable emits any values, or emits `true` if the\n * input Observable completes without emitting any values.\n *\n * <span class=\"informal\">Tells whether any values are emitted by an Observable.</span>\n *\n * ![](isEmpty.png)\n *\n * `isEmpty` transforms an Observable that emits values into an Observable that\n * emits a single boolean value representing whether or not any values were\n * emitted by the source Observable. As soon as the source Observable emits a\n * value, `isEmpty` will emit a `false` and complete.  If the source Observable\n * completes having not emitted anything, `isEmpty` will emit a `true` and\n * complete.\n *\n * A similar effect could be achieved with {@link count}, but `isEmpty` can emit\n * a `false` value sooner.\n *\n * ## Examples\n *\n * Emit `false` for a non-empty Observable\n *\n * ```ts\n * import { Subject, isEmpty } from 'rxjs';\n *\n * const source = new Subject<string>();\n * const result = source.pipe(isEmpty());\n *\n * source.subscribe(x => console.log(x));\n * result.subscribe(x => console.log(x));\n *\n * source.next('a');\n * source.next('b');\n * source.next('c');\n * source.complete();\n *\n * // Outputs\n * // 'a'\n * // false\n * // 'b'\n * // 'c'\n * ```\n *\n * Emit `true` for an empty Observable\n *\n * ```ts\n * import { EMPTY, isEmpty } from 'rxjs';\n *\n * const result = EMPTY.pipe(isEmpty());\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // true\n * ```\n *\n * @see {@link count}\n * @see {@link EMPTY}\n *\n * @return A function that returns an Observable that emits boolean value\n * indicating whether the source Observable was empty or not.\n */\nexport declare function isEmpty<T>(): OperatorFunction<T, boolean>;\n//# sourceMappingURL=isEmpty.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/joinAllInternals.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput } from '../types';\n/**\n * Collects all of the inner sources from source observable. Then, once the\n * source completes, joins the values using the given static.\n *\n * This is used for {@link combineLatestAll} and {@link zipAll} which both have the\n * same behavior of collecting all inner observables, then operating on them.\n *\n * @param joinFn The type of static join to apply to the sources collected\n * @param project The projection function to apply to the values, if any\n */\nexport declare function joinAllInternals<T, R>(joinFn: (sources: ObservableInput<T>[]) => Observable<T>, project?: (...args: any[]) => R): import(\"../types\").UnaryFunction<Observable<ObservableInput<T>>, unknown>;\n//# sourceMappingURL=joinAllInternals.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/last.d.ts": "import { Observable } from '../Observable';\nimport { OperatorFunction, TruthyTypesOf } from '../types';\nexport declare function last<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport declare function last<T, D>(predicate: BooleanConstructor, defaultValue: D): OperatorFunction<T, TruthyTypesOf<T> | D>;\nexport declare function last<T, D = T>(predicate?: null, defaultValue?: D): OperatorFunction<T, T | D>;\nexport declare function last<T, S extends T>(predicate: (value: T, index: number, source: Observable<T>) => value is S, defaultValue?: S): OperatorFunction<T, S>;\nexport declare function last<T, D = T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, defaultValue?: D): OperatorFunction<T, T | D>;\n//# sourceMappingURL=last.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/map.d.ts": "import { OperatorFunction } from '../types';\nexport declare function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport declare function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;\n//# sourceMappingURL=map.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts": "import { OperatorFunction } from '../types';\n/** @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`. */\nexport declare function mapTo<R>(value: R): OperatorFunction<unknown, R>;\n/**\n * @deprecated Do not specify explicit type parameters. Signatures with type parameters\n * that cannot be inferred will be removed in v8. `mapTo` itself will be removed in v9,\n * use {@link map} instead: `map(() => value)`.\n * */\nexport declare function mapTo<T, R>(value: R): OperatorFunction<T, R>;\n//# sourceMappingURL=mapTo.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/materialize.d.ts": "import { Notification } from '../Notification';\nimport { OperatorFunction, ObservableNotification } from '../types';\n/**\n * Represents all of the notifications from the source Observable as `next`\n * emissions marked with their original types within {@link Notification}\n * objects.\n *\n * <span class=\"informal\">Wraps `next`, `error` and `complete` emissions in\n * {@link Notification} objects, emitted as `next` on the output Observable.\n * </span>\n *\n * ![](materialize.png)\n *\n * `materialize` returns an Observable that emits a `next` notification for each\n * `next`, `error`, or `complete` emission of the source Observable. When the\n * source Observable emits `complete`, the output Observable will emit `next` as\n * a Notification of type \"complete\", and then it will emit `complete` as well.\n * When the source Observable emits `error`, the output will emit `next` as a\n * Notification of type \"error\", and then `complete`.\n *\n * This operator is useful for producing metadata of the source Observable, to\n * be consumed as `next` emissions. Use it in conjunction with\n * {@link dematerialize}.\n *\n * ## Example\n *\n * Convert a faulty Observable to an Observable of Notifications\n *\n * ```ts\n * import { of, materialize, map } from 'rxjs';\n *\n * const letters = of('a', 'b', 13, 'd');\n * const upperCase = letters.pipe(map((x: any) => x.toUpperCase()));\n * const materialized = upperCase.pipe(materialize());\n *\n * materialized.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // - Notification { kind: 'N', value: 'A', error: undefined, hasValue: true }\n * // - Notification { kind: 'N', value: 'B', error: undefined, hasValue: true }\n * // - Notification { kind: 'E', value: undefined, error: TypeError { message: x.toUpperCase is not a function }, hasValue: false }\n * ```\n *\n * @see {@link Notification}\n * @see {@link dematerialize}\n *\n * @return A function that returns an Observable that emits\n * {@link Notification} objects that wrap the original emissions from the\n * source Observable with metadata.\n */\nexport declare function materialize<T>(): OperatorFunction<T, Notification<T> & ObservableNotification<T>>;\n//# sourceMappingURL=materialize.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/max.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * The `max` operator operates on an Observable that emits numbers (or items that\n * can be compared with a provided function), and when source Observable completes\n * it emits a single item: the item with the largest value.\n *\n * ![](max.png)\n *\n * ## Examples\n *\n * Get the maximal value of a series of numbers\n *\n * ```ts\n * import { of, max } from 'rxjs';\n *\n * of(5, 4, 7, 2, 8)\n *   .pipe(max())\n *   .subscribe(x => console.log(x));\n *\n * // Outputs\n * // 8\n * ```\n *\n * Use a comparer function to get the maximal item\n *\n * ```ts\n * import { of, max } from 'rxjs';\n *\n * of(\n *   { age: 7, name: 'Foo' },\n *   { age: 5, name: 'Bar' },\n *   { age: 9, name: 'Beer' }\n * ).pipe(\n *   max((a, b) => a.age < b.age ? -1 : 1)\n * )\n * .subscribe(x => console.log(x.name));\n *\n * // Outputs\n * // 'Beer'\n * ```\n *\n * @see {@link min}\n *\n * @param comparer Optional comparer function that it will use instead of its\n * default to compare the value of two items.\n * @return A function that returns an Observable that emits item with the\n * largest value.\n */\nexport declare function max<T>(comparer?: (x: T, y: T) => number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=max.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/merge.d.ts": "import { ObservableInputTuple, OperatorFunction, SchedulerLike } from '../types';\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport declare function merge<T, A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport declare function merge<T, A extends readonly unknown[]>(...sourcesAndConcurrency: [...ObservableInputTuple<A>, number]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport declare function merge<T, A extends readonly unknown[]>(...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport declare function merge<T, A extends readonly unknown[]>(...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number, SchedulerLike]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=merge.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * ![](mergeAll.png)\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Spawn a new interval Observable for each click event, and blend their outputs as one Observable\n *\n * ```ts\n * import { fromEvent, map, interval, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(map(() => interval(1000)));\n * const firstOrder = higherOrder.pipe(mergeAll());\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * Count from 0 to 9 every second for each click, but only allow 2 concurrent timers\n *\n * ```ts\n * import { fromEvent, map, interval, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n *   map(() => interval(1000).pipe(take(10)))\n * );\n * const firstOrder = higherOrder.pipe(mergeAll(2));\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link exhaustAll}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @param concurrent Maximum number of inner Observables being subscribed to\n * concurrently.\n * @return A function that returns an Observable that emits values coming from\n * all the inner Observables emitted by the source Observable.\n */\nexport declare function mergeAll<O extends ObservableInput<any>>(concurrent?: number): OperatorFunction<O, ObservedValueOf<O>>;\n//# sourceMappingURL=mergeAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeInternals.d.ts": "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { ObservableInput, SchedulerLike } from '../types';\n/**\n * A process embodying the general \"merge\" strategy. This is used in\n * `mergeMap` and `mergeScan` because the logic is otherwise nearly identical.\n * @param source The original source observable\n * @param subscriber The consumer subscriber\n * @param project The projection function to get our inner sources\n * @param concurrent The number of concurrent inner subscriptions\n * @param onBeforeNext Additional logic to apply before nexting to our consumer\n * @param expand If `true` this will perform an \"expand\" strategy, which differs only\n * in that it recurses, and the inner subscription must be schedule-able.\n * @param innerSubScheduler A scheduler to use to schedule inner subscriptions,\n * this is to support the expand strategy, mostly, and should be deprecated\n */\nexport declare function mergeInternals<T, R>(source: Observable<T>, subscriber: Subscriber<R>, project: (value: T, index: number) => ObservableInput<R>, concurrent: number, onBeforeNext?: (innerValue: R) => void, expand?: boolean, innerSubScheduler?: SchedulerLike, additionalFinalizer?: () => void): () => void;\n//# sourceMappingURL=mergeInternals.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nexport declare function mergeMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O, concurrent?: number): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function mergeMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: undefined, concurrent?: number): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function mergeMap<T, R, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R, concurrent?: number): OperatorFunction<T, R>;\n//# sourceMappingURL=mergeMap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts": "import { OperatorFunction, ObservedValueOf, ObservableInput } from '../types';\n/** @deprecated Will be removed in v9. Use {@link mergeMap} instead: `mergeMap(() => result)` */\nexport declare function mergeMapTo<O extends ObservableInput<unknown>>(innerObservable: O, concurrent?: number): OperatorFunction<unknown, ObservedValueOf<O>>;\n/**\n * @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead.\n * Details: https://rxjs.dev/deprecations/resultSelector\n */\nexport declare function mergeMapTo<T, R, O extends ObservableInput<unknown>>(innerObservable: O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R, concurrent?: number): OperatorFunction<T, R>;\n//# sourceMappingURL=mergeMapTo.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts": "import { ObservableInput, OperatorFunction } from '../types';\n/**\n * Applies an accumulator function over the source Observable where the\n * accumulator function itself returns an Observable, then each intermediate\n * Observable returned is merged into the output Observable.\n *\n * <span class=\"informal\">It's like {@link scan}, but the Observables returned\n * by the accumulator are merged into the outer Observable.</span>\n *\n * The first parameter of the `mergeScan` is an `accumulator` function which is\n * being called every time the source Observable emits a value. `mergeScan` will\n * subscribe to the value returned by the `accumulator` function and will emit\n * values to the subscriber emitted by inner Observable.\n *\n * The `accumulator` function is being called with three parameters passed to it:\n * `acc`, `value` and `index`. The `acc` parameter is used as the state parameter\n * whose value is initially set to the `seed` parameter (the second parameter\n * passed to the `mergeScan` operator).\n *\n * `mergeScan` internally keeps the value of the `acc` parameter: as long as the\n * source Observable emits without inner Observable emitting, the `acc` will be\n * set to `seed`. The next time the inner Observable emits a value, `mergeScan`\n * will internally remember it and it will be passed to the `accumulator`\n * function as `acc` parameter the next time source emits.\n *\n * The `value` parameter of the `accumulator` function is the value emitted by the\n * source Observable, while the `index` is a number which represent the order of the\n * current emission by the source Observable. It starts with 0.\n *\n * The last parameter to the `mergeScan` is the `concurrent` value which defaults\n * to Infinity. It represents the maximum number of inner Observable subscriptions\n * at a time.\n *\n * ## Example\n *\n * Count the number of click events\n *\n * ```ts\n * import { fromEvent, map, mergeScan, of } from 'rxjs';\n *\n * const click$ = fromEvent(document, 'click');\n * const one$ = click$.pipe(map(() => 1));\n * const seed = 0;\n * const count$ = one$.pipe(\n *   mergeScan((acc, one) => of(acc + one), seed)\n * );\n *\n * count$.subscribe(x => console.log(x));\n *\n * // Results:\n * // 1\n * // 2\n * // 3\n * // 4\n * // ...and so on for each click\n * ```\n *\n * @see {@link scan}\n * @see {@link switchScan}\n *\n * @param accumulator The accumulator function called on each source value.\n * @param seed The initial accumulation value.\n * @param concurrent Maximum number of input Observables being subscribed to\n * concurrently.\n * @return A function that returns an Observable of the accumulated values.\n */\nexport declare function mergeScan<T, R>(accumulator: (acc: R, value: T, index: number) => ObservableInput<R>, seed: R, concurrent?: number): OperatorFunction<T, R>;\n//# sourceMappingURL=mergeScan.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts": "import { ObservableInputTuple, OperatorFunction } from '../types';\n/**\n * Merge the values from all observables to a single observable result.\n *\n * Creates an observable, that when subscribed to, subscribes to the source\n * observable, and all other sources provided as arguments. All values from\n * every source are emitted from the resulting subscription.\n *\n * When all sources complete, the resulting observable will complete.\n *\n * When any source errors, the resulting observable will error.\n *\n * ## Example\n *\n * Joining all outputs from multiple user input event streams\n *\n * ```ts\n * import { fromEvent, map, mergeWith } from 'rxjs';\n *\n * const clicks$ = fromEvent(document, 'click').pipe(map(() => 'click'));\n * const mousemoves$ = fromEvent(document, 'mousemove').pipe(map(() => 'mousemove'));\n * const dblclicks$ = fromEvent(document, 'dblclick').pipe(map(() => 'dblclick'));\n *\n * mousemoves$\n *   .pipe(mergeWith(clicks$, dblclicks$))\n *   .subscribe(x => console.log(x));\n *\n * // result (assuming user interactions)\n * // 'mousemove'\n * // 'mousemove'\n * // 'mousemove'\n * // 'click'\n * // 'click'\n * // 'dblclick'\n * ```\n *\n * @see {@link merge}\n *\n * @param otherSources the sources to combine the current source with.\n * @return A function that returns an Observable that merges the values from\n * all given Observables.\n */\nexport declare function mergeWith<T, A extends readonly unknown[]>(...otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=mergeWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/min.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * The `min` operator operates on an Observable that emits numbers (or items that\n * can be compared with a provided function), and when source Observable completes\n * it emits a single item: the item with the smallest value.\n *\n * ![](min.png)\n *\n * ## Examples\n *\n * Get the minimal value of a series of numbers\n *\n * ```ts\n * import { of, min } from 'rxjs';\n *\n * of(5, 4, 7, 2, 8)\n *   .pipe(min())\n *   .subscribe(x => console.log(x));\n *\n * // Outputs\n * // 2\n * ```\n *\n * Use a comparer function to get the minimal item\n *\n * ```ts\n * import { of, min } from 'rxjs';\n *\n * of(\n *   { age: 7, name: 'Foo' },\n *   { age: 5, name: 'Bar' },\n *   { age: 9, name: 'Beer' }\n * ).pipe(\n *   min((a, b) => a.age < b.age ? -1 : 1)\n * )\n * .subscribe(x => console.log(x.name));\n *\n * // Outputs\n * // 'Bar'\n * ```\n *\n * @see {@link max}\n *\n * @param comparer Optional comparer function that it will use instead of its\n * default to compare the value of two items.\n * @return A function that returns an Observable that emits item with the\n * smallest value.\n */\nexport declare function min<T>(comparer?: (x: T, y: T) => number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=min.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/multicast.d.ts": "import { Subject } from '../Subject';\nimport { Observable } from '../Observable';\nimport { ConnectableObservable } from '../observable/ConnectableObservable';\nimport { OperatorFunction, UnaryFunction, ObservedValueOf, ObservableInput } from '../types';\n/**\n * An operator that creates a {@link ConnectableObservable}, that when connected,\n * with the `connect` method, will use the provided subject to multicast the values\n * from the source to all consumers.\n *\n * @param subject The subject to multicast through.\n * @return A function that returns a {@link ConnectableObservable}\n * @deprecated Will be removed in v8. To create a connectable observable, use {@link connectable}.\n * If you're using {@link refCount} after `multicast`, use the {@link share} operator instead.\n * `multicast(subject), refCount()` is equivalent to\n * `share({ connector: () => subject, resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function multicast<T>(subject: Subject<T>): UnaryFunction<Observable<T>, ConnectableObservable<T>>;\n/**\n * Because this is deprecated in favor of the {@link connect} operator, and was otherwise poorly documented,\n * rather than duplicate the effort of documenting the same behavior, please see documentation for the\n * {@link connect} operator.\n *\n * @param subject The subject used to multicast.\n * @param selector A setup function to setup the multicast\n * @return A function that returns an observable that mirrors the observable returned by the selector.\n * @deprecated Will be removed in v8. Use the {@link connect} operator instead.\n * `multicast(subject, selector)` is equivalent to\n * `connect(selector, { connector: () => subject })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function multicast<T, O extends ObservableInput<any>>(subject: Subject<T>, selector: (shared: Observable<T>) => O): OperatorFunction<T, ObservedValueOf<O>>;\n/**\n * An operator that creates a {@link ConnectableObservable}, that when connected,\n * with the `connect` method, will use the provided subject to multicast the values\n * from the source to all consumers.\n *\n * @param subjectFactory A factory that will be called to create the subject. Passing a function here\n * will cause the underlying subject to be \"reset\" on error, completion, or refCounted unsubscription of\n * the source.\n * @return A function that returns a {@link ConnectableObservable}\n * @deprecated Will be removed in v8. To create a connectable observable, use {@link connectable}.\n * If you're using {@link refCount} after `multicast`, use the {@link share} operator instead.\n * `multicast(() => new BehaviorSubject('test')), refCount()` is equivalent to\n * `share({ connector: () => new BehaviorSubject('test') })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function multicast<T>(subjectFactory: () => Subject<T>): UnaryFunction<Observable<T>, ConnectableObservable<T>>;\n/**\n * Because this is deprecated in favor of the {@link connect} operator, and was otherwise poorly documented,\n * rather than duplicate the effort of documenting the same behavior, please see documentation for the\n * {@link connect} operator.\n *\n * @param subjectFactory A factory that creates the subject used to multicast.\n * @param selector A function to setup the multicast and select the output.\n * @return A function that returns an observable that mirrors the observable returned by the selector.\n * @deprecated Will be removed in v8. Use the {@link connect} operator instead.\n * `multicast(subjectFactory, selector)` is equivalent to\n * `connect(selector, { connector: subjectFactory })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function multicast<T, O extends ObservableInput<any>>(subjectFactory: () => Subject<T>, selector: (shared: Observable<T>) => O): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=multicast.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts": "/** @prettier */\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Re-emits all notifications from source Observable with specified scheduler.\n *\n * <span class=\"informal\">Ensure a specific scheduler is used, from outside of an Observable.</span>\n *\n * `observeOn` is an operator that accepts a scheduler as a first parameter, which will be used to reschedule\n * notifications emitted by the source Observable. It might be useful, if you do not have control over\n * internal scheduler of a given Observable, but want to control when its values are emitted nevertheless.\n *\n * Returned Observable emits the same notifications (nexted values, complete and error events) as the source Observable,\n * but rescheduled with provided scheduler. Note that this doesn't mean that source Observables internal\n * scheduler will be replaced in any way. Original scheduler still will be used, but when the source Observable emits\n * notification, it will be immediately scheduled again - this time with scheduler passed to `observeOn`.\n * An anti-pattern would be calling `observeOn` on Observable that emits lots of values synchronously, to split\n * that emissions into asynchronous chunks. For this to happen, scheduler would have to be passed into the source\n * Observable directly (usually into the operator that creates it). `observeOn` simply delays notifications a\n * little bit more, to ensure that they are emitted at expected moments.\n *\n * As a matter of fact, `observeOn` accepts second parameter, which specifies in milliseconds with what delay notifications\n * will be emitted. The main difference between {@link delay} operator and `observeOn` is that `observeOn`\n * will delay all notifications - including error notifications - while `delay` will pass through error\n * from source Observable immediately when it is emitted. In general it is highly recommended to use `delay` operator\n * for any kind of delaying of values in the stream, while using `observeOn` to specify which scheduler should be used\n * for notification emissions in general.\n *\n * ## Example\n *\n * Ensure values in subscribe are called just before browser repaint\n *\n * ```ts\n * import { interval, observeOn, animationFrameScheduler } from 'rxjs';\n *\n * const someDiv = document.createElement('div');\n * someDiv.style.cssText = 'width: 200px;background: #09c';\n * document.body.appendChild(someDiv);\n * const intervals = interval(10);      // Intervals are scheduled\n *                                      // with async scheduler by default...\n * intervals.pipe(\n *   observeOn(animationFrameScheduler) // ...but we will observe on animationFrame\n * )                                    // scheduler to ensure smooth animation.\n * .subscribe(val => {\n *   someDiv.style.height = val + 'px';\n * });\n * ```\n *\n * @see {@link delay}\n *\n * @param scheduler Scheduler that will be used to reschedule notifications from source Observable.\n * @param delay Number of milliseconds that states with what delay every notification should be rescheduled.\n * @return A function that returns an Observable that emits the same\n * notifications as the source Observable, but with provided scheduler.\n */\nexport declare function observeOn<T>(scheduler: SchedulerLike, delay?: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=observeOn.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts": "import { ObservableInputTuple, OperatorFunction } from '../types';\nexport declare function onErrorResumeNextWith<T, A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\nexport declare function onErrorResumeNextWith<T, A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n/**\n * @deprecated Renamed. Use {@link onErrorResumeNextWith} instead. Will be removed in v8.\n */\nexport declare const onErrorResumeNext: typeof onErrorResumeNextWith;\n//# sourceMappingURL=onErrorResumeNextWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Groups pairs of consecutive emissions together and emits them as an array of\n * two values.\n *\n * <span class=\"informal\">Puts the current value and previous value together as\n * an array, and emits that.</span>\n *\n * ![](pairwise.png)\n *\n * The Nth emission from the source Observable will cause the output Observable\n * to emit an array [(N-1)th, Nth] of the previous and the current value, as a\n * pair. For this reason, `pairwise` emits on the second and subsequent\n * emissions from the source Observable, but not on the first emission, because\n * there is no previous value in that case.\n *\n * ## Example\n *\n * On every click (starting from the second), emit the relative distance to the previous click\n *\n * ```ts\n * import { fromEvent, pairwise, map } from 'rxjs';\n *\n * const clicks = fromEvent<PointerEvent>(document, 'click');\n * const pairs = clicks.pipe(pairwise());\n * const distance = pairs.pipe(\n *   map(([first, second]) => {\n *     const x0 = first.clientX;\n *     const y0 = first.clientY;\n *     const x1 = second.clientX;\n *     const y1 = second.clientY;\n *     return Math.sqrt(Math.pow(x0 - x1, 2) + Math.pow(y0 - y1, 2));\n *   })\n * );\n *\n * distance.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferCount}\n *\n * @return A function that returns an Observable of pairs (as arrays) of\n * consecutive values from the source Observable.\n */\nexport declare function pairwise<T>(): OperatorFunction<T, [T, T]>;\n//# sourceMappingURL=pairwise.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/partition.d.ts": "import { Observable } from '../Observable';\nimport { UnaryFunction } from '../types';\n/**\n * Splits the source Observable into two, one with values that satisfy a\n * predicate, and another with values that don't satisfy the predicate.\n *\n * <span class=\"informal\">It's like {@link filter}, but returns two Observables:\n * one like the output of {@link filter}, and the other with values that did not\n * pass the condition.</span>\n *\n * ![](partition.png)\n *\n * `partition` outputs an array with two Observables that partition the values\n * from the source Observable through the given `predicate` function. The first\n * Observable in that array emits source values for which the predicate argument\n * returns true. The second Observable emits source values for which the\n * predicate returns false. The first behaves like {@link filter} and the second\n * behaves like {@link filter} with the predicate negated.\n *\n * ## Example\n *\n * Partition click events into those on DIV elements and those elsewhere\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n * import { partition } from 'rxjs/operators';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * const clicks = fromEvent(document, 'click');\n * const [clicksOnDivs, clicksElsewhere] = clicks.pipe(partition(ev => (<HTMLElement>ev.target).tagName === 'DIV'));\n *\n * clicksOnDivs.subscribe(x => console.log('DIV clicked: ', x));\n * clicksElsewhere.subscribe(x => console.log('Other clicked: ', x));\n * ```\n *\n * @see {@link filter}\n *\n * @param predicate A function that evaluates each value emitted by the source\n * Observable. If it returns `true`, the value is emitted on the first Observable\n * in the returned array, if `false` the value is emitted on the second Observable\n * in the array. The `index` parameter is the number `i` for the i-th source\n * emission that has happened since the subscription, starting from the number `0`.\n * @param thisArg An optional argument to determine the value of `this` in the\n * `predicate` function.\n * @return A function that returns an array with two Observables: one with\n * values that passed the predicate, and another with values that did not pass\n * the predicate.\n * @deprecated Replaced with the {@link partition} static creation function. Will be removed in v8.\n */\nexport declare function partition<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): UnaryFunction<Observable<T>, [Observable<T>, Observable<T>]>;\n//# sourceMappingURL=partition.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/pluck.d.ts": "import { OperatorFunction } from '../types';\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T>(k1: K1): OperatorFunction<T, T[K1]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1]>(k1: K1, k2: K2): OperatorFunction<T, T[K1][K2]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2]>(k1: K1, k2: K2, k3: K3): OperatorFunction<T, T[K1][K2][K3]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2], K4 extends keyof T[K1][K2][K3]>(k1: K1, k2: K2, k3: K3, k4: K4): OperatorFunction<T, T[K1][K2][K3][K4]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2], K4 extends keyof T[K1][K2][K3], K5 extends keyof T[K1][K2][K3][K4]>(k1: K1, k2: K2, k3: K3, k4: K4, k5: K5): OperatorFunction<T, T[K1][K2][K3][K4][K5]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2], K4 extends keyof T[K1][K2][K3], K5 extends keyof T[K1][K2][K3][K4], K6 extends keyof T[K1][K2][K3][K4][K5]>(k1: K1, k2: K2, k3: K3, k4: K4, k5: K5, k6: K6): OperatorFunction<T, T[K1][K2][K3][K4][K5][K6]>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T, K1 extends keyof T, K2 extends keyof T[K1], K3 extends keyof T[K1][K2], K4 extends keyof T[K1][K2][K3], K5 extends keyof T[K1][K2][K3][K4], K6 extends keyof T[K1][K2][K3][K4][K5]>(k1: K1, k2: K2, k3: K3, k4: K4, k5: K5, k6: K6, ...rest: string[]): OperatorFunction<T, unknown>;\n/** @deprecated Use {@link map} and optional chaining: `pluck('foo', 'bar')` is `map(x => x?.foo?.bar)`. Will be removed in v8. */\nexport declare function pluck<T>(...properties: string[]): OperatorFunction<T, unknown>;\n//# sourceMappingURL=pluck.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/publish.d.ts": "import { Observable } from '../Observable';\nimport { ConnectableObservable } from '../observable/ConnectableObservable';\nimport { OperatorFunction, UnaryFunction, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Returns a connectable observable that, when connected, will multicast\n * all values through a single underlying {@link Subject} instance.\n *\n * @deprecated Will be removed in v8. To create a connectable observable, use {@link connectable}.\n * `source.pipe(publish())` is equivalent to\n * `connectable(source, { connector: () => new Subject(), resetOnDisconnect: false })`.\n * If you're using {@link refCount} after `publish`, use {@link share} operator instead.\n * `source.pipe(publish(), refCount())` is equivalent to\n * `source.pipe(share({ resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false }))`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publish<T>(): UnaryFunction<Observable<T>, ConnectableObservable<T>>;\n/**\n * Returns an observable, that when subscribed to, creates an underlying {@link Subject},\n * provides an observable view of it to a `selector` function, takes the observable result of\n * that selector function and subscribes to it, sending its values to the consumer, _then_ connects\n * the subject to the original source.\n *\n * @param selector A function used to setup multicasting prior to automatic connection.\n *\n * @deprecated Will be removed in v8. Use the {@link connect} operator instead.\n * `publish(selector)` is equivalent to `connect(selector)`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publish<T, O extends ObservableInput<any>>(selector: (shared: Observable<T>) => O): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=publish.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts": "import { Observable } from '../Observable';\nimport { ConnectableObservable } from '../observable/ConnectableObservable';\nimport { UnaryFunction } from '../types';\n/**\n * Creates a {@link ConnectableObservable} that utilizes a {@link BehaviorSubject}.\n *\n * @param initialValue The initial value passed to the {@link BehaviorSubject}.\n * @return A function that returns a {@link ConnectableObservable}\n * @deprecated Will be removed in v8. To create a connectable observable that uses a\n * {@link BehaviorSubject} under the hood, use {@link connectable}.\n * `source.pipe(publishBehavior(initValue))` is equivalent to\n * `connectable(source, { connector: () => new BehaviorSubject(initValue), resetOnDisconnect: false })`.\n * If you're using {@link refCount} after `publishBehavior`, use the {@link share} operator instead.\n * `source.pipe(publishBehavior(initValue), refCount())` is equivalent to\n * `source.pipe(share({ connector: () => new BehaviorSubject(initValue), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false  }))`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publishBehavior<T>(initialValue: T): UnaryFunction<Observable<T>, ConnectableObservable<T>>;\n//# sourceMappingURL=publishBehavior.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts": "import { Observable } from '../Observable';\nimport { ConnectableObservable } from '../observable/ConnectableObservable';\nimport { UnaryFunction } from '../types';\n/**\n * Returns a connectable observable sequence that shares a single subscription to the\n * underlying sequence containing only the last notification.\n *\n * ![](publishLast.png)\n *\n * Similar to {@link publish}, but it waits until the source observable completes and stores\n * the last emitted value.\n * Similarly to {@link publishReplay} and {@link publishBehavior}, this keeps storing the last\n * value even if it has no more subscribers. If subsequent subscriptions happen, they will\n * immediately get that last stored value and complete.\n *\n * ## Example\n *\n * ```ts\n * import { ConnectableObservable, interval, publishLast, tap, take } from 'rxjs';\n *\n * const connectable = <ConnectableObservable<number>>interval(1000)\n *   .pipe(\n *     tap(x => console.log('side effect', x)),\n *     take(3),\n *     publishLast()\n *   );\n *\n * connectable.subscribe({\n *   next: x => console.log('Sub. A', x),\n *   error: err => console.log('Sub. A Error', err),\n *   complete: () => console.log('Sub. A Complete')\n * });\n *\n * connectable.subscribe({\n *   next: x => console.log('Sub. B', x),\n *   error: err => console.log('Sub. B Error', err),\n *   complete: () => console.log('Sub. B Complete')\n * });\n *\n * connectable.connect();\n *\n * // Results:\n * // 'side effect 0'   - after one second\n * // 'side effect 1'   - after two seconds\n * // 'side effect 2'   - after three seconds\n * // 'Sub. A 2'        - immediately after 'side effect 2'\n * // 'Sub. B 2'\n * // 'Sub. A Complete'\n * // 'Sub. B Complete'\n * ```\n *\n * @see {@link ConnectableObservable}\n * @see {@link publish}\n * @see {@link publishReplay}\n * @see {@link publishBehavior}\n *\n * @return A function that returns an Observable that emits elements of a\n * sequence produced by multicasting the source sequence.\n * @deprecated Will be removed in v8. To create a connectable observable with an\n * {@link AsyncSubject} under the hood, use {@link connectable}.\n * `source.pipe(publishLast())` is equivalent to\n * `connectable(source, { connector: () => new AsyncSubject(), resetOnDisconnect: false })`.\n * If you're using {@link refCount} after `publishLast`, use the {@link share} operator instead.\n * `source.pipe(publishLast(), refCount())` is equivalent to\n * `source.pipe(share({ connector: () => new AsyncSubject(), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false }))`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publishLast<T>(): UnaryFunction<Observable<T>, ConnectableObservable<T>>;\n//# sourceMappingURL=publishLast.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts": "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, OperatorFunction, TimestampProvider, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Creates a {@link ConnectableObservable} that uses a {@link ReplaySubject}\n * internally.\n *\n * @param bufferSize The buffer size for the underlying {@link ReplaySubject}.\n * @param windowTime The window time for the underlying {@link ReplaySubject}.\n * @param timestampProvider The timestamp provider for the underlying {@link ReplaySubject}.\n * @deprecated Will be removed in v8. To create a connectable observable that uses a\n * {@link ReplaySubject} under the hood, use {@link connectable}.\n * `source.pipe(publishReplay(size, time, scheduler))` is equivalent to\n * `connectable(source, { connector: () => new ReplaySubject(size, time, scheduler), resetOnDisconnect: false })`.\n * If you're using {@link refCount} after `publishReplay`, use the {@link share} operator instead.\n * `publishReplay(size, time, scheduler), refCount()` is equivalent to\n * `share({ connector: () => new ReplaySubject(size, time, scheduler), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publishReplay<T>(bufferSize?: number, windowTime?: number, timestampProvider?: TimestampProvider): MonoTypeOperatorFunction<T>;\n/**\n * Creates an observable, that when subscribed to, will create a {@link ReplaySubject},\n * and pass an observable from it (using [asObservable](api/index/class/Subject#asObservable)) to\n * the `selector` function, which then returns an observable that is subscribed to before\n * \"connecting\" the source to the internal `ReplaySubject`.\n *\n * Since this is deprecated, for additional details see the documentation for {@link connect}.\n *\n * @param bufferSize The buffer size for the underlying {@link ReplaySubject}.\n * @param windowTime The window time for the underlying {@link ReplaySubject}.\n * @param selector A function used to setup the multicast.\n * @param timestampProvider The timestamp provider for the underlying {@link ReplaySubject}.\n * @deprecated Will be removed in v8. Use the {@link connect} operator instead.\n * `source.pipe(publishReplay(size, window, selector, scheduler))` is equivalent to\n * `source.pipe(connect(selector, { connector: () => new ReplaySubject(size, window, scheduler) }))`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publishReplay<T, O extends ObservableInput<any>>(bufferSize: number | undefined, windowTime: number | undefined, selector: (shared: Observable<T>) => O, timestampProvider?: TimestampProvider): OperatorFunction<T, ObservedValueOf<O>>;\n/**\n * Creates a {@link ConnectableObservable} that uses a {@link ReplaySubject}\n * internally.\n *\n * @param bufferSize The buffer size for the underlying {@link ReplaySubject}.\n * @param windowTime The window time for the underlying {@link ReplaySubject}.\n * @param selector Passing `undefined` here determines that this operator will return a {@link ConnectableObservable}.\n * @param timestampProvider The timestamp provider for the underlying {@link ReplaySubject}.\n * @deprecated Will be removed in v8. To create a connectable observable that uses a\n * {@link ReplaySubject} under the hood, use {@link connectable}.\n * `source.pipe(publishReplay(size, time, scheduler))` is equivalent to\n * `connectable(source, { connector: () => new ReplaySubject(size, time, scheduler), resetOnDisconnect: false })`.\n * If you're using {@link refCount} after `publishReplay`, use the {@link share} operator instead.\n * `publishReplay(size, time, scheduler), refCount()` is equivalent to\n * `share({ connector: () => new ReplaySubject(size, time, scheduler), resetOnError: false, resetOnComplete: false, resetOnRefCountZero: false })`.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function publishReplay<T, O extends ObservableInput<any>>(bufferSize: number | undefined, windowTime: number | undefined, selector: undefined, timestampProvider: TimestampProvider): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=publishReplay.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/race.d.ts": "import { ObservableInputTuple, OperatorFunction } from '../types';\n/** @deprecated Replaced with {@link raceWith}. Will be removed in v8. */\nexport declare function race<T, A extends readonly unknown[]>(otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link raceWith}. Will be removed in v8. */\nexport declare function race<T, A extends readonly unknown[]>(...otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=race.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts": "import { OperatorFunction, ObservableInputTuple } from '../types';\n/**\n * Creates an Observable that mirrors the first source Observable to emit a next,\n * error or complete notification from the combination of the Observable to which\n * the operator is applied and supplied Observables.\n *\n * ## Example\n *\n * ```ts\n * import { interval, map, raceWith } from 'rxjs';\n *\n * const obs1 = interval(7000).pipe(map(() => 'slow one'));\n * const obs2 = interval(3000).pipe(map(() => 'fast one'));\n * const obs3 = interval(5000).pipe(map(() => 'medium one'));\n *\n * obs1\n *   .pipe(raceWith(obs2, obs3))\n *   .subscribe(winner => console.log(winner));\n *\n * // Outputs\n * // a series of 'fast one'\n * ```\n *\n * @param otherSources Sources used to race for which Observable emits first.\n * @return A function that returns an Observable that mirrors the output of the\n * first Observable to emit an item.\n */\nexport declare function raceWith<T, A extends readonly unknown[]>(...otherSources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n//# sourceMappingURL=raceWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/reduce.d.ts": "import { OperatorFunction } from '../types';\nexport declare function reduce<V, A = V>(accumulator: (acc: A | V, value: V, index: number) => A): OperatorFunction<V, V | A>;\nexport declare function reduce<V, A>(accumulator: (acc: A, value: V, index: number) => A, seed: A): OperatorFunction<V, A>;\nexport declare function reduce<V, A, S = A>(accumulator: (acc: A | S, value: V, index: number) => A, seed: S): OperatorFunction<V, A>;\n//# sourceMappingURL=reduce.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/refCount.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Make a {@link ConnectableObservable} behave like a ordinary observable and automates the way\n * you can connect to it.\n *\n * Internally it counts the subscriptions to the observable and subscribes (only once) to the source if\n * the number of subscriptions is larger than 0. If the number of subscriptions is smaller than 1, it\n * unsubscribes from the source. This way you can make sure that everything before the *published*\n * refCount has only a single subscription independently of the number of subscribers to the target\n * observable.\n *\n * Note that using the {@link share} operator is exactly the same as using the `multicast(() => new Subject())` operator\n * (making the observable hot) and the *refCount* operator in a sequence.\n *\n * ![](refCount.png)\n *\n * ## Example\n *\n * In the following example there are two intervals turned into connectable observables\n * by using the *publish* operator. The first one uses the *refCount* operator, the\n * second one does not use it. You will notice that a connectable observable does nothing\n * until you call its connect function.\n *\n * ```ts\n * import { interval, tap, publish, refCount } from 'rxjs';\n *\n * // Turn the interval observable into a ConnectableObservable (hot)\n * const refCountInterval = interval(400).pipe(\n *   tap(num => console.log(`refCount ${ num }`)),\n *   publish(),\n *   refCount()\n * );\n *\n * const publishedInterval = interval(400).pipe(\n *   tap(num => console.log(`publish ${ num }`)),\n *   publish()\n * );\n *\n * refCountInterval.subscribe();\n * refCountInterval.subscribe();\n * // 'refCount 0' -----> 'refCount 1' -----> etc\n * // All subscriptions will receive the same value and the tap (and\n * // every other operator) before the `publish` operator will be executed\n * // only once per event independently of the number of subscriptions.\n *\n * publishedInterval.subscribe();\n * // Nothing happens until you call .connect() on the observable.\n * ```\n *\n * @return A function that returns an Observable that automates the connection\n * to ConnectableObservable.\n * @see {@link ConnectableObservable}\n * @see {@link share}\n * @see {@link publish}\n * @deprecated Replaced with the {@link share} operator. How `share` is used\n * will depend on the connectable observable you created just prior to the\n * `refCount` operator.\n * Details: https://rxjs.dev/deprecations/multicasting\n */\nexport declare function refCount<T>(): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=refCount.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/repeat.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\nexport interface RepeatConfig {\n    /**\n     * The number of times to repeat the source. Defaults to `Infinity`.\n     */\n    count?: number;\n    /**\n     * If a `number`, will delay the repeat of the source by that number of milliseconds.\n     * If a function, it will provide the number of times the source has been subscribed to,\n     * and the return value should be a valid observable input that will notify when the source\n     * should be repeated. If the notifier observable is empty, the result will complete.\n     */\n    delay?: number | ((count: number) => ObservableInput<any>);\n}\n/**\n * Returns an Observable that will resubscribe to the source stream when the source stream completes.\n *\n * <span class=\"informal\">Repeats all values emitted on the source. It's like {@link retry}, but for non error cases.</span>\n *\n * ![](repeat.png)\n *\n * Repeat will output values from a source until the source completes, then it will resubscribe to the\n * source a specified number of times, with a specified delay. Repeat can be particularly useful in\n * combination with closing operators like {@link take}, {@link takeUntil}, {@link first}, or {@link takeWhile},\n * as it can be used to restart a source again from scratch.\n *\n * Repeat is very similar to {@link retry}, where {@link retry} will resubscribe to the source in the error case, but\n * `repeat` will resubscribe if the source completes.\n *\n * Note that `repeat` will _not_ catch errors. Use {@link retry} for that.\n *\n * - `repeat(0)` returns an empty observable\n * - `repeat()` will repeat forever\n * - `repeat({ delay: 200 })` will repeat forever, with a delay of 200ms between repetitions.\n * - `repeat({ count: 2, delay: 400 })` will repeat twice, with a delay of 400ms between repetitions.\n * - `repeat({ delay: (count) => timer(count * 1000) })` will repeat forever, but will have a delay that grows by one second for each repetition.\n *\n * ## Example\n *\n * Repeat a message stream\n *\n * ```ts\n * import { of, repeat } from 'rxjs';\n *\n * const source = of('Repeat message');\n * const result = source.pipe(repeat(3));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results\n * // 'Repeat message'\n * // 'Repeat message'\n * // 'Repeat message'\n * ```\n *\n * Repeat 3 values, 2 times\n *\n * ```ts\n * import { interval, take, repeat } from 'rxjs';\n *\n * const source = interval(1000);\n * const result = source.pipe(take(3), repeat(2));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results every second\n * // 0\n * // 1\n * // 2\n * // 0\n * // 1\n * // 2\n * ```\n *\n * Defining two complex repeats with delays on the same source.\n * Note that the second repeat cannot be called until the first\n * repeat as exhausted it's count.\n *\n * ```ts\n * import { defer, of, repeat } from 'rxjs';\n *\n * const source = defer(() => {\n *    return of(`Hello, it is ${new Date()}`)\n * });\n *\n * source.pipe(\n *    // Repeat 3 times with a delay of 1 second between repetitions\n *    repeat({\n *      count: 3,\n *      delay: 1000,\n *    }),\n *\n *    // *Then* repeat forever, but with an exponential step-back\n *    // maxing out at 1 minute.\n *    repeat({\n *      delay: (count) => timer(Math.min(60000, 2 ^ count * 1000))\n *    })\n * )\n * ```\n *\n * @see {@link repeatWhen}\n * @see {@link retry}\n *\n * @param countOrConfig Either the number of times the source Observable items are repeated\n * (a count of 0 will yield an empty Observable) or a {@link RepeatConfig} object.\n */\nexport declare function repeat<T>(countOrConfig?: number | RepeatConfig): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=repeat.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts": "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Returns an Observable that mirrors the source Observable with the exception of a `complete`. If the source\n * Observable calls `complete`, this method will emit to the Observable returned from `notifier`. If that Observable\n * calls `complete` or `error`, then this method will call `complete` or `error` on the child subscription. Otherwise\n * this method will resubscribe to the source Observable.\n *\n * ![](repeatWhen.png)\n *\n * ## Example\n *\n * Repeat a message stream on click\n *\n * ```ts\n * import { of, fromEvent, repeatWhen } from 'rxjs';\n *\n * const source = of('Repeat message');\n * const documentClick$ = fromEvent(document, 'click');\n *\n * const result = source.pipe(repeatWhen(() => documentClick$));\n *\n * result.subscribe(data => console.log(data))\n * ```\n *\n * @see {@link repeat}\n * @see {@link retry}\n * @see {@link retryWhen}\n *\n * @param notifier Function that receives an Observable of notifications with\n * which a user can `complete` or `error`, aborting the repetition.\n * @return A function that returns an Observable that mirrors the source\n * Observable with the exception of a `complete`.\n * @deprecated Will be removed in v9 or v10. Use {@link repeat}'s {@link RepeatConfig#delay delay} option instead.\n * Instead of `repeatWhen(() => notify$)`, use: `repeat({ delay: () => notify$ })`.\n */\nexport declare function repeatWhen<T>(notifier: (notifications: Observable<void>) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=repeatWhen.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/retry.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * The {@link retry} operator configuration object. `retry` either accepts a `number`\n * or an object described by this interface.\n */\nexport interface RetryConfig {\n    /**\n     * The maximum number of times to retry. If `count` is omitted, `retry` will try to\n     * resubscribe on errors infinite number of times.\n     */\n    count?: number;\n    /**\n     * The number of milliseconds to delay before retrying, OR a function to\n     * return a notifier for delaying. If a function is given, that function should\n     * return a notifier that, when it emits will retry the source. If the notifier\n     * completes _without_ emitting, the resulting observable will complete without error,\n     * if the notifier errors, the error will be pushed to the result.\n     */\n    delay?: number | ((error: any, retryCount: number) => ObservableInput<any>);\n    /**\n     * Whether or not to reset the retry counter when the retried subscription\n     * emits its first value.\n     */\n    resetOnSuccess?: boolean;\n}\nexport declare function retry<T>(count?: number): MonoTypeOperatorFunction<T>;\nexport declare function retry<T>(config: RetryConfig): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=retry.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts": "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Returns an Observable that mirrors the source Observable with the exception of an `error`. If the source Observable\n * calls `error`, this method will emit the Throwable that caused the error to the `ObservableInput` returned from `notifier`.\n * If that Observable calls `complete` or `error` then this method will call `complete` or `error` on the child\n * subscription. Otherwise this method will resubscribe to the source Observable.\n *\n * ![](retryWhen.png)\n *\n * Retry an observable sequence on error based on custom criteria.\n *\n * ## Example\n *\n * ```ts\n * import { interval, map, retryWhen, tap, delayWhen, timer } from 'rxjs';\n *\n * const source = interval(1000);\n * const result = source.pipe(\n *   map(value => {\n *     if (value > 5) {\n *       // error will be picked up by retryWhen\n *       throw value;\n *     }\n *     return value;\n *   }),\n *   retryWhen(errors =>\n *     errors.pipe(\n *       // log error message\n *       tap(value => console.log(`Value ${ value } was too high!`)),\n *       // restart in 5 seconds\n *       delayWhen(value => timer(value * 1000))\n *     )\n *   )\n * );\n *\n * result.subscribe(value => console.log(value));\n *\n * // results:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * // 5\n * // 'Value 6 was too high!'\n * // - Wait 5 seconds then repeat\n * ```\n *\n * @see {@link retry}\n *\n * @param notifier Function that receives an Observable of notifications with which a\n * user can `complete` or `error`, aborting the retry.\n * @return A function that returns an Observable that mirrors the source\n * Observable with the exception of an `error`.\n * @deprecated Will be removed in v9 or v10, use {@link retry}'s `delay` option instead.\n * Will be removed in v9 or v10. Use {@link retry}'s {@link RetryConfig#delay delay} option instead.\n * Instead of `retryWhen(() => notify$)`, use: `retry({ delay: () => notify$ })`.\n */\nexport declare function retryWhen<T>(notifier: (errors: Observable<any>) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=retryWhen.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/sample.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Emits the most recently emitted value from the source Observable whenever\n * another Observable, the `notifier`, emits.\n *\n * <span class=\"informal\">It's like {@link sampleTime}, but samples whenever\n * the `notifier` `ObservableInput` emits something.</span>\n *\n * ![](sample.png)\n *\n * Whenever the `notifier` `ObservableInput` emits a value, `sample`\n * looks at the source Observable and emits whichever value it has most recently\n * emitted since the previous sampling, unless the source has not emitted\n * anything since the previous sampling. The `notifier` is subscribed to as soon\n * as the output Observable is subscribed.\n *\n * ## Example\n *\n * On every click, sample the most recent `seconds` timer\n *\n * ```ts\n * import { fromEvent, interval, sample } from 'rxjs';\n *\n * const seconds = interval(1000);\n * const clicks = fromEvent(document, 'click');\n * const result = seconds.pipe(sample(clicks));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounce}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param notifier The `ObservableInput` to use for sampling the\n * source Observable.\n * @return A function that returns an Observable that emits the results of\n * sampling the values emitted by the source Observable whenever the notifier\n * Observable emits value or completes.\n */\nexport declare function sample<T>(notifier: ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=sample.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Emits the most recently emitted value from the source Observable within\n * periodic time intervals.\n *\n * <span class=\"informal\">Samples the source Observable at periodic time\n * intervals, emitting what it samples.</span>\n *\n * ![](sampleTime.png)\n *\n * `sampleTime` periodically looks at the source Observable and emits whichever\n * value it has most recently emitted since the previous sampling, unless the\n * source has not emitted anything since the previous sampling. The sampling\n * happens periodically in time every `period` milliseconds (or the time unit\n * defined by the optional `scheduler` argument). The sampling starts as soon as\n * the output Observable is subscribed.\n *\n * ## Example\n *\n * Every second, emit the most recent click at most once\n *\n * ```ts\n * import { fromEvent, sampleTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(sampleTime(1000));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sample}\n * @see {@link throttleTime}\n *\n * @param period The sampling period expressed in milliseconds or the time unit\n * determined internally by the optional `scheduler`.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers\n * that handle the sampling.\n * @return A function that returns an Observable that emits the results of\n * sampling the values emitted by the source Observable at the specified time\n * interval.\n */\nexport declare function sampleTime<T>(period: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=sampleTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/scan.d.ts": "import { OperatorFunction } from '../types';\nexport declare function scan<V, A = V>(accumulator: (acc: A | V, value: V, index: number) => A): OperatorFunction<V, V | A>;\nexport declare function scan<V, A>(accumulator: (acc: A, value: V, index: number) => A, seed: A): OperatorFunction<V, A>;\nexport declare function scan<V, A, S>(accumulator: (acc: A | S, value: V, index: number) => A, seed: S): OperatorFunction<V, A>;\n//# sourceMappingURL=scan.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/scanInternals.d.ts": "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\n/**\n * A basic scan operation. This is used for `scan` and `reduce`.\n * @param accumulator The accumulator to use\n * @param seed The seed value for the state to accumulate\n * @param hasSeed Whether or not a seed was provided\n * @param emitOnNext Whether or not to emit the state on next\n * @param emitBeforeComplete Whether or not to emit the before completion\n */\nexport declare function scanInternals<V, A, S>(accumulator: (acc: V | A | S, value: V, index: number) => A, seed: S, hasSeed: boolean, emitOnNext: boolean, emitBeforeComplete?: undefined | true): (source: Observable<V>, subscriber: Subscriber<any>) => void;\n//# sourceMappingURL=scanInternals.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts": "import { OperatorFunction, ObservableInput } from '../types';\n/**\n * Compares all values of two observables in sequence using an optional comparator function\n * and returns an observable of a single boolean value representing whether or not the two sequences\n * are equal.\n *\n * <span class=\"informal\">Checks to see of all values emitted by both observables are equal, in order.</span>\n *\n * ![](sequenceEqual.png)\n *\n * `sequenceEqual` subscribes to source observable and `compareTo` `ObservableInput` (that internally\n * gets converted to an observable) and buffers incoming values from each observable. Whenever either\n * observable emits a value, the value is buffered and the buffers are shifted and compared from the bottom\n * up; If any value pair doesn't match, the returned observable will emit `false` and complete. If one of the\n * observables completes, the operator will wait for the other observable to complete; If the other\n * observable emits before completing, the returned observable will emit `false` and complete. If one observable never\n * completes or emits after the other completes, the returned observable will never complete.\n *\n * ## Example\n *\n * Figure out if the Konami code matches\n *\n * ```ts\n * import { from, fromEvent, map, bufferCount, mergeMap, sequenceEqual } from 'rxjs';\n *\n * const codes = from([\n *   'ArrowUp',\n *   'ArrowUp',\n *   'ArrowDown',\n *   'ArrowDown',\n *   'ArrowLeft',\n *   'ArrowRight',\n *   'ArrowLeft',\n *   'ArrowRight',\n *   'KeyB',\n *   'KeyA',\n *   'Enter', // no start key, clearly.\n * ]);\n *\n * const keys = fromEvent<KeyboardEvent>(document, 'keyup').pipe(map(e => e.code));\n * const matches = keys.pipe(\n *   bufferCount(11, 1),\n *   mergeMap(last11 => from(last11).pipe(sequenceEqual(codes)))\n * );\n * matches.subscribe(matched => console.log('Successful cheat at Contra? ', matched));\n * ```\n *\n * @see {@link combineLatest}\n * @see {@link zip}\n * @see {@link withLatestFrom}\n *\n * @param compareTo The `ObservableInput` sequence to compare the source sequence to.\n * @param comparator An optional function to compare each value pair.\n *\n * @return A function that returns an Observable that emits a single boolean\n * value representing whether or not the values emitted by the source\n * Observable and provided `ObservableInput` were equal in sequence.\n */\nexport declare function sequenceEqual<T>(compareTo: ObservableInput<T>, comparator?: (a: T, b: T) => boolean): OperatorFunction<T, boolean>;\n//# sourceMappingURL=sequenceEqual.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/share.d.ts": "import { MonoTypeOperatorFunction, SubjectLike, ObservableInput } from '../types';\nexport interface ShareConfig<T> {\n    /**\n     * The factory used to create the subject that will connect the source observable to\n     * multicast consumers.\n     */\n    connector?: () => SubjectLike<T>;\n    /**\n     * If `true`, the resulting observable will reset internal state on error from source and return to a \"cold\" state. This\n     * allows the resulting observable to be \"retried\" in the event of an error.\n     * If `false`, when an error comes from the source it will push the error into the connecting subject, and the subject\n     * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent retries\n     * or resubscriptions will resubscribe to that same subject. In all cases, RxJS subjects will emit the same error again, however\n     * {@link ReplaySubject} will also push its buffered values before pushing the error.\n     * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n     * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n     */\n    resetOnError?: boolean | ((error: any) => ObservableInput<any>);\n    /**\n     * If `true`, the resulting observable will reset internal state on completion from source and return to a \"cold\" state. This\n     * allows the resulting observable to be \"repeated\" after it is done.\n     * If `false`, when the source completes, it will push the completion through the connecting subject, and the subject\n     * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent repeats\n     * or resubscriptions will resubscribe to that same subject.\n     * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n     * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n     */\n    resetOnComplete?: boolean | (() => ObservableInput<any>);\n    /**\n     * If `true`, when the number of subscribers to the resulting observable reaches zero due to those subscribers unsubscribing, the\n     * internal state will be reset and the resulting observable will return to a \"cold\" state. This means that the next\n     * time the resulting observable is subscribed to, a new subject will be created and the source will be subscribed to\n     * again.\n     * If `false`, when the number of subscribers to the resulting observable reaches zero due to unsubscription, the subject\n     * will remain connected to the source, and new subscriptions to the result will be connected through that same subject.\n     * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n     * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n     */\n    resetOnRefCountZero?: boolean | (() => ObservableInput<any>);\n}\nexport declare function share<T>(): MonoTypeOperatorFunction<T>;\nexport declare function share<T>(options: ShareConfig<T>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=share.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nexport interface ShareReplayConfig {\n    bufferSize?: number;\n    windowTime?: number;\n    refCount: boolean;\n    scheduler?: SchedulerLike;\n}\nexport declare function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;\nexport declare function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=shareReplay.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/single.d.ts": "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, OperatorFunction, TruthyTypesOf } from '../types';\nexport declare function single<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport declare function single<T>(predicate?: (value: T, index: number, source: Observable<T>) => boolean): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=single.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/skip.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Returns an Observable that skips the first `count` items emitted by the source Observable.\n *\n * ![](skip.png)\n *\n * Skips the values until the sent notifications are equal or less than provided skip count. It raises\n * an error if skip count is equal or more than the actual number of emits and source raises an error.\n *\n * ## Example\n *\n * Skip the values before the emission\n *\n * ```ts\n * import { interval, skip } from 'rxjs';\n *\n * // emit every half second\n * const source = interval(500);\n * // skip the first 10 emitted values\n * const result = source.pipe(skip(10));\n *\n * result.subscribe(value => console.log(value));\n * // output: 10...11...12...13...\n * ```\n *\n * @see {@link last}\n * @see {@link skipWhile}\n * @see {@link skipUntil}\n * @see {@link skipLast}\n *\n * @param count The number of times, items emitted by source Observable should be skipped.\n * @return A function that returns an Observable that skips the first `count`\n * values emitted by the source Observable.\n */\nexport declare function skip<T>(count: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=skip.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Skip a specified number of values before the completion of an observable.\n *\n * ![](skipLast.png)\n *\n * Returns an observable that will emit values as soon as it can, given a number of\n * skipped values. For example, if you `skipLast(3)` on a source, when the source\n * emits its fourth value, the first value the source emitted will finally be emitted\n * from the returned observable, as it is no longer part of what needs to be skipped.\n *\n * All values emitted by the result of `skipLast(N)` will be delayed by `N` emissions,\n * as each value is held in a buffer until enough values have been emitted that that\n * the buffered value may finally be sent to the consumer.\n *\n * After subscribing, unsubscribing will not result in the emission of the buffered\n * skipped values.\n *\n * ## Example\n *\n * Skip the last 2 values of an observable with many values\n *\n * ```ts\n * import { of, skipLast } from 'rxjs';\n *\n * const numbers = of(1, 2, 3, 4, 5);\n * const skipLastTwo = numbers.pipe(skipLast(2));\n * skipLastTwo.subscribe(x => console.log(x));\n *\n * // Results in:\n * // 1 2 3\n * // (4 and 5 are skipped)\n * ```\n *\n * @see {@link skip}\n * @see {@link skipUntil}\n * @see {@link skipWhile}\n * @see {@link take}\n *\n * @param skipCount Number of elements to skip from the end of the source Observable.\n * @return A function that returns an Observable that skips the last `count`\n * values emitted by the source Observable.\n */\nexport declare function skipLast<T>(skipCount: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=skipLast.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Returns an Observable that skips items emitted by the source Observable until a second Observable emits an item.\n *\n * The `skipUntil` operator causes the observable stream to skip the emission of values until the passed in observable\n * emits the first value. This can be particularly useful in combination with user interactions, responses of HTTP\n * requests or waiting for specific times to pass by.\n *\n * ![](skipUntil.png)\n *\n * Internally, the `skipUntil` operator subscribes to the passed in `notifier` `ObservableInput` (which gets converted\n * to an Observable) in order to recognize the emission of its first value. When `notifier` emits next, the operator\n * unsubscribes from it and starts emitting the values of the *source* observable until it completes or errors. It\n * will never let the *source* observable emit any values if the `notifier` completes or throws an error without\n * emitting a value before.\n *\n * ## Example\n *\n * In the following example, all emitted values of the interval observable are skipped until the user clicks anywhere\n * within the page\n *\n * ```ts\n * import { interval, fromEvent, skipUntil } from 'rxjs';\n *\n * const intervalObservable = interval(1000);\n * const click = fromEvent(document, 'click');\n *\n * const emitAfterClick = intervalObservable.pipe(\n *   skipUntil(click)\n * );\n * // clicked at 4.6s. output: 5...6...7...8........ or\n * // clicked at 7.3s. output: 8...9...10..11.......\n * emitAfterClick.subscribe(value => console.log(value));\n * ```\n *\n * @see {@link last}\n * @see {@link skip}\n * @see {@link skipWhile}\n * @see {@link skipLast}\n *\n * @param notifier An `ObservableInput` that has to emit an item before the source Observable elements begin to\n * be mirrored by the resulting Observable.\n * @return A function that returns an Observable that skips items from the\n * source Observable until the `notifier` Observable emits an item, then emits the\n * remaining items.\n */\nexport declare function skipUntil<T>(notifier: ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=skipUntil.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts": "import { Falsy, MonoTypeOperatorFunction, OperatorFunction } from '../types';\nexport declare function skipWhile<T>(predicate: BooleanConstructor): OperatorFunction<T, Extract<T, Falsy> extends never ? never : T>;\nexport declare function skipWhile<T>(predicate: (value: T, index: number) => true): OperatorFunction<T, never>;\nexport declare function skipWhile<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=skipWhile.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/startWith.d.ts": "import { OperatorFunction, SchedulerLike, ValueFromArray } from '../types';\nexport declare function startWith<T>(value: null): OperatorFunction<T, T | null>;\nexport declare function startWith<T>(value: undefined): OperatorFunction<T, T | undefined>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport declare function startWith<T, A extends readonly unknown[] = T[]>(...valuesAndScheduler: [...A, SchedulerLike]): OperatorFunction<T, T | ValueFromArray<A>>;\nexport declare function startWith<T, A extends readonly unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n//# sourceMappingURL=startWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Asynchronously subscribes Observers to this Observable on the specified {@link SchedulerLike}.\n *\n * With `subscribeOn` you can decide what type of scheduler a specific Observable will be using when it is subscribed to.\n *\n * Schedulers control the speed and order of emissions to observers from an Observable stream.\n *\n * ![](subscribeOn.png)\n *\n * ## Example\n *\n * Given the following code:\n *\n * ```ts\n * import { of, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3);\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 1\n * // 2\n * // 3\n * // 4\n * // 5\n * // 6\n * ```\n *\n * Both Observable `a` and `b` will emit their values directly and synchronously once they are subscribed to.\n *\n * If we instead use the `subscribeOn` operator declaring that we want to use the {@link asyncScheduler} for values emitted by Observable `a`:\n *\n * ```ts\n * import { of, subscribeOn, asyncScheduler, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3).pipe(subscribeOn(asyncScheduler));\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 4\n * // 5\n * // 6\n * // 1\n * // 2\n * // 3\n * ```\n *\n * The reason for this is that Observable `b` emits its values directly and synchronously like before\n * but the emissions from `a` are scheduled on the event loop because we are now using the {@link asyncScheduler} for that specific Observable.\n *\n * @param scheduler The {@link SchedulerLike} to perform subscription actions on.\n * @param delay A delay to pass to the scheduler to delay subscriptions\n * @return A function that returns an Observable modified so that its\n * subscriptions happen on the specified {@link SchedulerLike}.\n */\nexport declare function subscribeOn<T>(scheduler: SchedulerLike, delay?: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=subscribeOn.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts": "import { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n/**\n * Converts a higher-order Observable into a first-order Observable\n * producing values only from the most recent observable sequence\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * ![](switchAll.png)\n *\n * `switchAll` subscribes to a source that is an observable of observables, also known as a\n * \"higher-order observable\" (or `Observable<Observable<T>>`). It subscribes to the most recently\n * provided \"inner observable\" emitted by the source, unsubscribing from any previously subscribed\n * to inner observable, such that only the most recent inner observable may be subscribed to at\n * any point in time. The resulting observable returned by `switchAll` will only complete if the\n * source observable completes, *and* any currently subscribed to inner observable also has completed,\n * if there are any.\n *\n * ## Examples\n *\n * Spawn a new interval observable for each click event, but for every new\n * click, cancel the previous interval and subscribe to the new one\n *\n * ```ts\n * import { fromEvent, tap, map, interval, switchAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click').pipe(tap(() => console.log('click')));\n * const source = clicks.pipe(map(() => interval(1000)));\n *\n * source\n *   .pipe(switchAll())\n *   .subscribe(x => console.log(x));\n *\n * // Output\n * // click\n * // 0\n * // 1\n * // 2\n * // 3\n * // ...\n * // click\n * // 0\n * // 1\n * // 2\n * // ...\n * // click\n * // ...\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link exhaustAll}\n * @see {@link switchMap}\n * @see {@link switchMapTo}\n * @see {@link mergeAll}\n *\n * @return A function that returns an Observable that converts a higher-order\n * Observable into a first-order Observable producing values only from the most\n * recent Observable sequence.\n */\nexport declare function switchAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>>;\n//# sourceMappingURL=switchAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nexport declare function switchMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function switchMap<T, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: undefined): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function switchMap<T, R, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;\n//# sourceMappingURL=switchMap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts": "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\n/** @deprecated Will be removed in v9. Use {@link switchMap} instead: `switchMap(() => result)` */\nexport declare function switchMapTo<O extends ObservableInput<unknown>>(observable: O): OperatorFunction<unknown, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function switchMapTo<O extends ObservableInput<unknown>>(observable: O, resultSelector: undefined): OperatorFunction<unknown, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport declare function switchMapTo<T, R, O extends ObservableInput<unknown>>(observable: O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R): OperatorFunction<T, R>;\n//# sourceMappingURL=switchMapTo.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts": "import { ObservableInput, ObservedValueOf, OperatorFunction } from '../types';\n/**\n * Applies an accumulator function over the source Observable where the\n * accumulator function itself returns an Observable, emitting values\n * only from the most recently returned Observable.\n *\n * <span class=\"informal\">It's like {@link mergeScan}, but only the most recent\n * Observable returned by the accumulator is merged into the outer Observable.</span>\n *\n * @see {@link scan}\n * @see {@link mergeScan}\n * @see {@link switchMap}\n *\n * @param accumulator\n * The accumulator function called on each source value.\n * @param seed The initial accumulation value.\n * @return A function that returns an observable of the accumulated values.\n */\nexport declare function switchScan<T, R, O extends ObservableInput<any>>(accumulator: (acc: R, value: T, index: number) => O, seed: R): OperatorFunction<T, ObservedValueOf<O>>;\n//# sourceMappingURL=switchScan.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/take.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Emits only the first `count` values emitted by the source Observable.\n *\n * <span class=\"informal\">Takes the first `count` values from the source, then\n * completes.</span>\n *\n * ![](take.png)\n *\n * `take` returns an Observable that emits only the first `count` values emitted\n * by the source Observable. If the source emits fewer than `count` values then\n * all of its values are emitted. After that, it completes, regardless if the\n * source completes.\n *\n * ## Example\n *\n * Take the first 5 seconds of an infinite 1-second interval Observable\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const intervalCount = interval(1000);\n * const takeFive = intervalCount.pipe(take(5));\n * takeFive.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * ```\n *\n * @see {@link takeLast}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of `next` values to emit.\n * @return A function that returns an Observable that emits only the first\n * `count` values emitted by the source Observable, or all of the values from\n * the source if the source emits fewer than `count` values.\n */\nexport declare function take<T>(count: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=take.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * Waits for the source to complete, then emits the last N values from the source,\n * as specified by the `count` argument.\n *\n * ![](takeLast.png)\n *\n * `takeLast` results in an observable that will hold values up to `count` values in memory,\n * until the source completes. It then pushes all values in memory to the consumer, in the\n * order they were received from the source, then notifies the consumer that it is\n * complete.\n *\n * If for some reason the source completes before the `count` supplied to `takeLast` is reached,\n * all values received until that point are emitted, and then completion is notified.\n *\n * **Warning**: Using `takeLast` with an observable that never completes will result\n * in an observable that never emits a value.\n *\n * ## Example\n *\n * Take the last 3 values of an Observable with many values\n *\n * ```ts\n * import { range, takeLast } from 'rxjs';\n *\n * const many = range(1, 100);\n * const lastThree = many.pipe(takeLast(3));\n * lastThree.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link take}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of values to emit from the end of\n * the sequence of values emitted by the source Observable.\n * @return A function that returns an Observable that emits at most the last\n * `count` values emitted by the source Observable.\n */\nexport declare function takeLast<T>(count: number): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=takeLast.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * Emits the values emitted by the source Observable until a `notifier`\n * Observable emits a value.\n *\n * <span class=\"informal\">Lets values pass until a second Observable,\n * `notifier`, emits a value. Then, it completes.</span>\n *\n * ![](takeUntil.png)\n *\n * `takeUntil` subscribes and begins mirroring the source Observable. It also\n * monitors a second Observable, `notifier` that you provide. If the `notifier`\n * emits a value, the output Observable stops mirroring the source Observable\n * and completes. If the `notifier` doesn't emit any value and completes\n * then `takeUntil` will pass all values.\n *\n * ## Example\n *\n * Tick every second until the first click happens\n *\n * ```ts\n * import { interval, fromEvent, takeUntil } from 'rxjs';\n *\n * const source = interval(1000);\n * const clicks = fromEvent(document, 'click');\n * const result = source.pipe(takeUntil(clicks));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link take}\n * @see {@link takeLast}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param notifier The `ObservableInput` whose first emitted value will cause the output\n * Observable of `takeUntil` to stop emitting values from the source Observable.\n * @return A function that returns an Observable that emits the values from the\n * source Observable until `notifier` emits its first value.\n */\nexport declare function takeUntil<T>(notifier: ObservableInput<any>): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=takeUntil.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts": "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\nexport declare function takeWhile<T>(predicate: BooleanConstructor, inclusive: true): MonoTypeOperatorFunction<T>;\nexport declare function takeWhile<T>(predicate: BooleanConstructor, inclusive: false): OperatorFunction<T, TruthyTypesOf<T>>;\nexport declare function takeWhile<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport declare function takeWhile<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport declare function takeWhile<T, S extends T>(predicate: (value: T, index: number) => value is S, inclusive: false): OperatorFunction<T, S>;\nexport declare function takeWhile<T>(predicate: (value: T, index: number) => boolean, inclusive?: boolean): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=takeWhile.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/tap.d.ts": "import { MonoTypeOperatorFunction, Observer } from '../types';\n/**\n * An extension to the {@link Observer} interface used only by the {@link tap} operator.\n *\n * It provides a useful set of callbacks a user can register to do side-effects in\n * cases other than what the usual {@link Observer} callbacks are\n * ({@link guide/glossary-and-semantics#next next},\n * {@link guide/glossary-and-semantics#error error} and/or\n * {@link guide/glossary-and-semantics#complete complete}).\n *\n * ## Example\n *\n * ```ts\n * import { fromEvent, switchMap, tap, interval, take } from 'rxjs';\n *\n * const source$ = fromEvent(document, 'click');\n * const result$ = source$.pipe(\n *   switchMap((_, i) => i % 2 === 0\n *     ? fromEvent(document, 'mousemove').pipe(\n *         tap({\n *           subscribe: () => console.log('Subscribed to the mouse move events after click #' + i),\n *           unsubscribe: () => console.log('Mouse move events #' + i + ' unsubscribed'),\n *           finalize: () => console.log('Mouse move events #' + i + ' finalized')\n *         })\n *       )\n *     : interval(1_000).pipe(\n *         take(5),\n *         tap({\n *           subscribe: () => console.log('Subscribed to the 1-second interval events after click #' + i),\n *           unsubscribe: () => console.log('1-second interval events #' + i + ' unsubscribed'),\n *           finalize: () => console.log('1-second interval events #' + i + ' finalized')\n *         })\n *       )\n *   )\n * );\n *\n * const subscription = result$.subscribe({\n *   next: console.log\n * });\n *\n * setTimeout(() => {\n *   console.log('Unsubscribe after 60 seconds');\n *   subscription.unsubscribe();\n * }, 60_000);\n * ```\n */\nexport interface TapObserver<T> extends Observer<T> {\n    /**\n     * The callback that `tap` operator invokes at the moment when the source Observable\n     * gets subscribed to.\n     */\n    subscribe: () => void;\n    /**\n     * The callback that `tap` operator invokes when an explicit\n     * {@link guide/glossary-and-semantics#unsubscription unsubscribe} happens. It won't get invoked on\n     * `error` or `complete` events.\n     */\n    unsubscribe: () => void;\n    /**\n     * The callback that `tap` operator invokes when any kind of\n     * {@link guide/glossary-and-semantics#finalization finalization} happens - either when\n     * the source Observable `error`s or `complete`s or when it gets explicitly unsubscribed\n     * by the user. There is no difference in using this callback or the {@link finalize}\n     * operator, but if you're already using `tap` operator, you can use this callback\n     * instead. You'd get the same result in either case.\n     */\n    finalize: () => void;\n}\nexport declare function tap<T>(observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void)): MonoTypeOperatorFunction<T>;\n/** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\nexport declare function tap<T>(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=tap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/throttle.d.ts": "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\n/**\n * An object interface used by {@link throttle} or {@link throttleTime} that ensure\n * configuration options of these operators.\n *\n * @see {@link throttle}\n * @see {@link throttleTime}\n */\nexport interface ThrottleConfig {\n    /**\n     * If `true`, the resulting Observable will emit the first value from the source\n     * Observable at the **start** of the \"throttling\" process (when starting an\n     * internal timer that prevents other emissions from the source to pass through).\n     * If `false`, it will not emit the first value from the source Observable at the\n     * start of the \"throttling\" process.\n     *\n     * If not provided, defaults to: `true`.\n     */\n    leading?: boolean;\n    /**\n     * If `true`, the resulting Observable will emit the last value from the source\n     * Observable at the **end** of the \"throttling\" process (when ending an internal\n     * timer that prevents other emissions from the source to pass through).\n     * If `false`, it will not emit the last value from the source Observable at the\n     * end of the \"throttling\" process.\n     *\n     * If not provided, defaults to: `false`.\n     */\n    trailing?: boolean;\n}\n/**\n * Emits a value from the source Observable, then ignores subsequent source\n * values for a duration determined by another Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link throttleTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](throttle.svg)\n *\n * `throttle` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled by calling the `durationSelector` function with the source value,\n * which returns the \"duration\" Observable. When the duration Observable emits a\n * value, the timer is disabled, and this process repeats for the\n * next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, throttle, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(throttle(() => interval(1000)));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttleTime}\n *\n * @param durationSelector A function that receives a value from the source\n * Observable, for computing the silencing duration for each source value,\n * returned as an `ObservableInput`.\n * @param config A configuration object to define `leading` and `trailing`\n * behavior. Defaults to `{ leading: true, trailing: false }`.\n * @return A function that returns an Observable that performs the throttle\n * operation to limit the rate of emissions from the source.\n */\nexport declare function throttle<T>(durationSelector: (value: T) => ObservableInput<any>, config?: ThrottleConfig): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=throttle.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts": "import { ThrottleConfig } from './throttle';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n/**\n * Emits a value from the source Observable, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * ![](throttleTime.png)\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link SchedulerLike} for managing timers.\n *\n * ## Examples\n *\n * ### Limit click rate\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, throttleTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(throttleTime(1000));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param scheduler The {@link SchedulerLike} to use for\n * managing the timers that handle the throttling. Defaults to {@link asyncScheduler}.\n * @param config A configuration object to define `leading` and\n * `trailing` behavior. Defaults to `{ leading: true, trailing: false }`.\n * @return A function that returns an Observable that performs the throttle\n * operation to limit the rate of emissions from the source.\n */\nexport declare function throttleTime<T>(duration: number, scheduler?: SchedulerLike, config?: ThrottleConfig): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=throttleTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts": "import { MonoTypeOperatorFunction } from '../types';\n/**\n * If the source observable completes without emitting a value, it will emit\n * an error. The error will be created at that time by the optional\n * `errorFactory` argument, otherwise, the error will be {@link EmptyError}.\n *\n * ![](throwIfEmpty.png)\n *\n * ## Example\n *\n * Throw an error if the document wasn't clicked within 1 second\n *\n * ```ts\n * import { fromEvent, takeUntil, timer, throwIfEmpty } from 'rxjs';\n *\n * const click$ = fromEvent(document, 'click');\n *\n * click$.pipe(\n *   takeUntil(timer(1000)),\n *   throwIfEmpty(() => new Error('The document was not clicked within 1 second'))\n * )\n * .subscribe({\n *   next() {\n *    console.log('The document was clicked');\n *   },\n *   error(err) {\n *     console.error(err.message);\n *   }\n * });\n * ```\n *\n * @param errorFactory A factory function called to produce the\n * error to be thrown when the source observable completes without emitting a\n * value.\n * @return A function that returns an Observable that throws an error if the\n * source Observable completed without emitting.\n */\nexport declare function throwIfEmpty<T>(errorFactory?: () => any): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=throwIfEmpty.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts": "import { SchedulerLike, OperatorFunction } from '../types';\n/**\n * Emits an object containing the current value, and the time that has\n * passed between emitting the current value and the previous value, which is\n * calculated by using the provided `scheduler`'s `now()` method to retrieve\n * the current time at each emission, then calculating the difference. The `scheduler`\n * defaults to {@link asyncScheduler}, so by default, the `interval` will be in\n * milliseconds.\n *\n * <span class=\"informal\">Convert an Observable that emits items into one that\n * emits indications of the amount of time elapsed between those emissions.</span>\n *\n * ![](timeInterval.png)\n *\n * ## Example\n *\n * Emit interval between current value with the last value\n *\n * ```ts\n * import { interval, timeInterval } from 'rxjs';\n *\n * const seconds = interval(1000);\n *\n * seconds\n *   .pipe(timeInterval())\n *   .subscribe(value => console.log(value));\n *\n * // NOTE: The values will never be this precise,\n * // intervals created with `interval` or `setInterval`\n * // are non-deterministic.\n *\n * // { value: 0, interval: 1000 }\n * // { value: 1, interval: 1000 }\n * // { value: 2, interval: 1000 }\n * ```\n *\n * @param scheduler Scheduler used to get the current time.\n * @return A function that returns an Observable that emits information about\n * value and interval.\n */\nexport declare function timeInterval<T>(scheduler?: SchedulerLike): OperatorFunction<T, TimeInterval<T>>;\nexport declare class TimeInterval<T> {\n    value: T;\n    interval: number;\n    /**\n     * @deprecated Internal implementation detail, do not construct directly. Will be made an interface in v8.\n     */\n    constructor(value: T, interval: number);\n}\n//# sourceMappingURL=timeInterval.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/timeout.d.ts": "import { MonoTypeOperatorFunction, SchedulerLike, OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\nexport interface TimeoutConfig<T, O extends ObservableInput<unknown> = ObservableInput<T>, M = unknown> {\n    /**\n     * The time allowed between values from the source before timeout is triggered.\n     */\n    each?: number;\n    /**\n     * The relative time as a `number` in milliseconds, or a specific time as a `Date` object,\n     * by which the first value must arrive from the source before timeout is triggered.\n     */\n    first?: number | Date;\n    /**\n     * The scheduler to use with time-related operations within this operator. Defaults to {@link asyncScheduler}\n     */\n    scheduler?: SchedulerLike;\n    /**\n     * A factory used to create observable to switch to when timeout occurs. Provides\n     * a {@link TimeoutInfo} about the source observable's emissions and what delay or\n     * exact time triggered the timeout.\n     */\n    with?: (info: TimeoutInfo<T, M>) => O;\n    /**\n     * Optional additional metadata you can provide to code that handles\n     * the timeout, will be provided through the {@link TimeoutError}.\n     * This can be used to help identify the source of a timeout or pass along\n     * other information related to the timeout.\n     */\n    meta?: M;\n}\nexport interface TimeoutInfo<T, M = unknown> {\n    /** Optional metadata that was provided to the timeout configuration. */\n    readonly meta: M;\n    /** The number of messages seen before the timeout */\n    readonly seen: number;\n    /** The last message seen */\n    readonly lastValue: T | null;\n}\n/**\n * An error emitted when a timeout occurs.\n */\nexport interface TimeoutError<T = unknown, M = unknown> extends Error {\n    /**\n     * The information provided to the error by the timeout\n     * operation that created the error. Will be `null` if\n     * used directly in non-RxJS code with an empty constructor.\n     * (Note that using this constructor directly is not recommended,\n     * you should create your own errors)\n     */\n    info: TimeoutInfo<T, M> | null;\n}\nexport interface TimeoutErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new <T = unknown, M = unknown>(info?: TimeoutInfo<T, M>): TimeoutError<T, M>;\n}\n/**\n * An error thrown by the {@link timeout} operator.\n *\n * Provided so users can use as a type and do quality comparisons.\n * We recommend you do not subclass this or create instances of this class directly.\n * If you have need of a error representing a timeout, you should\n * create your own error class and use that.\n *\n * @see {@link timeout}\n */\nexport declare const TimeoutError: TimeoutErrorCtor;\n/**\n * If `with` is provided, this will return an observable that will switch to a different observable if the source\n * does not push values within the specified time parameters.\n *\n * <span class=\"informal\">The most flexible option for creating a timeout behavior.</span>\n *\n * The first thing to know about the configuration is if you do not provide a `with` property to the configuration,\n * when timeout conditions are met, this operator will emit a {@link TimeoutError}. Otherwise, it will use the factory\n * function provided by `with`, and switch your subscription to the result of that. Timeout conditions are provided by\n * the settings in `first` and `each`.\n *\n * The `first` property can be either a `Date` for a specific time, a `number` for a time period relative to the\n * point of subscription, or it can be skipped. This property is to check timeout conditions for the arrival of\n * the first value from the source _only_. The timings of all subsequent values  from the source will be checked\n * against the time period provided by `each`, if it was provided.\n *\n * The `each` property can be either a `number` or skipped. If a value for `each` is provided, it represents the amount of\n * time the resulting observable will wait between the arrival of values from the source before timing out. Note that if\n * `first` is _not_ provided, the value from `each` will be used to check timeout conditions for the arrival of the first\n * value and all subsequent values. If `first` _is_ provided, `each` will only be use to check all values after the first.\n *\n * ## Examples\n *\n * Emit a custom error if there is too much time between values\n *\n * ```ts\n * import { interval, timeout, throwError } from 'rxjs';\n *\n * class CustomTimeoutError extends Error {\n *   constructor() {\n *     super('It was too slow');\n *     this.name = 'CustomTimeoutError';\n *   }\n * }\n *\n * const slow$ = interval(900);\n *\n * slow$.pipe(\n *   timeout({\n *     each: 1000,\n *     with: () => throwError(() => new CustomTimeoutError())\n *   })\n * )\n * .subscribe({\n *   error: console.error\n * });\n * ```\n *\n * Switch to a faster observable if your source is slow.\n *\n * ```ts\n * import { interval, timeout } from 'rxjs';\n *\n * const slow$ = interval(900);\n * const fast$ = interval(500);\n *\n * slow$.pipe(\n *   timeout({\n *     each: 1000,\n *     with: () => fast$,\n *   })\n * )\n * .subscribe(console.log);\n * ```\n * @param config The configuration for the timeout.\n */\nexport declare function timeout<T, O extends ObservableInput<unknown>, M = unknown>(config: TimeoutConfig<T, O, M> & {\n    with: (info: TimeoutInfo<T, M>) => O;\n}): OperatorFunction<T, T | ObservedValueOf<O>>;\n/**\n * Returns an observable that will error or switch to a different observable if the source does not push values\n * within the specified time parameters.\n *\n * <span class=\"informal\">The most flexible option for creating a timeout behavior.</span>\n *\n * The first thing to know about the configuration is if you do not provide a `with` property to the configuration,\n * when timeout conditions are met, this operator will emit a {@link TimeoutError}. Otherwise, it will use the factory\n * function provided by `with`, and switch your subscription to the result of that. Timeout conditions are provided by\n * the settings in `first` and `each`.\n *\n * The `first` property can be either a `Date` for a specific time, a `number` for a time period relative to the\n * point of subscription, or it can be skipped. This property is to check timeout conditions for the arrival of\n * the first value from the source _only_. The timings of all subsequent values  from the source will be checked\n * against the time period provided by `each`, if it was provided.\n *\n * The `each` property can be either a `number` or skipped. If a value for `each` is provided, it represents the amount of\n * time the resulting observable will wait between the arrival of values from the source before timing out. Note that if\n * `first` is _not_ provided, the value from `each` will be used to check timeout conditions for the arrival of the first\n * value and all subsequent values. If `first` _is_ provided, `each` will only be use to check all values after the first.\n *\n * ### Handling TimeoutErrors\n *\n * If no `with` property was provided, subscriptions to the resulting observable may emit an error of {@link TimeoutError}.\n * The timeout error provides useful information you can examine when you're handling the error. The most common way to handle\n * the error would be with {@link catchError}, although you could use {@link tap} or just the error handler in your `subscribe` call\n * directly, if your error handling is only a side effect (such as notifying the user, or logging).\n *\n * In this case, you would check the error for `instanceof TimeoutError` to validate that the error was indeed from `timeout`, and\n * not from some other source. If it's not from `timeout`, you should probably rethrow it if you're in a `catchError`.\n *\n * ## Examples\n *\n * Emit a {@link TimeoutError} if the first value, and _only_ the first value, does not arrive within 5 seconds\n *\n * ```ts\n * import { interval, timeout } from 'rxjs';\n *\n * // A random interval that lasts between 0 and 10 seconds per tick\n * const source$ = interval(Math.round(Math.random() * 10_000));\n *\n * source$.pipe(\n *   timeout({ first: 5_000 })\n * )\n * .subscribe({\n *   next: console.log,\n *   error: console.error\n * });\n * ```\n *\n * Emit a {@link TimeoutError} if the source waits longer than 5 seconds between any two values or the first value\n * and subscription.\n *\n * ```ts\n * import { timer, timeout, expand } from 'rxjs';\n *\n * const getRandomTime = () => Math.round(Math.random() * 10_000);\n *\n * // An observable that waits a random amount of time between each delivered value\n * const source$ = timer(getRandomTime())\n *   .pipe(expand(() => timer(getRandomTime())));\n *\n * source$\n *   .pipe(timeout({ each: 5_000 }))\n *   .subscribe({\n *     next: console.log,\n *     error: console.error\n *   });\n * ```\n *\n * Emit a {@link TimeoutError} if the source does not emit before 7 seconds, _or_ if the source waits longer than\n * 5 seconds between any two values after the first.\n *\n * ```ts\n * import { timer, timeout, expand } from 'rxjs';\n *\n * const getRandomTime = () => Math.round(Math.random() * 10_000);\n *\n * // An observable that waits a random amount of time between each delivered value\n * const source$ = timer(getRandomTime())\n *   .pipe(expand(() => timer(getRandomTime())));\n *\n * source$\n *   .pipe(timeout({ first: 7_000, each: 5_000 }))\n *   .subscribe({\n *     next: console.log,\n *     error: console.error\n *   });\n * ```\n */\nexport declare function timeout<T, M = unknown>(config: Omit<TimeoutConfig<T, any, M>, 'with'>): OperatorFunction<T, T>;\n/**\n * Returns an observable that will error if the source does not push its first value before the specified time passed as a `Date`.\n * This is functionally the same as `timeout({ first: someDate })`.\n *\n * <span class=\"informal\">Errors if the first value doesn't show up before the given date and time</span>\n *\n * ![](timeout.png)\n *\n * @param first The date to at which the resulting observable will timeout if the source observable\n * does not emit at least one value.\n * @param scheduler The scheduler to use. Defaults to {@link asyncScheduler}.\n */\nexport declare function timeout<T>(first: Date, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n/**\n * Returns an observable that will error if the source does not push a value within the specified time in milliseconds.\n * This is functionally the same as `timeout({ each: milliseconds })`.\n *\n * <span class=\"informal\">Errors if it waits too long between any value</span>\n *\n * ![](timeout.png)\n *\n * @param each The time allowed between each pushed value from the source before the resulting observable\n * will timeout.\n * @param scheduler The scheduler to use. Defaults to {@link asyncScheduler}.\n */\nexport declare function timeout<T>(each: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n//# sourceMappingURL=timeout.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts": "import { ObservableInput, OperatorFunction, SchedulerLike } from '../types';\n/** @deprecated Replaced with {@link timeout}. Instead of `timeoutWith(someDate, a$, scheduler)`, use the configuration object\n * `timeout({ first: someDate, with: () => a$, scheduler })`. Will be removed in v8. */\nexport declare function timeoutWith<T, R>(dueBy: Date, switchTo: ObservableInput<R>, scheduler?: SchedulerLike): OperatorFunction<T, T | R>;\n/** @deprecated Replaced with {@link timeout}. Instead of `timeoutWith(100, a$, scheduler)`, use the configuration object\n *  `timeout({ each: 100, with: () => a$, scheduler })`. Will be removed in v8. */\nexport declare function timeoutWith<T, R>(waitFor: number, switchTo: ObservableInput<R>, scheduler?: SchedulerLike): OperatorFunction<T, T | R>;\n//# sourceMappingURL=timeoutWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts": "import { OperatorFunction, TimestampProvider, Timestamp } from '../types';\n/**\n * Attaches a timestamp to each item emitted by an observable indicating when it was emitted\n *\n * The `timestamp` operator maps the *source* observable stream to an object of type\n * `{value: T, timestamp: R}`. The properties are generically typed. The `value` property contains the value\n * and type of the *source* observable. The `timestamp` is generated by the schedulers `now` function. By\n * default, it uses the `asyncScheduler` which simply returns `Date.now()` (milliseconds since 1970/01/01\n * 00:00:00:000) and therefore is of type `number`.\n *\n * ![](timestamp.png)\n *\n * ## Example\n *\n * In this example there is a timestamp attached to the document's click events\n *\n * ```ts\n * import { fromEvent, timestamp } from 'rxjs';\n *\n * const clickWithTimestamp = fromEvent(document, 'click').pipe(\n *   timestamp()\n * );\n *\n * // Emits data of type { value: PointerEvent, timestamp: number }\n * clickWithTimestamp.subscribe(data => {\n *   console.log(data);\n * });\n * ```\n *\n * @param timestampProvider An object with a `now()` method used to get the current timestamp.\n * @return A function that returns an Observable that attaches a timestamp to\n * each item emitted by the source Observable indicating when it was emitted.\n */\nexport declare function timestamp<T>(timestampProvider?: TimestampProvider): OperatorFunction<T, Timestamp<T>>;\n//# sourceMappingURL=timestamp.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/toArray.d.ts": "import { OperatorFunction } from '../types';\n/**\n * Collects all source emissions and emits them as an array when the source completes.\n *\n * <span class=\"informal\">Get all values inside an array when the source completes</span>\n *\n * ![](toArray.png)\n *\n * `toArray` will wait until the source Observable completes before emitting\n * the array containing all emissions. When the source Observable errors no\n * array will be emitted.\n *\n * ## Example\n *\n * ```ts\n * import { interval, take, toArray } from 'rxjs';\n *\n * const source = interval(1000);\n * const example = source.pipe(\n *   take(10),\n *   toArray()\n * );\n *\n * example.subscribe(value => console.log(value));\n *\n * // output: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n * ```\n *\n * @return A function that returns an Observable that emits an array of items\n * emitted by the source Observable when source completes.\n */\nexport declare function toArray<T>(): OperatorFunction<T, T[]>;\n//# sourceMappingURL=toArray.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/window.d.ts": "import { Observable } from '../Observable';\nimport { OperatorFunction, ObservableInput } from '../types';\n/**\n * Branch out the source Observable values as a nested Observable whenever\n * `windowBoundaries` emits.\n *\n * <span class=\"informal\">It's like {@link buffer}, but emits a nested Observable\n * instead of an array.</span>\n *\n * ![](window.png)\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping\n * windows. It emits the current window and opens a new one whenever the\n * `windowBoundaries` emits an item. `windowBoundaries` can be any type that\n * `ObservableInput` accepts. It internally gets converted to an Observable.\n * Because each window is an Observable, the output is a higher-order Observable.\n *\n * ## Example\n *\n * In every window of 1 second each, emit at most 2 click events\n *\n * ```ts\n * import { fromEvent, interval, window, map, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const sec = interval(1000);\n * const result = clicks.pipe(\n *   window(sec),\n *   map(win => win.pipe(take(2))), // take at most 2 emissions from each window\n *   mergeAll()                     // flatten the Observable-of-Observables\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link buffer}\n *\n * @param windowBoundaries An `ObservableInput` that completes the\n * previous window and starts a new window.\n * @return A function that returns an Observable of windows, which are\n * Observables emitting values of the source Observable.\n */\nexport declare function window<T>(windowBoundaries: ObservableInput<any>): OperatorFunction<T, Observable<T>>;\n//# sourceMappingURL=window.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts": "import { Observable } from '../Observable';\nimport { OperatorFunction } from '../types';\n/**\n * Branch out the source Observable values as a nested Observable with each\n * nested Observable emitting at most `windowSize` values.\n *\n * <span class=\"informal\">It's like {@link bufferCount}, but emits a nested\n * Observable instead of an array.</span>\n *\n * ![](windowCount.png)\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits windows every `startWindowEvery`\n * items, each containing no more than `windowSize` items. When the source\n * Observable completes or encounters an error, the output Observable emits\n * the current window and propagates the notification from the source\n * Observable. If `startWindowEvery` is not provided, then new windows are\n * started immediately at the start of the source and when each window completes\n * with size `windowSize`.\n *\n * ## Examples\n *\n * Ignore every 3rd click event, starting from the first one\n *\n * ```ts\n * import { fromEvent, windowCount, map, skip, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(\n *   windowCount(3),\n *   map(win => win.pipe(skip(1))), // skip first of every 3 clicks\n *   mergeAll()                     // flatten the Observable-of-Observables\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * Ignore every 3rd click event, starting from the third one\n *\n * ```ts\n * import { fromEvent, windowCount, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(\n *   windowCount(2, 3),\n *   mergeAll() // flatten the Observable-of-Observables\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link window}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link bufferCount}\n *\n * @param windowSize The maximum number of values emitted by each window.\n * @param startWindowEvery Interval at which to start a new window. For example\n * if `startWindowEvery` is `2`, then a new window will be started on every\n * other value from the source. A new window is started at the beginning of the\n * source by default.\n * @return A function that returns an Observable of windows, which in turn are\n * Observable of values.\n */\nexport declare function windowCount<T>(windowSize: number, startWindowEvery?: number): OperatorFunction<T, Observable<T>>;\n//# sourceMappingURL=windowCount.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts": "import { Observable } from '../Observable';\nimport { OperatorFunction, SchedulerLike } from '../types';\nexport declare function windowTime<T>(windowTimeSpan: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;\nexport declare function windowTime<T>(windowTimeSpan: number, windowCreationInterval: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;\nexport declare function windowTime<T>(windowTimeSpan: number, windowCreationInterval: number | null | void, maxWindowSize: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;\n//# sourceMappingURL=windowTime.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, OperatorFunction } from '../types';\n/**\n * Branch out the source Observable values as a nested Observable starting from\n * an emission from `openings` and ending when the output of `closingSelector`\n * emits.\n *\n * <span class=\"informal\">It's like {@link bufferToggle}, but emits a nested\n * Observable instead of an array.</span>\n *\n * ![](windowToggle.png)\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits windows that contain those items\n * emitted by the source Observable between the time when the `openings`\n * Observable emits an item and when the Observable returned by\n * `closingSelector` emits an item.\n *\n * ## Example\n *\n * Every other second, emit the click events from the next 500ms\n *\n * ```ts\n * import { fromEvent, interval, windowToggle, EMPTY, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const openings = interval(1000);\n * const result = clicks.pipe(\n *   windowToggle(openings, i => i % 2 ? interval(500) : EMPTY),\n *   mergeAll()\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link window}\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowWhen}\n * @see {@link bufferToggle}\n *\n * @param openings An observable of notifications to start new windows.\n * @param closingSelector A function that takes the value emitted by the\n * `openings` observable and returns an Observable, which, when it emits a next\n * notification, signals that the associated window should complete.\n * @return A function that returns an Observable of windows, which in turn are\n * Observables.\n */\nexport declare function windowToggle<T, O>(openings: ObservableInput<O>, closingSelector: (openValue: O) => ObservableInput<any>): OperatorFunction<T, Observable<T>>;\n//# sourceMappingURL=windowToggle.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts": "import { Observable } from '../Observable';\nimport { ObservableInput, OperatorFunction } from '../types';\n/**\n * Branch out the source Observable values as a nested Observable using a\n * factory function of closing Observables to determine when to start a new\n * window.\n *\n * <span class=\"informal\">It's like {@link bufferWhen}, but emits a nested\n * Observable instead of an array.</span>\n *\n * ![](windowWhen.png)\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping windows.\n * It emits the current window and opens a new one whenever the Observable\n * produced by the specified `closingSelector` function emits an item. The first\n * window is opened immediately when subscribing to the output Observable.\n *\n * ## Example\n *\n * Emit only the first two clicks events in every window of [1-5] random seconds\n *\n * ```ts\n * import { fromEvent, windowWhen, interval, map, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(\n *   windowWhen(() => interval(1000 + Math.random() * 4000)),\n *   map(win => win.pipe(take(2))), // take at most 2 emissions from each window\n *   mergeAll()                     // flatten the Observable-of-Observables\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link window}\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link bufferWhen}\n *\n * @param closingSelector A function that takes no arguments and returns an\n * {@link ObservableInput} (that gets converted to Observable) that signals\n * (on either `next` or `complete`) when to close the previous window and\n * start a new one.\n * @return A function that returns an Observable of windows, which in turn are\n * Observables.\n */\nexport declare function windowWhen<T>(closingSelector: () => ObservableInput<any>): OperatorFunction<T, Observable<T>>;\n//# sourceMappingURL=windowWhen.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts": "import { OperatorFunction, ObservableInputTuple } from '../types';\nexport declare function withLatestFrom<T, O extends unknown[]>(...inputs: [...ObservableInputTuple<O>]): OperatorFunction<T, [T, ...O]>;\nexport declare function withLatestFrom<T, O extends unknown[], R>(...inputs: [...ObservableInputTuple<O>, (...value: [T, ...O]) => R]): OperatorFunction<T, R>;\n//# sourceMappingURL=withLatestFrom.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/zip.d.ts": "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport declare function zip<T, A extends readonly unknown[]>(otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport declare function zip<T, A extends readonly unknown[], R>(otherInputsAndProject: [...ObservableInputTuple<A>], project: (...values: Cons<T, A>) => R): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport declare function zip<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport declare function zip<T, A extends readonly unknown[], R>(...otherInputsAndProject: [...ObservableInputTuple<A>, (...values: Cons<T, A>) => R]): OperatorFunction<T, R>;\n//# sourceMappingURL=zip.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts": "import { OperatorFunction, ObservableInput } from '../types';\n/**\n * Collects all observable inner sources from the source, once the source completes,\n * it will subscribe to all inner sources, combining their values by index and emitting\n * them.\n *\n * @see {@link zipWith}\n * @see {@link zip}\n */\nexport declare function zipAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;\nexport declare function zipAll<T>(): OperatorFunction<any, T[]>;\nexport declare function zipAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;\nexport declare function zipAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;\n//# sourceMappingURL=zipAll.d.ts.map",
    "node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts": "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\n/**\n * Subscribes to the source, and the observable inputs provided as arguments, and combines their values, by index, into arrays.\n *\n * What is meant by \"combine by index\": The first value from each will be made into a single array, then emitted,\n * then the second value from each will be combined into a single array and emitted, then the third value\n * from each will be combined into a single array and emitted, and so on.\n *\n * This will continue until it is no longer able to combine values of the same index into an array.\n *\n * After the last value from any one completed source is emitted in an array, the resulting observable will complete,\n * as there is no way to continue \"zipping\" values together by index.\n *\n * Use-cases for this operator are limited. There are memory concerns if one of the streams is emitting\n * values at a much faster rate than the others. Usage should likely be limited to streams that emit\n * at a similar pace, or finite streams of known length.\n *\n * In many cases, authors want `combineLatestWith` and not `zipWith`.\n *\n * @param otherInputs other observable inputs to collate values from.\n * @return A function that returns an Observable that emits items by index\n * combined from the source Observable and provided Observables, in form of an\n * array.\n */\nexport declare function zipWith<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n//# sourceMappingURL=zipWith.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduleArray.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nexport declare function scheduleArray<T>(input: ArrayLike<T>, scheduler: SchedulerLike): Observable<T>;\n//# sourceMappingURL=scheduleArray.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduleAsyncIterable.d.ts": "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nexport declare function scheduleAsyncIterable<T>(input: AsyncIterable<T>, scheduler: SchedulerLike): Observable<T>;\n//# sourceMappingURL=scheduleAsyncIterable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduleIterable.d.ts": "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n/**\n * Used in {@link scheduled} to create an observable from an Iterable.\n * @param input The iterable to create an observable from\n * @param scheduler The scheduler to use\n */\nexport declare function scheduleIterable<T>(input: Iterable<T>, scheduler: SchedulerLike): Observable<T>;\n//# sourceMappingURL=scheduleIterable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduleObservable.d.ts": "import { InteropObservable, SchedulerLike } from '../types';\nexport declare function scheduleObservable<T>(input: InteropObservable<T>, scheduler: SchedulerLike): import(\"../Observable\").Observable<T>;\n//# sourceMappingURL=scheduleObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/schedulePromise.d.ts": "import { SchedulerLike } from '../types';\nexport declare function schedulePromise<T>(input: PromiseLike<T>, scheduler: SchedulerLike): import(\"../Observable\").Observable<T>;\n//# sourceMappingURL=schedulePromise.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduleReadableStreamLike.d.ts": "import { SchedulerLike, ReadableStreamLike } from '../types';\nimport { Observable } from '../Observable';\nexport declare function scheduleReadableStreamLike<T>(input: ReadableStreamLike<T>, scheduler: SchedulerLike): Observable<T>;\n//# sourceMappingURL=scheduleReadableStreamLike.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts": "import { ObservableInput, SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\n/**\n * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions\n * are scheduled on the provided scheduler.\n *\n * @see {@link from}\n * @see {@link of}\n *\n * @param input The observable, array, promise, iterable, etc you would like to schedule\n * @param scheduler The scheduler to use to schedule the subscription and emissions from\n * the returned observable.\n */\nexport declare function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T>;\n//# sourceMappingURL=scheduled.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts": "import { Scheduler } from '../Scheduler';\nimport { Subscription } from '../Subscription';\nimport { SchedulerAction } from '../types';\n/**\n * A unit of work to be executed in a `scheduler`. An action is typically\n * created from within a {@link SchedulerLike} and an RxJS user does not need to concern\n * themselves about creating and manipulating an Action.\n *\n * ```ts\n * class Action<T> extends Subscription {\n *   new (scheduler: Scheduler, work: (state?: T) => void);\n *   schedule(state?: T, delay: number = 0): Subscription;\n * }\n * ```\n */\nexport declare class Action<T> extends Subscription {\n    constructor(scheduler: Scheduler, work: (this: SchedulerAction<T>, state?: T) => void);\n    /**\n     * Schedules this action on its parent {@link SchedulerLike} for execution. May be passed\n     * some context object, `state`. May happen at some point in the future,\n     * according to the `delay` parameter, if specified.\n     * @param state Some contextual data that the `work` function uses when called by the\n     * Scheduler.\n     * @param delay Time to wait before executing the work, where the time unit is implicit\n     * and defined by the Scheduler.\n     * @return A subscription in order to be able to unsubscribe the scheduled work.\n     */\n    schedule(state?: T, delay?: number): Subscription;\n}\n//# sourceMappingURL=Action.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameAction.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\nexport declare class AnimationFrameAction<T> extends AsyncAction<T> {\n    protected scheduler: AnimationFrameScheduler;\n    protected work: (this: SchedulerAction<T>, state?: T) => void;\n    constructor(scheduler: AnimationFrameScheduler, work: (this: SchedulerAction<T>, state?: T) => void);\n    protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay?: number): TimerHandle;\n    protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay?: number): TimerHandle | undefined;\n}\n//# sourceMappingURL=AnimationFrameAction.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\nexport declare class AnimationFrameScheduler extends AsyncScheduler {\n    flush(action?: AsyncAction<any>): void;\n}\n//# sourceMappingURL=AnimationFrameScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AsapAction.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { AsapScheduler } from './AsapScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\nexport declare class AsapAction<T> extends AsyncAction<T> {\n    protected scheduler: AsapScheduler;\n    protected work: (this: SchedulerAction<T>, state?: T) => void;\n    constructor(scheduler: AsapScheduler, work: (this: SchedulerAction<T>, state?: T) => void);\n    protected requestAsyncId(scheduler: AsapScheduler, id?: TimerHandle, delay?: number): TimerHandle;\n    protected recycleAsyncId(scheduler: AsapScheduler, id?: TimerHandle, delay?: number): TimerHandle | undefined;\n}\n//# sourceMappingURL=AsapAction.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\nexport declare class AsapScheduler extends AsyncScheduler {\n    flush(action?: AsyncAction<any>): void;\n}\n//# sourceMappingURL=AsapScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts": "import { Action } from './Action';\nimport { SchedulerAction } from '../types';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { TimerHandle } from './timerHandle';\nexport declare class AsyncAction<T> extends Action<T> {\n    protected scheduler: AsyncScheduler;\n    protected work: (this: SchedulerAction<T>, state?: T) => void;\n    id: TimerHandle | undefined;\n    state?: T;\n    delay: number;\n    protected pending: boolean;\n    constructor(scheduler: AsyncScheduler, work: (this: SchedulerAction<T>, state?: T) => void);\n    schedule(state?: T, delay?: number): Subscription;\n    protected requestAsyncId(scheduler: AsyncScheduler, _id?: TimerHandle, delay?: number): TimerHandle;\n    protected recycleAsyncId(_scheduler: AsyncScheduler, id?: TimerHandle, delay?: number | null): TimerHandle | undefined;\n    /**\n     * Immediately executes this action and the `work` it contains.\n     */\n    execute(state: T, delay: number): any;\n    protected _execute(state: T, _delay: number): any;\n    unsubscribe(): void;\n}\n//# sourceMappingURL=AsyncAction.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts": "import { Scheduler } from '../Scheduler';\nimport { Action } from './Action';\nimport { AsyncAction } from './AsyncAction';\nexport declare class AsyncScheduler extends Scheduler {\n    actions: Array<AsyncAction<any>>;\n    constructor(SchedulerAction: typeof Action, now?: () => number);\n    flush(action: AsyncAction<any>): void;\n}\n//# sourceMappingURL=AsyncScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/QueueAction.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { Subscription } from '../Subscription';\nimport { QueueScheduler } from './QueueScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\nexport declare class QueueAction<T> extends AsyncAction<T> {\n    protected scheduler: QueueScheduler;\n    protected work: (this: SchedulerAction<T>, state?: T) => void;\n    constructor(scheduler: QueueScheduler, work: (this: SchedulerAction<T>, state?: T) => void);\n    schedule(state?: T, delay?: number): Subscription;\n    execute(state: T, delay: number): any;\n    protected requestAsyncId(scheduler: QueueScheduler, id?: TimerHandle, delay?: number): TimerHandle;\n}\n//# sourceMappingURL=QueueAction.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts": "import { AsyncScheduler } from './AsyncScheduler';\nexport declare class QueueScheduler extends AsyncScheduler {\n}\n//# sourceMappingURL=QueueScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts": "import { AsyncAction } from './AsyncAction';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\nexport declare class VirtualTimeScheduler extends AsyncScheduler {\n    maxFrames: number;\n    /** @deprecated Not used in VirtualTimeScheduler directly. Will be removed in v8. */\n    static frameTimeFactor: number;\n    /**\n     * The current frame for the state of the virtual scheduler instance. The difference\n     * between two \"frames\" is synonymous with the passage of \"virtual time units\". So if\n     * you record `scheduler.frame` to be `1`, then later, observe `scheduler.frame` to be at `11`,\n     * that means `10` virtual time units have passed.\n     */\n    frame: number;\n    /**\n     * Used internally to examine the current virtual action index being processed.\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     */\n    index: number;\n    /**\n     * This creates an instance of a `VirtualTimeScheduler`. Experts only. The signature of\n     * this constructor is likely to change in the long run.\n     *\n     * @param schedulerActionCtor The type of Action to initialize when initializing actions during scheduling.\n     * @param maxFrames The maximum number of frames to process before stopping. Used to prevent endless flush cycles.\n     */\n    constructor(schedulerActionCtor?: typeof AsyncAction, maxFrames?: number);\n    /**\n     * Prompt the Scheduler to execute all of its queued actions, therefore\n     * clearing its queue.\n     */\n    flush(): void;\n}\nexport declare class VirtualAction<T> extends AsyncAction<T> {\n    protected scheduler: VirtualTimeScheduler;\n    protected work: (this: SchedulerAction<T>, state?: T) => void;\n    protected index: number;\n    protected active: boolean;\n    constructor(scheduler: VirtualTimeScheduler, work: (this: SchedulerAction<T>, state?: T) => void, index?: number);\n    schedule(state?: T, delay?: number): Subscription;\n    protected requestAsyncId(scheduler: VirtualTimeScheduler, id?: any, delay?: number): TimerHandle;\n    protected recycleAsyncId(scheduler: VirtualTimeScheduler, id?: any, delay?: number): TimerHandle | undefined;\n    protected _execute(state: T, delay: number): any;\n    private static sortActions;\n}\n//# sourceMappingURL=VirtualTimeScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts": "import { AnimationFrameScheduler } from './AnimationFrameScheduler';\n/**\n *\n * Animation Frame Scheduler\n *\n * <span class=\"informal\">Perform task when `window.requestAnimationFrame` would fire</span>\n *\n * When `animationFrame` scheduler is used with delay, it will fall back to {@link asyncScheduler} scheduler\n * behaviour.\n *\n * Without delay, `animationFrame` scheduler can be used to create smooth browser animations.\n * It makes sure scheduled task will happen just before next browser content repaint,\n * thus performing animations as efficiently as possible.\n *\n * ## Example\n * Schedule div height animation\n * ```ts\n * // html: <div style=\"background: #0ff;\"></div>\n * import { animationFrameScheduler } from 'rxjs';\n *\n * const div = document.querySelector('div');\n *\n * animationFrameScheduler.schedule(function(height) {\n *   div.style.height = height + \"px\";\n *\n *   this.schedule(height + 1);  // `this` references currently executing Action,\n *                               // which we reschedule with new state\n * }, 0, 0);\n *\n * // You will see a div element growing in height\n * ```\n */\nexport declare const animationFrameScheduler: AnimationFrameScheduler;\n/**\n * @deprecated Renamed to {@link animationFrameScheduler}. Will be removed in v8.\n */\nexport declare const animationFrame: AnimationFrameScheduler;\n//# sourceMappingURL=animationFrame.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/animationFrameProvider.d.ts": "import { Subscription } from '../Subscription';\ninterface AnimationFrameProvider {\n    schedule(callback: FrameRequestCallback): Subscription;\n    requestAnimationFrame: typeof requestAnimationFrame;\n    cancelAnimationFrame: typeof cancelAnimationFrame;\n    delegate: {\n        requestAnimationFrame: typeof requestAnimationFrame;\n        cancelAnimationFrame: typeof cancelAnimationFrame;\n    } | undefined;\n}\nexport declare const animationFrameProvider: AnimationFrameProvider;\nexport {};\n//# sourceMappingURL=animationFrameProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts": "import { AsapScheduler } from './AsapScheduler';\n/**\n *\n * Asap Scheduler\n *\n * <span class=\"informal\">Perform task as fast as it can be performed asynchronously</span>\n *\n * `asap` scheduler behaves the same as {@link asyncScheduler} scheduler when you use it to delay task\n * in time. If however you set delay to `0`, `asap` will wait for current synchronously executing\n * code to end and then it will try to execute given task as fast as possible.\n *\n * `asap` scheduler will do its best to minimize time between end of currently executing code\n * and start of scheduled task. This makes it best candidate for performing so called \"deferring\".\n * Traditionally this was achieved by calling `setTimeout(deferredTask, 0)`, but that technique involves\n * some (although minimal) unwanted delay.\n *\n * Note that using `asap` scheduler does not necessarily mean that your task will be first to process\n * after currently executing code. In particular, if some task was also scheduled with `asap` before,\n * that task will execute first. That being said, if you need to schedule task asynchronously, but\n * as soon as possible, `asap` scheduler is your best bet.\n *\n * ## Example\n * Compare async and asap scheduler<\n * ```ts\n * import { asapScheduler, asyncScheduler } from 'rxjs';\n *\n * asyncScheduler.schedule(() => console.log('async')); // scheduling 'async' first...\n * asapScheduler.schedule(() => console.log('asap'));\n *\n * // Logs:\n * // \"asap\"\n * // \"async\"\n * // ... but 'asap' goes first!\n * ```\n */\nexport declare const asapScheduler: AsapScheduler;\n/**\n * @deprecated Renamed to {@link asapScheduler}. Will be removed in v8.\n */\nexport declare const asap: AsapScheduler;\n//# sourceMappingURL=asap.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/async.d.ts": "import { AsyncScheduler } from './AsyncScheduler';\n/**\n *\n * Async Scheduler\n *\n * <span class=\"informal\">Schedule task as if you used setTimeout(task, duration)</span>\n *\n * `async` scheduler schedules tasks asynchronously, by putting them on the JavaScript\n * event loop queue. It is best used to delay tasks in time or to schedule tasks repeating\n * in intervals.\n *\n * If you just want to \"defer\" task, that is to perform it right after currently\n * executing synchronous code ends (commonly achieved by `setTimeout(deferredTask, 0)`),\n * better choice will be the {@link asapScheduler} scheduler.\n *\n * ## Examples\n * Use async scheduler to delay task\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * const task = () => console.log('it works!');\n *\n * asyncScheduler.schedule(task, 2000);\n *\n * // After 2 seconds logs:\n * // \"it works!\"\n * ```\n *\n * Use async scheduler to repeat task in intervals\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * function task(state) {\n *   console.log(state);\n *   this.schedule(state + 1, 1000); // `this` references currently executing Action,\n *                                   // which we reschedule with new state and delay\n * }\n *\n * asyncScheduler.schedule(task, 3000, 0);\n *\n * // Logs:\n * // 0 after 3s\n * // 1 after 4s\n * // 2 after 5s\n * // 3 after 6s\n * ```\n */\nexport declare const asyncScheduler: AsyncScheduler;\n/**\n * @deprecated Renamed to {@link asyncScheduler}. Will be removed in v8.\n */\nexport declare const async: AsyncScheduler;\n//# sourceMappingURL=async.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/dateTimestampProvider.d.ts": "import { TimestampProvider } from '../types';\ninterface DateTimestampProvider extends TimestampProvider {\n    delegate: TimestampProvider | undefined;\n}\nexport declare const dateTimestampProvider: DateTimestampProvider;\nexport {};\n//# sourceMappingURL=dateTimestampProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/immediateProvider.d.ts": "import type { TimerHandle } from './timerHandle';\ndeclare type SetImmediateFunction = (handler: () => void, ...args: any[]) => TimerHandle;\ndeclare type ClearImmediateFunction = (handle: TimerHandle) => void;\ninterface ImmediateProvider {\n    setImmediate: SetImmediateFunction;\n    clearImmediate: ClearImmediateFunction;\n    delegate: {\n        setImmediate: SetImmediateFunction;\n        clearImmediate: ClearImmediateFunction;\n    } | undefined;\n}\nexport declare const immediateProvider: ImmediateProvider;\nexport {};\n//# sourceMappingURL=immediateProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/intervalProvider.d.ts": "import type { TimerHandle } from './timerHandle';\ndeclare type SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ndeclare type ClearIntervalFunction = (handle: TimerHandle) => void;\ninterface IntervalProvider {\n    setInterval: SetIntervalFunction;\n    clearInterval: ClearIntervalFunction;\n    delegate: {\n        setInterval: SetIntervalFunction;\n        clearInterval: ClearIntervalFunction;\n    } | undefined;\n}\nexport declare const intervalProvider: IntervalProvider;\nexport {};\n//# sourceMappingURL=intervalProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/performanceTimestampProvider.d.ts": "import { TimestampProvider } from '../types';\ninterface PerformanceTimestampProvider extends TimestampProvider {\n    delegate: TimestampProvider | undefined;\n}\nexport declare const performanceTimestampProvider: PerformanceTimestampProvider;\nexport {};\n//# sourceMappingURL=performanceTimestampProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts": "import { QueueScheduler } from './QueueScheduler';\n/**\n *\n * Queue Scheduler\n *\n * <span class=\"informal\">Put every next task on a queue, instead of executing it immediately</span>\n *\n * `queue` scheduler, when used with delay, behaves the same as {@link asyncScheduler} scheduler.\n *\n * When used without delay, it schedules given task synchronously - executes it right when\n * it is scheduled. However when called recursively, that is when inside the scheduled task,\n * another task is scheduled with queue scheduler, instead of executing immediately as well,\n * that task will be put on a queue and wait for current one to finish.\n *\n * This means that when you execute task with `queue` scheduler, you are sure it will end\n * before any other task scheduled with that scheduler will start.\n *\n * ## Examples\n * Schedule recursively first, then do something\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(() => {\n *   queueScheduler.schedule(() => console.log('second')); // will not happen now, but will be put on a queue\n *\n *   console.log('first');\n * });\n *\n * // Logs:\n * // \"first\"\n * // \"second\"\n * ```\n *\n * Reschedule itself recursively\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(function(state) {\n *   if (state !== 0) {\n *     console.log('before', state);\n *     this.schedule(state - 1); // `this` references currently executing Action,\n *                               // which we reschedule with new state\n *     console.log('after', state);\n *   }\n * }, 0, 3);\n *\n * // In scheduler that runs recursively, you would expect:\n * // \"before\", 3\n * // \"before\", 2\n * // \"before\", 1\n * // \"after\", 1\n * // \"after\", 2\n * // \"after\", 3\n *\n * // But with queue it logs:\n * // \"before\", 3\n * // \"after\", 3\n * // \"before\", 2\n * // \"after\", 2\n * // \"before\", 1\n * // \"after\", 1\n * ```\n */\nexport declare const queueScheduler: QueueScheduler;\n/**\n * @deprecated Renamed to {@link queueScheduler}. Will be removed in v8.\n */\nexport declare const queue: QueueScheduler;\n//# sourceMappingURL=queue.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/timeoutProvider.d.ts": "import type { TimerHandle } from './timerHandle';\ndeclare type SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ndeclare type ClearTimeoutFunction = (handle: TimerHandle) => void;\ninterface TimeoutProvider {\n    setTimeout: SetTimeoutFunction;\n    clearTimeout: ClearTimeoutFunction;\n    delegate: {\n        setTimeout: SetTimeoutFunction;\n        clearTimeout: ClearTimeoutFunction;\n    } | undefined;\n}\nexport declare const timeoutProvider: TimeoutProvider;\nexport {};\n//# sourceMappingURL=timeoutProvider.d.ts.map",
    "node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts": "export declare type TimerHandle = number | ReturnType<typeof setTimeout>;\n//# sourceMappingURL=timerHandle.d.ts.map",
    "node_modules/rxjs/dist/types/internal/symbol/iterator.d.ts": "export declare function getSymbolIterator(): symbol;\nexport declare const iterator: symbol;\n//# sourceMappingURL=iterator.d.ts.map",
    "node_modules/rxjs/dist/types/internal/symbol/observable.d.ts": "/**\n * Symbol.observable or a string \"@@observable\". Used for interop\n *\n * @deprecated We will no longer be exporting this symbol in upcoming versions of RxJS.\n * Instead polyfill and use Symbol.observable directly *or* use https://www.npmjs.com/package/symbol-observable\n */\nexport declare const observable: string | symbol;\n//# sourceMappingURL=observable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts": "import { Observable } from '../Observable';\nimport { Scheduler } from '../Scheduler';\nimport { TestMessage } from './TestMessage';\nimport { SubscriptionLog } from './SubscriptionLog';\nimport { SubscriptionLoggable } from './SubscriptionLoggable';\nimport { Subscriber } from '../Subscriber';\nexport declare class ColdObservable<T> extends Observable<T> implements SubscriptionLoggable {\n    messages: TestMessage[];\n    subscriptions: SubscriptionLog[];\n    scheduler: Scheduler;\n    logSubscribedFrame: () => number;\n    logUnsubscribedFrame: (index: number) => void;\n    constructor(messages: TestMessage[], scheduler: Scheduler);\n    scheduleMessages(subscriber: Subscriber<any>): void;\n}\n//# sourceMappingURL=ColdObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts": "import { Subject } from '../Subject';\nimport { Scheduler } from '../Scheduler';\nimport { TestMessage } from './TestMessage';\nimport { SubscriptionLog } from './SubscriptionLog';\nimport { SubscriptionLoggable } from './SubscriptionLoggable';\nexport declare class HotObservable<T> extends Subject<T> implements SubscriptionLoggable {\n    messages: TestMessage[];\n    subscriptions: SubscriptionLog[];\n    scheduler: Scheduler;\n    logSubscribedFrame: () => number;\n    logUnsubscribedFrame: (index: number) => void;\n    constructor(messages: TestMessage[], scheduler: Scheduler);\n    setup(): void;\n}\n//# sourceMappingURL=HotObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts": "export declare class SubscriptionLog {\n    subscribedFrame: number;\n    unsubscribedFrame: number;\n    constructor(subscribedFrame: number, unsubscribedFrame?: number);\n}\n//# sourceMappingURL=SubscriptionLog.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts": "import { Scheduler } from '../Scheduler';\nimport { SubscriptionLog } from './SubscriptionLog';\nexport declare class SubscriptionLoggable {\n    subscriptions: SubscriptionLog[];\n    scheduler: Scheduler;\n    logSubscribedFrame(): number;\n    logUnsubscribedFrame(index: number): void;\n}\n//# sourceMappingURL=SubscriptionLoggable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts": "import { ObservableNotification } from '../types';\nexport interface TestMessage {\n    frame: number;\n    notification: ObservableNotification<any>;\n    isGhost?: boolean;\n}\n//# sourceMappingURL=TestMessage.d.ts.map",
    "node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts": "import { Observable } from '../Observable';\nimport { ColdObservable } from './ColdObservable';\nimport { HotObservable } from './HotObservable';\nimport { TestMessage } from './TestMessage';\nimport { SubscriptionLog } from './SubscriptionLog';\nimport { VirtualTimeScheduler } from '../scheduler/VirtualTimeScheduler';\nexport interface RunHelpers {\n    cold: typeof TestScheduler.prototype.createColdObservable;\n    hot: typeof TestScheduler.prototype.createHotObservable;\n    flush: typeof TestScheduler.prototype.flush;\n    time: typeof TestScheduler.prototype.createTime;\n    expectObservable: typeof TestScheduler.prototype.expectObservable;\n    expectSubscriptions: typeof TestScheduler.prototype.expectSubscriptions;\n    animate: (marbles: string) => void;\n}\nexport declare type observableToBeFn = (marbles: string, values?: any, errorValue?: any) => void;\nexport declare type subscriptionLogsToBeFn = (marbles: string | string[]) => void;\nexport declare class TestScheduler extends VirtualTimeScheduler {\n    assertDeepEqual: (actual: any, expected: any) => boolean | void;\n    /**\n     * The number of virtual time units each character in a marble diagram represents. If\n     * the test scheduler is being used in \"run mode\", via the `run` method, this is temporarily\n     * set to `1` for the duration of the `run` block, then set back to whatever value it was.\n     */\n    static frameTimeFactor: number;\n    /**\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     */\n    readonly hotObservables: HotObservable<any>[];\n    /**\n     * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n     */\n    readonly coldObservables: ColdObservable<any>[];\n    /**\n     * Test meta data to be processed during `flush()`\n     */\n    private flushTests;\n    /**\n     * Indicates whether the TestScheduler instance is operating in \"run mode\",\n     * meaning it's processing a call to `run()`\n     */\n    private runMode;\n    /**\n     *\n     * @param assertDeepEqual A function to set up your assertion for your test harness\n     */\n    constructor(assertDeepEqual: (actual: any, expected: any) => boolean | void);\n    createTime(marbles: string): number;\n    /**\n     * @param marbles A diagram in the marble DSL. Letters map to keys in `values` if provided.\n     * @param values Values to use for the letters in `marbles`. If omitted, the letters themselves are used.\n     * @param error The error to use for the `#` marble (if present).\n     */\n    createColdObservable<T = string>(marbles: string, values?: {\n        [marble: string]: T;\n    }, error?: any): ColdObservable<T>;\n    /**\n     * @param marbles A diagram in the marble DSL. Letters map to keys in `values` if provided.\n     * @param values Values to use for the letters in `marbles`. If omitted, the letters themselves are used.\n     * @param error The error to use for the `#` marble (if present).\n     */\n    createHotObservable<T = string>(marbles: string, values?: {\n        [marble: string]: T;\n    }, error?: any): HotObservable<T>;\n    private materializeInnerObservable;\n    expectObservable<T>(observable: Observable<T>, subscriptionMarbles?: string | null): {\n        toBe(marbles: string, values?: any, errorValue?: any): void;\n        toEqual: (other: Observable<T>) => void;\n    };\n    expectSubscriptions(actualSubscriptionLogs: SubscriptionLog[]): {\n        toBe: subscriptionLogsToBeFn;\n    };\n    flush(): void;\n    static parseMarblesAsSubscriptions(marbles: string | null, runMode?: boolean): SubscriptionLog;\n    static parseMarbles(marbles: string, values?: any, errorValue?: any, materializeInnerObservables?: boolean, runMode?: boolean): TestMessage[];\n    private createAnimator;\n    private createDelegates;\n    /**\n     * The `run` method performs the test in 'run mode' - in which schedulers\n     * used within the test automatically delegate to the `TestScheduler`. That\n     * is, in 'run mode' there is no need to explicitly pass a `TestScheduler`\n     * instance to observable creators or operators.\n     *\n     * @see {@link /guide/testing/marble-testing}\n     */\n    run<T>(callback: (helpers: RunHelpers) => T): T;\n}\n//# sourceMappingURL=TestScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/types.d.ts": "/// <reference lib=\"esnext.asynciterable\" />\nimport { Observable } from './Observable';\nimport { Subscription } from './Subscription';\n/**\n * Note: This will add Symbol.observable globally for all TypeScript users,\n * however, we are no longer polyfilling Symbol.observable\n */\ndeclare global {\n    interface SymbolConstructor {\n        readonly observable: symbol;\n    }\n}\n/**\n * A function type interface that describes a function that accepts one parameter `T`\n * and returns another parameter `R`.\n *\n * Usually used to describe {@link OperatorFunction} - it always takes a single\n * parameter (the source Observable) and returns another Observable.\n */\nexport interface UnaryFunction<T, R> {\n    (source: T): R;\n}\nexport interface OperatorFunction<T, R> extends UnaryFunction<Observable<T>, Observable<R>> {\n}\nexport declare type FactoryOrValue<T> = T | (() => T);\n/**\n * A function type interface that describes a function that accepts and returns a parameter of the same type.\n *\n * Used to describe {@link OperatorFunction} with the only one type: `OperatorFunction<T, T>`.\n *\n */\nexport interface MonoTypeOperatorFunction<T> extends OperatorFunction<T, T> {\n}\n/**\n * A value and the time at which it was emitted.\n *\n * Emitted by the `timestamp` operator\n *\n * @see {@link timestamp}\n */\nexport interface Timestamp<T> {\n    value: T;\n    /**\n     * The timestamp. By default, this is in epoch milliseconds.\n     * Could vary based on the timestamp provider passed to the operator.\n     */\n    timestamp: number;\n}\n/**\n * A value emitted and the amount of time since the last value was emitted.\n *\n * Emitted by the `timeInterval` operator.\n *\n * @see {@link timeInterval}\n */\nexport interface TimeInterval<T> {\n    value: T;\n    /**\n     * The amount of time between this value's emission and the previous value's emission.\n     * If this is the first emitted value, then it will be the amount of time since subscription\n     * started.\n     */\n    interval: number;\n}\nexport interface Unsubscribable {\n    unsubscribe(): void;\n}\nexport declare type TeardownLogic = Subscription | Unsubscribable | (() => void) | void;\nexport interface SubscriptionLike extends Unsubscribable {\n    unsubscribe(): void;\n    readonly closed: boolean;\n}\n/**\n * @deprecated Do not use. Most likely you want to use `ObservableInput`. Will be removed in v8.\n */\nexport declare type SubscribableOrPromise<T> = Subscribable<T> | Subscribable<never> | PromiseLike<T> | InteropObservable<T>;\n/** OBSERVABLE INTERFACES */\nexport interface Subscribable<T> {\n    subscribe(observer: Partial<Observer<T>>): Unsubscribable;\n}\n/**\n * Valid types that can be converted to observables.\n */\nexport declare type ObservableInput<T> = Observable<T> | InteropObservable<T> | AsyncIterable<T> | PromiseLike<T> | ArrayLike<T> | Iterable<T> | ReadableStreamLike<T>;\n/**\n * @deprecated Renamed to {@link InteropObservable }. Will be removed in v8.\n */\nexport declare type ObservableLike<T> = InteropObservable<T>;\n/**\n * An object that implements the `Symbol.observable` interface.\n */\nexport interface InteropObservable<T> {\n    [Symbol.observable]: () => Subscribable<T>;\n}\n/**\n * A notification representing a \"next\" from an observable.\n * Can be used with {@link dematerialize}.\n */\nexport interface NextNotification<T> {\n    /** The kind of notification. Always \"N\" */\n    kind: 'N';\n    /** The value of the notification. */\n    value: T;\n}\n/**\n * A notification representing an \"error\" from an observable.\n * Can be used with {@link dematerialize}.\n */\nexport interface ErrorNotification {\n    /** The kind of notification. Always \"E\" */\n    kind: 'E';\n    error: any;\n}\n/**\n * A notification representing a \"completion\" from an observable.\n * Can be used with {@link dematerialize}.\n */\nexport interface CompleteNotification {\n    kind: 'C';\n}\n/**\n * Valid observable notification types.\n */\nexport declare type ObservableNotification<T> = NextNotification<T> | ErrorNotification | CompleteNotification;\nexport interface NextObserver<T> {\n    closed?: boolean;\n    next: (value: T) => void;\n    error?: (err: any) => void;\n    complete?: () => void;\n}\nexport interface ErrorObserver<T> {\n    closed?: boolean;\n    next?: (value: T) => void;\n    error: (err: any) => void;\n    complete?: () => void;\n}\nexport interface CompletionObserver<T> {\n    closed?: boolean;\n    next?: (value: T) => void;\n    error?: (err: any) => void;\n    complete: () => void;\n}\nexport declare type PartialObserver<T> = NextObserver<T> | ErrorObserver<T> | CompletionObserver<T>;\n/**\n * An object interface that defines a set of callback functions a user can use to get\n * notified of any set of {@link Observable}\n * {@link guide/glossary-and-semantics#notification notification} events.\n *\n * For more info, please refer to {@link guide/observer this guide}.\n */\nexport interface Observer<T> {\n    /**\n     * A callback function that gets called by the producer during the subscription when\n     * the producer \"has\" the `value`. It won't be called if `error` or `complete` callback\n     * functions have been called, nor after the consumer has unsubscribed.\n     *\n     * For more info, please refer to {@link guide/glossary-and-semantics#next this guide}.\n     */\n    next: (value: T) => void;\n    /**\n     * A callback function that gets called by the producer if and when it encountered a\n     * problem of any kind. The errored value will be provided through the `err` parameter.\n     * This callback can't be called more than one time, it can't be called if the\n     * `complete` callback function have been called previously, nor it can't be called if\n     * the consumer has unsubscribed.\n     *\n     * For more info, please refer to {@link guide/glossary-and-semantics#error this guide}.\n     */\n    error: (err: any) => void;\n    /**\n     * A callback function that gets called by the producer if and when it has no more\n     * values to provide (by calling `next` callback function). This means that no error\n     * has happened. This callback can't be called more than one time, it can't be called\n     * if the `error` callback function have been called previously, nor it can't be called\n     * if the consumer has unsubscribed.\n     *\n     * For more info, please refer to {@link guide/glossary-and-semantics#complete this guide}.\n     */\n    complete: () => void;\n}\nexport interface SubjectLike<T> extends Observer<T>, Subscribable<T> {\n}\nexport interface SchedulerLike extends TimestampProvider {\n    schedule<T>(work: (this: SchedulerAction<T>, state: T) => void, delay: number, state: T): Subscription;\n    schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay: number, state?: T): Subscription;\n    schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay?: number, state?: T): Subscription;\n}\nexport interface SchedulerAction<T> extends Subscription {\n    schedule(state?: T, delay?: number): Subscription;\n}\n/**\n * This is a type that provides a method to allow RxJS to create a numeric timestamp\n */\nexport interface TimestampProvider {\n    /**\n     * Returns a timestamp as a number.\n     *\n     * This is used by types like `ReplaySubject` or operators like `timestamp` to calculate\n     * the amount of time passed between events.\n     */\n    now(): number;\n}\n/**\n * Extracts the type from an `ObservableInput<any>`. If you have\n * `O extends ObservableInput<any>` and you pass in `Observable<number>`, or\n * `Promise<number>`, etc, it will type as `number`.\n */\nexport declare type ObservedValueOf<O> = O extends ObservableInput<infer T> ? T : never;\n/**\n * Extracts a union of element types from an `ObservableInput<any>[]`.\n * If you have `O extends ObservableInput<any>[]` and you pass in\n * `Observable<string>[]` or `Promise<string>[]` you would get\n * back a type of `string`.\n * If you pass in `[Observable<string>, Observable<number>]` you would\n * get back a type of `string | number`.\n */\nexport declare type ObservedValueUnionFromArray<X> = X extends Array<ObservableInput<infer T>> ? T : never;\n/**\n * @deprecated Renamed to {@link ObservedValueUnionFromArray}. Will be removed in v8.\n */\nexport declare type ObservedValuesFromArray<X> = ObservedValueUnionFromArray<X>;\n/**\n * Extracts a tuple of element types from an `ObservableInput<any>[]`.\n * If you have `O extends ObservableInput<any>[]` and you pass in\n * `[Observable<string>, Observable<number>]` you would get back a type\n * of `[string, number]`.\n */\nexport declare type ObservedValueTupleFromArray<X> = {\n    [K in keyof X]: ObservedValueOf<X[K]>;\n};\n/**\n * Used to infer types from arguments to functions like {@link forkJoin}.\n * So that you can have `forkJoin([Observable<A>, PromiseLike<B>]): Observable<[A, B]>`\n * et al.\n */\nexport declare type ObservableInputTuple<T> = {\n    [K in keyof T]: ObservableInput<T[K]>;\n};\n/**\n * Constructs a new tuple with the specified type at the head.\n * If you declare `Cons<A, [B, C]>` you will get back `[A, B, C]`.\n */\nexport declare type Cons<X, Y extends readonly any[]> = ((arg: X, ...rest: Y) => any) extends (...args: infer U) => any ? U : never;\n/**\n * Extracts the head of a tuple.\n * If you declare `Head<[A, B, C]>` you will get back `A`.\n */\nexport declare type Head<X extends readonly any[]> = ((...args: X) => any) extends (arg: infer U, ...rest: any[]) => any ? U : never;\n/**\n * Extracts the tail of a tuple.\n * If you declare `Tail<[A, B, C]>` you will get back `[B, C]`.\n */\nexport declare type Tail<X extends readonly any[]> = ((...args: X) => any) extends (arg: any, ...rest: infer U) => any ? U : never;\n/**\n * Extracts the generic value from an Array type.\n * If you have `T extends Array<any>`, and pass a `string[]` to it,\n * `ValueFromArray<T>` will return the actual type of `string`.\n */\nexport declare type ValueFromArray<A extends readonly unknown[]> = A extends Array<infer T> ? T : never;\n/**\n * Gets the value type from an {@link ObservableNotification}, if possible.\n */\nexport declare type ValueFromNotification<T> = T extends {\n    kind: 'N' | 'E' | 'C';\n} ? T extends NextNotification<any> ? T extends {\n    value: infer V;\n} ? V : undefined : never : never;\n/**\n * A simple type to represent a gamut of \"falsy\" values... with a notable exception:\n * `NaN` is \"falsy\" however, it is not and cannot be typed via TypeScript. See\n * comments here: https://github.com/microsoft/TypeScript/issues/28682#issuecomment-707142417\n */\nexport declare type Falsy = null | undefined | false | 0 | -0 | 0n | '';\nexport declare type TruthyTypesOf<T> = T extends Falsy ? never : T;\ninterface ReadableStreamDefaultReaderLike<T> {\n    read(): PromiseLike<{\n        done: false;\n        value: T;\n    } | {\n        done: true;\n        value?: undefined;\n    }>;\n    releaseLock(): void;\n}\n/**\n * The base signature RxJS will look for to identify and use\n * a [ReadableStream](https://streams.spec.whatwg.org/#rs-class)\n * as an {@link ObservableInput} source.\n */\nexport interface ReadableStreamLike<T> {\n    getReader(): ReadableStreamDefaultReaderLike<T>;\n}\n/**\n * An observable with a `connect` method that is used to create a subscription\n * to an underlying source, connecting it with all consumers via a multicast.\n */\nexport interface Connectable<T> extends Observable<T> {\n    /**\n     * (Idempotent) Calling this method will connect the underlying source observable to all subscribed consumers\n     * through an underlying {@link Subject}.\n     * @returns A subscription, that when unsubscribed, will \"disconnect\" the source from the connector subject,\n     * severing notifications to all consumers.\n     */\n    connect(): Subscription;\n}\nexport {};\n//# sourceMappingURL=types.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts": "export interface ArgumentOutOfRangeError extends Error {\n}\nexport interface ArgumentOutOfRangeErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (): ArgumentOutOfRangeError;\n}\n/**\n * An error thrown when an element was queried at a certain index of an\n * Observable, but no such index or position exists in that sequence.\n *\n * @see {@link elementAt}\n * @see {@link take}\n * @see {@link takeLast}\n */\nexport declare const ArgumentOutOfRangeError: ArgumentOutOfRangeErrorCtor;\n//# sourceMappingURL=ArgumentOutOfRangeError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts": "export interface EmptyError extends Error {\n}\nexport interface EmptyErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (): EmptyError;\n}\n/**\n * An error thrown when an Observable or a sequence was queried but has no\n * elements.\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link single}\n * @see {@link firstValueFrom}\n * @see {@link lastValueFrom}\n */\nexport declare const EmptyError: EmptyErrorCtor;\n//# sourceMappingURL=EmptyError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/Immediate.d.ts": "/**\n * Helper functions to schedule and unschedule microtasks.\n */\nexport declare const Immediate: {\n    setImmediate(cb: () => void): number;\n    clearImmediate(handle: number): void;\n};\n/**\n * Used for internal testing purposes only. Do not export from library.\n */\nexport declare const TestTools: {\n    pending(): number;\n};\n//# sourceMappingURL=Immediate.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts": "export interface NotFoundError extends Error {\n}\nexport interface NotFoundErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (message: string): NotFoundError;\n}\n/**\n * An error thrown when a value or values are missing from an\n * observable sequence.\n *\n * @see {@link operators/single}\n */\nexport declare const NotFoundError: NotFoundErrorCtor;\n//# sourceMappingURL=NotFoundError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts": "export interface ObjectUnsubscribedError extends Error {\n}\nexport interface ObjectUnsubscribedErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (): ObjectUnsubscribedError;\n}\n/**\n * An error thrown when an action is invalid because the object has been\n * unsubscribed.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n *\n * @class ObjectUnsubscribedError\n */\nexport declare const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor;\n//# sourceMappingURL=ObjectUnsubscribedError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts": "export interface SequenceError extends Error {\n}\nexport interface SequenceErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (message: string): SequenceError;\n}\n/**\n * An error thrown when something is wrong with the sequence of\n * values arriving on the observable.\n *\n * @see {@link operators/single}\n */\nexport declare const SequenceError: SequenceErrorCtor;\n//# sourceMappingURL=SequenceError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts": "export interface UnsubscriptionError extends Error {\n    readonly errors: any[];\n}\nexport interface UnsubscriptionErrorCtor {\n    /**\n     * @deprecated Internal implementation detail. Do not construct error instances.\n     * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n     */\n    new (errors: any[]): UnsubscriptionError;\n}\n/**\n * An error thrown when one or more errors have occurred during the\n * `unsubscribe` of a {@link Subscription}.\n */\nexport declare const UnsubscriptionError: UnsubscriptionErrorCtor;\n//# sourceMappingURL=UnsubscriptionError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/applyMixins.d.ts": "export declare function applyMixins(derivedCtor: any, baseCtors: any[]): void;\n//# sourceMappingURL=applyMixins.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/args.d.ts": "import { SchedulerLike } from '../types';\nexport declare function popResultSelector(args: any[]): ((...args: unknown[]) => unknown) | undefined;\nexport declare function popScheduler(args: any[]): SchedulerLike | undefined;\nexport declare function popNumber(args: any[], defaultValue: number): number;\n//# sourceMappingURL=args.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/argsArgArrayOrObject.d.ts": "/**\n * Used in functions where either a list of arguments, a single array of arguments, or a\n * dictionary of arguments can be returned. Returns an object with an `args` property with\n * the arguments in an array, if it is a dictionary, it will also return the `keys` in another\n * property.\n */\nexport declare function argsArgArrayOrObject<T, O extends Record<string, T>>(args: T[] | [O] | [T[]]): {\n    args: T[];\n    keys: string[] | null;\n};\n//# sourceMappingURL=argsArgArrayOrObject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/argsOrArgArray.d.ts": "/**\n * Used in operators and functions that accept either a list of arguments, or an array of arguments\n * as a single argument.\n */\nexport declare function argsOrArgArray<T>(args: (T | T[])[]): T[];\n//# sourceMappingURL=argsOrArgArray.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/arrRemove.d.ts": "/**\n * Removes an item from an array, mutating it.\n * @param arr The array to remove the item from\n * @param item The item to remove\n */\nexport declare function arrRemove<T>(arr: T[] | undefined | null, item: T): void;\n//# sourceMappingURL=arrRemove.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/createErrorClass.d.ts": "/**\n * Used to create Error subclasses until the community moves away from ES5.\n *\n * This is because compiling from TypeScript down to ES5 has issues with subclassing Errors\n * as well as other built-in types: https://github.com/Microsoft/TypeScript/issues/12123\n *\n * @param createImpl A factory function to create the actual constructor implementation. The returned\n * function should be a named function that calls `_super` internally.\n */\nexport declare function createErrorClass<T>(createImpl: (_super: any) => any): T;\n//# sourceMappingURL=createErrorClass.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/createObject.d.ts": "export declare function createObject(keys: string[], values: any[]): any;\n//# sourceMappingURL=createObject.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/errorContext.d.ts": "/**\n * Handles dealing with errors for super-gross mode. Creates a context, in which\n * any synchronously thrown errors will be passed to {@link captureError}. Which\n * will record the error such that it will be rethrown after the call back is complete.\n * TODO: Remove in v8\n * @param cb An immediately executed function.\n */\nexport declare function errorContext(cb: () => void): void;\n/**\n * Captures errors only in super-gross mode.\n * @param err the error to capture\n */\nexport declare function captureError(err: any): void;\n//# sourceMappingURL=errorContext.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/executeSchedule.d.ts": "import { Subscription } from '../Subscription';\nimport { SchedulerLike } from '../types';\nexport declare function executeSchedule(parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay: number, repeat: true): void;\nexport declare function executeSchedule(parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay?: number, repeat?: false): Subscription;\n//# sourceMappingURL=executeSchedule.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/identity.d.ts": "/**\n * This function takes one parameter and just returns it. Simply put,\n * this is like `<T>(x: T): T => x`.\n *\n * ## Examples\n *\n * This is useful in some cases when using things like `mergeMap`\n *\n * ```ts\n * import { interval, take, map, range, mergeMap, identity } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(5));\n *\n * const result$ = source$.pipe(\n *   map(i => range(i)),\n *   mergeMap(identity) // same as mergeMap(x => x)\n * );\n *\n * result$.subscribe({\n *   next: console.log\n * });\n * ```\n *\n * Or when you want to selectively apply an operator\n *\n * ```ts\n * import { interval, take, identity } from 'rxjs';\n *\n * const shouldLimit = () => Math.random() < 0.5;\n *\n * const source$ = interval(1000);\n *\n * const result$ = source$.pipe(shouldLimit() ? take(5) : identity);\n *\n * result$.subscribe({\n *   next: console.log\n * });\n * ```\n *\n * @param x Any value that is returned by this function\n * @returns The value passed as the first parameter to this function\n */\nexport declare function identity<T>(x: T): T;\n//# sourceMappingURL=identity.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isArrayLike.d.ts": "export declare const isArrayLike: <T>(x: any) => x is ArrayLike<T>;\n//# sourceMappingURL=isArrayLike.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isAsyncIterable.d.ts": "export declare function isAsyncIterable<T>(obj: any): obj is AsyncIterable<T>;\n//# sourceMappingURL=isAsyncIterable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isDate.d.ts": "/**\n * Checks to see if a value is not only a `Date` object,\n * but a *valid* `Date` object that can be converted to a\n * number. For example, `new Date('blah')` is indeed an\n * `instanceof Date`, however it cannot be converted to a\n * number.\n */\nexport declare function isValidDate(value: any): value is Date;\n//# sourceMappingURL=isDate.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isFunction.d.ts": "/**\n * Returns true if the object is a function.\n * @param value The value to check\n */\nexport declare function isFunction(value: any): value is (...args: any[]) => any;\n//# sourceMappingURL=isFunction.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isInteropObservable.d.ts": "import { InteropObservable } from '../types';\n/** Identifies an input as being Observable (but not necessary an Rx Observable) */\nexport declare function isInteropObservable(input: any): input is InteropObservable<any>;\n//# sourceMappingURL=isInteropObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isIterable.d.ts": "/** Identifies an input as being an Iterable */\nexport declare function isIterable(input: any): input is Iterable<any>;\n//# sourceMappingURL=isIterable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isObservable.d.ts": "/** prettier */\nimport { Observable } from '../Observable';\n/**\n * Tests to see if the object is an RxJS {@link Observable}\n * @param obj the object to test\n */\nexport declare function isObservable(obj: any): obj is Observable<unknown>;\n//# sourceMappingURL=isObservable.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isPromise.d.ts": "/**\n * Tests to see if the object is \"thennable\".\n * @param value the object to test\n */\nexport declare function isPromise(value: any): value is PromiseLike<any>;\n//# sourceMappingURL=isPromise.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isReadableStreamLike.d.ts": "import { ReadableStreamLike } from '../types';\nexport declare function readableStreamLikeToAsyncGenerator<T>(readableStream: ReadableStreamLike<T>): AsyncGenerator<T>;\nexport declare function isReadableStreamLike<T>(obj: any): obj is ReadableStreamLike<T>;\n//# sourceMappingURL=isReadableStreamLike.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/isScheduler.d.ts": "import { SchedulerLike } from '../types';\nexport declare function isScheduler(value: any): value is SchedulerLike;\n//# sourceMappingURL=isScheduler.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/lift.d.ts": "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction } from '../types';\n/**\n * Used to determine if an object is an Observable with a lift function.\n */\nexport declare function hasLift(source: any): source is {\n    lift: InstanceType<typeof Observable>['lift'];\n};\n/**\n * Creates an `OperatorFunction`. Used to define operators throughout the library in a concise way.\n * @param init The logic to connect the liftedSource to the subscriber at the moment of subscription.\n */\nexport declare function operate<T, R>(init: (liftedSource: Observable<T>, subscriber: Subscriber<R>) => (() => void) | void): OperatorFunction<T, R>;\n//# sourceMappingURL=lift.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/mapOneOrManyArgs.d.ts": "import { OperatorFunction } from \"../types\";\n/**\n * Used in several -- mostly deprecated -- situations where we need to\n * apply a list of arguments or a single argument to a result selector.\n */\nexport declare function mapOneOrManyArgs<T, R>(fn: ((...values: T[]) => R)): OperatorFunction<T | T[], R>;\n//# sourceMappingURL=mapOneOrManyArgs.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/noop.d.ts": "export declare function noop(): void;\n//# sourceMappingURL=noop.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/not.d.ts": "export declare function not<T>(pred: (value: T, index: number) => boolean, thisArg: any): (value: T, index: number) => boolean;\n//# sourceMappingURL=not.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/pipe.d.ts": "import { identity } from './identity';\nimport { UnaryFunction } from '../types';\nexport declare function pipe(): typeof identity;\nexport declare function pipe<T, A>(fn1: UnaryFunction<T, A>): UnaryFunction<T, A>;\nexport declare function pipe<T, A, B>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>): UnaryFunction<T, B>;\nexport declare function pipe<T, A, B, C>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>): UnaryFunction<T, C>;\nexport declare function pipe<T, A, B, C, D>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>): UnaryFunction<T, D>;\nexport declare function pipe<T, A, B, C, D, E>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>): UnaryFunction<T, E>;\nexport declare function pipe<T, A, B, C, D, E, F>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>, fn6: UnaryFunction<E, F>): UnaryFunction<T, F>;\nexport declare function pipe<T, A, B, C, D, E, F, G>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>, fn6: UnaryFunction<E, F>, fn7: UnaryFunction<F, G>): UnaryFunction<T, G>;\nexport declare function pipe<T, A, B, C, D, E, F, G, H>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>, fn6: UnaryFunction<E, F>, fn7: UnaryFunction<F, G>, fn8: UnaryFunction<G, H>): UnaryFunction<T, H>;\nexport declare function pipe<T, A, B, C, D, E, F, G, H, I>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>, fn6: UnaryFunction<E, F>, fn7: UnaryFunction<F, G>, fn8: UnaryFunction<G, H>, fn9: UnaryFunction<H, I>): UnaryFunction<T, I>;\nexport declare function pipe<T, A, B, C, D, E, F, G, H, I>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>, fn4: UnaryFunction<C, D>, fn5: UnaryFunction<D, E>, fn6: UnaryFunction<E, F>, fn7: UnaryFunction<F, G>, fn8: UnaryFunction<G, H>, fn9: UnaryFunction<H, I>, ...fns: UnaryFunction<any, any>[]): UnaryFunction<T, unknown>;\n//# sourceMappingURL=pipe.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/reportUnhandledError.d.ts": "/**\n * Handles an error on another job either with the user-configured {@link onUnhandledError},\n * or by throwing it on that new job so it can be picked up by `window.onerror`, `process.on('error')`, etc.\n *\n * This should be called whenever there is an error that is out-of-band with the subscription\n * or when an error hits a terminal boundary of the subscription and no error handler was provided.\n *\n * @param err the error to report\n */\nexport declare function reportUnhandledError(err: any): void;\n//# sourceMappingURL=reportUnhandledError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/subscribeToArray.d.ts": "import { Subscriber } from '../Subscriber';\n/**\n * Subscribes to an ArrayLike with a subscriber\n * @param array The array or array-like to subscribe to\n */\nexport declare const subscribeToArray: <T>(array: ArrayLike<T>) => (subscriber: Subscriber<T>) => void;\n//# sourceMappingURL=subscribeToArray.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/throwUnobservableError.d.ts": "/**\n * Creates the TypeError to throw if an invalid object is passed to `from` or `scheduled`.\n * @param input The object that was passed.\n */\nexport declare function createInvalidObservableTypeError(input: any): TypeError;\n//# sourceMappingURL=throwUnobservableError.d.ts.map",
    "node_modules/rxjs/dist/types/internal/util/workarounds.d.ts": "export {};\n//# sourceMappingURL=workarounds.d.ts.map",
    "node_modules/rxjs/dist/types/operators/index.d.ts": "export { audit } from '../internal/operators/audit';\nexport { auditTime } from '../internal/operators/auditTime';\nexport { buffer } from '../internal/operators/buffer';\nexport { bufferCount } from '../internal/operators/bufferCount';\nexport { bufferTime } from '../internal/operators/bufferTime';\nexport { bufferToggle } from '../internal/operators/bufferToggle';\nexport { bufferWhen } from '../internal/operators/bufferWhen';\nexport { catchError } from '../internal/operators/catchError';\nexport { combineAll } from '../internal/operators/combineAll';\nexport { combineLatestAll } from '../internal/operators/combineLatestAll';\nexport { combineLatest } from '../internal/operators/combineLatest';\nexport { combineLatestWith } from '../internal/operators/combineLatestWith';\nexport { concat } from '../internal/operators/concat';\nexport { concatAll } from '../internal/operators/concatAll';\nexport { concatMap } from '../internal/operators/concatMap';\nexport { concatMapTo } from '../internal/operators/concatMapTo';\nexport { concatWith } from '../internal/operators/concatWith';\nexport { connect, ConnectConfig } from '../internal/operators/connect';\nexport { count } from '../internal/operators/count';\nexport { debounce } from '../internal/operators/debounce';\nexport { debounceTime } from '../internal/operators/debounceTime';\nexport { defaultIfEmpty } from '../internal/operators/defaultIfEmpty';\nexport { delay } from '../internal/operators/delay';\nexport { delayWhen } from '../internal/operators/delayWhen';\nexport { dematerialize } from '../internal/operators/dematerialize';\nexport { distinct } from '../internal/operators/distinct';\nexport { distinctUntilChanged } from '../internal/operators/distinctUntilChanged';\nexport { distinctUntilKeyChanged } from '../internal/operators/distinctUntilKeyChanged';\nexport { elementAt } from '../internal/operators/elementAt';\nexport { endWith } from '../internal/operators/endWith';\nexport { every } from '../internal/operators/every';\nexport { exhaust } from '../internal/operators/exhaust';\nexport { exhaustAll } from '../internal/operators/exhaustAll';\nexport { exhaustMap } from '../internal/operators/exhaustMap';\nexport { expand } from '../internal/operators/expand';\nexport { filter } from '../internal/operators/filter';\nexport { finalize } from '../internal/operators/finalize';\nexport { find } from '../internal/operators/find';\nexport { findIndex } from '../internal/operators/findIndex';\nexport { first } from '../internal/operators/first';\nexport { groupBy, BasicGroupByOptions, GroupByOptionsWithElement } from '../internal/operators/groupBy';\nexport { ignoreElements } from '../internal/operators/ignoreElements';\nexport { isEmpty } from '../internal/operators/isEmpty';\nexport { last } from '../internal/operators/last';\nexport { map } from '../internal/operators/map';\nexport { mapTo } from '../internal/operators/mapTo';\nexport { materialize } from '../internal/operators/materialize';\nexport { max } from '../internal/operators/max';\nexport { merge } from '../internal/operators/merge';\nexport { mergeAll } from '../internal/operators/mergeAll';\nexport { flatMap } from '../internal/operators/flatMap';\nexport { mergeMap } from '../internal/operators/mergeMap';\nexport { mergeMapTo } from '../internal/operators/mergeMapTo';\nexport { mergeScan } from '../internal/operators/mergeScan';\nexport { mergeWith } from '../internal/operators/mergeWith';\nexport { min } from '../internal/operators/min';\nexport { multicast } from '../internal/operators/multicast';\nexport { observeOn } from '../internal/operators/observeOn';\nexport { onErrorResumeNext } from '../internal/operators/onErrorResumeNextWith';\nexport { pairwise } from '../internal/operators/pairwise';\nexport { partition } from '../internal/operators/partition';\nexport { pluck } from '../internal/operators/pluck';\nexport { publish } from '../internal/operators/publish';\nexport { publishBehavior } from '../internal/operators/publishBehavior';\nexport { publishLast } from '../internal/operators/publishLast';\nexport { publishReplay } from '../internal/operators/publishReplay';\nexport { race } from '../internal/operators/race';\nexport { raceWith } from '../internal/operators/raceWith';\nexport { reduce } from '../internal/operators/reduce';\nexport { repeat, RepeatConfig } from '../internal/operators/repeat';\nexport { repeatWhen } from '../internal/operators/repeatWhen';\nexport { retry, RetryConfig } from '../internal/operators/retry';\nexport { retryWhen } from '../internal/operators/retryWhen';\nexport { refCount } from '../internal/operators/refCount';\nexport { sample } from '../internal/operators/sample';\nexport { sampleTime } from '../internal/operators/sampleTime';\nexport { scan } from '../internal/operators/scan';\nexport { sequenceEqual } from '../internal/operators/sequenceEqual';\nexport { share, ShareConfig } from '../internal/operators/share';\nexport { shareReplay, ShareReplayConfig } from '../internal/operators/shareReplay';\nexport { single } from '../internal/operators/single';\nexport { skip } from '../internal/operators/skip';\nexport { skipLast } from '../internal/operators/skipLast';\nexport { skipUntil } from '../internal/operators/skipUntil';\nexport { skipWhile } from '../internal/operators/skipWhile';\nexport { startWith } from '../internal/operators/startWith';\nexport { subscribeOn } from '../internal/operators/subscribeOn';\nexport { switchAll } from '../internal/operators/switchAll';\nexport { switchMap } from '../internal/operators/switchMap';\nexport { switchMapTo } from '../internal/operators/switchMapTo';\nexport { switchScan } from '../internal/operators/switchScan';\nexport { take } from '../internal/operators/take';\nexport { takeLast } from '../internal/operators/takeLast';\nexport { takeUntil } from '../internal/operators/takeUntil';\nexport { takeWhile } from '../internal/operators/takeWhile';\nexport { tap, TapObserver } from '../internal/operators/tap';\nexport { throttle, ThrottleConfig } from '../internal/operators/throttle';\nexport { throttleTime } from '../internal/operators/throttleTime';\nexport { throwIfEmpty } from '../internal/operators/throwIfEmpty';\nexport { timeInterval } from '../internal/operators/timeInterval';\nexport { timeout, TimeoutConfig, TimeoutInfo } from '../internal/operators/timeout';\nexport { timeoutWith } from '../internal/operators/timeoutWith';\nexport { timestamp } from '../internal/operators/timestamp';\nexport { toArray } from '../internal/operators/toArray';\nexport { window } from '../internal/operators/window';\nexport { windowCount } from '../internal/operators/windowCount';\nexport { windowTime } from '../internal/operators/windowTime';\nexport { windowToggle } from '../internal/operators/windowToggle';\nexport { windowWhen } from '../internal/operators/windowWhen';\nexport { withLatestFrom } from '../internal/operators/withLatestFrom';\nexport { zip } from '../internal/operators/zip';\nexport { zipAll } from '../internal/operators/zipAll';\nexport { zipWith } from '../internal/operators/zipWith';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/dist/types/testing/index.d.ts": "export { TestScheduler, RunHelpers } from '../internal/testing/TestScheduler';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/dist/types/webSocket/index.d.ts": "export { webSocket as webSocket } from '../internal/observable/dom/webSocket';\nexport { WebSocketSubject, WebSocketSubjectConfig } from '../internal/observable/dom/WebSocketSubject';\n//# sourceMappingURL=index.d.ts.map",
    "node_modules/rxjs/package.json": "{\n  \"name\": \"rxjs\",\n  \"version\": \"7.8.2\",\n  \"description\": \"Reactive Extensions for modern JavaScript\",\n  \"main\": \"./dist/cjs/index.js\",\n  \"module\": \"./dist/esm5/index.js\",\n  \"es2015\": \"./dist/esm/index.js\",\n  \"types\": \"index.d.ts\",\n  \"typesVersions\": {\n    \">=4.2\": {\n      \"*\": [\n        \"dist/types/*\"\n      ]\n    }\n  },\n  \"sideEffects\": false,\n  \"exports\": {\n    \".\": {\n      \"types\": \"./dist/types/index.d.ts\",\n      \"node\": \"./dist/cjs/index.js\",\n      \"require\": \"./dist/cjs/index.js\",\n      \"es2015\": \"./dist/esm/index.js\",\n      \"default\": \"./dist/esm5/index.js\"\n    },\n    \"./ajax\": {\n      \"types\": \"./dist/types/ajax/index.d.ts\",\n      \"node\": \"./dist/cjs/ajax/index.js\",\n      \"require\": \"./dist/cjs/ajax/index.js\",\n      \"es2015\": \"./dist/esm/ajax/index.js\",\n      \"default\": \"./dist/esm5/ajax/index.js\"\n    },\n    \"./fetch\": {\n      \"types\": \"./dist/types/fetch/index.d.ts\",\n      \"node\": \"./dist/cjs/fetch/index.js\",\n      \"require\": \"./dist/cjs/fetch/index.js\",\n      \"es2015\": \"./dist/esm/fetch/index.js\",\n      \"default\": \"./dist/esm5/fetch/index.js\"\n    },\n    \"./operators\": {\n      \"types\": \"./dist/types/operators/index.d.ts\",\n      \"node\": \"./dist/cjs/operators/index.js\",\n      \"require\": \"./dist/cjs/operators/index.js\",\n      \"es2015\": \"./dist/esm/operators/index.js\",\n      \"default\": \"./dist/esm5/operators/index.js\"\n    },\n    \"./testing\": {\n      \"types\": \"./dist/types/testing/index.d.ts\",\n      \"node\": \"./dist/cjs/testing/index.js\",\n      \"require\": \"./dist/cjs/testing/index.js\",\n      \"es2015\": \"./dist/esm/testing/index.js\",\n      \"default\": \"./dist/esm5/testing/index.js\"\n    },\n    \"./webSocket\": {\n      \"types\": \"./dist/types/webSocket/index.d.ts\",\n      \"node\": \"./dist/cjs/webSocket/index.js\",\n      \"require\": \"./dist/cjs/webSocket/index.js\",\n      \"es2015\": \"./dist/esm/webSocket/index.js\",\n      \"default\": \"./dist/esm5/webSocket/index.js\"\n    },\n    \"./internal/*\": {\n      \"types\": \"./dist/types/internal/*.d.ts\",\n      \"node\": \"./dist/cjs/internal/*.js\",\n      \"require\": \"./dist/cjs/internal/*.js\",\n      \"es2015\": \"./dist/esm/internal/*.js\",\n      \"default\": \"./dist/esm5/internal/*.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"config\": {\n    \"commitizen\": {\n      \"path\": \"cz-conventional-changelog\"\n    }\n  },\n  \"lint-staged\": {\n    \"*.js\": \"eslint --cache --fix\",\n    \"(src|spec)/**/*.ts\": [\n      \"tslint --fix\",\n      \"prettier --write\"\n    ],\n    \"*.{js,css,md}\": \"prettier --write\"\n  },\n  \"scripts\": {\n    \"changelog\": \"npx conventional-changelog-cli -p angular -i CHANGELOG.md -s\",\n    \"build:spec:browser\": \"echo \\\"Browser test is not working currently\\\" && exit -1 && webpack --config spec/support/webpack.mocha.config.js\",\n    \"lint_spec\": \"tslint -c spec/tslint.json -p spec/tsconfig.json \\\"spec/**/*.ts\\\"\",\n    \"lint_src\": \"tslint -c tslint.json -p src/tsconfig.base.json \\\"src/**/*.ts\\\"\",\n    \"lint\": \"npm-run-all --parallel lint_*\",\n    \"dtslint\": \"tsc -b ./src/tsconfig.types.json && tslint -c spec-dtslint/tslint.json -p spec-dtslint/tsconfig.json \\\"spec-dtslint/**/*.ts\\\"\",\n    \"prepublishOnly\": \"npm run build:package && npm run lint && npm run test && npm run test:circular && npm run dtslint && npm run test:side-effects\",\n    \"publish_docs\": \"./publish_docs.sh\",\n    \"test\": \"cross-env TS_NODE_PROJECT=tsconfig.mocha.json mocha --config spec/support/.mocharc.js \\\"spec/**/*-spec.ts\\\"\",\n    \"test:esm\": \"node spec/module-test-spec.mjs\",\n    \"test:browser\": \"echo \\\"Browser test is not working currently\\\" && exit -1 && npm-run-all build:spec:browser && opn spec/support/mocha-browser-runner.html\",\n    \"test:circular\": \"dependency-cruiser --validate .dependency-cruiser.json -x \\\"^node_modules\\\" dist/esm5\",\n    \"test:systemjs\": \"node integration/systemjs/systemjs-compatibility-spec.js\",\n    \"test:side-effects\": \"check-side-effects --test integration/side-effects/side-effects.json\",\n    \"test:side-effects:update\": \"npm run test:side-effects -- --update\",\n    \"test:import\": \"ts-node ./integration/import/runner.ts\",\n    \"compile\": \"tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.cjs.spec.json ./src/tsconfig.esm.json ./src/tsconfig.esm5.json ./src/tsconfig.esm5.rollup.json ./src/tsconfig.types.json ./src/tsconfig.types.spec.json ./spec/tsconfig.json\",\n    \"build:clean\": \"shx rm -rf ./dist\",\n    \"build:global\": \"node ./tools/make-umd-bundle.js && node ./tools/make-closure-core.js\",\n    \"build:package\": \"npm-run-all build:clean compile build:global && node ./tools/prepare-package.js && node ./tools/generate-alias.js\",\n    \"watch\": \"nodemon -w \\\"src/\\\" -w \\\"spec/\\\" -e ts -x npm test\",\n    \"watch:dtslint\": \"nodemon -w \\\"src/\\\" -w \\\"spec-dtslint/\\\" -e ts -x npm run dtslint\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/reactivex/rxjs.git\"\n  },\n  \"keywords\": [\n    \"Rx\",\n    \"RxJS\",\n    \"ReactiveX\",\n    \"ReactiveExtensions\",\n    \"Streams\",\n    \"Observables\",\n    \"Observable\",\n    \"Stream\",\n    \"ES6\",\n    \"ES2015\"\n  ],\n  \"author\": \"Ben Lesh <ben@benlesh.com>\",\n  \"contributors\": [\n    {\n      \"name\": \"Ben Lesh\",\n      \"email\": \"ben@benlesh.com\"\n    },\n    {\n      \"name\": \"Paul Taylor\",\n      \"email\": \"paul.e.taylor@me.com\"\n    },\n    {\n      \"name\": \"Jeff Cross\",\n      \"email\": \"crossj@google.com\"\n    },\n    {\n      \"name\": \"Matthew Podwysocki\",\n      \"email\": \"matthewp@microsoft.com\"\n    },\n    {\n      \"name\": \"OJ Kwon\",\n      \"email\": \"kwon.ohjoong@gmail.com\"\n    },\n    {\n      \"name\": \"Andre Staltz\",\n      \"email\": \"andre@staltz.com\"\n    }\n  ],\n  \"license\": \"Apache-2.0\",\n  \"bugs\": {\n    \"url\": \"https://github.com/ReactiveX/RxJS/issues\"\n  },\n  \"homepage\": \"https://rxjs.dev\",\n  \"dependencies\": {\n    \"tslib\": \"^2.1.0\"\n  },\n  \"devDependencies\": {\n    \"@angular-devkit/build-optimizer\": \"0.4.6\",\n    \"@angular-devkit/schematics\": \"^11.0.7\",\n    \"@swc/core\": \"^1.2.128\",\n    \"@swc/helpers\": \"^0.3.2\",\n    \"@types/chai\": \"^4.2.11\",\n    \"@types/lodash\": \"4.14.102\",\n    \"@types/mocha\": \"^7.0.2\",\n    \"@types/node\": \"^14.14.6\",\n    \"@types/shelljs\": \"^0.8.8\",\n    \"@types/sinon\": \"4.1.3\",\n    \"@types/sinon-chai\": \"2.7.29\",\n    \"@types/source-map\": \"^0.5.2\",\n    \"@typescript-eslint/eslint-plugin\": \"^4.29.1\",\n    \"@typescript-eslint/parser\": \"^4.29.1\",\n    \"babel-polyfill\": \"6.26.0\",\n    \"chai\": \"^4.2.0\",\n    \"check-side-effects\": \"0.0.23\",\n    \"color\": \"3.0.0\",\n    \"colors\": \"1.1.2\",\n    \"cross-env\": \"5.1.3\",\n    \"cz-conventional-changelog\": \"1.2.0\",\n    \"dependency-cruiser\": \"^9.12.0\",\n    \"escape-string-regexp\": \"1.0.5\",\n    \"eslint\": \"^7.8.1\",\n    \"eslint-plugin-jasmine\": \"^2.10.1\",\n    \"form-data\": \"^3.0.0\",\n    \"fs-extra\": \"^8.1.0\",\n    \"glob\": \"7.1.2\",\n    \"google-closure-compiler-js\": \"20170218.0.0\",\n    \"husky\": \"^4.2.5\",\n    \"klaw-sync\": \"3.0.2\",\n    \"lint-staged\": \"^10.2.11\",\n    \"lodash\": \"^4.17.15\",\n    \"minimist\": \"^1.2.5\",\n    \"mocha\": \"^8.1.3\",\n    \"nodemon\": \"^1.9.2\",\n    \"npm-run-all\": \"4.1.2\",\n    \"opn-cli\": \"3.1.0\",\n    \"platform\": \"1.3.5\",\n    \"prettier\": \"^2.5.1\",\n    \"promise\": \"8.0.1\",\n    \"rollup\": \"0.66.6\",\n    \"rollup-plugin-alias\": \"1.4.0\",\n    \"rollup-plugin-inject\": \"2.0.0\",\n    \"rollup-plugin-node-resolve\": \"2.0.0\",\n    \"shelljs\": \"^0.8.4\",\n    \"shx\": \"^0.3.2\",\n    \"sinon\": \"4.3.0\",\n    \"sinon-chai\": \"2.14.0\",\n    \"source-map-support\": \"0.5.3\",\n    \"systemjs\": \"^0.21.0\",\n    \"ts-node\": \"^9.1.1\",\n    \"tslint\": \"^5.20.1\",\n    \"tslint-config-prettier\": \"^1.18.0\",\n    \"tslint-etc\": \"1.13.10\",\n    \"tslint-no-toplevel-property-access\": \"0.0.2\",\n    \"tslint-no-unused-expression-chai\": \"0.0.3\",\n    \"typescript\": \"~4.2.0\",\n    \"validate-commit-msg\": \"2.14.0\",\n    \"web-streams-polyfill\": \"^3.0.2\",\n    \"webpack\": \"^4.31.0\"\n  },\n  \"files\": [\n    \"dist/bundles\",\n    \"dist/cjs/**/!(*.tsbuildinfo)\",\n    \"dist/esm/**/!(*.tsbuildinfo)\",\n    \"dist/esm5/**/!(*.tsbuildinfo)\",\n    \"dist/types/**/!(*.tsbuildinfo)\",\n    \"ajax\",\n    \"fetch\",\n    \"operators\",\n    \"testing\",\n    \"webSocket\",\n    \"src\",\n    \"CHANGELOG.md\",\n    \"CODE_OF_CONDUCT.md\",\n    \"LICENSE.txt\",\n    \"package.json\",\n    \"README.md\",\n    \"tsconfig.json\"\n  ],\n  \"husky\": {\n    \"hooks\": {\n      \"pre-commit\": \"lint-staged\",\n      \"commit-msg\": \"validate-commit-msg\"\n    }\n  }\n}\n",
    "node_modules/safe-buffer/index.d.ts": "declare module \"safe-buffer\" {\n  export class Buffer {\n    length: number\n    write(string: string, offset?: number, length?: number, encoding?: string): number;\n    toString(encoding?: string, start?: number, end?: number): string;\n    toJSON(): { type: 'Buffer', data: any[] };\n    equals(otherBuffer: Buffer): boolean;\n    compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number;\n    copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;\n    slice(start?: number, end?: number): Buffer;\n    writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n    readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n    readUInt8(offset: number, noAssert?: boolean): number;\n    readUInt16LE(offset: number, noAssert?: boolean): number;\n    readUInt16BE(offset: number, noAssert?: boolean): number;\n    readUInt32LE(offset: number, noAssert?: boolean): number;\n    readUInt32BE(offset: number, noAssert?: boolean): number;\n    readInt8(offset: number, noAssert?: boolean): number;\n    readInt16LE(offset: number, noAssert?: boolean): number;\n    readInt16BE(offset: number, noAssert?: boolean): number;\n    readInt32LE(offset: number, noAssert?: boolean): number;\n    readInt32BE(offset: number, noAssert?: boolean): number;\n    readFloatLE(offset: number, noAssert?: boolean): number;\n    readFloatBE(offset: number, noAssert?: boolean): number;\n    readDoubleLE(offset: number, noAssert?: boolean): number;\n    readDoubleBE(offset: number, noAssert?: boolean): number;\n    swap16(): Buffer;\n    swap32(): Buffer;\n    swap64(): Buffer;\n    writeUInt8(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt16LE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt16BE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt32LE(value: number, offset: number, noAssert?: boolean): number;\n    writeUInt32BE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt8(value: number, offset: number, noAssert?: boolean): number;\n    writeInt16LE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt16BE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt32LE(value: number, offset: number, noAssert?: boolean): number;\n    writeInt32BE(value: number, offset: number, noAssert?: boolean): number;\n    writeFloatLE(value: number, offset: number, noAssert?: boolean): number;\n    writeFloatBE(value: number, offset: number, noAssert?: boolean): number;\n    writeDoubleLE(value: number, offset: number, noAssert?: boolean): number;\n    writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;\n    fill(value: any, offset?: number, end?: number): this;\n    indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n    lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n    includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean;\n\n    /**\n     * Allocates a new buffer containing the given {str}.\n     *\n     * @param str String to store in buffer.\n     * @param encoding encoding to use, optional.  Default is 'utf8'\n     */\n     constructor (str: string, encoding?: string);\n    /**\n     * Allocates a new buffer of {size} octets.\n     *\n     * @param size count of octets to allocate.\n     */\n    constructor (size: number);\n    /**\n     * Allocates a new buffer containing the given {array} of octets.\n     *\n     * @param array The octets to store.\n     */\n    constructor (array: Uint8Array);\n    /**\n     * Produces a Buffer backed by the same allocated memory as\n     * the given {ArrayBuffer}.\n     *\n     *\n     * @param arrayBuffer The ArrayBuffer with which to share memory.\n     */\n    constructor (arrayBuffer: ArrayBuffer);\n    /**\n     * Allocates a new buffer containing the given {array} of octets.\n     *\n     * @param array The octets to store.\n     */\n    constructor (array: any[]);\n    /**\n     * Copies the passed {buffer} data onto a new {Buffer} instance.\n     *\n     * @param buffer The buffer to copy.\n     */\n    constructor (buffer: Buffer);\n    prototype: Buffer;\n    /**\n     * Allocates a new Buffer using an {array} of octets.\n     *\n     * @param array\n     */\n    static from(array: any[]): Buffer;\n    /**\n     * When passed a reference to the .buffer property of a TypedArray instance,\n     * the newly created Buffer will share the same allocated memory as the TypedArray.\n     * The optional {byteOffset} and {length} arguments specify a memory range\n     * within the {arrayBuffer} that will be shared by the Buffer.\n     *\n     * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer()\n     * @param byteOffset\n     * @param length\n     */\n    static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer;\n    /**\n     * Copies the passed {buffer} data onto a new Buffer instance.\n     *\n     * @param buffer\n     */\n    static from(buffer: Buffer): Buffer;\n    /**\n     * Creates a new Buffer containing the given JavaScript string {str}.\n     * If provided, the {encoding} parameter identifies the character encoding.\n     * If not provided, {encoding} defaults to 'utf8'.\n     *\n     * @param str\n     */\n    static from(str: string, encoding?: string): Buffer;\n    /**\n     * Returns true if {obj} is a Buffer\n     *\n     * @param obj object to test.\n     */\n    static isBuffer(obj: any): obj is Buffer;\n    /**\n     * Returns true if {encoding} is a valid encoding argument.\n     * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex'\n     *\n     * @param encoding string to test.\n     */\n    static isEncoding(encoding: string): boolean;\n    /**\n     * Gives the actual byte length of a string. encoding defaults to 'utf8'.\n     * This is not the same as String.prototype.length since that returns the number of characters in a string.\n     *\n     * @param string string to test.\n     * @param encoding encoding used to evaluate (defaults to 'utf8')\n     */\n    static byteLength(string: string, encoding?: string): number;\n    /**\n     * Returns a buffer which is the result of concatenating all the buffers in the list together.\n     *\n     * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer.\n     * If the list has exactly one item, then the first item of the list is returned.\n     * If the list has more than one item, then a new Buffer is created.\n     *\n     * @param list An array of Buffer objects to concatenate\n     * @param totalLength Total length of the buffers when concatenated.\n     *   If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly.\n     */\n    static concat(list: Buffer[], totalLength?: number): Buffer;\n    /**\n     * The same as buf1.compare(buf2).\n     */\n    static compare(buf1: Buffer, buf2: Buffer): number;\n    /**\n     * Allocates a new buffer of {size} octets.\n     *\n     * @param size count of octets to allocate.\n     * @param fill if specified, buffer will be initialized by calling buf.fill(fill).\n     *    If parameter is omitted, buffer will be filled with zeros.\n     * @param encoding encoding used for call to buf.fill while initalizing\n     */\n    static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer;\n    /**\n     * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents\n     * of the newly created Buffer are unknown and may contain sensitive data.\n     *\n     * @param size count of octets to allocate\n     */\n    static allocUnsafe(size: number): Buffer;\n    /**\n     * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents\n     * of the newly created Buffer are unknown and may contain sensitive data.\n     *\n     * @param size count of octets to allocate\n     */\n    static allocUnsafeSlow(size: number): Buffer;\n  }\n}",
    "node_modules/safe-buffer/package.json": "{\n  \"name\": \"safe-buffer\",\n  \"description\": \"Safer Node.js Buffer API\",\n  \"version\": \"5.2.1\",\n  \"author\": {\n    \"name\": \"Feross Aboukhadijeh\",\n    \"email\": \"feross@feross.org\",\n    \"url\": \"https://feross.org\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/feross/safe-buffer/issues\"\n  },\n  \"devDependencies\": {\n    \"standard\": \"*\",\n    \"tape\": \"^5.0.0\"\n  },\n  \"homepage\": \"https://github.com/feross/safe-buffer\",\n  \"keywords\": [\n    \"buffer\",\n    \"buffer allocate\",\n    \"node security\",\n    \"safe\",\n    \"safe-buffer\",\n    \"security\",\n    \"uninitialized\"\n  ],\n  \"license\": \"MIT\",\n  \"main\": \"index.js\",\n  \"types\": \"index.d.ts\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/feross/safe-buffer.git\"\n  },\n  \"scripts\": {\n    \"test\": \"standard && tape test/*.js\"\n  },\n  \"funding\": [\n    {\n      \"type\": \"github\",\n      \"url\": \"https://github.com/sponsors/feross\"\n    },\n    {\n      \"type\": \"patreon\",\n      \"url\": \"https://www.patreon.com/feross\"\n    },\n    {\n      \"type\": \"consulting\",\n      \"url\": \"https://feross.org/support\"\n    }\n  ]\n}\n",
    "node_modules/safer-buffer/package.json": "{\n  \"name\": \"safer-buffer\",\n  \"version\": \"2.1.2\",\n  \"description\": \"Modern Buffer API polyfill without footguns\",\n  \"main\": \"safer.js\",\n  \"scripts\": {\n    \"browserify-test\": \"browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js\",\n    \"test\": \"standard && tape tests.js\"\n  },\n  \"author\": {\n    \"name\": \"Nikita Skovoroda\",\n    \"email\": \"chalkerx@gmail.com\",\n    \"url\": \"https://github.com/ChALkeR\"\n  },\n  \"license\": \"MIT\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/ChALkeR/safer-buffer.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/ChALkeR/safer-buffer/issues\"\n  },\n  \"devDependencies\": {\n    \"standard\": \"^11.0.1\",\n    \"tape\": \"^4.9.0\"\n  },\n  \"files\": [\n    \"Porting-Buffer.md\",\n    \"Readme.md\",\n    \"tests.js\",\n    \"dangerous.js\",\n    \"safer.js\"\n  ]\n}\n",
    "node_modules/signal-exit/package.json": "{\n  \"name\": \"signal-exit\",\n  \"version\": \"3.0.7\",\n  \"description\": \"when you want to fire an event no matter how a process exits.\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"tap\",\n    \"snap\": \"tap\",\n    \"preversion\": \"npm test\",\n    \"postversion\": \"npm publish\",\n    \"prepublishOnly\": \"git push origin --follow-tags\"\n  },\n  \"files\": [\n    \"index.js\",\n    \"signals.js\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/tapjs/signal-exit.git\"\n  },\n  \"keywords\": [\n    \"signal\",\n    \"exit\"\n  ],\n  \"author\": \"Ben Coe <ben@npmjs.com>\",\n  \"license\": \"ISC\",\n  \"bugs\": {\n    \"url\": \"https://github.com/tapjs/signal-exit/issues\"\n  },\n  \"homepage\": \"https://github.com/tapjs/signal-exit\",\n  \"devDependencies\": {\n    \"chai\": \"^3.5.0\",\n    \"coveralls\": \"^3.1.1\",\n    \"nyc\": \"^15.1.0\",\n    \"standard-version\": \"^9.3.1\",\n    \"tap\": \"^15.1.1\"\n  }\n}\n",
    "node_modules/string_decoder/package.json": "{\n  \"name\": \"string_decoder\",\n  \"version\": \"1.3.0\",\n  \"description\": \"The string_decoder module from Node core\",\n  \"main\": \"lib/string_decoder.js\",\n  \"files\": [\n    \"lib\"\n  ],\n  \"dependencies\": {\n    \"safe-buffer\": \"~5.2.0\"\n  },\n  \"devDependencies\": {\n    \"babel-polyfill\": \"^6.23.0\",\n    \"core-util-is\": \"^1.0.2\",\n    \"inherits\": \"^2.0.3\",\n    \"tap\": \"~0.4.8\"\n  },\n  \"scripts\": {\n    \"test\": \"tap test/parallel/*.js && node test/verify-dependencies\",\n    \"ci\": \"tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/nodejs/string_decoder.git\"\n  },\n  \"homepage\": \"https://github.com/nodejs/string_decoder\",\n  \"keywords\": [\n    \"string\",\n    \"decoder\",\n    \"browser\",\n    \"browserify\"\n  ],\n  \"license\": \"MIT\"\n}\n",
    "node_modules/string-width/index.d.ts": "declare const stringWidth: {\n\t/**\n\tGet the visual width of a string - the number of columns required to display it.\n\n\tSome Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.\n\n\t@example\n\t```\n\timport stringWidth = require('string-width');\n\n\tstringWidth('a');\n\t//=> 1\n\n\tstringWidth('古');\n\t//=> 2\n\n\tstringWidth('\\u001B[1m古\\u001B[22m');\n\t//=> 2\n\t```\n\t*/\n\t(string: string): number;\n\n\t// TODO: remove this in the next major version, refactor the whole definition to:\n\t// declare function stringWidth(string: string): number;\n\t// export = stringWidth;\n\tdefault: typeof stringWidth;\n}\n\nexport = stringWidth;\n",
    "node_modules/string-width/package.json": "{\n\t\"name\": \"string-width\",\n\t\"version\": \"4.2.3\",\n\t\"description\": \"Get the visual width of a string - the number of columns required to display it\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/string-width\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"string\",\n\t\t\"character\",\n\t\t\"unicode\",\n\t\t\"width\",\n\t\t\"visual\",\n\t\t\"column\",\n\t\t\"columns\",\n\t\t\"fullwidth\",\n\t\t\"full-width\",\n\t\t\"full\",\n\t\t\"ansi\",\n\t\t\"escape\",\n\t\t\"codes\",\n\t\t\"cli\",\n\t\t\"command-line\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cjk\",\n\t\t\"chinese\",\n\t\t\"japanese\",\n\t\t\"korean\",\n\t\t\"fixed-width\"\n\t],\n\t\"dependencies\": {\n\t\t\"emoji-regex\": \"^8.0.0\",\n\t\t\"is-fullwidth-code-point\": \"^3.0.0\",\n\t\t\"strip-ansi\": \"^6.0.1\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"tsd\": \"^0.7.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
    "node_modules/strip-ansi/index.d.ts": "/**\nStrip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.\n\n@example\n```\nimport stripAnsi = require('strip-ansi');\n\nstripAnsi('\\u001B[4mUnicorn\\u001B[0m');\n//=> 'Unicorn'\n\nstripAnsi('\\u001B]8;;https://github.com\\u0007Click\\u001B]8;;\\u0007');\n//=> 'Click'\n```\n*/\ndeclare function stripAnsi(string: string): string;\n\nexport = stripAnsi;\n",
    "node_modules/strip-ansi/package.json": "{\n\t\"name\": \"strip-ansi\",\n\t\"version\": \"6.0.1\",\n\t\"description\": \"Strip ANSI escape codes from a string\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/strip-ansi\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"strip\",\n\t\t\"trim\",\n\t\t\"remove\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-regex\": \"^5.0.1\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"tsd\": \"^0.10.0\",\n\t\t\"xo\": \"^0.25.3\"\n\t}\n}\n",
    "node_modules/supports-color/package.json": "{\n\t\"name\": \"supports-color\",\n\t\"version\": \"7.2.0\",\n\t\"description\": \"Detect whether a terminal supports color\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/supports-color\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"browser.js\"\n\t],\n\t\"keywords\": [\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"tty\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"command-line\",\n\t\t\"support\",\n\t\t\"supports\",\n\t\t\"capability\",\n\t\t\"detect\",\n\t\t\"truecolor\",\n\t\t\"16m\"\n\t],\n\t\"dependencies\": {\n\t\t\"has-flag\": \"^4.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"import-fresh\": \"^3.0.0\",\n\t\t\"xo\": \"^0.24.0\"\n\t},\n\t\"browser\": \"browser.js\"\n}\n",
    "node_modules/through/package.json": "{\n  \"name\": \"through\",\n  \"version\": \"2.3.8\",\n  \"description\": \"simplified stream construction\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"set -e; for t in test/*.js; do node $t; done\"\n  },\n  \"devDependencies\": {\n    \"stream-spec\": \"~0.3.5\",\n    \"tape\": \"~2.3.2\",\n    \"from\": \"~0.1.3\"\n  },\n  \"keywords\": [\n    \"stream\",\n    \"streams\",\n    \"user-streams\",\n    \"pipe\"\n  ],\n  \"author\": \"Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)\",\n  \"license\": \"MIT\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/dominictarr/through.git\"\n  },\n  \"homepage\": \"https://github.com/dominictarr/through\",\n  \"testling\": {\n    \"browsers\": [\n      \"ie/8..latest\",\n      \"ff/15..latest\",\n      \"chrome/20..latest\",\n      \"safari/5.1..latest\"\n    ],\n    \"files\": \"test/*.js\"\n  }\n}\n",
    "node_modules/tmp/package.json": "{\n  \"name\": \"tmp\",\n  \"version\": \"0.0.33\",\n  \"description\": \"Temporary file and directory creator\",\n  \"author\": \"KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)\",\n  \"keywords\": [\n    \"temporary\",\n    \"tmp\",\n    \"temp\",\n    \"tempdir\",\n    \"tempfile\",\n    \"tmpdir\",\n    \"tmpfile\"\n  ],\n  \"license\": \"MIT\",\n  \"repository\": \"raszi/node-tmp\",\n  \"homepage\": \"http://github.com/raszi/node-tmp\",\n  \"bugs\": {\n    \"url\": \"http://github.com/raszi/node-tmp/issues\"\n  },\n  \"engines\": {\n    \"node\": \">=0.6.0\"\n  },\n  \"dependencies\": {\n    \"os-tmpdir\": \"~1.0.2\"\n  },\n  \"devDependencies\": {\n    \"vows\": \"~0.7.0\"\n  },\n  \"main\": \"lib/tmp.js\",\n  \"files\": [\n    \"lib/\"\n  ],\n  \"scripts\": {\n    \"test\": \"vows test/*-test.js\",\n    \"doc\": \"jsdoc -c .jsdoc.json\"\n  }\n}\n",
    "node_modules/tslib/modules/index.d.ts": "// Note: named reexports are used instead of `export *` because\n// TypeScript itself doesn't resolve the `export *` when checking\n// if a particular helper exists.\nexport {\n  __extends,\n  __assign,\n  __rest,\n  __decorate,\n  __param,\n  __esDecorate,\n  __runInitializers,\n  __propKey,\n  __setFunctionName,\n  __metadata,\n  __awaiter,\n  __generator,\n  __exportStar,\n  __values,\n  __read,\n  __spread,\n  __spreadArrays,\n  __spreadArray,\n  __await,\n  __asyncGenerator,\n  __asyncDelegator,\n  __asyncValues,\n  __makeTemplateObject,\n  __importStar,\n  __importDefault,\n  __classPrivateFieldGet,\n  __classPrivateFieldSet,\n  __classPrivateFieldIn,\n  __createBinding,\n  __addDisposableResource,\n  __disposeResources,\n  __rewriteRelativeImportExtension,\n} from '../tslib.js';\nexport * as default from '../tslib.js';\n",
    "node_modules/tslib/package.json": "{\n    \"name\": \"tslib\",\n    \"author\": \"Microsoft Corp.\",\n    \"homepage\": \"https://www.typescriptlang.org/\",\n    \"version\": \"2.8.1\",\n    \"license\": \"0BSD\",\n    \"description\": \"Runtime library for TypeScript helper functions\",\n    \"keywords\": [\n        \"TypeScript\",\n        \"Microsoft\",\n        \"compiler\",\n        \"language\",\n        \"javascript\",\n        \"tslib\",\n        \"runtime\"\n    ],\n    \"bugs\": {\n        \"url\": \"https://github.com/Microsoft/TypeScript/issues\"\n    },\n    \"repository\": {\n        \"type\": \"git\",\n        \"url\": \"https://github.com/Microsoft/tslib.git\"\n    },\n    \"main\": \"tslib.js\",\n    \"module\": \"tslib.es6.js\",\n    \"jsnext:main\": \"tslib.es6.js\",\n    \"typings\": \"tslib.d.ts\",\n    \"sideEffects\": false,\n    \"exports\": {\n        \".\": {\n            \"module\": {\n                \"types\": \"./modules/index.d.ts\",\n                \"default\": \"./tslib.es6.mjs\"\n            },\n            \"import\": {\n                \"node\": \"./modules/index.js\",\n                \"default\": {\n                    \"types\": \"./modules/index.d.ts\",\n                    \"default\": \"./tslib.es6.mjs\"\n                }\n            },\n            \"default\": \"./tslib.js\"\n        },\n        \"./*\": \"./*\",\n        \"./\": \"./\"\n    }\n}\n",
    "node_modules/tslib/tslib.d.ts": "/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n\r\n/**\r\n * Used to shim class extends.\r\n *\r\n * @param d The derived class.\r\n * @param b The base class.\r\n */\r\nexport declare function __extends(d: Function, b: Function): void;\r\n\r\n/**\r\n * Copy the values of all of the enumerable own properties from one or more source objects to a\r\n * target object. Returns the target object.\r\n *\r\n * @param t The target object to copy to.\r\n * @param sources One or more source objects from which to copy properties\r\n */\r\nexport declare function __assign(t: any, ...sources: any[]): any;\r\n\r\n/**\r\n * Performs a rest spread on an object.\r\n *\r\n * @param t The source value.\r\n * @param propertyNames The property names excluded from the rest spread.\r\n */\r\nexport declare function __rest(t: any, propertyNames: (string | symbol)[]): any;\r\n\r\n/**\r\n * Applies decorators to a target object\r\n *\r\n * @param decorators The set of decorators to apply.\r\n * @param target The target object.\r\n * @param key If specified, the own property to apply the decorators to.\r\n * @param desc The property descriptor, defaults to fetching the descriptor from the target object.\r\n * @experimental\r\n */\r\nexport declare function __decorate(decorators: Function[], target: any, key?: string | symbol, desc?: any): any;\r\n\r\n/**\r\n * Creates an observing function decorator from a parameter decorator.\r\n *\r\n * @param paramIndex The parameter index to apply the decorator to.\r\n * @param decorator The parameter decorator to apply. Note that the return value is ignored.\r\n * @experimental\r\n */\r\nexport declare function __param(paramIndex: number, decorator: Function): Function;\r\n\r\n/**\r\n * Applies decorators to a class or class member, following the native ECMAScript decorator specification.\r\n * @param ctor For non-field class members, the class constructor. Otherwise, `null`.\r\n * @param descriptorIn The `PropertyDescriptor` to use when unable to look up the property from `ctor`.\r\n * @param decorators The decorators to apply\r\n * @param contextIn The `DecoratorContext` to clone for each decorator application.\r\n * @param initializers An array of field initializer mutation functions into which new initializers are written.\r\n * @param extraInitializers An array of extra initializer functions into which new initializers are written.\r\n */\r\nexport declare function __esDecorate(ctor: Function | null, descriptorIn: object | null, decorators: Function[], contextIn: object, initializers: Function[] | null, extraInitializers: Function[]): void;\r\n\r\n/**\r\n * Runs field initializers or extra initializers generated by `__esDecorate`.\r\n * @param thisArg The `this` argument to use.\r\n * @param initializers The array of initializers to evaluate.\r\n * @param value The initial value to pass to the initializers.\r\n */\r\nexport declare function __runInitializers(thisArg: unknown, initializers: Function[], value?: any): any;\r\n\r\n/**\r\n * Converts a computed property name into a `string` or `symbol` value.\r\n */\r\nexport declare function __propKey(x: any): string | symbol;\r\n\r\n/**\r\n * Assigns the name of a function derived from the left-hand side of an assignment.\r\n * @param f The function to rename.\r\n * @param name The new name for the function.\r\n * @param prefix A prefix (such as `\"get\"` or `\"set\"`) to insert before the name.\r\n */\r\nexport declare function __setFunctionName(f: Function, name: string | symbol, prefix?: string): Function;\r\n\r\n/**\r\n * Creates a decorator that sets metadata.\r\n *\r\n * @param metadataKey The metadata key\r\n * @param metadataValue The metadata value\r\n * @experimental\r\n */\r\nexport declare function __metadata(metadataKey: any, metadataValue: any): Function;\r\n\r\n/**\r\n * Converts a generator function into a pseudo-async function, by treating each `yield` as an `await`.\r\n *\r\n * @param thisArg The reference to use as the `this` value in the generator function\r\n * @param _arguments The optional arguments array\r\n * @param P The optional promise constructor argument, defaults to the `Promise` property of the global object.\r\n * @param generator The generator function\r\n */\r\nexport declare function __awaiter(thisArg: any, _arguments: any, P: Function, generator: Function): any;\r\n\r\n/**\r\n * Creates an Iterator object using the body as the implementation.\r\n *\r\n * @param thisArg The reference to use as the `this` value in the function\r\n * @param body The generator state-machine based implementation.\r\n *\r\n * @see [./docs/generator.md]\r\n */\r\nexport declare function __generator(thisArg: any, body: Function): any;\r\n\r\n/**\r\n * Creates bindings for all enumerable properties of `m` on `exports`\r\n *\r\n * @param m The source object\r\n * @param o The `exports` object.\r\n */\r\nexport declare function __exportStar(m: any, o: any): void;\r\n\r\n/**\r\n * Creates a value iterator from an `Iterable` or `ArrayLike` object.\r\n *\r\n * @param o The object.\r\n * @throws {TypeError} If `o` is neither `Iterable`, nor an `ArrayLike`.\r\n */\r\nexport declare function __values(o: any): any;\r\n\r\n/**\r\n * Reads values from an `Iterable` or `ArrayLike` object and returns the resulting array.\r\n *\r\n * @param o The object to read from.\r\n * @param n The maximum number of arguments to read, defaults to `Infinity`.\r\n */\r\nexport declare function __read(o: any, n?: number): any[];\r\n\r\n/**\r\n * Creates an array from iterable spread.\r\n *\r\n * @param args The Iterable objects to spread.\r\n * @deprecated since TypeScript 4.2 - Use `__spreadArray`\r\n */\r\nexport declare function __spread(...args: any[][]): any[];\r\n\r\n/**\r\n * Creates an array from array spread.\r\n *\r\n * @param args The ArrayLikes to spread into the resulting array.\r\n * @deprecated since TypeScript 4.2 - Use `__spreadArray`\r\n */\r\nexport declare function __spreadArrays(...args: any[][]): any[];\r\n\r\n/**\r\n * Spreads the `from` array into the `to` array.\r\n *\r\n * @param pack Replace empty elements with `undefined`.\r\n */\r\nexport declare function __spreadArray(to: any[], from: any[], pack?: boolean): any[];\r\n\r\n/**\r\n * Creates an object that signals to `__asyncGenerator` that it shouldn't be yielded,\r\n * and instead should be awaited and the resulting value passed back to the generator.\r\n *\r\n * @param v The value to await.\r\n */\r\nexport declare function __await(v: any): any;\r\n\r\n/**\r\n * Converts a generator function into an async generator function, by using `yield __await`\r\n * in place of normal `await`.\r\n *\r\n * @param thisArg The reference to use as the `this` value in the generator function\r\n * @param _arguments The optional arguments array\r\n * @param generator The generator function\r\n */\r\nexport declare function __asyncGenerator(thisArg: any, _arguments: any, generator: Function): any;\r\n\r\n/**\r\n * Used to wrap a potentially async iterator in such a way so that it wraps the result\r\n * of calling iterator methods of `o` in `__await` instances, and then yields the awaited values.\r\n *\r\n * @param o The potentially async iterator.\r\n * @returns A synchronous iterator yielding `__await` instances on every odd invocation\r\n *          and returning the awaited `IteratorResult` passed to `next` every even invocation.\r\n */\r\nexport declare function __asyncDelegator(o: any): any;\r\n\r\n/**\r\n * Creates a value async iterator from an `AsyncIterable`, `Iterable` or `ArrayLike` object.\r\n *\r\n * @param o The object.\r\n * @throws {TypeError} If `o` is neither `AsyncIterable`, `Iterable`, nor an `ArrayLike`.\r\n */\r\nexport declare function __asyncValues(o: any): any;\r\n\r\n/**\r\n * Creates a `TemplateStringsArray` frozen object from the `cooked` and `raw` arrays.\r\n *\r\n * @param cooked The cooked possibly-sparse array.\r\n * @param raw The raw string content.\r\n */\r\nexport declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray;\r\n\r\n/**\r\n * Used to shim default and named imports in ECMAScript Modules transpiled to CommonJS.\r\n *\r\n * ```js\r\n * import Default, { Named, Other } from \"mod\";\r\n * // or\r\n * import { default as Default, Named, Other } from \"mod\";\r\n * ```\r\n *\r\n * @param mod The CommonJS module exports object.\r\n */\r\nexport declare function __importStar<T>(mod: T): T;\r\n\r\n/**\r\n * Used to shim default imports in ECMAScript Modules transpiled to CommonJS.\r\n *\r\n * ```js\r\n * import Default from \"mod\";\r\n * ```\r\n *\r\n * @param mod The CommonJS module exports object.\r\n */\r\nexport declare function __importDefault<T>(mod: T): T | { default: T };\r\n\r\n/**\r\n * Emulates reading a private instance field.\r\n *\r\n * @param receiver The instance from which to read the private field.\r\n * @param state A WeakMap containing the private field value for an instance.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n *\r\n * @throws {TypeError} If `state` doesn't have an entry for `receiver`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends object, V>(\r\n    receiver: T,\r\n    state: { has(o: T): boolean, get(o: T): V | undefined },\r\n    kind?: \"f\"\r\n): V;\r\n\r\n/**\r\n * Emulates reading a private static field.\r\n *\r\n * @param receiver The object from which to read the private static field.\r\n * @param state The class constructor containing the definition of the static field.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The descriptor that holds the static field value.\r\n *\r\n * @throws {TypeError} If `receiver` is not `state`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V>(\r\n    receiver: T,\r\n    state: T,\r\n    kind: \"f\",\r\n    f: { value: V }\r\n): V;\r\n\r\n/**\r\n * Emulates evaluating a private instance \"get\" accessor.\r\n *\r\n * @param receiver The instance on which to evaluate the private \"get\" accessor.\r\n * @param state A WeakSet used to verify an instance supports the private \"get\" accessor.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The \"get\" accessor function to evaluate.\r\n *\r\n * @throws {TypeError} If `state` doesn't have an entry for `receiver`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends object, V>(\r\n    receiver: T,\r\n    state: { has(o: T): boolean },\r\n    kind: \"a\",\r\n    f: () => V\r\n): V;\r\n\r\n/**\r\n * Emulates evaluating a private static \"get\" accessor.\r\n *\r\n * @param receiver The object on which to evaluate the private static \"get\" accessor.\r\n * @param state The class constructor containing the definition of the static \"get\" accessor.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The \"get\" accessor function to evaluate.\r\n *\r\n * @throws {TypeError} If `receiver` is not `state`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V>(\r\n    receiver: T,\r\n    state: T,\r\n    kind: \"a\",\r\n    f: () => V\r\n): V;\r\n\r\n/**\r\n * Emulates reading a private instance method.\r\n *\r\n * @param receiver The instance from which to read a private method.\r\n * @param state A WeakSet used to verify an instance supports the private method.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The function to return as the private instance method.\r\n *\r\n * @throws {TypeError} If `state` doesn't have an entry for `receiver`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends object, V extends (...args: any[]) => unknown>(\r\n    receiver: T,\r\n    state: { has(o: T): boolean },\r\n    kind: \"m\",\r\n    f: V\r\n): V;\r\n\r\n/**\r\n * Emulates reading a private static method.\r\n *\r\n * @param receiver The object from which to read the private static method.\r\n * @param state The class constructor containing the definition of the static method.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The function to return as the private static method.\r\n *\r\n * @throws {TypeError} If `receiver` is not `state`.\r\n */\r\nexport declare function __classPrivateFieldGet<T extends new (...args: any[]) => unknown, V extends (...args: any[]) => unknown>(\r\n    receiver: T,\r\n    state: T,\r\n    kind: \"m\",\r\n    f: V\r\n): V;\r\n\r\n/**\r\n * Emulates writing to a private instance field.\r\n *\r\n * @param receiver The instance on which to set a private field value.\r\n * @param state A WeakMap used to store the private field value for an instance.\r\n * @param value The value to store in the private field.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n *\r\n * @throws {TypeError} If `state` doesn't have an entry for `receiver`.\r\n */\r\nexport declare function __classPrivateFieldSet<T extends object, V>(\r\n    receiver: T,\r\n    state: { has(o: T): boolean, set(o: T, value: V): unknown },\r\n    value: V,\r\n    kind?: \"f\"\r\n): V;\r\n\r\n/**\r\n * Emulates writing to a private static field.\r\n *\r\n * @param receiver The object on which to set the private static field.\r\n * @param state The class constructor containing the definition of the private static field.\r\n * @param value The value to store in the private field.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The descriptor that holds the static field value.\r\n *\r\n * @throws {TypeError} If `receiver` is not `state`.\r\n */\r\nexport declare function __classPrivateFieldSet<T extends new (...args: any[]) => unknown, V>(\r\n    receiver: T,\r\n    state: T,\r\n    value: V,\r\n    kind: \"f\",\r\n    f: { value: V }\r\n): V;\r\n\r\n/**\r\n * Emulates writing to a private instance \"set\" accessor.\r\n *\r\n * @param receiver The instance on which to evaluate the private instance \"set\" accessor.\r\n * @param state A WeakSet used to verify an instance supports the private \"set\" accessor.\r\n * @param value The value to store in the private accessor.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The \"set\" accessor function to evaluate.\r\n *\r\n * @throws {TypeError} If `state` doesn't have an entry for `receiver`.\r\n */\r\nexport declare function __classPrivateFieldSet<T extends object, V>(\r\n    receiver: T,\r\n    state: { has(o: T): boolean },\r\n    value: V,\r\n    kind: \"a\",\r\n    f: (v: V) => void\r\n): V;\r\n\r\n/**\r\n * Emulates writing to a private static \"set\" accessor.\r\n *\r\n * @param receiver The object on which to evaluate the private static \"set\" accessor.\r\n * @param state The class constructor containing the definition of the static \"set\" accessor.\r\n * @param value The value to store in the private field.\r\n * @param kind Either `\"f\"` for a field, `\"a\"` for an accessor, or `\"m\"` for a method.\r\n * @param f The \"set\" accessor function to evaluate.\r\n *\r\n * @throws {TypeError} If `receiver` is not `state`.\r\n */\r\nexport declare function __classPrivateFieldSet<T extends new (...args: any[]) => unknown, V>(\r\n    receiver: T,\r\n    state: T,\r\n    value: V,\r\n    kind: \"a\",\r\n    f: (v: V) => void\r\n): V;\r\n\r\n/**\r\n * Checks for the existence of a private field/method/accessor.\r\n *\r\n * @param state The class constructor containing the static member, or the WeakMap or WeakSet associated with a private instance member.\r\n * @param receiver The object for which to test the presence of the private member.\r\n */\r\nexport declare function __classPrivateFieldIn(\r\n    state: (new (...args: any[]) => unknown) | { has(o: any): boolean },\r\n    receiver: unknown,\r\n): boolean;\r\n\r\n/**\r\n * Creates a re-export binding on `object` with key `objectKey` that references `target[key]`.\r\n *\r\n * @param object The local `exports` object.\r\n * @param target The object to re-export from.\r\n * @param key The property key of `target` to re-export.\r\n * @param objectKey The property key to re-export as. Defaults to `key`.\r\n */\r\nexport declare function __createBinding(object: object, target: object, key: PropertyKey, objectKey?: PropertyKey): void;\r\n\r\n/**\r\n * Adds a disposable resource to a resource-tracking environment object.\r\n * @param env A resource-tracking environment object.\r\n * @param value Either a Disposable or AsyncDisposable object, `null`, or `undefined`.\r\n * @param async When `true`, `AsyncDisposable` resources can be added. When `false`, `AsyncDisposable` resources cannot be added.\r\n * @returns The {@link value} argument.\r\n *\r\n * @throws {TypeError} If {@link value} is not an object, or if either `Symbol.dispose` or `Symbol.asyncDispose` are not\r\n * defined, or if {@link value} does not have an appropriate `Symbol.dispose` or `Symbol.asyncDispose` method.\r\n */\r\nexport declare function __addDisposableResource<T>(env: { stack: { value?: unknown, dispose?: Function, async: boolean }[]; error: unknown; hasError: boolean; }, value: T, async: boolean): T;\r\n\r\n/**\r\n * Disposes all resources in a resource-tracking environment object.\r\n * @param env A resource-tracking environment object.\r\n * @returns A {@link Promise} if any resources in the environment were marked as `async` when added; otherwise, `void`.\r\n *\r\n * @throws {SuppressedError} if an error thrown during disposal would have suppressed a prior error from disposal or the\r\n * error recorded in the resource-tracking environment object.\r\n * @seealso {@link __addDisposableResource}\r\n */\r\nexport declare function __disposeResources(env: { stack: { value?: unknown, dispose?: Function, async: boolean }[]; error: unknown; hasError: boolean; }): any;\r\n\r\n/**\r\n * Transforms a relative import specifier ending in a non-declaration TypeScript file extension to its JavaScript file extension counterpart.\r\n * @param path The import specifier.\r\n * @param preserveJsx Causes '*.tsx' to transform to '*.jsx' instead of '*.js'. Should be true when `--jsx` is set to `preserve`.\r\n */\r\nexport declare function __rewriteRelativeImportExtension(path: string, preserveJsx?: boolean): string;",
    "node_modules/tstl/lib/algorithm/binary_search.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { Pair } from \"../utility/Pair\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Get iterator to lower bound.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element equal or after the val.\n */\nexport declare function lower_bound<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, val: IPointer.ValueType<ForwardIterator>, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Get iterator to upper bound.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element after the key.\n */\nexport declare function upper_bound<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, val: IPointer.ValueType<ForwardIterator>, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Get range of equal elements.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Pair of {@link lower_bound} and {@link upper_bound}.\n */\nexport declare function equal_range<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, val: IPointer.ValueType<ForwardIterator>, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): Pair<ForwardIterator, ForwardIterator>;\n/**\n * Test whether a value exists in sorted range.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the value exists or not.\n */\nexport declare function binary_search<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, val: IPointer.ValueType<ForwardIterator>, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): boolean;\n",
    "node_modules/tstl/lib/algorithm/heap.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IRandomAccessIterator } from \"../iterator/IRandomAccessIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { Comparator } from \"../internal/functional/Comparator\";\nimport { General } from \"../internal/functional/General\";\n/**\n * Make a heap.\n *\n * @param first Random access iteartor of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function make_heap<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Push an element into heap.\n *\n * @param first Random access iteartor of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function push_heap<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Pop an element from heap.\n *\n * @param first Random access iteartor of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function pop_heap<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Test whether a range is heap.\n *\n * @param first Bi-directional iteartor of the first position.\n * @param last Bi-directional iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the range is heap.\n */\nexport declare function is_heap<RandomAccessIterator extends Readonly<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): boolean;\n/**\n * Find the first element not in heap order.\n *\n * @param first Bi-directional iteartor of the first position.\n * @param last Bi-directional iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element not in heap order.\n */\nexport declare function is_heap_until<RandomAccessIterator extends Readonly<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): RandomAccessIterator;\n/**\n * Sort elements of a heap.\n *\n * @param first Random access iteartor of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function sort_heap<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n",
    "node_modules/tstl/lib/algorithm/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./binary_search\";\nexport * from \"./heap\";\nexport * from \"./iterations\";\nexport * from \"./mathematics\";\nexport * from \"./modifiers\";\nexport * from \"./partition\";\nexport * from \"./random\";\nexport * from \"./sorting\";\nexport * from \"./merge\";\n",
    "node_modules/tstl/lib/algorithm/iterations.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { Pair } from \"../utility/Pair\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { UnaryPredicator } from \"../internal/functional/UnaryPredicator\";\n/**\n * Apply a function to elements in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param fn The function to apply.\n *\n * @return The function *fn* itself.\n */\nexport declare function for_each<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, Func extends (val: IPointer.ValueType<InputIterator>) => any>(first: InputIterator, last: InputIterator, fn: Func): Func;\n/**\n * Apply a function to elements in steps.\n *\n * @param first Input iteartor of the starting position.\n * @param n Steps to maximum advance.\n * @param fn The function to apply.\n *\n * @return Iterator advanced from *first* for *n* steps.\n */\nexport declare function for_each_n<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, Func extends (val: IPointer.ValueType<InputIterator>) => any>(first: InputIterator, n: number, fn: Func): InputIterator;\n/**\n * Test whether all elements meet a specific condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* returns always `true` for all elements.\n */\nexport declare function all_of<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): boolean;\n/**\n * Test whether any element meets a specific condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* returns at least a `true` for all elements.\n */\nexport declare function any_of<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): boolean;\n/**\n * Test whether any element doesn't meet a specific condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* doesn't return `true` for all elements.\n */\nexport declare function none_of<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): boolean;\n/**\n * Test whether two ranges are equal.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Whether two ranges are equal.\n */\nexport declare function equal<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2): boolean;\n/**\n * Test whether two ranges are equal.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Whether two ranges are equal.\n */\nexport declare function equal<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator2>, InputIterator2>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, pred: BinaryPredicator<IPointer.ValueType<InputIterator1>, IPointer.ValueType<InputIterator2>>): boolean;\n/**\n * Compare lexicographically.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the 1st range precedes the 2nd.\n */\nexport declare function lexicographical_compare<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, last2: Iterator2, comp?: BinaryPredicator<IPointer.ValueType<Iterator1>>): boolean;\n/**\n * Find a value in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param val The value to find.\n *\n * @return Iterator to the first element {@link equal to equal_to} the value.\n */\nexport declare function find<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, val: IPointer.ValueType<InputIterator>): InputIterator;\n/**\n * Find a matched condition in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return Iterator to the first element *pred* returns `true`.\n */\nexport declare function find_if<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): InputIterator;\n/**\n * Find a mismatched condition in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return Iterator to the first element *pred* returns `false`.\n */\nexport declare function find_if_not<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): InputIterator;\n/**\n * Find the last sub range.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n *\n * @return Iterator to the first element of the last sub range.\n */\nexport declare function find_end<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, last2: Iterator2): Iterator1;\n/**\n * Find the last sub range.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the last sub range.\n */\nexport declare function find_end<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator2>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, last2: Iterator2, pred: BinaryPredicator<IPointer.ValueType<Iterator1>, IPointer.ValueType<Iterator2>>): Iterator1;\n/**\n * Find the first sub range.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n *\n * @return Iterator to the first element of the first sub range.\n */\nexport declare function find_first_of<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, last2: Iterator2): Iterator1;\n/**\n * Find the first sub range.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the first sub range.\n */\nexport declare function find_first_of<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator2>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, last2: Iterator2, pred: BinaryPredicator<IPointer.ValueType<Iterator1>, IPointer.ValueType<Iterator2>>): Iterator1;\n/**\n * Find the first adjacent element.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Iterator to the first element of adjacent find.\n */\nexport declare function adjacent_find<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred?: BinaryPredicator<IPointer.ValueType<InputIterator>>): InputIterator;\n/**\n * Search sub range.\n *\n * @param first1 Forward iteartor of the first position of the 1st range.\n * @param last1 Forward iterator of the last position of the 1st range.\n * @param first2 Forward iterator of the first position of the 2nd range.\n * @param last2 Forward iterator of the last position of the 2nd range.\n *\n * @return Iterator to the first element of the sub range.\n */\nexport declare function search<ForwardIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator1>>, ForwardIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator2>>>(first1: ForwardIterator1, last1: ForwardIterator1, first2: ForwardIterator2, last2: ForwardIterator2): ForwardIterator1;\n/**\n * Search sub range.\n *\n * @param first1 Forward iteartor of the first position of the 1st range.\n * @param last1 Forward iterator of the last position of the 1st range.\n * @param first2 Forward iterator of the first position of the 2nd range.\n * @param last2 Forward iterator of the last position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the sub range.\n */\nexport declare function search<ForwardIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator1>>, ForwardIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator2>, ForwardIterator2>>>(first1: ForwardIterator1, last1: ForwardIterator1, first2: ForwardIterator2, last2: ForwardIterator2, pred: BinaryPredicator<IPointer.ValueType<ForwardIterator1>, IPointer.ValueType<ForwardIterator2>>): ForwardIterator1;\n/**\n * Search specific and repeated elements.\n *\n * @param first Forward iteartor of the first position.\n * @param last Forward iterator of the last position.\n * @param count Count to be repeated.\n * @param val Value to search.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Iterator to the first element of the repetition.\n */\nexport declare function search_n<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, count: number, val: IPointer.ValueType<ForwardIterator>, pred?: BinaryPredicator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Find the first mistmached position between two ranges.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n *\n * @return A {@link Pair} of mismatched positions.\n */\nexport declare function mismatch<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2): Pair<Iterator1, Iterator2>;\n/**\n * Find the first mistmached position between two ranges.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return A {@link Pair} of mismatched positions.\n */\nexport declare function mismatch<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator2>, Iterator2>>>(first1: Iterator1, last1: Iterator1, first2: Iterator2, pred: BinaryPredicator<IPointer.ValueType<Iterator1>, IPointer.ValueType<Iterator2>>): Pair<Iterator1, Iterator2>;\n/**\n * Count matched value in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param val The value to count.\n *\n * @return The matched count.\n */\nexport declare function count<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, val: IPointer.ValueType<InputIterator>): number;\n/**\n * Count matched condition in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A function predicates the specific condition.\n *\n * @return The matched count.\n */\nexport declare function count_if<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): number;\n",
    "node_modules/tstl/lib/algorithm/mathematics.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IBidirectionalIterator } from \"../iterator/IBidirectionalIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { General } from \"../internal/functional/General\";\nimport { Pair } from \"../utility/Pair\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Get the minium value.\n *\n * @param items Items to search through.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return The minimum value.\n */\nexport declare function min<T>(items: T[], comp?: Comparator<T>): T;\n/**\n * Get the maximum value.\n *\n * @param items Items to search through.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return The maximum value.\n */\nexport declare function max<T>(items: T[], comp?: Comparator<T>): T;\n/**\n * Get the minimum & maximum values.\n *\n * @param items Items to search through.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return A {@link Pair} of minimum & maximum values.\n */\nexport declare function minmax<T>(items: T[], comp?: Comparator<T>): Pair<T, T>;\n/**\n * Get the minimum element in range.\n *\n * @param first Forward iterator of the first position.\n * @param last Forward iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the minimum element.\n */\nexport declare function min_element<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Get the maximum element in range.\n *\n * @param first Forward iterator of the first position.\n * @param last Forward iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the maximum element.\n */\nexport declare function max_element<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Get the minimum & maximum elements in range.\n *\n * @param first Forward iterator of the first position.\n * @param last Forward iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return A {@link Pair} of iterators to the minimum & maximum elements.\n */\nexport declare function minmax_element<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, comp?: Comparator<IPointer.ValueType<ForwardIterator>>): Pair<ForwardIterator, ForwardIterator>;\n/**\n * Get the clamp value.\n *\n * @param v The value to clamp.\n * @param lo Lower value than *hi*.\n * @param hi Higher value than *lo*.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return The clamp value.\n */\nexport declare function clamp<T>(v: T, lo: T, hi: T, comp?: Comparator<T>): T;\n/**\n * Test whether two ranges are in permutation relationship.\n *\n * @param first1 Forward iteartor of the first position of the 1st range.\n * @param last1 Forward iterator of the last position of the 1st range.\n * @param first2 Forward iterator of the first position of the 2nd range.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Whether permutation or not.\n */\nexport declare function is_permutation<ForwardIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator1>>, ForwardIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator2>>>(first1: ForwardIterator1, last1: ForwardIterator1, first2: ForwardIterator2, pred?: Comparator<IPointer.ValueType<ForwardIterator1>>): boolean;\n/**\n * Transform to the previous permutation.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the transformation was meaningful.\n */\nexport declare function prev_permutation<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator, comp?: Comparator<IPointer.ValueType<BidirectionalIterator>>): boolean;\n/**\n * Transform to the next permutation.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the transformation was meaningful.\n */\nexport declare function next_permutation<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator, comp?: Comparator<IPointer.ValueType<BidirectionalIterator>>): boolean;\n",
    "node_modules/tstl/lib/algorithm/merge.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IBidirectionalIterator } from \"../iterator/IBidirectionalIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { General } from \"../internal/functional/General\";\nimport { Writeonly } from \"../internal/functional/Writeonly\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Merge two sorted ranges.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function merge<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator1>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, output: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator1>>): OutputIterator;\n/**\n * Merge two sorted & consecutive ranges.\n *\n * @param first Bidirectional iterator of the first position.\n * @param middle Bidirectional iterator of the initial position of the 2nd range.\n * @param last Bidirectional iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function inplace_merge<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, middle: BidirectionalIterator, last: BidirectionalIterator, comp?: Comparator<IPointer.ValueType<BidirectionalIterator>>): void;\n/**\n * Test whether two sorted ranges are in inclusion relationship.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether [first, last1) includes [first2, last2).\n */\nexport declare function includes<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, comp?: Comparator<IPointer.ValueType<InputIterator1>>): boolean;\n/**\n * Combine two sorted ranges to union relationship.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_union<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator1>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, output: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator1>>): OutputIterator;\n/**\n * Combine two sorted ranges to intersection relationship.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_intersection<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator1>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, output: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator1>>): OutputIterator;\n/**\n * Combine two sorted ranges to difference relationship.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_difference<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator1>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, output: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator1>>): OutputIterator;\n/**\n * Combine two sorted ranges to symmetric difference relationship.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param last2 Input iterator of the last position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_symmetric_difference<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator1>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, last2: InputIterator2, output: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator1>>): OutputIterator;\n",
    "node_modules/tstl/lib/algorithm/modifiers.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IBidirectionalIterator } from \"../iterator/IBidirectionalIterator\";\nimport { IRandomAccessIterator } from \"../iterator/IRandomAccessIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { UnaryPredicator } from \"../internal/functional/UnaryPredicator\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { General } from \"../internal/functional/General\";\nimport { Writeonly } from \"../internal/functional/Writeonly\";\ntype UnaryOperatorInferrer<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>> = (val: IPointer.ValueType<InputIterator>) => IPointer.ValueType<OutputIterator>;\ntype BinaryOperatorInferrer<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator2>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>> = (x: IPointer.ValueType<InputIterator1>, y: IPointer.ValueType<InputIterator2>) => IPointer.ValueType<OutputIterator>;\n/**\n * Copy elements in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator): OutputIterator;\n/**\n * Copy *n* elements.\n *\n * @param first Input iteartor of the first position.\n * @param n Number of elements to copy.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_n<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, n: number, output: OutputIterator): OutputIterator;\n/**\n * Copy specific elements by a condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n * @param pred A function predicates the specific condition.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_if<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): OutputIterator;\n/**\n * Copy elements reversely.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_backward<InputIterator extends Readonly<IBidirectionalIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IBidirectionalIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator): OutputIterator;\n/**\n * Fill range elements\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param val The value to fill.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function fill<ForwardIterator extends Writeonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, val: IPointer.ValueType<ForwardIterator>): void;\n/**\n * Fill *n* elements.\n *\n * @param first Input iteartor of the first position.\n * @param n Number of elements to fill.\n * @param val The value to fill.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function fill_n<OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(first: OutputIterator, n: number, val: IPointer.ValueType<OutputIterator>): OutputIterator;\n/**\n * Transform elements.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n * @param op Unary function determines the transform.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function transform<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, result: OutputIterator, op: UnaryOperatorInferrer<InputIterator, OutputIterator>): OutputIterator;\n/**\n * Transform elements.\n *\n * @param first1 Input iteartor of the first position of the 1st range.\n * @param last1 Input iterator of the last position of the 1st range.\n * @param first2 Input iterator of the first position of the 2nd range.\n * @param output Output iterator of the first position.\n * @param op Binary function determines the transform.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function transform<InputIterator1 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator2>, InputIterator2>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, result: OutputIterator, op: BinaryOperatorInferrer<InputIterator1, InputIterator2, OutputIterator>): OutputIterator;\n/**\n * Generate range elements.\n *\n * @param first Forward iteartor of the first position.\n * @param last Forward iterator of the last position.\n * @param gen The generator function.\n */\nexport declare function generate<ForwardIterator extends Writeonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, gen: () => IPointer.ValueType<ForwardIterator>): void;\n/**\n * Generate *n* elements.\n *\n * @param first Forward iteartor of the first position.\n * @param n Number of elements to generate.\n * @param gen The generator function.\n *\n * @return Forward Iterator to the last position by advancing.\n */\nexport declare function generate_n<ForwardIterator extends Writeonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, n: number, gen: () => IPointer.ValueType<ForwardIterator>): ForwardIterator;\n/**\n * Test whether elements are unique in sorted range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @returns Whether unique or not.\n */\nexport declare function is_unique<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred?: BinaryPredicator<IPointer.ValueType<InputIterator>>): boolean;\n/**\n * Remove duplicated elements in sorted range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Input iterator to the last element not removed.\n */\nexport declare function unique<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred?: BinaryPredicator<IPointer.ValueType<InputIterator>>): InputIterator;\n/**\n * Copy elements in range without duplicates.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the last position.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function unique_copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, pred?: BinaryPredicator<IPointer.ValueType<InputIterator>>): OutputIterator;\n/**\n * Remove specific value in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param val The specific value to remove.\n *\n * @return Iterator tho the last element not removed.\n */\nexport declare function remove<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, val: IPointer.ValueType<InputIterator>): InputIterator;\n/**\n * Remove elements in range by a condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred An unary function predicates remove.\n *\n * @return Iterator tho the last element not removed.\n */\nexport declare function remove_if<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): InputIterator;\n/**\n * Copy range removing specific value.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the last position.\n * @param val The condition predicates remove.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function remove_copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, val: IPointer.ValueType<InputIterator>): OutputIterator;\n/**\n * Copy range removing elements by a condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the last position.\n * @param pred An unary function predicates remove.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function remove_copy_if<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): OutputIterator;\n/**\n * Replace specific value in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param old_val Specific value to change\n * @param new_val Specific value to be changed.\n */\nexport declare function replace<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, old_val: IPointer.ValueType<InputIterator>, new_val: IPointer.ValueType<InputIterator>): void;\n/**\n * Replace specific condition in range.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param pred An unary function predicates the change.\n * @param new_val Specific value to be changed.\n */\nexport declare function replace_if<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>, new_val: IPointer.ValueType<InputIterator>): void;\n/**\n * Copy range replacing specific value.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n * @param old_val Specific value to change\n * @param new_val Specific value to be changed.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function replace_copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, old_val: IPointer.ValueType<InputIterator>, new_val: IPointer.ValueType<InputIterator>): OutputIterator;\n/**\n * Copy range replacing specfic condition.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n * @param pred An unary function predicates the change.\n * @param new_val Specific value to be changed.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function replace_copy_if<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, result: OutputIterator, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>, new_val: IPointer.ValueType<InputIterator>): OutputIterator;\n/**\n * Swap values of two iterators.\n *\n * @param x Forward iterator to swap its value.\n * @param y Forward iterator to swap its value.\n */\nexport declare function iter_swap<ForwardIterator1 extends General<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator1>>, ForwardIterator2 extends General<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator2>>>(x: ForwardIterator1, y: ForwardIterator2): void;\n/**\n * Swap values of two ranges.\n *\n * @param first1 Forward iteartor of the first position of the 1st range.\n * @param last1 Forward iterator of the last position of the 1st range.\n * @param first2 Forward iterator of the first position of the 2nd range.\n *\n * @return Forward Iterator of the last position of the 2nd range by advancing.\n */\nexport declare function swap_ranges<ForwardIterator1 extends General<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator1>>, ForwardIterator2 extends General<IForwardIterator<IPointer.ValueType<ForwardIterator1>, ForwardIterator2>>>(first1: ForwardIterator1, last1: ForwardIterator1, first2: ForwardIterator2): ForwardIterator2;\n/**\n * Reverse elements in range.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n */\nexport declare function reverse<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator): void;\n/**\n * Copy reversed elements in range.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function reverse_copy<BidirectionalIterator extends Readonly<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<BidirectionalIterator>, OutputIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator, output: OutputIterator): OutputIterator;\nexport declare function shift_left<ForwardIterator extends General<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, n: number): ForwardIterator;\nexport declare function shift_right<ForwardIterator extends General<IBidirectionalIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, n: number): ForwardIterator;\n/**\n * Rotate elements in range.\n *\n * @param first Input iteartor of the first position.\n * @param middle Input iteartor of the initial position of the right side.\n * @param last Input iteartor of the last position.\n *\n * @return Input iterator of the final position in the left side; *middle*.\n */\nexport declare function rotate<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, middle: InputIterator, last: InputIterator): InputIterator;\n/**\n * Copy rotated elements in range.\n *\n * @param first Input iteartor of the first position.\n * @param middle Input iteartor of the initial position of the right side.\n * @param last Input iteartor of the last position.\n * @param output Output iterator of the last position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function rotate_copy<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, OutputIterator>>>(first: ForwardIterator, middle: ForwardIterator, last: ForwardIterator, output: OutputIterator): OutputIterator;\n/**\n * Shuffle elements in range.\n *\n * @param first Random access iteartor of the first position.\n * @param last Random access iteartor of the last position.\n */\nexport declare function shuffle<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator): void;\nexport {};\n",
    "node_modules/tstl/lib/algorithm/partition.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IBidirectionalIterator } from \"../iterator/IBidirectionalIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { General } from \"../internal/functional/General\";\nimport { Pair } from \"../utility/Pair\";\nimport { UnaryPredicator } from \"../internal/functional/UnaryPredicator\";\nimport { Writeonly } from \"../internal/functional/Writeonly\";\n/**\n * Test whether a range is partitioned.\n *\n * @param first Forward iterator of the first position.\n * @param last Forward iterator of the last position.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Whether the range is partition or not.\n */\nexport declare function is_partitioned<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, pred: UnaryPredicator<IPointer.ValueType<ForwardIterator>>): boolean;\n/**\n * Get partition point.\n *\n * @param first Forward iterator of the first position.\n * @param last Forward iterator of the last position.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition_point<ForwardIterator extends Readonly<IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, pred: UnaryPredicator<IPointer.ValueType<ForwardIterator>>): ForwardIterator;\n/**\n * Partition a range into two sections.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator, pred: UnaryPredicator<IPointer.ValueType<BidirectionalIterator>>): BidirectionalIterator;\n/**\n * Partition a range into two sections with stable ordering.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function stable_partition<BidirectionalIterator extends General<IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>>(first: BidirectionalIterator, last: BidirectionalIterator, pred: UnaryPredicator<IPointer.ValueType<BidirectionalIterator>>): BidirectionalIterator;\n/**\n * Partition a range into two outputs.\n *\n * @param first Bidirectional iterator of the first position.\n * @param last Bidirectional iterator of the last position.\n * @param output_true Output iterator to the first position for the first section.\n * @param output_false Output iterator to the first position for the second section.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition_copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator1 extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator1>>, OutputIterator2 extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator2>>>(first: InputIterator, last: InputIterator, output_true: OutputIterator1, output_false: OutputIterator2, pred: UnaryPredicator<IPointer.ValueType<InputIterator>>): Pair<OutputIterator1, OutputIterator2>;\n",
    "node_modules/tstl/lib/algorithm/random.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { Writeonly } from \"../internal/functional/Writeonly\";\n/**\n * Generate random integer.\n *\n * @param x Minimum value.\n * @param y Maximum value.\n *\n * @return A random integer between [x, y].\n */\nexport declare function randint(x: number, y: number): number;\n/**\n * Pick sample elements up.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output Output iterator of the first position.\n * @param n Number of elements to pick up.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function sample<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, n: number): OutputIterator;\n",
    "node_modules/tstl/lib/algorithm/sorting.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IRandomAccessIterator } from \"../iterator/IRandomAccessIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { General } from \"../internal/functional/General\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Sort elements in range.\n *\n * @param first Random access iterator of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function sort<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Sort elements in range stably.\n *\n * @param first Random access iterator of the first position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function stable_sort<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Sort elements in range partially.\n *\n * @param first Random access iterator of the first position.\n * @param middle Random access iterator of the middle position between [first, last). Elements only in [first, middle) are fully sorted.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function partial_sort<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, middle: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Copy elements in range with partial sort.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n * @param output_first Output iterator of the first position.\n * @param output_last Output iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function partial_sort_copy<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output_first: OutputIterator, output_last: OutputIterator, comp?: Comparator<IPointer.ValueType<InputIterator>>): OutputIterator;\n/**\n * Rearrange for the n'th element.\n *\n * @param first Random access iterator of the first position.\n * @param nth Random access iterator the n'th position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function nth_element<RandomAccessIterator extends General<IRandomAccessIterator<IPointer.ValueType<RandomAccessIterator>, RandomAccessIterator>>>(first: RandomAccessIterator, nth: RandomAccessIterator, last: RandomAccessIterator, comp?: Comparator<IPointer.ValueType<RandomAccessIterator>>): void;\n/**\n * Test whether a range is sorted.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether sorted or not.\n */\nexport declare function is_sorted<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, comp?: Comparator<IPointer.ValueType<InputIterator>>): boolean;\n/**\n * Find the first unsorted element in range.\n *\n * @param first Input iterator of the first position.\n * @param last Input iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element who violates the order.\n */\nexport declare function is_sorted_until<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, comp?: Comparator<IPointer.ValueType<InputIterator>>): InputIterator;\n",
    "node_modules/tstl/lib/base/container/Container.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IContainer } from \"./IContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\n/**\n * Basic container.\n *\n * @template T Stored elements' type\n * @template SourceT Derived type extending this {@link Container}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n * @template PElem Parent type of *T*, used for inserting elements through {@link assign} and {@link insert}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class Container<T extends PElem, SourceT extends Container<T, SourceT, IteratorT, ReverseT, PElem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseT, PElem>, ReverseT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, PElem>, PElem = T> implements IContainer<T, SourceT, IteratorT, ReverseT, PElem> {\n    /**\n     * @inheritDoc\n     */\n    abstract assign<InputIterator extends Readonly<IForwardIterator<PElem, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    abstract clear(): void;\n    /**\n     * @inheritDoc\n     */\n    abstract size(): number;\n    /**\n     * @inheritDoc\n     */\n    empty(): boolean;\n    /**\n     * @inheritDoc\n     */\n    abstract begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract end(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    rend(): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n    /**\n     * @inheritDoc\n     */\n    abstract push(...items: PElem[]): number;\n    /**\n     * @inheritDoc\n     */\n    abstract erase(pos: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract erase(first: IteratorT, last: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract swap(obj: SourceT): void;\n    /**\n     * @inheritDoc\n     */\n    toJSON(): Array<T>;\n}\n",
    "node_modules/tstl/lib/base/container/IArrayContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { ILinearContainer } from \"./ILinearContainer\";\nimport { IRandomAccessIterator } from \"../../iterator/IRandomAccessIterator\";\n/**\n * Common interface for array containers.\n *\n * @template T Stored elements' type\n * @template SourceT Derived type extending this {@link IArrayContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n * @template PElem Parent type of *T*, used for inserting elements through {@link assign} and {@link insert}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IArrayContainer<T extends PElem, SourceT extends IArrayContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IArrayContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IArrayContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, PElem = T> extends ILinearContainer<T, SourceT, IteratorT, ReverseT, PElem> {\n    /**\n     * Get iterator at specific position.\n     *\n     * @param index Specific position.\n     * @return The iterator at the *index*.\n     */\n    nth(index: number): IteratorT;\n    /**\n     * Get element at specific position.\n     *\n     * @param index Specific position.\n     * @return The element at the *index*.\n     */\n    at(index: number): T;\n    /**\n     * Change element at specific position.\n     *\n     * @param index Specific position.\n     * @param val The new value to change.\n     */\n    set(index: number, val: T): void;\n}\nexport declare namespace IArrayContainer {\n    /**\n     * Iterator of {@link IArrayContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<T extends ElemT, SourceT extends IArrayContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IArrayContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IArrayContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = ILinearContainer.Iterator<T, SourceT, IteratorT, ReverseT, ElemT> & IRandomAccessIterator<T, IteratorT>;\n    /**\n     * Reverse iterator of {@link IArrayContainer}\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    type ReverseIterator<T extends ElemT, SourceT extends IArrayContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IArrayContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IArrayContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = ILinearContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, ElemT> & IRandomAccessIterator<T, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/IContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IBidirectionalContainer } from \"../../ranges/container/IBidirectionalContainer\";\nimport { IEmpty } from \"../../internal/container/partial/IEmpty\";\nimport { ISize } from \"../../internal/container/partial/ISize\";\nimport { IPush } from \"../../internal/container/partial/IPush\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IReverseIterator } from \"../../iterator/IReverseIterator\";\nimport { IReversableIterator } from \"../../iterator/IReversableIterator\";\n/**\n * Common interface for containers.\n *\n * @template T Stored elements' type\n * @template SourceT Derived type extending this {@link IContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n * @template PElem Parent type of *T*, used for inserting elements through {@link assign} and {@link insert}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IContainer<T extends PElem, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, PElem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseT, PElem>, ReverseT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, PElem>, PElem = T> extends IBidirectionalContainer<IContainer.Iterator<T, SourceT, IteratorT, ReverseT, PElem>, ReverseT>, Iterable<T>, IEmpty, ISize, IPush<PElem> {\n    /**\n     * Range Assigner.\n     *\n     * @param first Input iteartor of the first position.\n     * @param last Input iterator of the last position.\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<PElem, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    empty(): boolean;\n    /**\n     * @inheritDoc\n     */\n    begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    end(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    rend(): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n    push(...items: PElem[]): number;\n    /**\n     * Erase an element.\n     *\n     * @param pos Position to erase.\n     * @return Iterator following the *pos*, strained by the erasing.\n     */\n    erase(pos: IteratorT): IteratorT;\n    /**\n     * Erase elements in range.\n     *\n     * @param first Range of the first position to erase.\n     * @param last Rangee of the last position to erase.\n     * @return Iterator following the last removed element, strained by the erasing.\n     */\n    erase(first: IteratorT, last: IteratorT): IteratorT;\n    /**\n     * Swap elements.\n     *\n     * @param obj Target container to swap.\n     */\n    swap(obj: SourceT): void;\n    /**\n     * Native function for `JSON.stringify()`.\n     *\n     * @return An array containing children elements.\n     */\n    toJSON(): Array<T>;\n}\nexport declare namespace IContainer {\n    /**\n     * Iterator of {@link IContainer}.\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    interface Iterator<T extends Elem, SourceT extends IContainer<T, SourceT, IteratorT, ReverseIteratorT, Elem>, IteratorT extends Iterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, ReverseIteratorT extends ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, Elem = T> extends Readonly<IReversableIterator<T, IteratorT, ReverseIteratorT>> {\n        /**\n         * Get source container.\n         *\n         * @return The source container.\n         */\n        source(): SourceT;\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIteratorT;\n    }\n    /**\n     * Reverse iterator of {@link IContainer}\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    interface ReverseIterator<T extends Elem, Source extends IContainer<T, Source, IteratorT, ReverseT, Elem>, IteratorT extends Iterator<T, Source, IteratorT, ReverseT, Elem>, ReverseT extends ReverseIterator<T, Source, IteratorT, ReverseT, Elem>, Elem = T> extends Readonly<IReverseIterator<T, IteratorT, ReverseT>> {\n        /**\n         * Get source container.\n         *\n         * @return The source container.\n         */\n        source(): Source;\n    }\n}\n",
    "node_modules/tstl/lib/base/container/IDequeContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IContainer } from \"./IContainer\";\nimport { IDeque } from \"../../internal/container/partial/IDeque\";\nimport { ILinearContainer } from \"./ILinearContainer\";\n/**\n * Common interface for deque containers.\n *\n * @template T Stored elements' type\n * @template SourceT Derived type extending this {@link IDequeContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n * @template PElem Parent type of *T*, used for inserting elements through {@link assign} and {@link insert}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IDequeContainer<T extends PElem, SourceT extends IDequeContainer<T, SourceT, IteratorT, ReverseT, PElem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseT, PElem>, ReverseT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, PElem>, PElem = T> extends IDeque<T>, ILinearContainer<T, SourceT, IteratorT, ReverseT, PElem> {\n}\nexport declare namespace IDequeContainer {\n    /**\n     * Iterator of {@link IDequeContainer}.\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    type Iterator<T extends ElemT, SourceT extends IDequeContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IDequeContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IDequeContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = ILinearContainer.Iterator<T, SourceT, IteratorT, ReverseT, ElemT>;\n    /**\n     * Reverse iterator of {@link IDequeContainer}.\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    type ReverseIterator<T extends ElemT, SourceT extends IDequeContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IDequeContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IDequeContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = ILinearContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, ElemT>;\n}\n",
    "node_modules/tstl/lib/base/container/IHashMap.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { MapContainer } from \"./MapContainer\";\nimport { IHashContainer } from \"../../internal/container/associative/IHashContainer\";\nimport { IPair } from \"../../utility/IPair\";\nimport { Entry } from \"../../utility/Entry\";\nimport { MapElementList } from \"../../internal/container/associative/MapElementList\";\n/**\n * Common interface for hash maps.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link IHashMap}\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHashMap<Key, T, Unique extends boolean, Source extends IHashMap<Key, T, Unique, Source>> extends MapContainer<Key, T, Unique, Source, IHashMap.Iterator<Key, T, Unique, Source>, IHashMap.ReverseIterator<Key, T, Unique, Source>>, IHashContainer<Key, Entry<Key, T>, Source, IHashMap.Iterator<Key, T, Unique, Source>, IHashMap.ReverseIterator<Key, T, Unique, Source>, IPair<Key, T>> {\n    /**\n     * @inheritDoc\n     */\n    begin(): IHashMap.Iterator<Key, T, Unique, Source>;\n    /**\n     * Iterator to the first element in a specific bucket.\n     *\n     * @param index Index number of the specific bucket.\n     * @return Iterator from the specific bucket.\n     */\n    begin(index: number): IHashMap.Iterator<Key, T, Unique, Source>;\n    /**\n     * @inheritDoc\n     */\n    end(): IHashMap.Iterator<Key, T, Unique, Source>;\n    /**\n     * Iterator to the end in a specific bucket.\n     *\n     * @param index Index number of the specific bucket.\n     * @return Iterator from the specific bucket.\n     */\n    end(index: number): IHashMap.Iterator<Key, T, Unique, Source>;\n}\nexport declare namespace IHashMap {\n    /**\n     * Iterator of {@link IHashMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, T, Unique extends boolean, Source extends IHashMap<Key, T, Unique, Source>> = MapElementList.Iterator<Key, T, Unique, Source>;\n    /**\n     * Reverse iterator of {@link IHashMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, T, Unique extends boolean, Source extends IHashMap<Key, T, Unique, Source>> = MapElementList.ReverseIterator<Key, T, Unique, Source>;\n}\n",
    "node_modules/tstl/lib/base/container/IHashSet.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { SetContainer } from \"./SetContainer\";\nimport { IHashContainer } from \"../../internal/container/associative/IHashContainer\";\nimport { SetElementList } from \"../../internal/container/associative/SetElementList\";\n/**\n * Common interface for hash sets.\n *\n * @template Key Key type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link IHashSet}\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHashSet<Key, Unique extends boolean, Source extends IHashSet<Key, Unique, Source>> extends SetContainer<Key, Unique, Source, IHashSet.Iterator<Key, Unique, Source>, IHashSet.ReverseIterator<Key, Unique, Source>>, IHashContainer<Key, Key, Source, IHashSet.Iterator<Key, Unique, Source>, IHashSet.ReverseIterator<Key, Unique, Source>, Key> {\n    /**\n     * @inheritDoc\n     */\n    begin(): IHashSet.Iterator<Key, Unique, Source>;\n    /**\n     * Iterator to the first element in a specific bucket.\n     *\n     * @param index Index number of the specific bucket.\n     * @return Iterator from the specific bucket.\n     */\n    begin(index: number): IHashSet.Iterator<Key, Unique, Source>;\n    /**\n     * @inheritDoc\n     */\n    end(): IHashSet.Iterator<Key, Unique, Source>;\n    /**\n     * Iterator to the end in a specific bucket.\n     *\n     * @param index Index number of the specific bucket.\n     * @return Iterator from the specific bucket.\n     */\n    end(index: number): IHashSet.Iterator<Key, Unique, Source>;\n}\nexport declare namespace IHashSet {\n    /**\n     * Iterator of {@link IHashSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, Unique extends boolean, Source extends IHashSet<Key, Unique, Source>> = SetElementList.Iterator<Key, Unique, Source>;\n    /**\n     * Reverse iterator of {@link IHashSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, Unique extends boolean, Source extends IHashSet<Key, Unique, Source>> = SetElementList.ReverseIterator<Key, Unique, Source>;\n}\n",
    "node_modules/tstl/lib/base/container/ILinearContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IContainer } from \"./IContainer\";\nimport { ILinearContainerBase } from \"../../internal/container/linear/ILinearContainerBase\";\nimport { IFront } from \"../../internal/container/partial/IFront\";\nimport { IPushBack } from \"../../internal/container/partial/IPushBack\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\n/**\n * Common interface for linear containers.\n *\n * @template T Stored elements' type\n * @template SourceT Derived type extending this {@link ILinearContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n * @template PElem Parent type of *T*, used for inserting elements through {@link assign} and {@link insert}.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ILinearContainer<T extends PElem, SourceT extends ILinearContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends ILinearContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends ILinearContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, PElem = T> extends ILinearContainerBase<T, SourceT, IteratorT, ReverseT, PElem>, IFront<T>, IPushBack<T> {\n    /**\n     * Fill Assigner.\n     *\n     * @param n Initial size.\n     * @param val Value to fill.\n     */\n    assign(n: number, val: T): void;\n    /**\n     * Range Assigner.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * Resize this {@link Vector} forcibly.\n     *\n     * @param n New container size.\n     */\n    resize(n: number): void;\n    /**\n     * Get the last element.\n     *\n     * @return The last element.\n     */\n    back(): T;\n    /**\n     * Change the last element.\n     *\n     * @param val The value to change.\n     */\n    back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: T): void;\n    /**\n     * Erase the last element.\n     */\n    pop_back(): void;\n    /**\n     * Insert a single element.\n     *\n     * @param pos Position to insert.\n     * @param val Value to insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(pos: IteratorT, val: T): IteratorT;\n    /**\n     * Insert repeated elements.\n     *\n     * @param pos Position to insert.\n     * @param n Number of elements to insert.\n     * @param val Value to insert repeatedly.\n     * @return An iterator to the first of the newly inserted elements.\n     */\n    insert(pos: IteratorT, n: number, val: T): IteratorT;\n    /**\n     * Insert range elements.\n     *\n     * @param pos Position to insert.\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     * @return An iterator to the first of the newly inserted elements.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: IteratorT, first: InputIterator, last: InputIterator): IteratorT;\n}\nexport declare namespace ILinearContainer {\n    /**\n     * Iterator of {@link ILinearContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<T extends ElemT, SourceT extends ILinearContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends ILinearContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends ILinearContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = IContainer.Iterator<T, SourceT, IteratorT, ReverseT, ElemT>;\n    /**\n     * Reverse iterator of {@link ILinearContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<T extends ElemT, SourceT extends ILinearContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends ILinearContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends ILinearContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> = IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, ElemT>;\n}\n",
    "node_modules/tstl/lib/base/container/ITreeMap.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { MapContainer } from \"./MapContainer\";\nimport { ITreeContainer } from \"../../internal/container/associative/ITreeContainer\";\nimport { IPair } from \"../../utility/IPair\";\nimport { Entry } from \"../../utility/Entry\";\n/**\n * Common interface for tree maps.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link ITreeMap}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITreeMap<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, IteratorT, ReverseT>, IteratorT extends ITreeMap.Iterator<Key, T, Unique, Source, IteratorT, ReverseT>, ReverseT extends ITreeMap.ReverseIterator<Key, T, Unique, Source, IteratorT, ReverseT>> extends MapContainer<Key, T, Unique, Source, IteratorT, ReverseT>, ITreeContainer<Key, Entry<Key, T>, Source, IteratorT, ReverseT, IPair<Key, T>> {\n}\nexport declare namespace ITreeMap {\n    /**\n     * Iterator of {@link ITreeMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, Unique, Source, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, Unique, Source, IteratorT, ReverseT>> = MapContainer.Iterator<Key, T, Unique, Source, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link ITreeMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, Unique, Source, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, Unique, Source, IteratorT, ReverseT>> = MapContainer.ReverseIterator<Key, T, Unique, Source, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/ITreeSet.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { SetContainer } from \"./SetContainer\";\nimport { ITreeContainer } from \"../../internal/container/associative/ITreeContainer\";\n/**\n * Common interface for tree sets.\n *\n * @template Key Key type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link ITreeSet}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITreeSet<Key, Unique extends boolean, Source extends ITreeSet<Key, Unique, Source, IteratorT, ReverseT>, IteratorT extends ITreeSet.Iterator<Key, Unique, Source, IteratorT, ReverseT>, ReverseT extends ITreeSet.ReverseIterator<Key, Unique, Source, IteratorT, ReverseT>> extends SetContainer<Key, Unique, Source, IteratorT, ReverseT>, ITreeContainer<Key, Key, Source, IteratorT, ReverseT, Key> {\n}\nexport declare namespace ITreeSet {\n    /**\n     * Iterator of {@link ITreeSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, Unique extends boolean, SourceT extends ITreeSet<Key, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>> = SetContainer.Iterator<Key, Unique, SourceT, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link ITreeSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, Unique extends boolean, SourceT extends ITreeSet<Key, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>> = SetContainer.ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/MapContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IAssociativeContainer } from \"../../internal/container/associative/IAssociativeContainer\";\nimport { IContainer } from \"./IContainer\";\nimport { Container } from \"./Container\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { ILinearContainerBase } from \"../../internal/container/linear/ILinearContainerBase\";\nimport { IPair } from \"../../utility/IPair\";\nimport { Entry } from \"../../utility/Entry\";\nimport { Pair } from \"../../utility/Pair\";\n/**\n * Basic map container.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link MapContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class MapContainer<Key, T, Unique extends boolean, Source extends MapContainer<Key, T, Unique, Source, IteratorT, ReverseT>, IteratorT extends MapContainer.Iterator<Key, T, Unique, Source, IteratorT, ReverseT>, ReverseT extends MapContainer.ReverseIterator<Key, T, Unique, Source, IteratorT, ReverseT>> extends Container<Entry<Key, T>, Source, IteratorT, ReverseT, IPair<Key, T>> implements IAssociativeContainer<Key, Entry<Key, T>, Source, IteratorT, ReverseT, IPair<Key, T>> {\n    protected data_: ILinearContainerBase<Entry<Key, T>, Source, IteratorT, ReverseT>;\n    /**\n     * Default Constructor.\n     */\n    protected constructor(factory: (thisArg: Source) => ILinearContainerBase<Entry<Key, T>, Source, IteratorT, ReverseT>);\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    abstract find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    end(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    has(key: Key): boolean;\n    /**\n     * @inheritDoc\n     */\n    abstract count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    push(...items: IPair<Key, T>[]): number;\n    abstract emplace(key: Key, val: T): MapContainer.InsertRet<Key, T, Unique, Source, IteratorT, ReverseT>;\n    abstract emplace_hint(hint: IteratorT, key: Key, val: T): IteratorT;\n    insert(pair: IPair<Key, T>): MapContainer.InsertRet<Key, T, Unique, Source, IteratorT, ReverseT>;\n    insert(hint: IteratorT, pair: IPair<Key, T>): IteratorT;\n    insert<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected abstract _Insert_by_range<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    erase(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    erase(it: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(begin: IteratorT, end: IteratorT): IteratorT;\n    protected abstract _Erase_by_key(key: Key): number;\n    protected _Erase_by_range(first: IteratorT, last?: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract swap(obj: Source): void;\n    /**\n     * Merge two containers.\n     *\n     * @param source Source container to transfer.\n     */\n    abstract merge(source: Source): void;\n    protected abstract _Handle_insert(first: IteratorT, last: IteratorT): void;\n    protected abstract _Handle_erase(first: IteratorT, last: IteratorT): void;\n}\n/**\n *\n */\nexport declare namespace MapContainer {\n    /**\n     * Return type of {@link MapContainer.insert}\n     */\n    export type InsertRet<Key, T, Unique extends boolean, SourceT extends MapContainer<Key, T, Unique, SourceT, IteratorT, Reverse>, IteratorT extends Iterator<Key, T, Unique, SourceT, IteratorT, Reverse>, Reverse extends ReverseIterator<Key, T, Unique, SourceT, IteratorT, Reverse>> = Unique extends true ? Pair<IteratorT, boolean> : IteratorT;\n    /**\n     * Iterator of {@link MapContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    export type Iterator<Key, T, Unique extends boolean, SourceT extends MapContainer<Key, T, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, Unique, SourceT, IteratorT, ReverseT>> = IteratorBase<Key, T> & Readonly<IContainer.Iterator<Entry<Key, T>, SourceT, IteratorT, ReverseT, IPair<Key, T>>>;\n    /**\n     * Reverse iterator of {@link MapContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    export type ReverseIterator<Key, T, Unique extends boolean, SourceT extends MapContainer<Key, T, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, Unique, SourceT, IteratorT, ReverseT>> = IteratorBase<Key, T> & Readonly<IContainer.ReverseIterator<Entry<Key, T>, SourceT, IteratorT, ReverseT, IPair<Key, T>>>;\n    interface IteratorBase<Key, T> {\n        /**\n         * The first, key element.\n         */\n        readonly first: Key;\n        /**\n         * The second, stored element.\n         */\n        second: T;\n    }\n    export {};\n}\n",
    "node_modules/tstl/lib/base/container/MultiMap.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { MapContainer } from \"./MapContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPair } from \"../../utility/IPair\";\n/**\n * Basic map container allowing duplicated keys.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link MultiMap}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class MultiMap<Key, T, Source extends MultiMap<Key, T, Source, Iterator, Reverse>, Iterator extends MultiMap.Iterator<Key, T, Source, Iterator, Reverse>, Reverse extends MultiMap.ReverseIterator<Key, T, Source, Iterator, Reverse>> extends MapContainer<Key, T, false, Source, Iterator, Reverse> {\n    /**\n     * Construct and insert an element.\n     *\n     * @param key Key to be mapped.\n     * @param value Value to emplace.\n     * @return An iterator to the newly inserted element.\n     */\n    abstract emplace(key: Key, value: T): Iterator;\n    /**\n     * Construct and insert element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param key Key of the new element.\n     * @param val Value of the new element.\n     * @return An iterator to the newly inserted element.\n     */\n    abstract emplace_hint(hint: Iterator, key: Key, val: T): Iterator;\n    /**\n     * Insert an element.\n     *\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(pair: IPair<Key, T>): Iterator;\n    /**\n     * Insert an element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(hint: Iterator, pair: IPair<Key, T>): Iterator;\n    /**\n     * Insert range elements.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected abstract _Key_eq(x: Key, y: Key): boolean;\n    protected _Erase_by_key(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    merge(source: Source): void;\n}\n/**\n *\n */\nexport declare namespace MultiMap {\n    /**\n     * Iterator of {@link MultiMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, T, SourceT extends MultiMap<Key, T, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, SourceT, IteratorT, ReverseT>> = MapContainer.Iterator<Key, T, false, SourceT, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link MultiMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, T, SourceT extends MultiMap<Key, T, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, SourceT, IteratorT, ReverseT>> = MapContainer.ReverseIterator<Key, T, false, SourceT, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/MultiSet.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { SetContainer } from \"./SetContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\n/**\n * Basic set container allowing multiple keys.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link MultiSet}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class MultiSet<Key, Source extends MultiSet<Key, Source, IteratorT, ReverseT>, IteratorT extends MultiSet.Iterator<Key, Source, IteratorT, ReverseT>, ReverseT extends MultiSet.ReverseIterator<Key, Source, IteratorT, ReverseT>> extends SetContainer<Key, false, Source, IteratorT, ReverseT> {\n    /**\n     * Insert an element.\n     *\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(key: Key): IteratorT;\n    /**\n     * Insert an element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(hint: IteratorT, key: Key): IteratorT;\n    /**\n     * Insert range elements.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(begin: InputIterator, end: InputIterator): void;\n    protected abstract _Key_eq(x: Key, y: Key): boolean;\n    protected _Erase_by_val(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    merge(source: Source): void;\n}\n/**\n *\n */\nexport declare namespace MultiSet {\n    /**\n     * Iterator of {@link MultiSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, SourceT extends MultiSet<Key, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, SourceT, IteratorT, ReverseT>> = SetContainer.Iterator<Key, false, SourceT, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link MultiSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, SourceT extends MultiSet<Key, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, SourceT, IteratorT, ReverseT>> = SetContainer.ReverseIterator<Key, false, SourceT, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/SetContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IAssociativeContainer } from \"../../internal/container/associative/IAssociativeContainer\";\nimport { IContainer } from \"./IContainer\";\nimport { Container } from \"./Container\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { ILinearContainerBase } from \"../../internal/container/linear/ILinearContainerBase\";\nimport { Pair } from \"../../utility/Pair\";\n/**\n * Basic set container.\n *\n * @template Key Key type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Derived type extending this {@link SetContainer}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class SetContainer<Key, Unique extends boolean, SourceT extends SetContainer<Key, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends SetContainer.Iterator<Key, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends SetContainer.ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>> extends Container<Key, SourceT, IteratorT, ReverseT, Key> implements IAssociativeContainer<Key, Key, SourceT, IteratorT, ReverseT, Key> {\n    protected data_: ILinearContainerBase<Key, SourceT, IteratorT, ReverseT>;\n    /**\n     * Default Constructor.\n     */\n    protected constructor(factory: (thisArg: SourceT) => ILinearContainerBase<Key, SourceT, IteratorT, ReverseT>);\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    abstract find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    end(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    has(key: Key): boolean;\n    /**\n     * @inheritDoc\n     */\n    abstract count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    push(...items: Key[]): number;\n    insert(key: Key): SetContainer.InsertRet<Key, Unique, SourceT, IteratorT, ReverseT>;\n    insert(hint: IteratorT, key: Key): IteratorT;\n    insert<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected abstract _Insert_by_key(key: Key): SetContainer.InsertRet<Key, Unique, SourceT, IteratorT, ReverseT>;\n    protected abstract _Insert_by_hint(hint: IteratorT, key: Key): IteratorT;\n    protected abstract _Insert_by_range<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(begin: InputIterator, end: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    erase(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    erase(pos: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(first: IteratorT, last: IteratorT): IteratorT;\n    protected abstract _Erase_by_val(key: Key): number;\n    protected _Erase_by_range(first: IteratorT, last?: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract swap(obj: SourceT): void;\n    /**\n     * @inheritDoc\n     */\n    abstract merge(source: SourceT): void;\n    protected abstract _Handle_insert(first: IteratorT, last: IteratorT): void;\n    protected abstract _Handle_erase(first: IteratorT, last: IteratorT): void;\n}\n/**\n *\n */\nexport declare namespace SetContainer {\n    /**\n     * Return type of {@link SetContainer.insert}\n     */\n    type InsertRet<Key, Unique extends boolean, Source extends SetContainer<Key, Unique, Source, IteratorT, ReverseT>, IteratorT extends Iterator<Key, Unique, Source, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, Unique, Source, IteratorT, ReverseT>> = Unique extends true ? Pair<IteratorT, boolean> : IteratorT;\n    /**\n     * Iterator of {@link SetContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, Unique extends boolean, SourceT extends SetContainer<Key, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>> = Readonly<IContainer.Iterator<Key, SourceT, IteratorT, ReverseT, Key>>;\n    /**\n     * Reverse iterator of {@link SetContainer}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, Unique extends boolean, SourceT extends SetContainer<Key, Unique, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, Unique, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, Unique, SourceT, IteratorT, ReverseT>> = Readonly<IContainer.ReverseIterator<Key, SourceT, IteratorT, ReverseT, Key>>;\n}\n",
    "node_modules/tstl/lib/base/container/UniqueMap.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { MapContainer } from \"./MapContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPair } from \"../../utility/IPair\";\nimport { Entry } from \"../../utility/Entry\";\nimport { Pair } from \"../../utility/Pair\";\n/**\n * Basic map container blocking duplicated key.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link UniqueMap}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class UniqueMap<Key, T, Source extends UniqueMap<Key, T, Source, Iterator, Reverse>, Iterator extends UniqueMap.Iterator<Key, T, Source, Iterator, Reverse>, Reverse extends UniqueMap.ReverseIterator<Key, T, Source, Iterator, Reverse>> extends MapContainer<Key, T, true, Source, Iterator, Reverse> {\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * Get a value.\n     *\n     * @param key Key to search for.\n     * @return The value mapped by the key.\n     */\n    get(key: Key): T;\n    /**\n     * Take a value.\n     *\n     * Get a value, or set the value and returns it.\n     *\n     * @param key Key to search for.\n     * @param generator Value generator when the matched key not found\n     * @returns Value, anyway\n     */\n    take(key: Key, generator: () => T): T;\n    /**\n     * Set a value with key.\n     *\n     * @param key Key to be mapped or search for.\n     * @param val Value to insert or assign.\n     */\n    set(key: Key, val: T): void;\n    /**\n     * Construct and insert element.\n     *\n     * @param key Key to be mapped or search for.\n     * @param value Value to emplace.\n     * @return {@link Pair} of an iterator to the newly inserted element and `true`, if the specified *key* doesn't exist, otherwise {@link Pair} of iterator to the ordinary element and `false`.\n     */\n    abstract emplace(key: Key, value: T): Pair<Iterator, boolean>;\n    /**\n     * Construct and insert element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param key Key of the new element.\n     * @param val Value of the new element.\n     * @return An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.\n     */\n    abstract emplace_hint(hint: Iterator, key: Key, val: T): Iterator;\n    /**\n     * Insert an element.\n     *\n     * @param pair A tuple to be referenced for the insert.\n     * @return {@link Pair} of an iterator to the newly inserted element and `true`, if the specified *key* doesn't exist, otherwise {@link Pair} of iterator to the ordinary element and `false`.\n     */\n    insert(pair: IPair<Key, T>): Pair<Iterator, boolean>;\n    /**\n     * Insert an element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.\n     */\n    insert(hint: Iterator, pair: IPair<Key, T>): Iterator;\n    /**\n     * Insert range elements.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * Insert or assign an element.\n     *\n     * @param key Key to be mapped or search for.\n     * @param value Value to insert or assign.\n     * @return {@link Pair} of an iterator to the newly inserted element and `true`, if the specified *key* doesn't exist, otherwise {@link Pair} of iterator to the ordinary element and `false`.\n     */\n    insert_or_assign(key: Key, value: T): Pair<Iterator, boolean>;\n    /**\n     * Insert or assign an element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param key Key to be mapped or search for.\n     * @param value Value to insert or assign.\n     * @return An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.\n     */\n    insert_or_assign(hint: Iterator, key: Key, value: T): Iterator;\n    private _Insert_or_assign_with_key_value;\n    private _Insert_or_assign_with_hint;\n    /**\n     * Extract an element by key.\n     *\n     * @param key Key to search for.\n     * @return The extracted element.\n     */\n    extract(key: Key): Entry<Key, T>;\n    /**\n     * Extract an element by iterator.\n     *\n     * @param pos The iterator to the element for extraction.\n     * @return Iterator following the *pos*, strained by the extraction.\n     */\n    extract(pos: Iterator): Iterator;\n    private _Extract_by_key;\n    private _Extract_by_iterator;\n    protected _Erase_by_key(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    merge(source: Source): void;\n}\n/**\n *\n */\nexport declare namespace UniqueMap {\n    /**\n     * Iterator of {@link UniqueMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, T, SourceT extends UniqueMap<Key, T, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, SourceT, IteratorT, ReverseT>> = MapContainer.Iterator<Key, T, true, SourceT, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link UniqueMap}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, T, SourceT extends UniqueMap<Key, T, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, T, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, T, SourceT, IteratorT, ReverseT>> = MapContainer.ReverseIterator<Key, T, true, SourceT, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/UniqueSet.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { SetContainer } from \"./SetContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Pair } from \"../../utility/Pair\";\n/**\n * Basic set container blocking duplicated key.\n *\n * @template Key Key type\n * @template Source Derived type extending this {@link UniqueSet}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class UniqueSet<Key, Source extends UniqueSet<Key, Source, IteratorT, ReverseT>, IteratorT extends UniqueSet.Iterator<Key, Source, IteratorT, ReverseT>, ReverseT extends UniqueSet.ReverseIterator<Key, Source, IteratorT, ReverseT>> extends SetContainer<Key, true, Source, IteratorT, ReverseT> {\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * Insert an element.\n     *\n     * @param key Key to insert.\n     * @return {@link Pair} of an iterator to the newly inserted element and `true`, if the specified *key* doesn't exist, otherwise {@link Pair} of iterator to ordinary element and `false`.\n     */\n    insert(key: Key): Pair<IteratorT, boolean>;\n    /**\n     * Insert an element with hint.\n     *\n     * @param hint Hint for the position where the element can be inserted.\n     * @param pair A tuple to be referenced for the insert.\n     * @return An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.\n     */\n    insert(hint: IteratorT, key: Key): IteratorT;\n    /**\n     * Insert range elements.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * Extract an element by key.\n     *\n     * @param key Key to search for.\n     * @return The extracted element.\n     */\n    extract(key: Key): Key;\n    /**\n     * Extract an element by iterator.\n     *\n     * @param pos The iterator to the element for extraction.\n     * @return Iterator following the *pos*, strained by the extraction.\n     */\n    extract(it: IteratorT): IteratorT;\n    private _Extract_by_val;\n    private _Extract_by_iterator;\n    protected _Erase_by_val(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    merge(source: Source): void;\n}\n/**\n *\n */\nexport declare namespace UniqueSet {\n    /**\n     * Iterator of {@link UniqueSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type Iterator<Key, SourceT extends UniqueSet<Key, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, SourceT, IteratorT, ReverseT>> = SetContainer.Iterator<Key, true, SourceT, IteratorT, ReverseT>;\n    /**\n     * Reverse iterator of {@link UniqueSet}\n     *\n     * @author Jenogho Nam <http://samchon.org>\n     */\n    type ReverseIterator<Key, SourceT extends UniqueSet<Key, SourceT, IteratorT, ReverseT>, IteratorT extends Iterator<Key, SourceT, IteratorT, ReverseT>, ReverseT extends ReverseIterator<Key, SourceT, IteratorT, ReverseT>> = SetContainer.ReverseIterator<Key, true, SourceT, IteratorT, ReverseT>;\n}\n",
    "node_modules/tstl/lib/base/container/index.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nexport * from \"./IContainer\";\nexport * from \"./ILinearContainer\";\nexport * from \"./IDequeContainer\";\nexport * from \"./IArrayContainer\";\nexport * from \"./Container\";\nexport * from \"./SetContainer\";\nexport * from \"./UniqueSet\";\nexport * from \"./MultiSet\";\nexport * from \"./ITreeSet\";\nexport * from \"./IHashSet\";\nexport * from \"./MapContainer\";\nexport * from \"./UniqueMap\";\nexport * from \"./MultiMap\";\nexport * from \"./ITreeMap\";\nexport * from \"./IHashMap\";\n",
    "node_modules/tstl/lib/base/index.d.ts": "/**\n * Basic Features\n *\n * @packageDocumentation\n * @module std.base\n * @preferred\n */\nimport * as base from \"./module\";\nexport default base;\nexport * from \"./module\";\n",
    "node_modules/tstl/lib/base/module.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nexport * from \"./container/index\";\nexport * from \"./thread/index\";\n",
    "node_modules/tstl/lib/base/thread/ILockable.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\n/**\n * Common interface for lockable mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ILockable {\n    /**\n     * Locks the mutex.\n     *\n     * Monopolies a mutex until be {@link unlock unlocked}. If there're someone who have already\n     * {@link lock monopolied} the mutex, the function call would be blocked until all of them to\n     * return their acquistions by calling the {@link unlock} method.\n     *\n     * In same reason, if you don't call the {@link unlock} function after your business, the\n     * others who want to {@link lock monopoly} the mutex would be fall into the forever sleep.\n     * Therefore, never forget to calling the {@link unlock} function or utilize the\n     * {@link UniqueLock.lock} function instead to ensure the safety.\n     */\n    lock(): Promise<void>;\n    /**\n     * Tries to lock the mutex.\n     *\n     * Attempts to monopoly a mutex without blocking. If succeeded to monopoly the mutex\n     * immediately, it returns `true` directly. Otherwise there's someone who has already\n     * {@link lock monopolied} the mutex, the function gives up the trial immediately and returns\n     * `false` directly.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * the mutex would be fall into the forever sleep. Therefore, never forget to calling the\n     * {@link unlock} function or utilize the {@link UniqueLock.try_lock} function instead to\n     * ensure the safety.\n     *\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * Unlocks the mutex.\n     *\n     * When you call this {@link unlock} method and there're someone who are currently blocked by\n     * attempting to {@link lock} this mutex, one of them (FIFO; first-in-first-out) would acquire\n     * the lock and continues its execution.\n     *\n     * Otherwise, there's not anyone who is acquiring the {@link lock} of this mutex, the\n     * {@link DomainError} exception would be thrown.\n     *\n     * > As you know, when you succeeded to acquire the `lock`, you don't have to forget to\n     * > calling this {@link unlock} method after your business. If you forget it, it would be a\n     * > terrible situation for the others who're attempting to lock this mutex.\n     * >\n     * > However, if you utilize the {@link UniqueLock}, you don't need to consider about this\n     * > {@link unlock} method. Just define your business into a callback function as a parameter\n     * > of methods of the {@link UniqueLock}, then this {@link unlock} method would be\n     * > automatically called by the {@link UniqueLock} after the business.\n     *\n     * @throw {@link DomainError} when no one is acquiring the {@link lock write lock}.\n     */\n    unlock(): Promise<void>;\n}\n",
    "node_modules/tstl/lib/base/thread/ISharedLockable.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { ILockable } from \"./ILockable\";\n/**\n * Common interface for shared lockable mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ISharedLockable extends ILockable {\n    /**\n     * Write locks the mutex.\n     *\n     * Monopolies a mutex until be {@link unlock unlocked}. If there're someone who have already\n     * {@link lock monopolied} or {@link lock_shared shared} the mutex, the function call would\n     * be blocked until all of them to return their acquistions by calling {@link unlock} or\n     * {@link unlock_shared} methods.\n     *\n     * In same reason, if you don't call the {@link unlock} function after your business, the\n     * others who want to {@link lock monopoly} or {@link lock_shared share} the mutex would be\n     * fall into the forever sleep. Therefore, never forget to calling the {@link unlock} function\n     * or utilize the {@link UniqueLock.lock} function instead to ensure the safety.\n     */\n    lock(): Promise<void>;\n    /**\n     * Tries to write lock the mutex.\n     *\n     * Attempts to monopoly a mutex without blocking. If succeeded to monopoly the mutex\n     * immediately, it returns `true` directly. Otherwise there's someone who has already\n     * {@link lock monopolied} or {@link lock_shared shared} the mutex, the function gives up the\n     * trial immediately and returns `false` directly.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * or {@link lock_shared share} the mutex would be fall into the forever sleep. Therefore,\n     * never forget to calling the {@link unlock} function or utilize the\n     * {@link UniqueLock.try_lock} function instead to ensure the safety.\n     *\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * Write unlocks the mutex.\n     *\n     * When you call this {@link unlock} method and there're someone who are currently blocked by\n     * attempting to {@link lock write} or {@link lock_shared read} lock this mutex, one of them\n     * (FIFO; first-in-first-out) would acquire the lock and continues its execution.\n     *\n     * Otherwise, there's not anyone who is acquiring the {@link lock write lock} of this mutex,\n     * the {@link DomainError} exception would be thrown.\n     *\n     * > As you know, when you succeeded to acquire the `write lock`, you don't have to forget to\n     * > calling this {@link unlock} method after your business. If you forget it, it would be a\n     * > terrible situation for the others who're attempting to lock this mutex.\n     * >\n     * > However, if you utilize the {@link UniqueLock}, you don't need to consider about this\n     * > {@link unlock} method. Just define your business into a callback function as a parameter\n     * > of methods of the {@link UniqueLock}, then this {@link unlock} method would be\n     * > automatically called by the {@link UniqueLock} after the business.\n     *\n     * @throw {@link DomainError} when no one is acquiring the {@link lock write lock}.\n     */\n    unlock(): Promise<void>;\n    /**\n     * Read locks the mutex.\n     *\n     * Shares a mutex until be {@link unlock_shared unlocked}. If there're someone who have\n     * already {@link lock monopolied} the mutex, the function call would be blocked until all of\n     * them to {@link unlock return} their acquisitions.\n     *\n     * In same reason, if you don't call the {@link unlock_shared} function after your business,\n     * the others who want to {@link lock monopoly} the mutex would be fall into the forever\n     * sleep. Therefore, never forget to calling the {@link unlock_shared} or utilize the\n     * {@link SharedLock.lock} function instead to ensure the safety.\n     */\n    lock_shared(): Promise<void>;\n    /**\n     * Tries to read lock the mutex.\n     *\n     * Attemps to share a mutex without blocking. If succeeded to share the mutex immediately, it\n     * returns `true` directly. Otherwise there's someone who has already {@link lock monopolied}\n     * the mutex, the function gives up the trial immediately and returns `false` directly.\n     *\n     * Note that, if you succeeded to share the mutex (returns `true`) but do not call the\n     * {@link unlock_shared} function after your buinsess, the others who want to\n     * {@link lock monopoly} the mutex would be fall into the forever sleep. Therefore, never\n     * forget to calling the {@link unlock_shared} function or utilize the\n     * {@link SharedLock.try_lock} function instead to ensure the safety.\n     *\n     * @return Whether succeeded to share the mutex or not.\n     */\n    try_lock_shared(): Promise<boolean>;\n    /**\n     * Read unlocks the mutex.\n     *\n     * When you call this {@link unlock_shared} method and there're someone who are currently\n     * blocked by attempting to {@link lock monopoly} this mutex, one of them\n     * (FIFO; first-in-first-out) would acquire the lock and continues its execution.\n     *\n     * Otherwise, there's not anyone who is acquiring the {@link lock_shared read lock} of this\n     * mutex, the {@link DomainError} exception would be thrown.\n     *\n     * > As you know, when you succeeded to acquire the `read lock`, you don't have to forget to\n     * > calling this {@link unlock_shared} method after your business. If you forget it, it would\n     * > be a terrible situation for the others who're attempting to lock this mutex.\n     * >\n     * > However, if you utilize the {@link SharedLock}, you don't need to consider about this\n     * > {@link unlock_shared} method. Just define your business into a callback function as a\n     * > parameter of methods of the {@link SharedLock}, then this {@link unlock_shared} method\n     * > would be automatically called by the {@link SharedLock} after the business.\n     */\n    unlock_shared(): Promise<void>;\n}\n",
    "node_modules/tstl/lib/base/thread/ISharedTimedLockable.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { ISharedLockable } from \"./ISharedLockable\";\n/**\n * Common interface for shared & timed lockable mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ISharedTimedLockable extends ISharedLockable {\n    /**\n     * Tries to write lock the mutex until timeout.\n     *\n     * Attempts to monopoly a mutex until timeout. If succeeded to monopoly the mutex until the\n     * timeout, it returns `true`. Otherwise failed to acquiring the lock in the given time, the\n     * function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link lock monopolied} or {@link lock_shared shared} the mutex and\n     * does not return it over the timeout.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * or {@link lock_shared share} the mutex would be fall into the forever sleep. Therefore,\n     * never forget to calling the {@link unlock} function or utilize the\n     * {@link UniqueLock.try_lock_for} function instead to ensure the safety.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to write lock the mutex until time expiration.\n     *\n     * Attemps to monopoly a mutex until time expiration. If succeeded to monopoly the mutex\n     * until the time expiration, it returns `true`. Otherwise failed to acquiring the lock in the\n     * given time, the function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link lock monopolied} or {@link lock_shared shared} the mutex and\n     * does not return it over the time expiration.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * or {@link lock_shared share} the mutex would be fall into the forever sleep. Therefore,\n     * never forget to calling the {@link unlock} function or utilize the\n     * {@link UniqueLock.try_lock_until} function instead to ensure the safety.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock_until(at: Date): Promise<boolean>;\n    /**\n     * Tries to read lock the mutex until timeout.\n     *\n     * Attemps to share a mutex until timeout. If succeeded to share the mutex until timeout, it\n     * returns `true`. Otherwise failed to acquiring the shared lock in the given time, the\n     * function gives up the trial and returns `false`.\n     *\n     * Failed to acquring the shared lock in the given time (returns `false`), it means that\n     * there's someone who has already {@link lock monopolied} the mutex and does not return it\n     * over the timeout.\n     *\n     * Note that, if you succeeded to share the mutex (returns `true`) but do not call the\n     * {@link unlock_shared} function after your buinsess, the others who want to\n     * {@link lock monopoly} the mutex would be fall into the forever sleep. Therefore, never\n     * forget to calling the {@link unlock_shared} function or utilize the\n     * {@link SharedLock.try_lock_for} function instead to ensure the safety.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeeded to share the mutex or not.\n     */\n    try_lock_shared_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to read lock the mutex until time expiration.\n     *\n     * Attemps to share a mutex until time expiration. If succeeded to share the mutex until time\n     * expiration, it returns `true`. Otherwise failed to acquiring the shared lock in the given\n     * time, the function gives up the trial and returns `false`.\n     *\n     * Failed to acquring the shared lock in the given time (returns `false`), it means that\n     * there's someone who has already {@link lock monopolied} the mutex and does not return it\n     * over the time expiration.\n     *\n     * Note that, if you succeeded to share the mutex (returns `true`) but do not call the\n     * {@link unlock_shared} function after your buinsess, the others who want to\n     * {@link lock monopoly} the mutex would be fall into the forever sleep. Therefore, never\n     * forget to calling the {@link unlock_shared} function or utilize the\n     * {@link SharedLock.try_lock_until} function instead to ensure the safety.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeeded to share the mutex or not.\n     */\n    try_lock_shared_until(at: Date): Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/base/thread/ITimedLockable.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { ILockable } from \"./ILockable\";\n/**\n * Common interface for timed lockable mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITimedLockable extends ILockable {\n    /**\n     * Tries to lock the mutex until timeout.\n     *\n     * Attempts to monopoly a mutex until timeout. If succeeded to monopoly the mutex until the\n     * timeout, it returns `true`. Otherwise failed to acquiring the lock in the given time, the\n     * function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link lock monopolied} the mutex and does not return it over the\n     * timeout.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * the mutex would be fall into the forever sleep. Therefore, never forget to calling the\n     * {@link unlock} function or utilize the {@link UniqueLock.try_lock_for} function instead to\n     * ensure the safety.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to write lock the mutex until time expiration.\n     *\n     * Attemps to monopoly a mutex until time expiration. If succeeded to monopoly the mutex\n     * until the time expiration, it returns `true`. Otherwise failed to acquiring the lock in the\n     * given time, the function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link lock monopolied} the mutex and does not return it over the\n     * time expiration.\n     *\n     * Note that, if you succeeded to monopoly the mutex (returns `true`) but do not call the\n     * {@link unlock} function after your business, the others who want to {@link lock monopoly}\n     * the mutex would be fall into the forever sleep. Therefore, never forget to calling the\n     * {@link unlock} function or utilize the {@link UniqueLock.try_lock_until} function instead\n     * to ensure the safety.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeeded to monopoly the mutex or not.\n     */\n    try_lock_until(at: Date): Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/base/thread/index.d.ts": "export * from \"./ILockable\";\nexport * from \"./ITimedLockable\";\nexport * from \"./ISharedLockable\";\nexport * from \"./ISharedTimedLockable\";\n",
    "node_modules/tstl/lib/container/Deque.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IArrayContainer } from \"../base/container/IArrayContainer\";\nimport { ArrayContainer } from \"../internal/container/linear/ArrayContainer\";\nimport { ArrayIterator } from \"../internal/iterator/ArrayIterator\";\nimport { ArrayReverseIterator } from \"../internal/iterator/ArrayReverseIterator\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\n/**\n * Double ended queue.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Deque<T> extends ArrayContainer<T, Deque<T>, Deque<T>, Deque.Iterator<T>, Deque.ReverseIterator<T>, T> implements IArrayContainer<T, Deque<T>, Deque.Iterator<T>, Deque.ReverseIterator<T>> {\n    private matrix_;\n    private size_;\n    private capacity_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     */\n    constructor(items: T[]);\n    /**\n     * Copy Constructor\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: Deque<T>);\n    /**\n     * Fill Constructor.\n     *\n     * @param size Initial size.\n     * @param val Value to fill.\n     */\n    constructor(size: number, val: T);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     */\n    constructor(first: Readonly<IForwardIterator<T>>, last: Readonly<IForwardIterator<T>>);\n    /**\n     * @inheritDoc\n     */\n    assign(n: number, val: T): void;\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    resize(n: number): void;\n    /**\n     * Reserve {@link capacity} enable to store *n* elements.\n     *\n     * @param n The capacity to reserve.\n     */\n    reserve(n: number): void;\n    private _Reserve;\n    /**\n     * Shrink {@link capacity} to actual {@link size}.\n     */\n    shrink_to_fit(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: Deque<T>): void;\n    private _Swap;\n    private static _Emend;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * The capacity to store elements.\n     *\n     * @return The capacity.\n     */\n    capacity(): number;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): Deque.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n    protected source(): Deque<T>;\n    protected _At(index: number): T;\n    protected _Set(index: number, val: T): void;\n    private _Fetch_index;\n    private _Compute_col_size;\n    /**\n     * @inheritDoc\n     */\n    push(...items: T[]): number;\n    /**\n     * @inheritDoc\n     */\n    push_front(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    pop_front(): void;\n    protected _Pop_back(): void;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: Deque.Iterator<T>, first: InputIterator, last: InputIterator): Deque.Iterator<T>;\n    private _Insert_to_middle;\n    private _Insert_to_end;\n    private _Try_expand_capacity;\n    private _Try_add_row_at_front;\n    private _Try_add_row_at_back;\n    protected _Erase_by_range(first: Deque.Iterator<T>, last: Deque.Iterator<T>): Deque.Iterator<T>;\n}\n/**\n *\n */\nexport declare namespace Deque {\n    /**\n     * Iterator of {@link Deque}\n     */\n    type Iterator<T> = ArrayIterator<T, Deque<T>>;\n    /**\n     * Reverse iterator of {@link Deque}\n     */\n    type ReverseIterator<T> = ArrayReverseIterator<T, Deque<T>>;\n    const Iterator: typeof ArrayIterator;\n    const ReverseIterator: typeof ArrayReverseIterator;\n    /**\n     * Row size of the {@link Deque.matrix_ matrix} which contains elements.\n     *\n     * Note that the {@link ROW_SIZE} affects on time complexity of accessing and inserting element.\n     * Accessing element is {@link ROW_SIZE} times slower than ordinary {@link Vector} and inserting element\n     * in middle position is {@link ROW_SIZE} times faster than ordinary {@link Vector}.\n     *\n     * When the {@link ROW_SIZE} returns 8, time complexity of accessing element is O(8) and inserting\n     * element in middle position is O(N/8). ({@link Vector}'s time complexity of accessement is O(1)\n     * and inserting element is O(N)).\n     */\n    const ROW_SIZE = 8;\n    /**\n     * Minimum {@link Deque.capacity}.\n     *\n     * Although a {@link Deque} has few elements, even no element is belonged to, the {@link Deque}\n     * keeps the minimum {@link Deque.capacity} at least.\n     */\n    const MIN_CAPACITY = 36;\n    /**\n     * Expansion ratio.\n     */\n    const MAGNIFIER = 1.5;\n}\n",
    "node_modules/tstl/lib/container/ForwardList.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardContainer } from \"../ranges/container/IForwardContainer\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IClear } from \"../internal/container/partial/IClear\";\nimport { IEmpty } from \"../internal/container/partial/IEmpty\";\nimport { ISize } from \"../internal/container/partial/ISize\";\nimport { IDeque } from \"../internal/container/partial/IDeque\";\nimport { IFront } from \"../internal/container/partial/IFront\";\nimport { IListAlgorithm } from \"../internal/container/linear/IListAlgorithm\";\nimport { Comparator } from \"../internal/functional/Comparator\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { UnaryPredicator } from \"../internal/functional/UnaryPredicator\";\n/**\n * Singly Linked List.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ForwardList<T> implements IForwardContainer<ForwardList.Iterator<T>>, IClear, IEmpty, ISize, IDeque<T>, IFront<T>, Iterable<T>, IListAlgorithm<T, ForwardList<T>> {\n    private ptr_;\n    private size_;\n    private before_begin_;\n    private end_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     */\n    constructor(items: T[]);\n    /**\n     * Copy Constructor\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: ForwardList<T>);\n    /**\n     * Fill Constructor.\n     *\n     * @param size Initial size.\n     * @param val Value to fill.\n     */\n    constructor(n: number, val: T);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     */\n    constructor(first: Readonly<IForwardIterator<T>>, last: Readonly<IForwardIterator<T>>);\n    /**\n     * Fill Assigner.\n     *\n     * @param n Initial size.\n     * @param val Value to fill.\n     */\n    assign(n: number, val: T): void;\n    /**\n     * Range Assigner.\n     *\n     * @param first Input iteartor of the first position.\n     * @param last Input iterator of the last position.\n     */\n    assign<T, InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    empty(): boolean;\n    /**\n     * @inheritDoc\n     */\n    front(): T;\n    /**\n     * @inheritDoc\n     */\n    front(val: T): void;\n    /**\n     * Iterator to before beginning.\n     *\n     * @return Iterator to the before beginning.\n     */\n    before_begin(): ForwardList.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    begin(): ForwardList.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    end(): ForwardList.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n    /**\n     * @inheritDoc\n     */\n    push_front(val: T): void;\n    /**\n     * Insert an element.\n     *\n     * @param pos Position to insert after.\n     * @param val Value to insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert_after(pos: ForwardList.Iterator<T>, val: T): ForwardList.Iterator<T>;\n    /**\n     * Inserted repeated elements.\n     *\n     * @param pos Position to insert after.\n     * @param n Number of elements to insert.\n     * @param val Value to insert repeatedly.\n     * @return An iterator to the last of the newly inserted elements.\n     */\n    insert_after(pos: ForwardList.Iterator<T>, n: number, val: T): ForwardList.Iterator<T>;\n    /**\n     * Insert range elements.\n     *\n     * @param pos Position to insert after.\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     * @return An iterator to the last of the newly inserted elements.\n     */\n    insert_after<T, InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: ForwardList.Iterator<T>, first: InputIterator, last: InputIterator): ForwardList.Iterator<T>;\n    private _Insert_by_repeating_val;\n    private _Insert_by_range;\n    /**\n     * @inheritDoc\n     */\n    pop_front(): void;\n    /**\n     * Erase an element.\n     *\n     * @param it Position to erase after.\n     * @return Iterator to the erased element.\n     */\n    erase_after(it: ForwardList.Iterator<T>): ForwardList.Iterator<T>;\n    /**\n     * Erase elements.\n     *\n     * @param first Range of the first position to erase after.\n     * @param last Rangee of the last position to erase.\n     * @return Iterator to the last removed element.\n     */\n    erase_after(first: ForwardList.Iterator<T>, last: ForwardList.Iterator<T>): ForwardList.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    unique(binary_pred?: BinaryPredicator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    remove(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    remove_if(pred: UnaryPredicator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    merge(from: ForwardList<T>, comp?: Comparator<T>): void;\n    /**\n     * Transfer elements.\n     *\n     * @param pos Position to insert after.\n     * @param from Target container to transfer.\n     */\n    splice_after(pos: ForwardList.Iterator<T>, from: ForwardList<T>): void;\n    /**\n     * Transfer a single element.\n     *\n     * @param pos Position to insert after.\n     * @param from Target container to transfer.\n     * @param before Previous position of the single element to transfer.\n     */\n    splice_after(pos: ForwardList.Iterator<T>, from: ForwardList<T>, before: ForwardList.Iterator<T>): void;\n    /**\n     * Transfer range elements.\n     *\n     * @param pos Position to insert after.\n     * @param from Target container to transfer.\n     * @param first Range of previous of the first position to transfer.\n     * @param last Rangee of the last position to transfer.\n     */\n    splice_after(pos: ForwardList.Iterator<T>, from: ForwardList<T>, first_before: ForwardList.Iterator<T>, last: ForwardList.Iterator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    sort(comp?: Comparator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    reverse(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: ForwardList<T>): void;\n    /**\n     * Native function for `JSON.stringify()`.\n     *\n     * @return An array containing children elements.\n     */\n    toJSON(): Array<T>;\n}\n/**\n *\n */\nexport declare namespace ForwardList {\n    /**\n     * Iterator of {@link ForwardList}\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<T> implements IForwardIterator<T, Iterator<T>> {\n        private source_ptr_;\n        private next_;\n        private value_;\n        private constructor();\n        /**\n         * Get source container.\n         *\n         * @return The source container.\n         */\n        source(): ForwardList<T>;\n        /**\n         * @inheritDoc\n         */\n        get value(): T;\n        /**\n         * @inheritDoc\n         */\n        set value(val: T);\n        private _Try_value;\n        /**\n         * @inheritDoc\n         */\n        next(): Iterator<T>;\n        /**\n         * @inheritDoc\n         */\n        equals(obj: Iterator<T>): boolean;\n    }\n}\n",
    "node_modules/tstl/lib/container/HashMap.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { UniqueMap } from \"../base/container/UniqueMap\";\nimport { IHashMap } from \"../base/container/IHashMap\";\nimport { MapElementList } from \"../internal/container/associative/MapElementList\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPair } from \"../utility/IPair\";\nimport { Pair } from \"../utility/Pair\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { Hasher } from \"../internal/functional/Hasher\";\n/**\n * Unique-key Map based on Hash buckets.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HashMap<Key, T> extends UniqueMap<Key, T, HashMap<Key, T>, HashMap.Iterator<Key, T>, HashMap.ReverseIterator<Key, T>> implements IHashMap<Key, T, true, HashMap<Key, T>> {\n    private buckets_;\n    /**\n     * Default Constructor.\n     *\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(items: IPair<Key, T>[], hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: HashMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: HashMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): HashMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    begin(): HashMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    begin(index: number): HashMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    end(): HashMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    end(index: number): HashMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): HashMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(index: number): HashMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rend(): HashMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rend(index: number): HashMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    bucket_count(): number;\n    /**\n     * @inheritDoc\n     */\n    bucket_size(index: number): number;\n    /**\n     * @inheritDoc\n     */\n    load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    hash_function(): Hasher<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_eq(): BinaryPredicator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(z: number): void;\n    /**\n     * @inheritDoc\n     */\n    reserve(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    rehash(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    emplace(key: Key, val: T): Pair<HashMap.Iterator<Key, T>, boolean>;\n    /**\n     * @inheritDoc\n     */\n    emplace_hint(hint: HashMap.Iterator<Key, T>, key: Key, val: T): HashMap.Iterator<Key, T>;\n    protected _Handle_insert(first: HashMap.Iterator<Key, T>, last: HashMap.Iterator<Key, T>): void;\n    protected _Handle_erase(first: HashMap.Iterator<Key, T>, last: HashMap.Iterator<Key, T>): void;\n}\n/**\n *\n */\nexport declare namespace HashMap {\n    /**\n     * Iterator of {@link HashMap}\n     */\n    type Iterator<Key, T> = MapElementList.Iterator<Key, T, true, HashMap<Key, T>>;\n    /**\n     * Reverse iterator of {@link HashMap}\n     */\n    type ReverseIterator<Key, T> = MapElementList.ReverseIterator<Key, T, true, HashMap<Key, T>>;\n    const Iterator: typeof MapElementList.Iterator;\n    const ReverseIterator: typeof MapElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/HashMultiMap.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { MultiMap } from \"../base/container/MultiMap\";\nimport { IHashMap } from \"../base/container/IHashMap\";\nimport { MapElementList } from \"../internal/container/associative/MapElementList\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPair } from \"../utility/IPair\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { Hasher } from \"../internal/functional/Hasher\";\n/**\n * Multiple-key Map based on Hash buckets.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HashMultiMap<Key, T> extends MultiMap<Key, T, HashMultiMap<Key, T>, HashMultiMap.Iterator<Key, T>, HashMultiMap.ReverseIterator<Key, T>> implements IHashMap<Key, T, false, HashMultiMap<Key, T>> {\n    private buckets_;\n    /**\n     * Default Constructor.\n     *\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(items: IPair<Key, T>[], hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: HashMultiMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: HashMultiMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    begin(): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    begin(index: number): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    end(): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    end(index: number): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): HashMultiMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(index: number): HashMultiMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rend(): HashMultiMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    rend(index: number): HashMultiMap.ReverseIterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    bucket_count(): number;\n    /**\n     * @inheritDoc\n     */\n    bucket_size(index: number): number;\n    /**\n     * @inheritDoc\n     */\n    load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    hash_function(): Hasher<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_eq(): BinaryPredicator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(z: number): void;\n    /**\n     * @inheritDoc\n     */\n    reserve(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    rehash(n: number): void;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    /**\n     * @inheritDoc\n     */\n    emplace(key: Key, val: T): HashMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    emplace_hint(hint: HashMultiMap.Iterator<Key, T>, key: Key, val: T): HashMultiMap.Iterator<Key, T>;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected _Handle_insert(first: HashMultiMap.Iterator<Key, T>, last: HashMultiMap.Iterator<Key, T>): void;\n    protected _Handle_erase(first: HashMultiMap.Iterator<Key, T>, last: HashMultiMap.Iterator<Key, T>): void;\n}\n/**\n *\n */\nexport declare namespace HashMultiMap {\n    /**\n     * Iterator of {@link HashMultiMap}\n     */\n    type Iterator<Key, T> = MapElementList.Iterator<Key, T, false, HashMultiMap<Key, T>>;\n    /**\n     * Reverse iterator of {@link HashMultiMap}\n     */\n    type ReverseIterator<Key, T> = MapElementList.ReverseIterator<Key, T, false, HashMultiMap<Key, T>>;\n    const Iterator: typeof MapElementList.Iterator;\n    const ReverseIterator: typeof MapElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/HashMultiSet.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { MultiSet } from \"../base/container/MultiSet\";\nimport { IHashSet } from \"../base/container/IHashSet\";\nimport { SetElementList } from \"../internal/container/associative/SetElementList\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { Hasher } from \"../internal/functional/Hasher\";\n/**\n * Multiple-key Set based on Hash buckets.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HashMultiSet<Key> extends MultiSet<Key, HashMultiSet<Key>, HashMultiSet.Iterator<Key>, HashMultiSet.ReverseIterator<Key>> implements IHashSet<Key, false, HashMultiSet<Key>> {\n    private buckets_;\n    /**\n     * Default Constructor.\n     *\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(items: Key[], hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: HashMultiSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: HashMultiSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): HashMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    begin(): HashMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    begin(index: number): HashMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    end(): HashMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    end(index: number): HashMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): HashMultiSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(index: number): HashMultiSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rend(): HashMultiSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rend(index: number): HashMultiSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket_count(): number;\n    /**\n     * @inheritDoc\n     */\n    bucket_size(n: number): number;\n    /**\n     * @inheritDoc\n     */\n    load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    hash_function(): Hasher<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_eq(): BinaryPredicator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(z: number): void;\n    /**\n     * @inheritDoc\n     */\n    reserve(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    rehash(n: number): void;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    protected _Insert_by_key(key: Key): HashMultiSet.Iterator<Key>;\n    protected _Insert_by_hint(hint: HashMultiSet.Iterator<Key>, key: Key): HashMultiSet.Iterator<Key>;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    protected _Handle_insert(first: HashMultiSet.Iterator<Key>, last: HashMultiSet.Iterator<Key>): void;\n    protected _Handle_erase(first: HashMultiSet.Iterator<Key>, last: HashMultiSet.Iterator<Key>): void;\n}\n/**\n *\n */\nexport declare namespace HashMultiSet {\n    /**\n     * Iterator of {@link HashMultiSet}\n     */\n    type Iterator<Key> = SetElementList.Iterator<Key, false, HashMultiSet<Key>>;\n    /**\n     * Reverse iterator of {@link HashMultiSet}\n     */\n    type ReverseIterator<Key> = SetElementList.ReverseIterator<Key, false, HashMultiSet<Key>>;\n    const Iterator: typeof SetElementList.Iterator;\n    const ReverseIterator: typeof SetElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/HashSet.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { UniqueSet } from \"../base/container/UniqueSet\";\nimport { IHashSet } from \"../base/container/IHashSet\";\nimport { SetElementList } from \"../internal/container/associative/SetElementList\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { Pair } from \"../utility/Pair\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { Hasher } from \"../internal/functional/Hasher\";\n/**\n * Unique-key Set based on Hash buckets.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HashSet<Key> extends UniqueSet<Key, HashSet<Key>, HashSet.Iterator<Key>, HashSet.ReverseIterator<Key>> implements IHashSet<Key, true, HashSet<Key>> {\n    private buckets_;\n    /**\n     * Default Constructor.\n     *\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(items: Key[], hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: HashSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param hash An unary function returns hash code. Default is {hash}.\n     * @param equal A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, hash?: Hasher<Key>, equal?: BinaryPredicator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: HashSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): HashSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    begin(): HashSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    begin(index: number): HashSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    end(): HashSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    end(index: number): HashSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(): HashSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rbegin(index: number): HashSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rend(): HashSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    rend(index: number): HashSet.ReverseIterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket_count(): number;\n    /**\n     * @inheritDoc\n     */\n    bucket_size(n: number): number;\n    /**\n     * @inheritDoc\n     */\n    load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    hash_function(): Hasher<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_eq(): BinaryPredicator<Key>;\n    /**\n     * @inheritDoc\n     */\n    bucket(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(): number;\n    /**\n     * @inheritDoc\n     */\n    max_load_factor(z: number): void;\n    /**\n     * @inheritDoc\n     */\n    reserve(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    rehash(n: number): void;\n    protected _Insert_by_key(key: Key): Pair<HashSet.Iterator<Key>, boolean>;\n    protected _Insert_by_hint(hint: HashSet.Iterator<Key>, key: Key): HashSet.Iterator<Key>;\n    protected _Handle_insert(first: HashSet.Iterator<Key>, last: HashSet.Iterator<Key>): void;\n    protected _Handle_erase(first: HashSet.Iterator<Key>, last: HashSet.Iterator<Key>): void;\n}\n/**\n *\n */\nexport declare namespace HashSet {\n    /**\n     * Iterator of {@link HashSet}\n     */\n    type Iterator<Key> = SetElementList.Iterator<Key, true, HashSet<Key>>;\n    /**\n     * Reverse iterator of {@link HashSet}\n     */\n    type ReverseIterator<Key> = SetElementList.ReverseIterator<Key, true, HashSet<Key>>;\n    const Iterator: typeof SetElementList.Iterator;\n    const ReverseIterator: typeof SetElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/List.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ListContainer } from \"../internal/container/linear/ListContainer\";\nimport { IDequeContainer } from \"../base/container/IDequeContainer\";\nimport { IListAlgorithm } from \"../internal/container/linear/IListAlgorithm\";\nimport { ListIterator } from \"../internal/iterator/ListIterator\";\nimport { ReverseIterator as ReverseIteratorBase } from \"../internal/iterator/ReverseIterator\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { BinaryPredicator } from \"../internal/functional/BinaryPredicator\";\nimport { Comparator } from \"../internal/functional/Comparator\";\nimport { UnaryPredicator } from \"../internal/functional/UnaryPredicator\";\n/**\n * Doubly Linked List.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class List<T> extends ListContainer<T, List<T>, List.Iterator<T>, List.ReverseIterator<T>> implements IDequeContainer<T, List<T>, List.Iterator<T>, List.ReverseIterator<T>>, IListAlgorithm<T, List<T>> {\n    private ptr_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     */\n    constructor(items: Array<T>);\n    /**\n     * Copy Constructor\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: List<T>);\n    /**\n     * Fill Constructor.\n     *\n     * @param size Initial size.\n     * @param val Value to fill.\n     */\n    constructor(size: number, val: T);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    constructor(first: Readonly<IForwardIterator<T>>, last: Readonly<IForwardIterator<T>>);\n    protected _Create_iterator(prev: List.Iterator<T>, next: List.Iterator<T>, val: T): List.Iterator<T>;\n    /**\n     * @inheritDoc\n     */\n    front(): T;\n    /**\n     * @inheritDoc\n     */\n    front(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    back(): T;\n    /**\n     * @inheritDoc\n     */\n    back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    unique(binary_pred?: BinaryPredicator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    remove(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    remove_if(pred: UnaryPredicator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    merge(source: List<T>, comp?: Comparator<T>): void;\n    /**\n     * Transfer elements.\n     *\n     * @param pos Position to insert.\n     * @param from Target container to transfer.\n     */\n    splice(pos: List.Iterator<T>, from: List<T>): void;\n    /**\n     * Transfer a single element.\n     *\n     * @param pos Position to insert.\n     * @param from Target container to transfer.\n     * @param it Position of the single element to transfer.\n     */\n    splice(pos: List.Iterator<T>, from: List<T>, it: List.Iterator<T>): void;\n    /**\n     * Transfer range elements.\n     *\n     * @param pos Position to insert.\n     * @param from Target container to transfer.\n     * @param first Range of the first position to transfer.\n     * @param last Rangee of the last position to transfer.\n     */\n    splice(pos: List.Iterator<T>, from: List<T>, first: List.Iterator<T>, last: List.Iterator<T>): void;\n    /**\n     * @inheritDoc\n     */\n    sort(comp?: Comparator<T>): void;\n    private _Quick_sort;\n    private _Quick_sort_partition;\n    /**\n     * @inheritDoc\n     */\n    reverse(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: List<T>): void;\n}\n/**\n *\n */\nexport declare namespace List {\n    /**\n     * Iterator of {@link List}\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<T> extends ListIterator<T, List<T>, Iterator<T>, ReverseIterator<T>, T> {\n        private source_ptr_;\n        private constructor();\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIterator<T>;\n        /**\n         * @inheritDoc\n         */\n        source(): List<T>;\n        /**\n         * @inheritDoc\n         */\n        get value(): T;\n        /**\n         * @inheritDoc\n         */\n        set value(val: T);\n        equals(obj: Iterator<T>): boolean;\n    }\n    /**\n     * Reverse iterator of {@link List}\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class ReverseIterator<T> extends ReverseIteratorBase<T, List<T>, Iterator<T>, ReverseIterator<T>, T> {\n        protected _Create_neighbor(base: Iterator<T>): ReverseIterator<T>;\n        /**\n         * @inheritDoc\n         */\n        get value(): T;\n        /**\n         * @inheritDoc\n         */\n        set value(val: T);\n    }\n}\n",
    "node_modules/tstl/lib/container/PriorityQueue.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { AdaptorContainer } from \"../internal/container/linear/AdaptorContainer\";\nimport { Vector } from \"./Vector\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Priority Queue; Greater Out First.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class PriorityQueue<T> extends AdaptorContainer<T, Vector<T>, PriorityQueue<T>> {\n    private comp_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<T>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: PriorityQueue<T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<T>>, last: Readonly<IForwardIterator<T>>, comp?: Comparator<T>);\n    /**\n     * Get value comparison function.\n     */\n    value_comp(): Comparator<T>;\n    /**\n     * Get top element.\n     */\n    top(): T;\n    /**\n     * @inheritDoc\n     */\n    push(...elems: T[]): number;\n    /**\n     * @inheritDoc\n     */\n    pop(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: PriorityQueue<T>): void;\n}\n",
    "node_modules/tstl/lib/container/Queue.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { AdaptorContainer } from \"../internal/container/linear/AdaptorContainer\";\nimport { List } from \"./List\";\n/**\n * Queue; FIFO (First In First Out).\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Queue<T> extends AdaptorContainer<T, List<T>, Queue<T>> {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: Queue<T>);\n    /**\n     * Get the first element.\n     *\n     * @return The first element.\n     */\n    front(): T;\n    /**\n     * Get the last element.\n     *\n     * @return The last element.\n     */\n    back(): T;\n    /**\n     * @inheritDoc\n     */\n    pop(): void;\n}\n",
    "node_modules/tstl/lib/container/Stack.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { AdaptorContainer } from \"../internal/container/linear/AdaptorContainer\";\nimport { Vector } from \"./Vector\";\n/**\n * Stack; LIFO (Last In First Out).\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Stack<T> extends AdaptorContainer<T, Vector<T>, Stack<T>> {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: Stack<T>);\n    /**\n     * Get the last element.\n     *\n     * @return The last element.\n     */\n    top(): T;\n    /**\n     * @inheritDoc\n     */\n    pop(): void;\n}\n",
    "node_modules/tstl/lib/container/TreeMap.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { UniqueTreeMap } from \"../internal/container/associative/UniqueTreeMap\";\nimport { MapElementList } from \"../internal/container/associative/MapElementList\";\nimport { Comparator } from \"../internal/functional/Comparator\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { IPair } from \"../utility/IPair\";\n/**\n * Unique-key Map based on Tree.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TreeMap<Key, T> extends UniqueTreeMap<Key, T, TreeMap<Key, T>, TreeMap.Iterator<Key, T>, TreeMap.ReverseIterator<Key, T>> {\n    private tree_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: IPair<Key, T>[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: TreeMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: TreeMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): TreeMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): TreeMap.Iterator<Key, T>;\n    protected _Handle_insert(first: TreeMap.Iterator<Key, T>, last: TreeMap.Iterator<Key, T>): void;\n    protected _Handle_erase(first: TreeMap.Iterator<Key, T>, last: TreeMap.Iterator<Key, T>): void;\n}\n/**\n *\n */\nexport declare namespace TreeMap {\n    /**\n     * Iterator of {@link TreeMap}\n     */\n    type Iterator<Key, T> = MapElementList.Iterator<Key, T, true, TreeMap<Key, T>>;\n    /**\n     * Reverse iterator of {@link TreeMap}\n     */\n    type ReverseIterator<Key, T> = MapElementList.ReverseIterator<Key, T, true, TreeMap<Key, T>>;\n    const Iterator: typeof MapElementList.Iterator;\n    const ReverseIterator: typeof MapElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/TreeMultiMap.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { MultiTreeMap } from \"../internal/container/associative/MultiTreeMap\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { MapElementList } from \"../internal/container/associative/MapElementList\";\nimport { Comparator } from \"../internal/functional/Comparator\";\nimport { IPair } from \"../utility/IPair\";\n/**\n * Multiple-key Map based on Tree.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TreeMultiMap<Key, T> extends MultiTreeMap<Key, T, TreeMultiMap<Key, T>, TreeMultiMap.Iterator<Key, T>, TreeMultiMap.ReverseIterator<Key, T>> {\n    private tree_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: IPair<Key, T>[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: TreeMultiMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: TreeMultiMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): TreeMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): TreeMultiMap.Iterator<Key, T>;\n    protected _Handle_insert(first: TreeMultiMap.Iterator<Key, T>, last: TreeMultiMap.Iterator<Key, T>): void;\n    protected _Handle_erase(first: TreeMultiMap.Iterator<Key, T>, last: TreeMultiMap.Iterator<Key, T>): void;\n}\n/**\n *\n */\nexport declare namespace TreeMultiMap {\n    /**\n     * Iterator of {@link TreeMultiMap}\n     */\n    type Iterator<Key, T> = MapElementList.Iterator<Key, T, false, TreeMultiMap<Key, T>>;\n    /**\n     * Iterator of {@link TreeMultiMap}\n     */\n    type ReverseIterator<Key, T> = MapElementList.ReverseIterator<Key, T, false, TreeMultiMap<Key, T>>;\n    const Iterator: typeof MapElementList.Iterator;\n    const ReverseIterator: typeof MapElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/TreeMultiSet.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { MultiTreeSet } from \"../internal/container/associative/MultiTreeSet\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { SetElementList } from \"../internal/container/associative/SetElementList\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Multiple-key Set based on Tree.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TreeMultiSet<Key> extends MultiTreeSet<Key, TreeMultiSet<Key>, TreeMultiSet.Iterator<Key>, TreeMultiSet.ReverseIterator<Key>> {\n    private tree_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: Key[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: TreeMultiSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: TreeMultiSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): TreeMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): TreeMultiSet.Iterator<Key>;\n    protected _Handle_insert(first: TreeMultiSet.Iterator<Key>, last: TreeMultiSet.Iterator<Key>): void;\n    protected _Handle_erase(first: TreeMultiSet.Iterator<Key>, last: TreeMultiSet.Iterator<Key>): void;\n}\n/**\n *\n */\nexport declare namespace TreeMultiSet {\n    /**\n     * Iterator of {@link TreeMultiSet}\n     */\n    type Iterator<Key> = SetElementList.Iterator<Key, false, TreeMultiSet<Key>>;\n    /**\n     * Reverse iterator of {@link TreeMultiSet}\n     */\n    type ReverseIterator<Key> = SetElementList.ReverseIterator<Key, false, TreeMultiSet<Key>>;\n    const Iterator: typeof SetElementList.Iterator;\n    const ReverseIterator: typeof SetElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/TreeSet.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { UniqueTreeSet } from \"../internal/container/associative/UniqueTreeSet\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { SetElementList } from \"../internal/container/associative/SetElementList\";\nimport { Comparator } from \"../internal/functional/Comparator\";\n/**\n * Unique-key Set based on Tree.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TreeSet<Key> extends UniqueTreeSet<Key, TreeSet<Key>, TreeSet.Iterator<Key>, TreeSet.ReverseIterator<Key>> {\n    private tree_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: Key[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(container: TreeSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: TreeSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): TreeSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): TreeSet.Iterator<Key>;\n    protected _Handle_insert(first: TreeSet.Iterator<Key>, last: TreeSet.Iterator<Key>): void;\n    protected _Handle_erase(first: TreeSet.Iterator<Key>, last: TreeSet.Iterator<Key>): void;\n}\n/**\n *\n */\nexport declare namespace TreeSet {\n    /**\n     * Iterator of {@link TreeSet}\n     */\n    type Iterator<Key> = SetElementList.Iterator<Key, true, TreeSet<Key>>;\n    /**\n     * Reverse iterator of {@link TreeSet}\n     */\n    type ReverseIterator<Key> = SetElementList.ReverseIterator<Key, true, TreeSet<Key>>;\n    const Iterator: typeof SetElementList.Iterator;\n    const ReverseIterator: typeof SetElementList.ReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/Vector.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IArrayContainer } from \"../base/container/IArrayContainer\";\nimport { VectorContainer } from \"../internal/container/linear/VectorContainer\";\nimport { ArrayIterator } from \"../internal/iterator/ArrayIterator\";\nimport { ArrayReverseIterator } from \"../internal/iterator/ArrayReverseIterator\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\n/**\n * Vector, an array with variable capacity.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Vector<T> extends VectorContainer<T, Vector<T>, Vector<T>, Vector.Iterator<T>, Vector.ReverseIterator<T>> implements IArrayContainer<T, Vector<T>, Vector.Iterator<T>, Vector.ReverseIterator<T>> {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     */\n    constructor(items: Array<T>);\n    /**\n     * Copy Constructor\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: Vector<T>);\n    /**\n     * Fill Constructor.\n     *\n     * @param size Initial size.\n     * @param val Value to fill.\n     */\n    constructor(n: number, val: T);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    constructor(first: Readonly<IForwardIterator<T>>, last: Readonly<IForwardIterator<T>>);\n    /**\n     * Wrap an array into a vector.\n     *\n     * @param data Target array to be wrapped\n     * @return A vector wrapping the parametric array.\n     */\n    static wrap<T>(data: Array<T>): Vector<T>;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): Vector.Iterator<T>;\n    protected source(): Vector<T>;\n}\n/**\n *\n */\nexport declare namespace Vector {\n    /**\n     * Iterator of {@link Vector}\n     */\n    type Iterator<T> = ArrayIterator<T, Vector<T>>;\n    /**\n     * Reverse iterator of {@link Vector}\n     */\n    type ReverseIterator<T> = ArrayReverseIterator<T, Vector<T>>;\n    const Iterator: typeof ArrayIterator;\n    const ReverseIterator: typeof ArrayReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/VectorBoolean.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IArrayContainer } from \"../base/container/IArrayContainer\";\nimport { ArrayContainer } from \"../internal/container/linear/ArrayContainer\";\nimport { ArrayIterator } from \"../internal/iterator/ArrayIterator\";\nimport { ArrayReverseIterator } from \"../internal/iterator/ArrayReverseIterator\";\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\n/**\n * Vector only for `boolean`.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class VectorBoolean extends ArrayContainer<boolean, VectorBoolean, VectorBoolean, VectorBoolean.Iterator, VectorBoolean.ReverseIterator, boolean> implements IArrayContainer<boolean, VectorBoolean, VectorBoolean.Iterator, VectorBoolean.ReverseIterator> {\n    /**\n     * Store not full elements, but their sequence.\n     *\n     *   - first: index\n     *   - second: value\n     */\n    private data_;\n    /**\n     * Number of elements\n     */\n    private size_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     */\n    constructor(array: boolean[]);\n    /**\n     * Copy Constructor\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: VectorBoolean);\n    /**\n     * Fill Constructor.\n     *\n     * @param size Initial size.\n     * @param val Value to fill.\n     */\n    constructor(n: number, val: boolean);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     */\n    constructor(first: Readonly<IForwardIterator<boolean>>, last: Readonly<IForwardIterator<boolean>>);\n    /**\n     * @inheritDoc\n     */\n    assign(n: number, val: boolean): void;\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<boolean, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    resize(n: number): void;\n    /**\n     * Flip all values.\n     */\n    flip(): void;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: VectorBoolean): void;\n    protected source(): VectorBoolean;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    protected _At(index: number): boolean;\n    protected _Set(index: number, val: boolean): void;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): VectorBoolean.Iterator;\n    private _Find_node;\n    /**\n     * @inheritDoc\n     */\n    push(...items: boolean[]): number;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: boolean): void;\n    protected _Pop_back(): void;\n    protected _Insert_by_repeating_val(pos: VectorBoolean.Iterator, n: number, val: boolean): VectorBoolean.Iterator;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<boolean, InputIterator>>>(pos: VectorBoolean.Iterator, first: InputIterator, last: InputIterator): VectorBoolean.Iterator;\n    private _Insert_to_middle;\n    private _Insert_to_end;\n    protected _Erase_by_range(first: VectorBoolean.Iterator, last: VectorBoolean.Iterator): VectorBoolean.Iterator;\n}\n/**\n *\n */\nexport declare namespace VectorBoolean {\n    /**\n     * Iterator of {@link VectorBoolean}\n     */\n    type Iterator = ArrayIterator<boolean, VectorBoolean>;\n    /**\n     * Reverse iterator of {@link VectorBoolean}\n     */\n    type ReverseIterator = ArrayReverseIterator<boolean, VectorBoolean>;\n    const Iterator: typeof ArrayIterator;\n    const ReverseIterator: typeof ArrayReverseIterator;\n}\n",
    "node_modules/tstl/lib/container/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./Vector\";\nexport * from \"./Deque\";\nexport * from \"./List\";\nexport * from \"./VectorBoolean\";\nexport * from \"./ForwardList\";\nexport * from \"./TreeSet\";\nexport * from \"./HashSet\";\nexport * from \"./TreeMultiSet\";\nexport * from \"./HashMultiSet\";\nexport * from \"./TreeMap\";\nexport * from \"./HashMap\";\nexport * from \"./TreeMultiMap\";\nexport * from \"./HashMultiMap\";\nexport * from \"./Stack\";\nexport * from \"./Queue\";\nexport * from \"./PriorityQueue\";\n",
    "node_modules/tstl/lib/exception/DomainError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { LogicError } from \"./LogicError\";\n/**\n * Domain Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class DomainError extends LogicError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/ErrorCategory.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ErrorCode } from \"./ErrorCode\";\nimport { ErrorCondition } from \"./ErrorCondition\";\n/**\n * Error category.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ErrorCategory {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Get category name.\n     */\n    abstract name(): string;\n    /**\n     * Get error message.\n     *\n     * @param val Identifier of an error condition.\n     * @return The error message.\n     */\n    abstract message(val: number): string;\n    /**\n     * Get default error condition.\n     *\n     * @param val Identifier of an error condition.\n     * @return The error condition.\n     */\n    default_error_condition(val: number): ErrorCondition;\n    /**\n     * Test equivalence.\n     *\n     * @param val_code Identifier of an error code.\n     * @param cond An error condition.\n     * @return Whether equivalent or not.\n     */\n    equivalent(val_code: number, cond: ErrorCondition): boolean;\n    /**\n     * Test equivalence.\n     *\n     * @param code An error code.\n     * @param val_cond Identifier of an error condition.\n     * @return Whether equivalent or not.\n     */\n    equivalent(code: ErrorCode, val_cond: number): boolean;\n}\n",
    "node_modules/tstl/lib/exception/ErrorCode.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ErrorInstance } from \"../internal/exception/ErrorInstance\";\nimport { ErrorCategory } from \"./ErrorCategory\";\nimport { ErrorCondition } from \"./ErrorCondition\";\n/**\n * Error code.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ErrorCode extends ErrorInstance {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param val Identifier of an error instance.\n     * @param category An error category instance.\n     */\n    constructor(val: number, category: ErrorCategory);\n    /**\n     * Get default error condition.\n     *\n     * @return The default error condition object.\n     */\n    default_error_condition(): ErrorCondition;\n}\n",
    "node_modules/tstl/lib/exception/ErrorCondition.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ErrorInstance } from \"../internal/exception/ErrorInstance\";\nimport { ErrorCategory } from \"./ErrorCategory\";\n/**\n * Error condition.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ErrorCondition extends ErrorInstance {\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param val Identifier of an error condition.\n     * @param category An error category instance.\n     */\n    constructor(val: number, category: ErrorCategory);\n}\n",
    "node_modules/tstl/lib/exception/Exception.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Base Exception.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Exception extends Error {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n    /**\n     * The error name.\n     */\n    get name(): string;\n    /**\n     * Get error message.\n     *\n     * @return The error message.\n     */\n    what(): string;\n    /**\n     * Native function for `JSON.stringify()`.\n     *\n     * The {@link Exception.toJSON} function returns only three properties; ({@link name}, {@link message} and {@link stack}). If you want to define a new sub-class extending the {@link Exception} and const the class to export additional props (or remove some props), override this {@link Exception.toJSON} method.\n     *\n     * @return An object for `JSON.stringify()`.\n     */\n    toJSON(): object;\n}\n",
    "node_modules/tstl/lib/exception/InvalidArgument.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { LogicError } from \"./LogicError\";\n/**\n * Invalid Argument Exception.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class InvalidArgument extends LogicError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/LengthError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { LogicError } from \"./LogicError\";\n/**\n * Length Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class LengthError extends LogicError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/LogicError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { Exception } from \"./Exception\";\n/**\n * Logic Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class LogicError extends Exception {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/OutOfRange.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { LogicError } from \"./LogicError\";\n/**\n * Out-of-range Exception.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class OutOfRange extends LogicError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/OverflowError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { RuntimeError } from \"./RuntimeError\";\n/**\n * Overflow Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class OverflowError extends RuntimeError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/RangeError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { RuntimeError } from \"./RuntimeError\";\n/**\n * Range Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class RangeError extends RuntimeError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/RuntimeError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { Exception } from \"./Exception\";\n/**\n * Runtime Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class RuntimeError extends Exception {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/SystemError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { RuntimeError } from \"./RuntimeError\";\nimport { ErrorCode } from \"./ErrorCode\";\nimport { ErrorCategory } from \"./ErrorCategory\";\n/**\n * System Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SystemError extends RuntimeError {\n    protected code_: ErrorCode;\n    /**\n     * Initializer Constructor.\n     *\n     * @param code An error code.\n     * @param message A detailed error message.\n     */\n    constructor(code: ErrorCode, message?: string);\n    /**\n     * Construct from references.\n     *\n     * @param val Identnfier of an error code in *category*.\n     * @param category An error category.\n     * @param message A detailed error message.\n     */\n    constructor(val: number, category: ErrorCategory, message?: string);\n    /**\n     * Get error code.\n     *\n     * @return The error code.\n     */\n    code(): ErrorCode;\n    /**\n     * @inheritDoc\n     */\n    toJSON(): object;\n}\n",
    "node_modules/tstl/lib/exception/UnderflowError.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { RuntimeError } from \"./RuntimeError\";\n/**\n * Underflow Error.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class UnderflowError extends RuntimeError {\n    /**\n     * Initializer Constructor.\n     *\n     * @param message The error messgae.\n     */\n    constructor(message: string);\n}\n",
    "node_modules/tstl/lib/exception/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./Exception\";\nexport * from \"./LogicError\";\nexport * from \"./DomainError\";\nexport * from \"./InvalidArgument\";\nexport * from \"./LengthError\";\nexport * from \"./OutOfRange\";\nexport * from \"./RuntimeError\";\nexport * from \"./RangeError\";\nexport * from \"./OverflowError\";\nexport * from \"./UnderflowError\";\nexport * from \"./SystemError\";\nexport * from \"./ErrorCategory\";\nexport * from \"./ErrorCode\";\nexport * from \"./ErrorCondition\";\n",
    "node_modules/tstl/lib/experimental/container/FlatMap.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nimport { UniqueTreeMap } from \"../../internal/container/associative/UniqueTreeMap\";\nimport { MapElementVector } from \"../../internal/container/associative/MapElementVector\";\nimport { IPair } from \"../../utility/IPair\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Unique-key Map based on sorted array.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class FlatMap<Key, T> extends UniqueTreeMap<Key, T, FlatMap<Key, T>, FlatMap.Iterator<Key, T>, FlatMap.ReverseIterator<Key, T>> {\n    private key_comp_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: IPair<Key, T>[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: FlatMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    swap(obj: FlatMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): FlatMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): FlatMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): FlatMap.Iterator<Key, T>;\n    private _Capsule_key;\n    protected _Handle_insert({}: {}, {}: {}): void;\n    protected _Handle_erase({}: {}, {}: {}): void;\n}\n/**\n *\n */\nexport declare namespace FlatMap {\n    type Iterator<Key, T> = MapElementVector.Iterator<Key, T, true, FlatMap<Key, T>>;\n    type ReverseIterator<Key, T> = MapElementVector.ReverseIterator<Key, T, true, FlatMap<Key, T>>;\n    const Iterator: typeof MapElementVector.Iterator;\n    const ReverseIterator: typeof MapElementVector.ReverseIterator;\n    const __MODULE = \"experimental\";\n}\n",
    "node_modules/tstl/lib/experimental/container/FlatMultiMap.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nimport { MultiTreeMap } from \"../../internal/container/associative/MultiTreeMap\";\nimport { MapElementVector } from \"../../internal/container/associative/MapElementVector\";\nimport { IPair } from \"../../utility/IPair\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Multiple-key Map based on sorted array.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class FlatMultiMap<Key, T> extends MultiTreeMap<Key, T, FlatMultiMap<Key, T>, FlatMultiMap.Iterator<Key, T>, FlatMultiMap.ReverseIterator<Key, T>> {\n    private key_comp_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: IPair<Key, T>[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: FlatMultiMap<Key, T>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<IPair<Key, T>>>, last: Readonly<IForwardIterator<IPair<Key, T>>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    swap(obj: FlatMultiMap<Key, T>): void;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): FlatMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): FlatMultiMap.Iterator<Key, T>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): FlatMultiMap.Iterator<Key, T>;\n    private _Capsule_key;\n    protected _Handle_insert({}: {}, {}: {}): void;\n    protected _Handle_erase({}: {}, {}: {}): void;\n}\n/**\n *\n */\nexport declare namespace FlatMultiMap {\n    type Iterator<Key, T> = MapElementVector.Iterator<Key, T, false, FlatMultiMap<Key, T>>;\n    type ReverseIterator<Key, T> = MapElementVector.ReverseIterator<Key, T, false, FlatMultiMap<Key, T>>;\n    const Iterator: typeof MapElementVector.Iterator;\n    const ReverseIterator: typeof MapElementVector.ReverseIterator;\n    const __MODULE = \"experimental\";\n}\n",
    "node_modules/tstl/lib/experimental/container/FlatMultiSet.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nimport { MultiTreeSet } from \"../../internal/container/associative/MultiTreeSet\";\nimport { SetElementVector } from \"../../internal/container/associative/SetElementVector\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Multiple-key Set based on sorted array.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class FlatMultiSet<Key> extends MultiTreeSet<Key, FlatMultiSet<Key>, FlatMultiSet.Iterator<Key>, FlatMultiSet.ReverseIterator<Key>> {\n    private key_comp_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: Key[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: FlatMultiSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    swap(obj: FlatMultiSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): FlatMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): FlatMultiSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): FlatMultiSet.Iterator<Key>;\n    protected _Handle_insert({}: {}, {}: {}): void;\n    protected _Handle_erase({}: {}, {}: {}): void;\n}\n/**\n *\n */\nexport declare namespace FlatMultiSet {\n    type Iterator<Key> = SetElementVector.Iterator<Key, false, FlatMultiSet<Key>>;\n    type ReverseIterator<Key> = SetElementVector.ReverseIterator<Key, false, FlatMultiSet<Key>>;\n    const Iterator: typeof SetElementVector.Iterator;\n    const ReverseIterator: typeof SetElementVector.ReverseIterator;\n    const __MODULE = \"experimental\";\n}\n",
    "node_modules/tstl/lib/experimental/container/FlatSet.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nimport { UniqueTreeSet } from \"../../internal/container/associative/UniqueTreeSet\";\nimport { SetElementVector } from \"../../internal/container/associative/SetElementVector\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Unique-key Set based on sorted array.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class FlatSet<Key> extends UniqueTreeSet<Key, FlatSet<Key>, FlatSet.Iterator<Key>, FlatSet.ReverseIterator<Key>> {\n    private key_comp_;\n    /**\n     * Default Constructor.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(comp?: Comparator<Key>);\n    /**\n     * Initializer Constructor.\n     *\n     * @param items Items to assign.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(items: Key[], comp?: Comparator<Key>);\n    /**\n     * Copy Constructor.\n     *\n     * @param obj Object to copy.\n     */\n    constructor(obj: FlatSet<Key>);\n    /**\n     * Range Constructor.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Note that, because *equality* is predicated by `!comp(x, y) && !comp(y, x)`, the function must not cover the *equality* like `<=` or `>=`. It must exclude the *equality* like `<` or `>`. Default is {@link less}.\n     */\n    constructor(first: Readonly<IForwardIterator<Key>>, last: Readonly<IForwardIterator<Key>>, comp?: Comparator<Key>);\n    /**\n     * @inheritDoc\n     */\n    swap(obj: FlatSet<Key>): void;\n    /**\n     * @inheritDoc\n     */\n    nth(index: number): FlatSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    lower_bound(key: Key): FlatSet.Iterator<Key>;\n    /**\n     * @inheritDoc\n     */\n    upper_bound(key: Key): FlatSet.Iterator<Key>;\n    protected _Handle_insert({}: {}, {}: {}): void;\n    protected _Handle_erase({}: {}, {}: {}): void;\n}\n/**\n *\n */\nexport declare namespace FlatSet {\n    type Iterator<Key> = SetElementVector.Iterator<Key, true, FlatSet<Key>>;\n    type ReverseIterator<Key> = SetElementVector.ReverseIterator<Key, true, FlatSet<Key>>;\n    const Iterator: typeof SetElementVector.Iterator;\n    const ReverseIterator: typeof SetElementVector.ReverseIterator;\n    const __MODULE = \"experimental\";\n}\n",
    "node_modules/tstl/lib/experimental/container/index.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nexport * from \"./FlatSet\";\nexport * from \"./FlatMultiSet\";\nexport * from \"./FlatMap\";\nexport * from \"./FlatMultiMap\";\n",
    "node_modules/tstl/lib/experimental/index.d.ts": "/**\n * Experimental Features\n *\n * @packageDocumentation\n * @module std.experimental\n * @preferred\n */\nimport * as experimental from \"./module\";\nexport default experimental;\nexport * from \"./module\";\n",
    "node_modules/tstl/lib/experimental/module.d.ts": "/**\n * @packageDocumentation\n * @module std.experimental\n */\nexport * from \"./container/index\";\n",
    "node_modules/tstl/lib/functional/IComparable.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Interface for comparison.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IComparable<T> {\n    /**\n     * Test whether equal to some object.\n     *\n     * @param obj The object to compare.\n     * @return Whether equal or not.\n     */\n    equals(obj: T): boolean;\n    /**\n     * Test whether less than some object.\n     *\n     * @param obj The object to compare.\n     * @return Whether less or not.\n     */\n    less(obj: T): boolean;\n    /**\n     * Get hash code.\n     *\n     * @return The hash code.\n     */\n    hashCode(): number;\n}\n",
    "node_modules/tstl/lib/functional/IPointer.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Pointer referencing value.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IPointer<T> {\n    /**\n     * Reference of the value.\n     */\n    value: T;\n}\nexport declare namespace IPointer {\n    /**\n     * Inference of value type.\n     */\n    type ValueType<Pointer extends IPointer<any>> = Pointer extends IPointer<infer T> ? T : unknown;\n}\n",
    "node_modules/tstl/lib/functional/bit_operations.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport declare function logical_and<T>(x: T, y: T): boolean;\nexport declare function logical_or<T>(x: T, y: T): boolean;\nexport declare function logical_not<T>(x: T): boolean;\nexport declare function bit_and(x: number, y: number): number;\nexport declare function bit_or(x: number, y: number): number;\nexport declare function bit_xor(x: number, y: number): number;\n",
    "node_modules/tstl/lib/functional/comparators.d.ts": "/**\n * Test whether two arguments are equal.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Whether two arguments are equal or not.\n */\nexport declare function equal_to<T>(x: T, y: T): boolean;\n/**\n * Test whether two arguments are not equal.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Returns `true`, if two arguments are not equal, otherwise `false`.\n */\nexport declare function not_equal_to<T>(x: T, y: T): boolean;\n/**\n * Test whether *x* is less than *y*.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Whether *x* is less than *y*.\n */\nexport declare function less<T>(x: T, y: T): boolean;\n/**\n * Test whether *x* is less than or equal to *y*.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Whether *x* is less than or equal to *y*.\n */\nexport declare function less_equal<T>(x: T, y: T): boolean;\n/**\n * Test whether *x* is greater than *y*.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Whether *x* is greater than *y*.\n */\nexport declare function greater<T>(x: T, y: T): boolean;\n/**\n * Test whether *x* is greater than or equal to *y*.\n *\n * @param x The first argument to compare.\n * @param y The second argument to compare.\n * @return Whether *x* is greater than or equal to *y*.\n */\nexport declare function greater_equal<T>(x: T, y: T): boolean;\n",
    "node_modules/tstl/lib/functional/hash.d.ts": "/**\n * Hash function.\n *\n * @param itemList The items to be hashed.\n * @return The hash code.\n */\nexport declare function hash(...itemList: any[]): number;\n",
    "node_modules/tstl/lib/functional/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./bit_operations\";\nexport * from \"./comparators\";\nexport * from \"./hash\";\nexport * from \"./uid\";\nexport * from \"./IPointer\";\nexport * from \"./IComparable\";\n",
    "node_modules/tstl/lib/functional/uid.d.ts": "/**\n * Get unique identifier.\n *\n * @param obj Target object.\n * @return The identifier number.\n */\nexport declare function get_uid(obj: object | null | undefined): number;\n",
    "node_modules/tstl/lib/index.d.ts": "/**\n * TSTL - TypeScript Standard Template Library\n *\n * @packageDocumentation\n * @module std\n * @preferred\n */\nimport * as std from \"./module\";\nexport default std;\nexport * from \"./module\";\n",
    "node_modules/tstl/lib/internal/Global.d.ts": "export {};\n",
    "node_modules/tstl/lib/internal/container/associative/IAssociativeContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IContainer } from \"../../../base/container/IContainer\";\n/**\n * Common interface for associative containers\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IAssociativeContainer<Key, T extends Elem, SourceT extends IAssociativeContainer<Key, T, SourceT, IteratorT, ReverseIteratorT, Elem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, ReverseIteratorT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, Elem> extends IContainer<T, SourceT, IteratorT, ReverseIteratorT, Elem> {\n    /**\n     * Get iterator to element.\n     *\n     * @param key Key to search for.\n     * @return An iterator to the element, if the specified key is found, otherwise `this.end()`.\n     */\n    find(key: Key): IteratorT;\n    /**\n     * Test whether a key exists.\n     *\n     * @param key Key to search for.\n     * @return Whether the specified key exists.\n     */\n    has(key: Key): boolean;\n    /**\n     * Count elements with a specified key.\n     *\n     * @param key Key to search for.\n     * @return Number of elements with the specified key.\n     */\n    count(key: Key): number;\n    /**\n     * Erase elements with a specified key.\n     *\n     * @param key Key to search for.\n     * @return Number of erased elements.\n     */\n    erase(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    erase(pos: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(first: IteratorT, last: IteratorT): IteratorT;\n}\nexport declare namespace IAssociativeContainer {\n}\n",
    "node_modules/tstl/lib/internal/container/associative/IHashContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IAssociativeContainer } from \"./IAssociativeContainer\";\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { Hasher } from \"../../functional/Hasher\";\nimport { BinaryPredicator } from \"../../functional/BinaryPredicator\";\n/**\n * Common interface for hash containers\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IHashContainer<Key, T extends Elem, SourceT extends IHashContainer<Key, T, SourceT, IteratorT, ReverseIteratorT, Elem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, ReverseIteratorT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, Elem> extends IAssociativeContainer<Key, T, SourceT, IteratorT, ReverseIteratorT, Elem> {\n    /**\n     * Get hash function.\n     *\n     * @return The hash function.\n     */\n    hash_function(): Hasher<Key>;\n    /**\n     * Get key equality predicator.\n     *\n     * @return The key equality predicator.\n     */\n    key_eq(): BinaryPredicator<Key>;\n    /**\n     * Compute bucket index for the *key*.\n     *\n     * @param key Target key.\n     * @return Index number.\n     */\n    bucket(key: Key): number;\n    /**\n     * Get number of buckets.\n     */\n    bucket_count(): number;\n    /**\n     * Get size of a specific bucket.\n     *\n     * @param index Specific position.\n     * @return Size of the specific bucket.\n     */\n    bucket_size(index: number): number;\n    /**\n     * Compute load factor.\n     *\n     * @return `this.size() / this.bucket_count()`\n     */\n    load_factor(): number;\n    /**\n     * Get maximum load factor that allowable.\n     *\n     * @return The maximum load factor.\n     */\n    max_load_factor(): number;\n    /**\n     * Set maximum load factor.\n     *\n     * @param z The new value to change.\n     */\n    max_load_factor(z: number): void;\n    /**\n     * Reserve buckets enable to store *n* elements.\n     *\n     * @param n The capacity to reserve.\n     */\n    reserve(n: number): void;\n    /**\n     * Change of bucktes.\n     *\n     * @param n The number to change.\n     */\n    rehash(n: number): void;\n}\nexport declare namespace IHashContainer {\n}\n",
    "node_modules/tstl/lib/internal/container/associative/ITreeContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IAssociativeContainer } from \"./IAssociativeContainer\";\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { Comparator } from \"../../functional/Comparator\";\nimport { Pair } from \"../../../utility/Pair\";\n/**\n * Common interface for tree containers.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface ITreeContainer<Key, T extends Elem, SourceT extends ITreeContainer<Key, T, SourceT, IteratorT, ReverseIteratorT, Elem>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, ReverseIteratorT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, Elem> extends IAssociativeContainer<Key, T, SourceT, IteratorT, ReverseIteratorT, Elem> {\n    /**\n     * Get key comparison function.\n     *\n     * @return The key comparison function.\n     */\n    key_comp(): Comparator<Key>;\n    /**\n     * Get value comparison function.\n     *\n     * @return The value comparison function.\n     */\n    value_comp(): Comparator<Elem>;\n    /**\n     * Get iterator to lower bound.\n     *\n     * @param key Key to search for.\n     * @return Iterator to the first element equal or after to the key.\n     */\n    lower_bound(key: Key): IteratorT;\n    /**\n     * Get iterator to upper bound.\n     *\n     * @param key Key to search for.\n     * @return Iterator to the first element after the key.\n     */\n    upper_bound(key: Key): IteratorT;\n    /**\n     * Get range of equal elements.\n     *\n     * @param key Key to search for.\n     * @return Pair of {@link lower_bound} and {@link upper_bound}.\n     */\n    equal_range(key: Key): Pair<IteratorT, IteratorT>;\n}\nexport declare namespace ITreeContainer {\n}\n",
    "node_modules/tstl/lib/internal/container/associative/MapElementList.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { ListContainer } from \"../linear/ListContainer\";\nimport { ListIterator } from \"../../iterator/ListIterator\";\nimport { ReverseIterator as _ReverseIterator } from \"../../iterator/ReverseIterator\";\nimport { MapContainer } from \"../../../base/container/MapContainer\";\nimport { IPair } from \"../../../utility/IPair\";\nimport { Entry } from \"../../../utility/Entry\";\n/**\n * Doubly Linked List storing map elements.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Source type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MapElementList<Key, T, Unique extends boolean, Source extends MapContainer<Key, T, Unique, Source, MapElementList.Iterator<Key, T, Unique, Source>, MapElementList.ReverseIterator<Key, T, Unique, Source>>> extends ListContainer<Entry<Key, T>, Source, MapElementList.Iterator<Key, T, Unique, Source>, MapElementList.ReverseIterator<Key, T, Unique, Source>> {\n    private associative_;\n    constructor(associative: Source);\n    protected _Create_iterator(prev: MapElementList.Iterator<Key, T, Unique, Source>, next: MapElementList.Iterator<Key, T, Unique, Source>, val: Entry<Key, T>): MapElementList.Iterator<Key, T, Unique, Source>;\n    associative(): Source;\n}\n/**\n *\n */\nexport declare namespace MapElementList {\n    /**\n     * Iterator of map container storing elements in a list.\n     *\n     * @template Key Key type\n     * @template T Mapped type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<Key, T, Unique extends boolean, Source extends MapContainer<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>>> extends ListIterator<Entry<Key, T>, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>, IPair<Key, T>> implements MapContainer.Iterator<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>> {\n        private list_;\n        private constructor();\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIterator<Key, T, Unique, Source>;\n        /**\n         * @inheritDoc\n         */\n        source(): Source;\n        /**\n         * @inheritDoc\n         */\n        get first(): Key;\n        /**\n         * @inheritDoc\n         */\n        get second(): T;\n        /**\n         * @inheritDoc\n         */\n        set second(val: T);\n    }\n    /**\n     * Reverse iterator of map container storing elements a list.\n     *\n     * @template Key Key type\n     * @template T Mapped type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class ReverseIterator<Key, T, Unique extends boolean, Source extends MapContainer<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>>> extends _ReverseIterator<Entry<Key, T>, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>, IPair<Key, T>> implements MapContainer.ReverseIterator<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>> {\n        protected _Create_neighbor(base: Iterator<Key, T, Unique, Source>): ReverseIterator<Key, T, Unique, Source>;\n        /**\n         * Get the first, key element.\n         *\n         * @return The first element.\n         */\n        get first(): Key;\n        /**\n         * Get the second, stored element.\n         *\n         * @return The second element.\n         */\n        get second(): T;\n        /**\n         * Set the second, stored element.\n         *\n         * @param val The value to set.\n         */\n        set second(val: T);\n    }\n}\n",
    "node_modules/tstl/lib/internal/container/associative/MapElementVector.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { VectorContainer } from \"../linear/VectorContainer\";\nimport { ArrayIteratorBase } from \"../../iterator/ArrayIteratorBase\";\nimport { ArrayReverseIteratorBase } from \"../../iterator/ArrayReverseIteratorBase\";\nimport { ITreeMap } from \"../../../base/container/ITreeMap\";\nimport { IPair } from \"../../../utility/IPair\";\nimport { Entry } from \"../../../utility/Entry\";\n/**\n * Vector storing map elements.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Source type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MapElementVector<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, MapElementVector.Iterator<Key, T, Unique, Source>, MapElementVector.ReverseIterator<Key, T, Unique, Source>>> extends VectorContainer<Entry<Key, T>, Source, MapElementVector<Key, T, Unique, Source>, MapElementVector.Iterator<Key, T, Unique, Source>, MapElementVector.ReverseIterator<Key, T, Unique, Source>> {\n    private associative_;\n    constructor(associative: Source);\n    nth(index: number): MapElementVector.Iterator<Key, T, Unique, Source>;\n    source(): Source;\n}\n/**\n *\n */\nexport declare namespace MapElementVector {\n    /**\n     * Iterator of map container storing elements in a vector.\n     *\n     * @template Key Key type\n     * @template T Mapped type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>>> extends ArrayIteratorBase<Entry<Key, T>, Source, MapElementVector<Key, T, Unique, Source>, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>, IPair<Key, T>> implements ITreeMap.Iterator<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>> {\n        /**\n         * @inheritDoc\n         */\n        source(): Source;\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIterator<Key, T, Unique, Source>;\n        /**\n         * @inheritDoc\n         */\n        get first(): Key;\n        /**\n         * @inheritDoc\n         */\n        get second(): T;\n        /**\n         * @inheritDoc\n         */\n        set second(val: T);\n    }\n    /**\n     * Reverse iterator of map container storing elements in a vector.\n     *\n     * @template Key Key type\n     * @template T Mapped type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class ReverseIterator<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>>> extends ArrayReverseIteratorBase<Entry<Key, T>, Source, MapElementVector<Key, T, Unique, Source>, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>, IPair<Key, T>> implements ITreeMap.ReverseIterator<Key, T, Unique, Source, Iterator<Key, T, Unique, Source>, ReverseIterator<Key, T, Unique, Source>> {\n        protected _Create_neighbor(base: Iterator<Key, T, Unique, Source>): ReverseIterator<Key, T, Unique, Source>;\n        /**\n         * @inheritDoc\n         */\n        get first(): Key;\n        /**\n         * @inheritDoc\n         */\n        get second(): T;\n        /**\n         * @inheritDoc\n         */\n        set second(val: T);\n    }\n}\n",
    "node_modules/tstl/lib/internal/container/associative/MultiTreeMap.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { MultiMap } from \"../../../base/container/MultiMap\";\nimport { ITreeContainer } from \"./ITreeContainer\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { IPair } from \"../../../utility/IPair\";\nimport { Entry } from \"../../../utility/Entry\";\nimport { Pair } from \"../../../utility/Pair\";\nimport { Comparator } from \"../../functional/Comparator\";\n/**\n * Basic tree map allowing duplicated keys.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link MultiTreeMap}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class MultiTreeMap<Key, T, Source extends MultiTreeMap<Key, T, Source, IteratorT, ReverseT>, IteratorT extends MultiMap.Iterator<Key, T, Source, IteratorT, ReverseT>, ReverseT extends MultiMap.ReverseIterator<Key, T, Source, IteratorT, ReverseT>> extends MultiMap<Key, T, Source, IteratorT, ReverseT> implements ITreeContainer<Key, Entry<Key, T>, Source, IteratorT, ReverseT, IPair<Key, T>> {\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    abstract lower_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract upper_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equal_range(key: Key): Pair<IteratorT, IteratorT>;\n    /**\n     * @inheritDoc\n     */\n    abstract key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    value_comp(): Comparator<IPair<Key, T>>;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    /**\n     * @inheritDoc\n     */\n    emplace(key: Key, val: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    emplace_hint(hint: IteratorT, key: Key, val: T): IteratorT;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<IPair<Key, T>, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n}\n",
    "node_modules/tstl/lib/internal/container/associative/MultiTreeSet.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { MultiSet } from \"../../../base/container/MultiSet\";\nimport { ITreeContainer } from \"./ITreeContainer\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { Pair } from \"../../../utility/Pair\";\nimport { Comparator } from \"../../functional/Comparator\";\n/**\n * Basic tree set allowing duplicated keys.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link MultiTreeSet}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class MultiTreeSet<Key, Source extends MultiTreeSet<Key, Source, IteratorT, ReverseT>, IteratorT extends MultiSet.Iterator<Key, Source, IteratorT, ReverseT>, ReverseT extends MultiSet.ReverseIterator<Key, Source, IteratorT, ReverseT>> extends MultiSet<Key, Source, IteratorT, ReverseT> implements ITreeContainer<Key, Key, Source, IteratorT, ReverseT, Key> {\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    count(key: Key): number;\n    /**\n     * @inheritDoc\n     */\n    abstract lower_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract upper_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equal_range(key: Key): Pair<IteratorT, IteratorT>;\n    /**\n     * @inheritDoc\n     */\n    abstract key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    value_comp(): Comparator<Key>;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    protected _Insert_by_key(key: Key): IteratorT;\n    protected _Insert_by_hint(hint: IteratorT, key: Key): IteratorT;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<Key, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n}\n",
    "node_modules/tstl/lib/internal/container/associative/SetElementList.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { ListContainer } from \"../linear/ListContainer\";\nimport { ListIterator } from \"../../iterator/ListIterator\";\nimport { ReverseIterator as _ReverseIterator } from \"../../iterator/ReverseIterator\";\nimport { SetContainer } from \"../../../base/container/SetContainer\";\n/**\n * Doubly Linked List storing set elements.\n *\n * @template Key Key type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Source container type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SetElementList<Key, Unique extends boolean, Source extends SetContainer<Key, Unique, Source, SetElementList.Iterator<Key, Unique, Source>, SetElementList.ReverseIterator<Key, Unique, Source>>> extends ListContainer<Key, Source, SetElementList.Iterator<Key, Unique, Source>, SetElementList.ReverseIterator<Key, Unique, Source>> {\n    private associative_;\n    constructor(associative: Source);\n    protected _Create_iterator(prev: SetElementList.Iterator<Key, Unique, Source>, next: SetElementList.Iterator<Key, Unique, Source>, val: Key): SetElementList.Iterator<Key, Unique, Source>;\n    associative(): Source;\n}\n/**\n *\n */\nexport declare namespace SetElementList {\n    /**\n     * Iterator of set container storing elements in a list.\n     *\n     * @template Key Key type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<Key, Unique extends boolean, Source extends SetContainer<Key, Unique, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>>> extends ListIterator<Key, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>, Key> implements SetContainer.Iterator<Key, Unique, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>> {\n        private source_;\n        private constructor();\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIterator<Key, Unique, Source>;\n        /**\n         * @inheritDoc\n         */\n        source(): Source;\n    }\n    /**\n     * Reverser iterator of set container storing elements in a list.\n     *\n     * @template Key Key type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class ReverseIterator<Key, Unique extends boolean, Source extends SetContainer<Key, Unique, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>>> extends _ReverseIterator<Key, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>, Key> implements SetContainer.ReverseIterator<Key, Unique, Source, Iterator<Key, Unique, Source>, ReverseIterator<Key, Unique, Source>> {\n        protected _Create_neighbor(base: Iterator<Key, Unique, Source>): ReverseIterator<Key, Unique, Source>;\n    }\n}\n",
    "node_modules/tstl/lib/internal/container/associative/SetElementVector.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { VectorContainer } from \"../linear/VectorContainer\";\nimport { ArrayIteratorBase } from \"../../iterator/ArrayIteratorBase\";\nimport { ArrayReverseIteratorBase } from \"../../iterator/ArrayReverseIteratorBase\";\nimport { ITreeSet } from \"../../../base/container/ITreeSet\";\n/**\n * Vector storing set elements.\n *\n * @template Key Key type\n * @template Unique Whether duplicated key is blocked or not\n * @template Source Source type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SetElementVector<Key, Unique extends boolean, Source extends ITreeSet<Key, Unique, Source, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>>> extends VectorContainer<Key, Source, SetElementVector<Key, Unique, Source>, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>> {\n    private associative_;\n    constructor(associative: Source);\n    nth(index: number): SetElementVector.Iterator<Key, Unique, Source>;\n    source(): Source;\n}\n/**\n *\n */\nexport declare namespace SetElementVector {\n    /**\n     * Iterator of set container storing elements in a vector.\n     *\n     * @template Key Key type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class Iterator<Key, Unique extends boolean, Source extends ITreeSet<Key, Unique, Source, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>>> extends ArrayIteratorBase<Key, Source, SetElementVector<Key, Unique, Source>, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>, Key> implements ITreeSet.Iterator<Key, Unique, Source, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>> {\n        /**\n         * @inheritDoc\n         */\n        source(): Source;\n        /**\n         * @inheritDoc\n         */\n        reverse(): ReverseIterator<Key, Unique, Source>;\n    }\n    /**\n     * Reverse iterator of set container storing elements in a vector.\n     *\n     * @template Key Key type\n     * @template Unique Whether duplicated key is blocked or not\n     * @template Source Source container type\n     *\n     * @author Jeongho Nam - https://github.com/samchon\n     */\n    class ReverseIterator<Key, Unique extends boolean, Source extends ITreeSet<Key, Unique, Source, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>>> extends ArrayReverseIteratorBase<Key, Source, SetElementVector<Key, Unique, Source>, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>, Key> implements ITreeSet.ReverseIterator<Key, Unique, Source, SetElementVector.Iterator<Key, Unique, Source>, SetElementVector.ReverseIterator<Key, Unique, Source>> {\n        protected _Create_neighbor(base: Iterator<Key, Unique, Source>): ReverseIterator<Key, Unique, Source>;\n    }\n}\n",
    "node_modules/tstl/lib/internal/container/associative/UniqueTreeMap.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { UniqueMap } from \"../../../base/container/UniqueMap\";\nimport { ITreeContainer } from \"./ITreeContainer\";\nimport { IPair } from \"../../../utility/IPair\";\nimport { Entry } from \"../../../utility/Entry\";\nimport { Pair } from \"../../../utility/Pair\";\nimport { Comparator } from \"../../functional/Comparator\";\n/**\n * Basic tree map blocking duplicated key.\n *\n * @template Key Key type\n * @template T Mapped type\n * @template Source Derived type extending this {@link UniqueTreeMap}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class UniqueTreeMap<Key, T, Source extends UniqueTreeMap<Key, T, Source, IteratorT, ReverseT>, IteratorT extends UniqueMap.Iterator<Key, T, Source, IteratorT, ReverseT>, ReverseT extends UniqueMap.ReverseIterator<Key, T, Source, IteratorT, ReverseT>> extends UniqueMap<Key, T, Source, IteratorT, ReverseT> implements ITreeContainer<Key, Entry<Key, T>, Source, IteratorT, ReverseT, IPair<Key, T>> {\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract lower_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract upper_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equal_range(key: Key): Pair<IteratorT, IteratorT>;\n    /**\n     * @inheritDoc\n     */\n    abstract key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    value_comp(): Comparator<IPair<Key, T>>;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    /**\n     * @inheritDoc\n     */\n    emplace(key: Key, val: T): Pair<IteratorT, boolean>;\n    /**\n     * @inheritDoc\n     */\n    emplace_hint(hint: IteratorT, key: Key, val: T): IteratorT;\n}\n",
    "node_modules/tstl/lib/internal/container/associative/UniqueTreeSet.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { UniqueSet } from \"../../../base/container/UniqueSet\";\nimport { ITreeContainer } from \"./ITreeContainer\";\nimport { Pair } from \"../../../utility/Pair\";\nimport { Comparator } from \"../../functional/Comparator\";\n/**\n * Basic tree set blocking duplicated key.\n *\n * @template Key Key type\n * @template Source Derived type extending this {@link UniqueTreeSet}\n * @template IteratorT Iterator type\n * @template ReverseT Reverse iterator type\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class UniqueTreeSet<Key, Source extends UniqueTreeSet<Key, Source, IteratorT, ReverseT>, IteratorT extends UniqueSet.Iterator<Key, Source, IteratorT, ReverseT>, ReverseT extends UniqueSet.ReverseIterator<Key, Source, IteratorT, ReverseT>> extends UniqueSet<Key, Source, IteratorT, ReverseT> implements ITreeContainer<Key, Key, Source, IteratorT, ReverseT, Key> {\n    /**\n     * @inheritDoc\n     */\n    find(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract lower_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract upper_bound(key: Key): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equal_range(key: Key): Pair<IteratorT, IteratorT>;\n    /**\n     * @inheritDoc\n     */\n    abstract key_comp(): Comparator<Key>;\n    /**\n     * @inheritDoc\n     */\n    value_comp(): Comparator<Key>;\n    protected _Key_eq(x: Key, y: Key): boolean;\n    protected _Insert_by_key(key: Key): Pair<IteratorT, boolean>;\n    protected _Insert_by_hint(hint: IteratorT, key: Key): IteratorT;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/AdaptorContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IEmpty } from \"../partial/IEmpty\";\nimport { IPush } from \"../partial/IPush\";\nimport { ISize } from \"../partial/ISize\";\n/**\n * Base class for Adaptor Containers.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class AdaptorContainer<T, Source extends IEmpty & ISize & IPush<T>, This extends AdaptorContainer<T, Source, This>> implements IEmpty, ISize, IPush<T> {\n    protected source_: Source;\n    protected constructor(source: Source);\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    empty(): boolean;\n    /**\n     * @inheritDoc\n     */\n    push(...elems: T[]): number;\n    /**\n     * Remove element.\n     */\n    abstract pop(): void;\n    /**\n     * Swap elements.\n     *\n     * @param obj Target container to swap.\n     */\n    swap(obj: This): void;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/ArrayContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { ILinearContainerBase } from \"./ILinearContainerBase\";\nimport { Container } from \"../../../base/container/Container\";\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { ArrayIteratorBase } from \"../../iterator/ArrayIteratorBase\";\nimport { ArrayReverseIteratorBase } from \"../../iterator/ArrayReverseIteratorBase\";\n/**\n * Base array container.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ArrayContainer<T extends ElemT, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, ElemT>, ArrayT extends ArrayContainer<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, IteratorT extends ArrayIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ReverseT extends ArrayReverseIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ElemT> extends Container<T, SourceT, IteratorT, ReverseT, ElemT> implements ILinearContainerBase<T, SourceT, IteratorT, ReverseT, ElemT> {\n    /**\n     * @inheritDoc\n     */\n    abstract resize(n: number): void;\n    protected abstract source(): SourceT;\n    /**\n     * @inheritDoc\n     */\n    begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    end(): IteratorT;\n    abstract nth(index: number): IteratorT;\n    /**\n     * Get element at specific position.\n     *\n     * @param index Specific position.\n     * @return The element at the *index*.\n     */\n    at(index: number): T;\n    protected abstract _At(index: number): T;\n    /**\n     * Change element at specific position.\n     *\n     * @param index Specific position.\n     * @param val The new value to change.\n     */\n    set(index: number, val: T): void;\n    protected abstract _Set(index: number, val: T): void;\n    /**\n     * @inheritDoc\n     */\n    front(): T;\n    /**\n     * @inheritDoc\n     */\n    front(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    back(): T;\n    /**\n     * @inheritDoc\n     */\n    back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    abstract push_back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    insert(pos: IteratorT, val: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    insert(pos: IteratorT, n: number, val: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: IteratorT, first: InputIterator, last: InputIterator): IteratorT;\n    protected _Insert_by_repeating_val(position: IteratorT, n: number, val: T): IteratorT;\n    protected abstract _Insert_by_range<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: IteratorT, first: InputIterator, last: InputIterator): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    pop_back(): void;\n    protected abstract _Pop_back(): void;\n    /**\n     * @inheritDoc\n     */\n    erase(it: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(first: IteratorT, last: IteratorT): IteratorT;\n    protected abstract _Erase_by_range(first: IteratorT, last: IteratorT): IteratorT;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/ILinearContainerBase.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { IPushBack } from \"../partial/IPushBack\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nexport interface ILinearContainerBase<T extends ElemT, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, T>, IteratorT extends IContainer.Iterator<T, SourceT, IteratorT, ReverseT, T>, ReverseT extends IContainer.ReverseIterator<T, SourceT, IteratorT, ReverseT, T>, ElemT = T> extends IContainer<T, SourceT, IteratorT, ReverseT, ElemT>, IPushBack<T> {\n    /**\n     * Fill Assigner.\n     *\n     * @param n Initial size.\n     * @param val Value to fill.\n     */\n    assign(n: number, val: T): void;\n    /**\n     * Range Assigner.\n     *\n     * @param first Input iterator of the first position.\n     * @param last Input iterator of the last position.\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * Resize this {@link Vector} forcibly.\n     *\n     * @param n New container size.\n     */\n    resize(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: T): void;\n    /**\n     * Erase the last element.\n     */\n    pop_back(): void;\n    /**\n     * Insert a single element.\n     *\n     * @param pos Position to insert.\n     * @param val Value to insert.\n     * @return An iterator to the newly inserted element.\n     */\n    insert(pos: IteratorT, val: T): IteratorT;\n    /**\n     * Insert repeated elements.\n     *\n     * @param pos Position to insert.\n     * @param n Number of elements to insert.\n     * @param val Value to insert repeatedly.\n     * @return An iterator to the first of the newly inserted elements.\n     */\n    insert(pos: IteratorT, n: number, val: T): IteratorT;\n    /**\n     * Insert range elements.\n     *\n     * @param pos Position to insert.\n     * @param first Input iterator of the first position.\n     * @param last Input iteartor of the last position.\n     * @return An iterator to the first of the newly inserted elements.\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(pos: IteratorT, first: InputIterator, last: InputIterator): IteratorT;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/IListAlgorithm.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { BinaryPredicator } from \"../../functional/BinaryPredicator\";\nimport { Comparator } from \"../../functional/Comparator\";\nimport { UnaryPredicator } from \"../../functional/UnaryPredicator\";\nexport interface IListAlgorithm<T, Source> {\n    /**\n     * Remove duplicated elements.\n     *\n     * @param binary_pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n     */\n    unique(binary_pred?: BinaryPredicator<T>): void;\n    /**\n     * Remove elements with specific value.\n     *\n     * @param val The value to remove.\n     */\n    remove(val: T): void;\n    /**\n     * Remove elements with specific function.\n     *\n     * @param pred A unary function determines whether remove or not.\n     */\n    remove_if(pred: UnaryPredicator<T>): void;\n    /**\n     * Merge two *sorted* containers.\n     *\n     * @param source Source container to transfer.\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n     */\n    merge(from: Source, comp?: Comparator<T>): void;\n    /**\n     * Sort elements.\n     *\n     * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n     */\n    sort(comp?: Comparator<T>): void;\n    /**\n     * Reverse elements.\n     */\n    reverse(): void;\n    /**\n     * Swap elements.\n     *\n     * @param obj Target container to swap.\n     */\n    swap(obj: Source): void;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/ListContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { ILinearContainerBase } from \"./ILinearContainerBase\";\nimport { Container } from \"../../../base/container/Container\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { ReverseIterator } from \"../../iterator/ReverseIterator\";\nimport { ListIterator } from \"../../iterator/ListIterator\";\n/**\n * Basic List Container.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ListContainer<T, SourceT extends IContainer<T, SourceT, IteratorT, ReverseIteratorT, T>, IteratorT extends ListIterator<T, SourceT, IteratorT, ReverseIteratorT, T>, ReverseIteratorT extends ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, T>> extends Container<T, SourceT, IteratorT, ReverseIteratorT, T> implements ILinearContainerBase<T, SourceT, IteratorT, ReverseIteratorT, T> {\n    private size_;\n    protected begin_: IteratorT;\n    protected end_: IteratorT;\n    /**\n     * Default Constructor.\n     */\n    protected constructor();\n    protected abstract _Create_iterator(prev: IteratorT, next: IteratorT, val?: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    assign(n: number, val: T): void;\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(first: InputIterator, last: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    resize(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    begin(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    end(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    /**\n     * @inheritDoc\n     */\n    push_front(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: T): void;\n    /**\n     * @inheritDoc\n     */\n    pop_front(): void;\n    /**\n     * @inheritDoc\n     */\n    pop_back(): void;\n    /**\n     * @inheritDoc\n     */\n    push(...items: T[]): number;\n    /**\n     * @inheritDoc\n     */\n    insert(position: IteratorT, val: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    insert(position: IteratorT, size: number, val: T): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    insert<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(position: IteratorT, begin: InputIterator, end: InputIterator): IteratorT;\n    private _Insert_by_repeating_val;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(position: IteratorT, begin: InputIterator, end: InputIterator): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(position: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    erase(first: IteratorT, last: IteratorT): IteratorT;\n    protected _Erase_by_range(first: IteratorT, last: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: SourceT): void;\n}\n",
    "node_modules/tstl/lib/internal/container/linear/VectorContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { ArrayContainer } from \"./ArrayContainer\";\nimport { IContainer } from \"../../../base/container/IContainer\";\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { ArrayIteratorBase } from \"../../iterator/ArrayIteratorBase\";\nimport { ArrayReverseIteratorBase } from \"../../iterator/ArrayReverseIteratorBase\";\nexport declare abstract class VectorContainer<T, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, T>, ArrayT extends VectorContainer<T, SourceT, ArrayT, IteratorT, ReverseT>, IteratorT extends ArrayIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, T>, ReverseT extends ArrayReverseIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, T>> extends ArrayContainer<T, SourceT, ArrayT, IteratorT, ReverseT, T> {\n    protected data_: T[];\n    /**\n     * Default Constructor.\n     */\n    protected constructor();\n    /**\n     * @inheritDoc\n     */\n    assign(n: number, val: T): void;\n    /**\n     * @inheritDoc\n     */\n    assign<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(begin: InputIterator, end: InputIterator): void;\n    /**\n     * @inheritDoc\n     */\n    clear(): void;\n    /**\n     * @inheritDoc\n     */\n    resize(n: number): void;\n    /**\n     * @inheritDoc\n     */\n    size(): number;\n    protected _At(index: number): T;\n    protected _Set(index: number, val: T): void;\n    /**\n     * Access data.\n     *\n     * @return An array capsuled by this {@link Vector}.\n     */\n    data(): Array<T>;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n    /**\n     * @inheritDoc\n     */\n    push(...items: T[]): number;\n    /**\n     * @inheritDoc\n     */\n    push_back(val: T): void;\n    protected _Insert_by_range<InputIterator extends Readonly<IForwardIterator<T, InputIterator>>>(position: IteratorT, first: InputIterator, last: InputIterator): IteratorT;\n    protected _Pop_back(): void;\n    protected _Erase_by_range(first: IteratorT, last: IteratorT): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equals(obj: SourceT): boolean;\n    /**\n     * @inheritDoc\n     */\n    swap(obj: SourceT): void;\n    /**\n     * @inheritDoc\n     */\n    toJSON(): Array<T>;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IClear.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IClear {\n    /**\n     * Clear elements.\n     */\n    clear(): void;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IDeque.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IPushFront } from \"./IPushFront\";\nexport interface IDeque<T> extends IPushFront<T> {\n    /**\n     * Erase the first element.\n     */\n    pop_front(): void;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IEmpty.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IEmpty {\n    /**\n     * Test whether container is empty.\n     */\n    empty(): boolean;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IFront.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IFront<T> {\n    /**\n     * Get the first element.\n     *\n     * @return The first element.\n     */\n    front(): T;\n    /**\n     * Change the first element.\n     *\n     * @param val The value to change.\n     */\n    front(val: T): void;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IInsert.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nimport { IPointer } from \"../../../functional/IPointer\";\nexport interface IInsert<Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>> {\n    insert(it: Iterator, value: IPointer.ValueType<Iterator>): Iterator;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IPush.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IPush<T> {\n    /**\n     * Insert items at the end.\n     *\n     * @param items Items to insert.\n     * @return Number of elements in the container after insertion.\n     */\n    push(...items: T[]): number;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IPushBack.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IPushBack<T> {\n    /**\n     * Insert an element at the end.\n     *\n     * @param val Value to insert.\n     */\n    push_back(val: T): void;\n}\nexport declare namespace IPushBack {\n    type ContainerType<Range extends IPushBack<any>> = Range extends IPushBack<any> ? Range : unknown;\n    type IteratorType<Range extends IPushBack<any>> = Range extends IPushBack<infer Iterator> ? Iterator : unknown;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/IPushFront.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface IPushFront<T> {\n    /**\n     * Insert an element at the first.\n     *\n     * @param val Value to insert.\n     */\n    push_front(val: T): void;\n}\n",
    "node_modules/tstl/lib/internal/container/partial/ISize.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport interface ISize {\n    /**\n     * Number of elements in the container.\n     */\n    size(): number;\n}\n",
    "node_modules/tstl/lib/internal/exception/ErrorGenerator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { InvalidArgument } from \"../../exception/InvalidArgument\";\nimport { OutOfRange } from \"../../exception/OutOfRange\";\nexport declare namespace ErrorGenerator {\n    function get_class_name(instance: string | Instance): string;\n    function empty(instance: Instance, method: string): OutOfRange;\n    function negative_index(instance: Instance, method: string, index: number): OutOfRange;\n    function excessive_index(instance: Instance, method: string, index: number, size: number): OutOfRange;\n    function not_my_iterator(instance: Instance, method: string): InvalidArgument;\n    function erased_iterator(instance: Instance, method: string): InvalidArgument;\n    function negative_iterator(instance: Instance, method: string, index: number): OutOfRange;\n    function iterator_end_value(instance: Instance, method?: string): OutOfRange;\n    function key_nout_found<Key>(instance: Instance, method: string, key: Key): OutOfRange;\n}\ninterface Instance {\n    constructor: {\n        name: string;\n        __MODULE?: string;\n    };\n}\nexport {};\n",
    "node_modules/tstl/lib/internal/exception/ErrorInstance.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { ErrorCategory } from \"../../exception/ErrorCategory\";\n/**\n * Base class for error instances.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ErrorInstance {\n    protected category_: ErrorCategory;\n    protected value_: number;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Initializer Constructor.\n     *\n     * @param val Identifier of an error instance.\n     * @param category An error category instance.\n     */\n    constructor(val: number, category: ErrorCategory);\n    /**\n     * Assign content.\n     *\n     * @param val Identifier of an error condition.\n     * @param category An error category instance.\n     */\n    assign(val: number, category: ErrorCategory): void;\n    /**\n     * Clear content.\n     */\n    clear(): void;\n    /**\n     * Get category.\n     *\n     * @return The category object.\n     */\n    category(): ErrorCategory;\n    /**\n     * Get value, the identifier.\n     *\n     * @return The value, identifier of this object.\n     */\n    value(): number;\n    /**\n     * Get message.\n     *\n     * @return The message.\n     */\n    message(): string;\n    /**\n     * Covert bo bool.\n     *\n     * @return Whether the {@link value} is not zero.\n     */\n    to_bool(): boolean;\n    toJSON(): object;\n}\n",
    "node_modules/tstl/lib/internal/functional/BinaryPredicator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type BinaryPredicator<X, Y = X> = (x: X, y: Y) => boolean;\n",
    "node_modules/tstl/lib/internal/functional/Comparator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type Comparator<X, Y = X> = (x: X, y: Y) => boolean;\n",
    "node_modules/tstl/lib/internal/functional/General.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type General<T> = T;\n",
    "node_modules/tstl/lib/internal/functional/Hasher.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type Hasher<Key> = (key: Key) => number;\n",
    "node_modules/tstl/lib/internal/functional/Temporary.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type Temporary = any;\n",
    "node_modules/tstl/lib/internal/functional/UnaryPredicator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type UnaryPredicator<T> = (val: T) => boolean;\n",
    "node_modules/tstl/lib/internal/functional/Writeonly.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport type Writeonly<T> = T;\n",
    "node_modules/tstl/lib/internal/hash/HashBuckets.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { Hasher } from \"../functional/Hasher\";\n/**\n * Hash buckets\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class HashBuckets<Key, Elem> {\n    private readonly fetcher_;\n    private readonly hasher_;\n    private max_load_factor_;\n    private data_;\n    private size_;\n    constructor(fetcher: Fetcher<Key, Elem>, hasher: Hasher<Key>);\n    clear(): void;\n    rehash(length: number): void;\n    reserve(length: number): void;\n    private initialize;\n    length(): number;\n    capacity(): number;\n    at(index: number): Elem[];\n    load_factor(): number;\n    max_load_factor(): number;\n    max_load_factor(z: number): void;\n    hash_function(): Hasher<Key>;\n    private index;\n    insert(val: Elem): void;\n    erase(val: Elem): void;\n}\ntype Fetcher<Key, Elem> = (elem: Elem) => Key;\nexport {};\n",
    "node_modules/tstl/lib/internal/hash/MapHashBuckets.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { HashBuckets } from \"./HashBuckets\";\nimport { IHashMap } from \"../../base/container/IHashMap\";\nimport { Comparator } from \"../functional/Comparator\";\nimport { Hasher } from \"../functional/Hasher\";\n/**\n * Hash buckets for map containers.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MapHashBuckets<Key, T, Unique extends boolean, Source extends IHashMap<Key, T, Unique, Source>> extends HashBuckets<Key, IHashMap.Iterator<Key, T, Unique, Source>> {\n    private source_;\n    private readonly key_eq_;\n    /**\n     * Initializer Constructor\n     *\n     * @param source Source map container\n     * @param hasher Hash function\n     * @param pred Equality function\n     */\n    constructor(source: Source, hasher: Hasher<Key>, pred: Comparator<Key>);\n    key_eq(): Comparator<Key>;\n    find(key: Key): IHashMap.Iterator<Key, T, Unique, Source>;\n}\n",
    "node_modules/tstl/lib/internal/hash/SetHashBuckets.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { HashBuckets } from \"./HashBuckets\";\nimport { IHashSet } from \"../../base/container/IHashSet\";\nimport { Comparator } from \"../functional/Comparator\";\nimport { Hasher } from \"../functional/Hasher\";\n/**\n * Hash buckets for set containers\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SetHashBuckets<Key, Unique extends boolean, Source extends IHashSet<Key, Unique, Source>> extends HashBuckets<Key, IHashSet.Iterator<Key, Unique, Source>> {\n    private source_;\n    private readonly key_eq_;\n    /**\n     * Initializer Constructor\n     *\n     * @param source Source set container\n     * @param hasher Hash function\n     * @param pred Equality function\n     */\n    constructor(source: IHashSet<Key, Unique, Source>, hasher: Hasher<Key>, pred: Comparator<Key>);\n    key_eq(): Comparator<Key>;\n    find(val: Key): IHashSet.Iterator<Key, Unique, Source>;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ArrayIterator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IArrayContainer } from \"../../base/container/IArrayContainer\";\nimport { ArrayIteratorBase } from \"./ArrayIteratorBase\";\nimport { ArrayContainer } from \"../container/linear/ArrayContainer\";\nimport { ArrayReverseIterator } from \"./ArrayReverseIterator\";\nexport declare class ArrayIterator<T, SourceT extends ArrayContainer<T, SourceT, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>, T>> extends ArrayIteratorBase<T, SourceT, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>, T> implements IArrayContainer.Iterator<T, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>> {\n    /**\n     * @inheritDoc\n     */\n    reverse(): ArrayReverseIterator<T, SourceT>;\n    /**\n     * @inheritDoc\n     */\n    source(): SourceT;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ArrayIteratorBase.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IContainer } from \"../../base/container/IContainer\";\nimport { IRandomAccessIterator } from \"../../iterator/IRandomAccessIterator\";\nimport { ArrayContainer } from \"../container/linear/ArrayContainer\";\nimport { ArrayReverseIteratorBase } from \"./ArrayReverseIteratorBase\";\n/**\n * Iterator of Array Containers.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ArrayIteratorBase<T extends ElemT, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, ElemT>, ArrayT extends ArrayContainer<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, IteratorT extends ArrayIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ReverseT extends ArrayReverseIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ElemT> implements IContainer.Iterator<T, SourceT, IteratorT, ReverseT, ElemT>, IRandomAccessIterator<T, IteratorT> {\n    private array_;\n    private index_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param source Source container.\n     * @param index Index number.\n     */\n    constructor(array: ArrayT, index: number);\n    /**\n     * @inheritDoc\n     */\n    abstract reverse(): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    abstract source(): SourceT;\n    /**\n     * @inheritDoc\n     */\n    index(): number;\n    /**\n     * @inheritDoc\n     */\n    get value(): T;\n    /**\n     * @inheritDoc\n     */\n    set value(val: T);\n    /**\n     * @inheritDoc\n     */\n    prev(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    next(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    advance(n: number): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    equals(obj: IteratorT): boolean;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ArrayReverseIterator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IArrayContainer } from \"../../base/container/IArrayContainer\";\nimport { ArrayReverseIteratorBase } from \"./ArrayReverseIteratorBase\";\nimport { ArrayContainer } from \"../container/linear/ArrayContainer\";\nimport { ArrayIterator } from \"./ArrayIterator\";\nexport declare class ArrayReverseIterator<T, SourceT extends ArrayContainer<T, SourceT, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>, T>> extends ArrayReverseIteratorBase<T, SourceT, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>, T> implements IArrayContainer.ReverseIterator<T, SourceT, ArrayIterator<T, SourceT>, ArrayReverseIterator<T, SourceT>> {\n    protected _Create_neighbor(base: ArrayIterator<T, SourceT>): ArrayReverseIterator<T, SourceT>;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ArrayReverseIteratorBase.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IRandomAccessIterator } from \"../../iterator/IRandomAccessIterator\";\nimport { ReverseIterator } from \"./ReverseIterator\";\nimport { IContainer } from \"../../base/container/IContainer\";\nimport { ArrayContainer } from \"../container/linear/ArrayContainer\";\nimport { ArrayIteratorBase } from \"./ArrayIteratorBase\";\n/**\n * Reverse iterator of Array Containers.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ArrayReverseIteratorBase<T extends ElemT, SourceT extends IContainer<T, SourceT, IteratorT, ReverseT, ElemT>, ArrayT extends ArrayContainer<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, IteratorT extends ArrayIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ReverseT extends ArrayReverseIteratorBase<T, SourceT, ArrayT, IteratorT, ReverseT, ElemT>, ElemT> extends ReverseIterator<T, SourceT, IteratorT, ReverseT, ElemT> implements IRandomAccessIterator<T, ReverseT> {\n    /**\n     * @inheritDoc\n     */\n    advance(n: number): ReverseT;\n    /**\n     * @inheritDoc\n     */\n    index(): number;\n    /**\n     * @inheritDoc\n     */\n    get value(): T;\n    /**\n     * @inheritDoc\n     */\n    set value(val: T);\n}\n",
    "node_modules/tstl/lib/internal/iterator/InsertIteratorBase.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Writeonly } from \"../functional/Writeonly\";\nexport declare abstract class InsertIteratorBase<T, This extends InsertIteratorBase<T, This>> implements Writeonly<IForwardIterator<T, This>> {\n    /**\n     * Set value.\n     *\n     * @param val The value to set.\n     */\n    abstract set value(val: T);\n    /**\n     * @inheritDoc\n     */\n    next(): This;\n    /**\n     * @inheritDoc\n     */\n    abstract equals(obj: This): boolean;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ListIterator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IContainer } from \"../../base/container/IContainer\";\nimport { ReverseIterator } from \"./ReverseIterator\";\n/**\n * Basic List Iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ListIterator<T extends Elem, SourceT extends IContainer<T, SourceT, IteratorT, ReverseIteratorT, Elem>, IteratorT extends ListIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, ReverseIteratorT extends ReverseIterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>, Elem> implements Readonly<IContainer.Iterator<T, SourceT, IteratorT, ReverseIteratorT, Elem>> {\n    private prev_;\n    private next_;\n    protected value_: T;\n    protected constructor(prev: IteratorT, next: IteratorT, value: T);\n    /**\n     * @inheritDoc\n     */\n    abstract reverse(): ReverseIteratorT;\n    /**\n     * @inheritDoc\n     */\n    abstract source(): SourceT;\n    /**\n     * @inheritDoc\n     */\n    prev(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    next(): IteratorT;\n    /**\n     * @inheritDoc\n     */\n    get value(): T;\n    protected _Try_value(): void;\n    /**\n     * @inheritDoc\n     */\n    equals(obj: IteratorT): boolean;\n}\n",
    "node_modules/tstl/lib/internal/iterator/ReverseIterator.d.ts": "/**\n * @packageDocumentation\n * @module std.base\n */\nimport { IContainer } from \"../../base/container/IContainer\";\n/**\n * Basic reverse iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class ReverseIterator<T extends PElem, Source extends IContainer<T, Source, Base, This, PElem>, Base extends IContainer.Iterator<T, Source, Base, This, PElem>, This extends ReverseIterator<T, Source, Base, This, PElem>, PElem = T> implements IContainer.ReverseIterator<T, Source, Base, This, PElem> {\n    protected base_: Base;\n    /**\n     * Initializer Constructor.\n     *\n     * @param base The base iterator.\n     */\n    constructor(base: Base);\n    protected abstract _Create_neighbor(base: Base): This;\n    /**\n     * Get source container.\n     *\n     * @return The source container.\n     */\n    source(): Source;\n    /**\n     * @inheritDoc\n     */\n    base(): Base;\n    /**\n     * @inheritDoc\n     */\n    get value(): T;\n    /**\n     * @inheritDoc\n     */\n    prev(): This;\n    /**\n     * @inheritDoc\n     */\n    next(): This;\n    /**\n     * @inheritDoc\n     */\n    equals(obj: This): boolean;\n}\n",
    "node_modules/tstl/lib/internal/iterator/disposable/ForOfAdaptor.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\n/**\n * Adaptor for `for ... of` iteration.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ForOfAdaptor<T, InputIterator extends Readonly<IForwardIterator<T, InputIterator>>> implements IterableIterator<T> {\n    private it_;\n    private last_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param first Input iteartor of the first position.\n     * @param last Input iterator of the last position.\n     */\n    constructor(first: InputIterator, last: InputIterator);\n    /**\n     * @inheritDoc\n     */\n    next(): IteratorResult<T>;\n    /**\n     * @inheritDoc\n     */\n    [Symbol.iterator](): IterableIterator<T>;\n}\n",
    "node_modules/tstl/lib/internal/iterator/disposable/NativeArrayIterator.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nexport declare class NativeArrayIterator<T> implements Readonly<IForwardIterator<T, NativeArrayIterator<T>>> {\n    private data_;\n    private index_;\n    constructor(data: Array<T>, index: number);\n    index(): number;\n    get value(): T;\n    prev(): NativeArrayIterator<T>;\n    next(): NativeArrayIterator<T>;\n    advance(n: number): NativeArrayIterator<T>;\n    equals(obj: NativeArrayIterator<T>): boolean;\n    swap(obj: NativeArrayIterator<T>): void;\n}\n",
    "node_modules/tstl/lib/internal/iterator/disposable/Repeater.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { IForwardIterator } from \"../../../iterator/IForwardIterator\";\nexport declare class Repeater<T> implements Readonly<IForwardIterator<T, Repeater<T>>> {\n    private index_;\n    private value_;\n    constructor(index: number, value?: T);\n    index(): number;\n    get value(): T;\n    next(): Repeater<T>;\n    equals(obj: Repeater<T>): boolean;\n}\n",
    "node_modules/tstl/lib/internal/numeric/Carlson.d.ts": "export declare namespace Carlson {\n    function rf(x: number, y: number, z: number): number;\n    function rj(x: number, y: number, z: number, p: number): number;\n    function rc(x: number, y: number): number;\n    function rd(x: number, y: number, z: number): number;\n}\n",
    "node_modules/tstl/lib/internal/numeric/MathUtil.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport declare namespace MathUtil {\n    function factorial(k: number): number;\n    function integral(formula: (x: number) => number, first: number, last: number, segment_count?: number): number;\n    function sigma(formula: (k: number) => number, first: number, last: number): number;\n}\n",
    "node_modules/tstl/lib/internal/thread/AccessType.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport declare const enum AccessType {\n    WRITE = 0,\n    READ = 1\n}\n",
    "node_modules/tstl/lib/internal/thread/LockType.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport declare const enum LockType {\n    HOLD = 0,\n    KNOCK = 1\n}\n",
    "node_modules/tstl/lib/internal/thread/SafeLock.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport declare namespace SafeLock {\n    function lock(locker: () => Promise<void>, unlocker: () => Promise<void>, lambda: () => void | Promise<void>): Promise<void>;\n    function try_lock(locker: () => Promise<boolean>, unlocker: () => Promise<void>, lambda: () => void | Promise<void>): Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/internal/tree/Color.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nexport declare const enum Color {\n    BLACK = 0,\n    RED = 1\n}\n",
    "node_modules/tstl/lib/internal/tree/MapTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { XTree } from \"./XTree\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { ITreeMap } from \"../../base/container/ITreeMap\";\nimport { MapElementList } from \"../container/associative/MapElementList\";\nimport { IPair } from \"../../utility/IPair\";\nimport { Pair } from \"../../utility/Pair\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare abstract class MapTree<Key, T, Unique extends boolean, Source extends ITreeMap<Key, T, Unique, Source, MapElementList.Iterator<Key, T, Unique, Source>, MapElementList.ReverseIterator<Key, T, Unique, Source>>> extends XTree<MapElementList.Iterator<Key, T, Unique, Source>> {\n    private source_;\n    private key_compare_;\n    private key_eq_;\n    private value_compare_;\n    constructor(source: Source, comp: Comparator<Key>, it_comp: Comparator<MapElementList.Iterator<Key, T, Unique, Source>>);\n    get_by_key(key: Key): XTreeNode<MapElementList.Iterator<Key, T, Unique, Source>> | null;\n    abstract nearest_by_key(key: Key): XTreeNode<MapElementList.Iterator<Key, T, Unique, Source>> | null;\n    lower_bound(key: Key): MapElementList.Iterator<Key, T, Unique, Source>;\n    abstract upper_bound(key: Key): MapElementList.Iterator<Key, T, Unique, Source>;\n    equal_range(key: Key): Pair<MapElementList.Iterator<Key, T, Unique, Source>, MapElementList.Iterator<Key, T, Unique, Source>>;\n    source(): Source;\n    key_comp(): Comparator<Key>;\n    key_eq(): Comparator<Key>;\n    value_comp(): Comparator<IPair<Key, T>>;\n}\n",
    "node_modules/tstl/lib/internal/tree/MultiMapTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { MapTree } from \"./MapTree\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { MultiTreeMap } from \"../container/associative/MultiTreeMap\";\nimport { MapElementList } from \"../container/associative/MapElementList\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare class MultiMapTree<Key, T, Source extends MultiTreeMap<Key, T, Source, MapElementList.Iterator<Key, T, false, Source>, MapElementList.ReverseIterator<Key, T, false, Source>>> extends MapTree<Key, T, false, Source> {\n    constructor(source: Source, comp: Comparator<Key>);\n    insert(val: MapElementList.Iterator<Key, T, false, Source>): void;\n    private _Nearest_by_key;\n    nearest_by_key(key: Key): XTreeNode<MapElementList.Iterator<Key, T, false, Source>> | null;\n    upper_bound(key: Key): MapElementList.Iterator<Key, T, false, Source>;\n}\n",
    "node_modules/tstl/lib/internal/tree/MultiSetTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { SetTree } from \"./SetTree\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { MultiTreeSet } from \"../container/associative/MultiTreeSet\";\nimport { SetElementList } from \"../container/associative/SetElementList\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare class MultiSetTree<Key, Source extends MultiTreeSet<Key, Source, SetElementList.Iterator<Key, false, Source>, SetElementList.ReverseIterator<Key, false, Source>>> extends SetTree<Key, false, Source> {\n    constructor(source: Source, comp: Comparator<Key>);\n    insert(val: SetElementList.Iterator<Key, false, Source>): void;\n    private _Nearest_by_key;\n    nearest_by_key(val: Key): XTreeNode<SetElementList.Iterator<Key, false, Source>> | null;\n    upper_bound(val: Key): SetElementList.Iterator<Key, false, Source>;\n}\n",
    "node_modules/tstl/lib/internal/tree/SetTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { XTree } from \"./XTree\";\nimport { ITreeSet } from \"../../base/container/ITreeSet\";\nimport { SetElementList } from \"../container/associative/SetElementList\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { Pair } from \"../../utility/Pair\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare abstract class SetTree<Key, Unique extends boolean, Source extends ITreeSet<Key, Unique, Source, SetElementList.Iterator<Key, Unique, Source>, SetElementList.ReverseIterator<Key, Unique, Source>>> extends XTree<SetElementList.Iterator<Key, Unique, Source>> {\n    private source_;\n    private key_comp_;\n    private key_eq_;\n    constructor(set: Source, comp: Comparator<Key>, it_comp: Comparator<SetElementList.Iterator<Key, Unique, Source>>);\n    get_by_key(val: Key): XTreeNode<SetElementList.Iterator<Key, Unique, Source>> | null;\n    abstract nearest_by_key(val: Key): XTreeNode<SetElementList.Iterator<Key, Unique, Source>> | null;\n    lower_bound(val: Key): SetElementList.Iterator<Key, Unique, Source>;\n    abstract upper_bound(val: Key): SetElementList.Iterator<Key, Unique, Source>;\n    equal_range(val: Key): Pair<SetElementList.Iterator<Key, Unique, Source>, SetElementList.Iterator<Key, Unique, Source>>;\n    source(): Source;\n    key_comp(): Comparator<Key>;\n    key_eq(): Comparator<Key>;\n    value_comp(): Comparator<Key>;\n}\n",
    "node_modules/tstl/lib/internal/tree/UniqueMapTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { MapTree } from \"./MapTree\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { UniqueTreeMap } from \"../container/associative/UniqueTreeMap\";\nimport { MapElementList } from \"../container/associative/MapElementList\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare class UniqueMapTree<Key, T, Source extends UniqueTreeMap<Key, T, Source, MapElementList.Iterator<Key, T, true, Source>, MapElementList.ReverseIterator<Key, T, true, Source>>> extends MapTree<Key, T, true, Source> {\n    constructor(source: Source, comp: Comparator<Key>);\n    nearest_by_key(key: Key): XTreeNode<MapElementList.Iterator<Key, T, true, Source>> | null;\n    upper_bound(key: Key): MapElementList.Iterator<Key, T, true, Source>;\n}\n",
    "node_modules/tstl/lib/internal/tree/UniqueSetTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { SetTree } from \"./SetTree\";\nimport { XTreeNode } from \"./XTreeNode\";\nimport { UniqueTreeSet } from \"../container/associative/UniqueTreeSet\";\nimport { SetElementList } from \"../container/associative/SetElementList\";\nimport { Comparator } from \"../functional/Comparator\";\nexport declare class UniqueSetTree<Key, Source extends UniqueTreeSet<Key, Source, SetElementList.Iterator<Key, true, Source>, SetElementList.ReverseIterator<Key, true, Source>>> extends SetTree<Key, true, Source> {\n    constructor(source: Source, comp: Comparator<Key>);\n    nearest_by_key(val: Key): XTreeNode<SetElementList.Iterator<Key, true, Source>> | null;\n    upper_bound(val: Key): SetElementList.Iterator<Key, true, Source>;\n}\n",
    "node_modules/tstl/lib/internal/tree/XTree.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { XTreeNode } from \"./XTreeNode\";\nimport { Comparator } from \"../functional/Comparator\";\n/**\n * Red-Black Tree\n *\n * @reference https://en.wikipedia.org/w/index.php?title=Red%E2%80%93black_tree\n * @inventor Rudolf Bayer\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare abstract class XTree<T> {\n    protected root_: XTreeNode<T> | null;\n    private comp_;\n    private equal_;\n    protected constructor(comp: Comparator<T>);\n    clear(): void;\n    root(): XTreeNode<T> | null;\n    get(val: T): XTreeNode<T> | null;\n    nearest(val: T): XTreeNode<T> | null;\n    private _Fetch_maximum;\n    insert(val: T): void;\n    private _Insert_case1;\n    private _Insert_case2;\n    private _Insert_case3;\n    private _Insert_case4;\n    private _Insert_case5;\n    erase(val: T): void;\n    private _Erase_case1;\n    private _Erase_case2;\n    private _Erase_case3;\n    private _Erase_case4;\n    private _Erase_case5;\n    private _Erase_case6;\n    private _Rotate_left;\n    private _Rotate_right;\n    private _Replace_node;\n    private _Fetch_color;\n}\n",
    "node_modules/tstl/lib/internal/tree/XTreeNode.d.ts": "/**\n * @packageDocumentation\n * @module std.internal\n */\nimport { Color } from \"./Color\";\n/**\n * Node of {@link XTree}\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class XTreeNode<T> {\n    parent: XTreeNode<T> | null;\n    left: XTreeNode<T> | null;\n    right: XTreeNode<T> | null;\n    value: T;\n    color: Color;\n    constructor(value: T, color: Color);\n    get grand(): XTreeNode<T> | null;\n    get sibling(): XTreeNode<T> | null;\n    get uncle(): XTreeNode<T> | null;\n}\n",
    "node_modules/tstl/lib/iterator/BackInsertIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { InsertIteratorBase } from \"../internal/iterator/InsertIteratorBase\";\nimport { IPushBack } from \"../internal/container/partial/IPushBack\";\nimport { Vector } from \"../container/Vector\";\n/**\n * Back insert iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class BackInsertIterator<Source extends IPushBack<BackInsertIterator.ValueType<Source>>> extends InsertIteratorBase<BackInsertIterator.ValueType<Source>, BackInsertIterator<Source>> {\n    private source_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param source The source container.\n     */\n    constructor(source: Source);\n    /**\n     * @inheritDoc\n     */\n    set value(val: BackInsertIterator.ValueType<Source>);\n    /**\n     * @inheritDoc\n     */\n    equals(obj: BackInsertIterator<Source>): boolean;\n}\n/**\n *\n */\nexport declare namespace BackInsertIterator {\n    /**\n     * Deduct value type.\n     */\n    type ValueType<Source extends IPushBack<any>> = Source extends IPushBack<infer T> ? T : unknown;\n    /**\n     * Deduct source type.\n     */\n    type SourceType<Source extends Array<any> | IPushBack<any>> = Source extends Array<infer T> ? Vector<T> : Source;\n}\n",
    "node_modules/tstl/lib/iterator/FrontInsertIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { InsertIteratorBase } from \"../internal/iterator/InsertIteratorBase\";\nimport { IPushFront } from \"../internal/container/partial/IPushFront\";\n/**\n * Front insert iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class FrontInsertIterator<Source extends IPushFront<FrontInsertIterator.ValueType<Source>>> extends InsertIteratorBase<FrontInsertIterator.ValueType<Source>, FrontInsertIterator<Source>> {\n    private source_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param source The source container.\n     */\n    constructor(source: Source);\n    /**\n     * @inheritDoc\n     */\n    set value(val: FrontInsertIterator.ValueType<Source>);\n    /**\n     * @inheritDoc\n     */\n    equals(obj: FrontInsertIterator<Source>): boolean;\n}\nexport declare namespace FrontInsertIterator {\n    /**\n     * Deduct value type.\n     */\n    type ValueType<Source extends IPushFront<any>> = Source extends IPushFront<infer T> ? T : unknown;\n}\n",
    "node_modules/tstl/lib/iterator/IBidirectionalIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"./IForwardIterator\";\n/**\n * Bidirectional iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IBidirectionalIterator<T, Iterator extends IBidirectionalIterator<T, Iterator> = IBidirectionalIterator<T, any>> extends IForwardIterator<T, Iterator> {\n    /**\n     * Get previous iterator.\n     *\n     * @return The previous iterator.\n     */\n    prev(): Iterator;\n}\n",
    "node_modules/tstl/lib/iterator/IForwardIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IPointer } from \"../functional/IPointer\";\nimport { IComparable } from \"../functional/IComparable\";\n/**\n * Forward iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IForwardIterator<T, Iterator extends IForwardIterator<T, Iterator> = IForwardIterator<T, any>> extends IPointer<T>, Pick<IComparable<Iterator>, \"equals\"> {\n    /**\n     * Get next iterator.\n     *\n     * @return The next iterator.\n     */\n    next(): Iterator;\n    /**\n     * Test whether equal to other iterator.\n     *\n     * @param obj The iterator to compare.\n     * @return Whether equal or not.\n     */\n    equals(obj: Iterator): boolean;\n}\n",
    "node_modules/tstl/lib/iterator/IRandomAccessIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IBidirectionalIterator } from \"./IBidirectionalIterator\";\n/**\n * Random access iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IRandomAccessIterator<T, Iterator extends IRandomAccessIterator<T, Iterator> = IRandomAccessIterator<T, any>> extends IBidirectionalIterator<T, Iterator> {\n    /**\n     * Get index.\n     *\n     * @return The index.\n     */\n    index(): number;\n    /**\n     * Advance iterator.\n     *\n     * @param n Step to advance.\n     * @return The advanced iterator.\n     */\n    advance(n: number): Iterator;\n}\n",
    "node_modules/tstl/lib/iterator/IReversableIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IBidirectionalIterator } from \"./IBidirectionalIterator\";\nimport { IReverseIterator } from \"./IReverseIterator\";\n/**\n * Reversable iterator\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IReversableIterator<T, IteratorT extends IReversableIterator<T, IteratorT, ReverseT>, ReverseT extends IReverseIterator<T, IteratorT, ReverseT>> extends IBidirectionalIterator<T, IteratorT> {\n    /**\n     * Construct reverse iterator.\n     *\n     * @return The reverse iterator.\n     */\n    reverse(): ReverseT;\n}\n",
    "node_modules/tstl/lib/iterator/IReverseIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IBidirectionalIterator } from \"./IBidirectionalIterator\";\nimport { IReversableIterator } from \"./IReversableIterator\";\n/**\n * Reverse iterator\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IReverseIterator<T, Base extends IReversableIterator<T, Base, This>, This extends IReverseIterator<T, Base, This>> extends IBidirectionalIterator<T, This> {\n    /**\n     * Get base iterator.\n     *\n     * @return The base iterator.\n     */\n    base(): Base;\n}\n",
    "node_modules/tstl/lib/iterator/InsertIterator.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { InsertIteratorBase } from \"../internal/iterator/InsertIteratorBase\";\nimport { IForwardIterator } from \"./IForwardIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { IInsert } from \"../internal/container/partial/IInsert\";\n/**\n * Insert iterator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class InsertIterator<Container extends IInsert<Iterator>, Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>> extends InsertIteratorBase<IPointer.ValueType<Iterator>, InsertIterator<Container, Iterator>> {\n    private container_;\n    private it_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param container Target container to insert.\n     * @param it Iterator to the position to insert.\n     */\n    constructor(container: Container, it: Iterator);\n    /**\n     * @inheritDoc\n     */\n    set value(val: IPointer.ValueType<Iterator>);\n    /**\n     * @inheritDoc\n     */\n    equals(obj: InsertIterator<Container, Iterator>): boolean;\n}\n",
    "node_modules/tstl/lib/iterator/factory.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IBidirectionalContainer } from \"../ranges/container/IBidirectionalContainer\";\nimport { IReversableIterator } from \"./IReversableIterator\";\nimport { IReverseIterator } from \"./IReverseIterator\";\nimport { IPointer } from \"../functional/IPointer\";\nimport { IForwardContainer } from \"../ranges/container/IForwardContainer\";\nimport { IInsert } from \"../internal/container/partial/IInsert\";\nimport { IPushFront } from \"../internal/container/partial/IPushFront\";\nimport { IPushBack } from \"../internal/container/partial/IPushBack\";\nimport { InsertIterator } from \"./InsertIterator\";\nimport { FrontInsertIterator } from \"./FrontInsertIterator\";\nimport { BackInsertIterator } from \"./BackInsertIterator\";\nimport { IForwardIterator } from \"./IForwardIterator\";\n/**\n * Iterator to the first element.\n *\n * @param container Target container.\n * @return Iterator to the first element.\n */\nexport declare function begin<Container extends Array<any> | IForwardContainer<any>>(container: Container): IForwardContainer.IteratorType<Container>;\n/**\n * Iterator to the end.\n *\n * @param container Target container.\n * @return Iterator to the end.\n */\nexport declare function end<Container extends Array<any> | IForwardContainer<any>>(container: Container): IForwardContainer.IteratorType<Container>;\n/**\n * Get reverse iterator to the first element in reverse.\n *\n * @param container Target container.\n * @return The reverse iterator to the first.\n */\nexport declare function rbegin<Container extends Array<any> | IBidirectionalContainer<any, any>>(container: Container): IBidirectionalContainer.ReverseIteratorType<Container>;\n/**\n * Get reverse iterator to the reverse end.\n *\n * @param container Target container.\n * @return The reverse iterator to the end.\n */\nexport declare function rend<Container extends Array<any> | IBidirectionalContainer<any, any>>(container: Container): IBidirectionalContainer.ReverseIteratorType<Container>;\n/**\n * Construct reverse iterator.\n *\n * @param it Target iterator that reversable.\n * @return The reverse iterator object.\n */\nexport declare function make_reverse_iterator<IteratorT extends IReversableIterator<IPointer.ValueType<IteratorT>, IteratorT, ReverseT>, ReverseT extends IReverseIterator<IPointer.ValueType<IteratorT>, IteratorT, ReverseT>>(it: IteratorT): ReverseT;\n/**\n * Construct insert iterator.\n *\n * @param container Target container.\n * @param it Iterator to the first insertion position.\n * @return The {@link InsertIterator insert iterator} object.\n */\nexport declare function inserter<Container extends IInsert<Iterator>, Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>>(container: Container, it: Iterator): InsertIterator<Container, Iterator>;\n/**\n * Construct front insert iterator.\n *\n * @param source Target container.\n * @return The {@link FrontInsertIterator front insert iterator} object.\n */\nexport declare function front_inserter<Source extends IPushFront<FrontInsertIterator.ValueType<Source>>>(source: Source): FrontInsertIterator<Source>;\n/**\n * Construct back insert iterator.\n *\n * @param source Target container.\n * @return The {@link back insert iterator} object.\n */\nexport declare function back_inserter<Source extends Array<any> | IPushBack<any>>(source: Source): BackInsertIterator<BackInsertIterator.SourceType<Source>>;\n",
    "node_modules/tstl/lib/iterator/global.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IPointer } from \"../functional/IPointer\";\nimport { IForwardIterator } from \"./IForwardIterator\";\nimport { IBidirectionalIterator } from \"./IBidirectionalIterator\";\nimport { IEmpty } from \"../internal/container/partial/IEmpty\";\nimport { ISize } from \"../internal/container/partial/ISize\";\n/**\n * Test whether a container is empty.\n *\n * @param source Target container.\n * @return Whether empty or not.\n */\nexport declare function empty(source: Array<any> | IEmpty): boolean;\n/**\n * Get number of elements of a container.\n *\n * @param source Target container.\n * @return The number of elements in the container.\n */\nexport declare function size(source: Array<any> | ISize): number;\n/**\n * Get distance between two iterators.\n *\n * @param first Input iteartor of the first position.\n * @param last Input iterator of the last position.\n *\n * @return The distance.\n */\nexport declare function distance<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator): number;\n/**\n * Advance iterator.\n *\n * @param it Target iterator to advance.\n * @param n Step to advance.\n *\n * @return The advanced iterator.\n */\nexport declare function advance<InputIterator extends IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>(it: InputIterator, n: number): InputIterator;\n/**\n * Get previous iterator.\n *\n * @param it Iterator to move.\n * @param n Step to move prev.\n * @return An iterator moved to prev *n* steps.\n */\nexport declare function prev<BidirectionalIterator extends IBidirectionalIterator<IPointer.ValueType<BidirectionalIterator>, BidirectionalIterator>>(it: BidirectionalIterator, n?: number): BidirectionalIterator;\n/**\n * Get next iterator.\n *\n * @param it Iterator to move.\n * @param n Step to move next.\n * @return Iterator moved to next *n* steps.\n */\nexport declare function next<ForwardIterator extends IForwardIterator<IPointer.ValueType<ForwardIterator>, ForwardIterator>>(it: ForwardIterator, n?: number): ForwardIterator;\n",
    "node_modules/tstl/lib/iterator/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./IForwardIterator\";\nexport * from \"./IBidirectionalIterator\";\nexport * from \"./IRandomAccessIterator\";\nexport * from \"./IReverseIterator\";\nexport * from \"./IReversableIterator\";\nexport * from \"./InsertIterator\";\nexport * from \"./FrontInsertIterator\";\nexport * from \"./BackInsertIterator\";\nexport * from \"./factory\";\nexport * from \"./global\";\n",
    "node_modules/tstl/lib/module.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport * as base from \"./base/module\";\nimport * as experimental from \"./experimental/module\";\nimport * as ranges from \"./ranges/module\";\nexport { base, experimental, ranges };\nexport * from \"./container/index\";\nexport * from \"./iterator/index\";\nexport * from \"./algorithm/index\";\nexport * from \"./exception/index\";\nexport * from \"./functional/index\";\nexport * from \"./numeric/index\";\nexport * from \"./thread/index\";\nexport * from \"./utility/index\";\n",
    "node_modules/tstl/lib/numeric/IComputable.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { INegatable } from \"./INegatable\";\nexport interface IComputable<Param, Ret = Param> extends INegatable<Ret> {\n    plus(val: Param): Ret;\n    minus(val: Param): Ret;\n    multiplies(val: Param): Ret;\n    divides(val: Param): Ret;\n    modules(val: Param): Ret;\n}\n",
    "node_modules/tstl/lib/numeric/INegatable.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport interface INegatable<Ret> {\n    negate(): Ret;\n}\n",
    "node_modules/tstl/lib/numeric/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./operators\";\nexport * from \"./operations\";\nexport * from \"./special_math/index\";\nexport * from \"./IComputable\";\n",
    "node_modules/tstl/lib/numeric/operations.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IForwardIterator } from \"../iterator/IForwardIterator\";\nimport { General } from \"../internal/functional/General\";\nimport { Writeonly } from \"../internal/functional/Writeonly\";\nimport { IPointer } from \"../functional/IPointer\";\n/**\n * Greatest Common Divider.\n */\nexport declare function gcd(x: number, y: number): number;\n/**\n * Least Common Multiple.\n */\nexport declare function lcm(x: number, y: number): number;\nexport declare function iota<ForwardIterator extends General<IForwardIterator<number, ForwardIterator>>>(first: ForwardIterator, last: ForwardIterator, value: number): void;\nexport declare function accumulate<InputIterator extends General<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>>(first: InputIterator, last: InputIterator, init: IPointer.ValueType<InputIterator>, op?: Operator<InputIterator, InputIterator>): IPointer.ValueType<InputIterator>;\nexport declare function inner_product<InputIterator1 extends General<IForwardIterator<IPointer.ValueType<InputIterator1>, InputIterator1>>, InputIterator2 extends General<IForwardIterator<IPointer.ValueType<InputIterator2>, InputIterator2>>>(first1: InputIterator1, last1: InputIterator1, first2: InputIterator2, value: IPointer.ValueType<InputIterator1>, adder?: Operator<InputIterator1, InputIterator1>, multiplier?: Operator<InputIterator1, InputIterator2>): IPointer.ValueType<InputIterator1>;\nexport declare function adjacent_difference<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, subtracter?: Operator<InputIterator, InputIterator>): OutputIterator;\nexport declare function partial_sum<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, adder?: Operator<InputIterator, InputIterator>): OutputIterator;\nexport declare function inclusive_scan<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, adder?: Operator<InputIterator, InputIterator>, init?: IPointer.ValueType<InputIterator>): OutputIterator;\nexport declare function exclusive_scan<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<InputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, init: IPointer.ValueType<InputIterator>, op?: Operator<InputIterator, InputIterator>): OutputIterator;\nexport declare function transform_inclusive_scan<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, binary: Operator<OutputIterator, OutputIterator>, unary: Transformer<InputIterator, OutputIterator>, init?: IPointer.ValueType<InputIterator>): OutputIterator;\nexport declare function transform_exclusive_scan<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(first: InputIterator, last: InputIterator, output: OutputIterator, init: IPointer.ValueType<InputIterator>, binary: Operator<OutputIterator, OutputIterator>, unary: Transformer<InputIterator, OutputIterator>): OutputIterator;\ntype Operator<Iterator1 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator1>, Iterator1>>, Iterator2 extends Readonly<IForwardIterator<IPointer.ValueType<Iterator2>, Iterator2>>> = (x: IPointer.ValueType<Iterator1>, y: IPointer.ValueType<Iterator2>) => IPointer.ValueType<Iterator1>;\ntype Transformer<InputIterator extends Readonly<IForwardIterator<IPointer.ValueType<InputIterator>, InputIterator>>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>> = (val: IPointer.ValueType<InputIterator>) => IPointer.ValueType<OutputIterator>;\nexport {};\n",
    "node_modules/tstl/lib/numeric/operators.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { INegatable } from \"./INegatable\";\nimport { IComputable } from \"./IComputable\";\ntype PlusParam<Y, Ret> = number | string | Pick<IComputable<Y, Ret>, \"plus\">;\ntype Param<Y, Ret, Key extends keyof IComputable<Y, Ret>> = number | Pick<IComputable<Y, Ret>, Key>;\nexport declare function plus<X extends PlusParam<Y, Ret>, Y = X, Ret = X>(x: X, y: Y): Ret;\nexport declare function minus<X extends Param<Y, Ret, \"minus\">, Y = X, Ret = X>(x: X, y: Y): Ret;\nexport declare function negate<X extends number | INegatable<Ret>, Ret = X>(x: X): Ret;\nexport declare function multiplies<X extends Param<Y, Ret, \"multiplies\">, Y = X, Ret = X>(x: X, y: Y): Ret;\nexport declare function divides<X extends Param<Y, Ret, \"divides\">, Y = X, Ret = X>(x: X, y: Y): Ret;\nexport declare function modules<X extends Param<Y, Ret, \"modules\">, Y = X, Ret = X>(x: X, y: Y): Ret;\nexport {};\n",
    "node_modules/tstl/lib/numeric/special_math/bessels.d.ts": "/**\n * Bessel function of the 1st kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Bessel_functions_of_the_first_kind:_J.CE.B1\n */\nexport declare function cyl_bessel_j(n: number, x: number): number;\n/**\n * Bessel function of the 2nd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Bessel_functions_of_the_second_kind:_Y.CE.B1\n */\nexport declare function cyl_neumann(v: number, x: number): number;\n/**\n * Spherical Bessel function of the 1st kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Spherical_Bessel_functions:_jn.2C_yn\n */\nexport declare function sph_bessel(n: number, x: number): number;\n/**\n * Spherical Bessel function of the 2nd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Spherical_Bessel_functions:_jn.2C_yn\n */\nexport declare function sph_neumann(n: number, x: number): number;\n/**\n * Modified cylindrical Bessel function of the 1st kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Modified_Bessel_functions:_I.CE.B1_.2C_K.CE.B1\n */\nexport declare function cyl_bessel_i(n: number, x: number): number;\n/**\n * Modified cylindrical Bessel function of the 2nd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Bessel_function#Modified_Bessel_functions:_I.CE.B1_.2C_K.CE.B1\n */\nexport declare function cyl_bessel_k(n: number, x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/beta.d.ts": "/**\n * Beta function.\n *\n * @reference https://en.wikipedia.org/wiki/Beta_function\n */\nexport declare function beta(x: number, y: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/ellints.d.ts": "/**\n * Incomplete elliptic integral of the 1st kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Complete_elliptic_integral_of_the_first_kind\n */\nexport declare function ellint_1(k: number, phi: number): number;\n/**\n * Complete elliptic integral of the 1st kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Elliptic_integral_of_the_first_kind\n */\nexport declare function comp_ellint_1(k: number): number;\n/**\n * Incomplete elliptic integral of the 2nd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Incomplete_elliptic_integral_of_the_second_kind\n */\nexport declare function ellint_2(k: number, phi: number): number;\n/**\n * Complete elliptic integral of the 2nd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Complete_elliptic_integral_of_the_second_kind\n */\nexport declare function comp_ellint_2(k: number): number;\n/**\n * Incomplete elliptic integral of the 3rd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Complete_elliptic_integral_of_the_third_kind\n */\nexport declare function ellint_3(k: number, v: number, phi: number): number;\n/**\n * Complete elliptic integral of the 3rd kind.\n *\n * @reference https://en.wikipedia.org/wiki/Elliptic_integral#Incomplete_elliptic_integral_of_the_third_kind\n */\nexport declare function comp_ellint_3(k: number, n: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/expint.d.ts": "/**\n * Exponential integral.\n */\nexport declare function expint(x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/gamma.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Gamma function.\n *\n * @reference https://en.wikipedia.org/wiki/Gamma_function, https://rosettacode.org/wiki/Gamma_function#JavaScript\n */\nexport declare function tgamma(x: number): number;\n/**\n * Log gamma function.\n */\nexport declare function lgamma(x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/hermite.d.ts": "/**\n * Hermite polynomial\n *\n * @reference https://en.wikipedia.org/wiki/Hermite_polynomials\n */\nexport declare function hermite(n: number, x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./beta\";\nexport * from \"./gamma\";\nexport * from \"./bessels\";\nexport * from \"./ellints\";\nexport * from \"./expint\";\nexport * from \"./hermite\";\nexport * from \"./legendres\";\nexport * from \"./laguerres\";\nexport * from \"./zeta\";\n",
    "node_modules/tstl/lib/numeric/special_math/laguerres.d.ts": "/**\n * Laguerre polynomials.\n *\n * @reference https://en.wikipedia.org/wiki/Laguerre_polynomials\n */\nexport declare function laguerre(n: number, x: number): number;\n/**\n * Associated laguerre polynomials.\n *\n * @reference https://en.wikipedia.org/wiki/Laguerre_polynomials#Generalized_Laguerre_polynomials\n */\nexport declare function assoc_laguerre(n: number, m: number, x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/legendres.d.ts": "/**\n * Legendre polynomials.\n *\n * @reference http://en.cppreference.com/w/cpp/numeric/special_math/legendre\n */\nexport declare function legendre(n: number, x: number): number;\n/**\n * Associated Legendre polynomials.\n *\n * @reference https://en.wikipedia.org/wiki/Associated_Legendre_polynomials\n */\nexport declare function assoc_legendre(n: number, m: number, x: number): number;\n",
    "node_modules/tstl/lib/numeric/special_math/zeta.d.ts": "/**\n * Riemann zeta function.\n *\n * @reference http://en.cppreference.com/w/cpp/numeric/special_math/riemann_zeta\n */\nexport declare function riemann_zeta(arg: number): number;\n",
    "node_modules/tstl/lib/ranges/algorithm/binary_search.d.ts": "import { IForwardContainer } from \"../container/IForwardContainer\";\nimport { Pair } from \"../../utility/Pair\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Get iterator to lower bound.\n *\n * @param range An iterable ranged container.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element equal or after the val.\n */\nexport declare function lower_bound<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Get iterator to upper bound.\n *\n * @param range An iterable ranged container.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element after the key.\n */\nexport declare function upper_bound<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Get range of equal elements.\n *\n * @param range An iterable ranged container.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Pair of {@link lower_bound} and {@link upper_bound}.\n */\nexport declare function equal_range<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): Pair<IForwardContainer.IteratorType<Range>, IForwardContainer.IteratorType<Range>>;\n/**\n * Test whether a value exists in sorted range.\n *\n * @param range An iterable ranged container.\n * @param val Value to search for.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the value exists or not.\n */\nexport declare function binary_search<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): boolean;\n",
    "node_modules/tstl/lib/ranges/algorithm/heap.d.ts": "import { IRandomAccessContainer } from \"../container/IRandomAccessContainer\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Make a heap.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function make_heap<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): void;\n/**\n * Push an element into heap.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function push_heap<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): void;\n/**\n * Pop an element from heap.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function pop_heap<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): void;\n/**\n * Test whether a range is heap.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the range is heap.\n */\nexport declare function is_heap<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): boolean;\n/**\n * Find the first element not in heap order.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element not in heap order.\n */\nexport declare function is_heap_until<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): IRandomAccessContainer.IteratorType<Range>;\n/**\n * Sort elements of a heap.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function sort_heap<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IRandomAccessContainer.ValueType<Range>>): void;\n",
    "node_modules/tstl/lib/ranges/algorithm/index.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nexport * from \"./binary_search\";\nexport * from \"./heap\";\nexport * from \"./iterations\";\nexport * from \"./mathematics\";\nexport * from \"./modifiers\";\nexport * from \"./partition\";\nexport * from \"./random\";\nexport * from \"./sorting\";\nexport * from \"./merge\";\n",
    "node_modules/tstl/lib/ranges/algorithm/iterations.d.ts": "import { IForwardContainer } from \"../container/IForwardContainer\";\nimport { Pair } from \"../../utility/Pair\";\nimport { UnaryPredicator } from \"../../internal/functional/UnaryPredicator\";\nimport { BinaryPredicator } from \"../../internal/functional/BinaryPredicator\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\ntype BinaryPredicatorInferrer<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>> = BinaryPredicator<IForwardContainer.ValueType<Range1>, IForwardContainer.ValueType<Range2>>;\n/**\n * Apply a function to elements in range.\n *\n * @param range An iterable ranged container.\n * @param fn The function to apply.\n *\n * @return The function *fn* itself.\n */\nexport declare function for_each<Range extends Array<any> | IForwardContainer<any>, Func extends (val: IForwardContainer.ValueType<Range>) => any>(range: Range, fn: Func): Func;\n/**\n * Apply a function to elements in steps.\n *\n * @param range An iterable ranged container.\n * @param n Steps to maximum advance.\n * @param fn The function to apply.\n *\n * @return Iterator advanced from *first* for *n* steps.\n */\nexport declare function for_each_n<Range extends Array<any> | IForwardContainer<any>, Func extends (val: IForwardContainer.ValueType<Range>) => any>(range: Range, n: number, fn: Func): IForwardContainer.IteratorType<Range>;\n/**\n * Test whether all elements meet a specific condition.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* returns always `true` for all elements.\n */\nexport declare function all_of<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Test whether any element meets a specific condition.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* returns at least a `true` for all elements.\n */\nexport declare function any_of<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Test whether any element doesn't meet a specific condition.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return Whether the *pred* doesn't return `true` for all elements.\n */\nexport declare function none_of<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Test whether two ranges are equal.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Whether two ranges are equal.\n */\nexport declare function equal<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): boolean;\n/**\n * Test whether two ranges are equal.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Whether two ranges are equal.\n */\nexport declare function equal<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, pred: BinaryPredicatorInferrer<Range1, Range2>): boolean;\n/**\n * Compare lexicographically.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the 1st range precedes the 2nd.\n */\nexport declare function lexicographical_compare<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2, comp?: BinaryPredicatorInferrer<Range1, Range1>): boolean;\n/**\n * Find a value in range.\n *\n * @param range An iterable ranged container.\n * @param val The value to find.\n *\n * @return Iterator to the first element {@link equal to equal_to} the value.\n */\nexport declare function find<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>): IForwardContainer.IteratorType<Range>;\n/**\n * Find a matched condition in range.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return Iterator to the first element *pred* returns `true`.\n */\nexport declare function find_if<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Find a mismatched condition in range.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return Iterator to the first element *pred* returns `false`.\n */\nexport declare function find_if_not<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Find the last sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n *\n * @return Iterator to the first element of the last sub range.\n */\nexport declare function find_end<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): IForwardContainer.IteratorType<Range1>;\n/**\n * Find the last sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the last sub range.\n */\nexport declare function find_end<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, pred: BinaryPredicatorInferrer<Range1, Range2>): IForwardContainer.IteratorType<Range1>;\n/**\n * Find the first sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n *\n * @return Iterator to the first element of the first sub range.\n */\nexport declare function find_first_of<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): IForwardContainer.IteratorType<Range1>;\n/**\n * Find the first sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the first sub range.\n */\nexport declare function find_first_of<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, pred: BinaryPredicatorInferrer<Range1, Range2>): IForwardContainer.IteratorType<Range1>;\n/**\n * Find the first adjacent element.\n *\n * @param range An iterable ranged container.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Iterator to the first element of adjacent find.\n */\nexport declare function adjacent_find<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Search sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n *\n * @return Iterator to the first element of the sub range.\n */\nexport declare function search<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): IForwardContainer.IteratorType<Range1>;\n/**\n * Search sub range.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return Iterator to the first element of the sub range.\n */\nexport declare function search<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, pred: BinaryPredicatorInferrer<Range1, Range2>): IForwardContainer.IteratorType<Range1>;\n/**\n * Search specific and repeated elements.\n *\n * @param range An iterable ranged container.\n * @param count Count to be repeated.\n * @param val Value to search.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Iterator to the first element of the repetition.\n */\nexport declare function search_n<Range extends Array<any> | IForwardContainer<any>>(range: Range, count: number, val: IForwardContainer.ValueType<Range>, pred?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Find the first mistmached position between two ranges.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n *\n * @return A {@link Pair} of mismatched positions.\n */\nexport declare function mismatch<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): Pair<IForwardContainer.IteratorType<Range1>, IForwardContainer.IteratorType<Range2>>;\n/**\n * Find the first mistmached position between two ranges.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal.\n *\n * @return A {@link Pair} of mismatched positions.\n */\nexport declare function mismatch<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, pred: BinaryPredicatorInferrer<Range1, Range2>): Pair<IForwardContainer.IteratorType<Range1>, IForwardContainer.IteratorType<Range2>>;\n/**\n * Count matched value in range.\n *\n * @param range An iterable ranged container.\n * @param val The value to count.\n *\n * @return The matched count.\n */\nexport declare function count<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>): number;\n/**\n * Count matched condition in range.\n *\n * @param range An iterable ranged container.\n * @param pred A function predicates the specific condition.\n *\n * @return The matched count.\n */\nexport declare function count_if<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): number;\nexport {};\n",
    "node_modules/tstl/lib/ranges/algorithm/mathematics.d.ts": "import { IBidirectionalContainer } from \"../container/IBidirectionalContainer\";\nimport { IForwardContainer } from \"../container/IForwardContainer\";\nimport { Pair } from \"../../utility/Pair\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Get the minimum element in range.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the minimum element.\n */\nexport declare function min_element<Range extends Array<any> | IForwardContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Get the maximum element in range.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the maximum element.\n */\nexport declare function max_element<Range extends Array<any> | IForwardContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Get the minimum & maximum elements in range.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return A {@link Pair} of iterators to the minimum & maximum elements.\n */\nexport declare function minmax_element<Range extends Array<any> | IForwardContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): Pair<IForwardContainer.IteratorType<Range>, IForwardContainer.IteratorType<Range>>;\n/**\n * Test whether two ranges are in permutation relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Whether permutation or not.\n */\nexport declare function is_permutation<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2, pred?: Comparator<IForwardContainer.ValueType<Range1>>): boolean;\n/**\n * Transform to the previous permutation.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the transformation was meaningful.\n */\nexport declare function prev_permutation<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Transform to the next permutation.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether the transformation was meaningful.\n */\nexport declare function next_permutation<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): boolean;\n",
    "node_modules/tstl/lib/ranges/algorithm/merge.d.ts": "import { IBidirectionalContainer } from \"../container/IBidirectionalContainer\";\nimport { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Writeonly } from \"../../internal/functional/Writeonly\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Merge two sorted ranges.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function merge<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range1>, OutputIterator>>>(range1: Range1, range2: Range2, output: OutputIterator, comp?: Comparator<IForwardContainer.ValueType<Range1>>): OutputIterator;\n/**\n * Merge two sorted & consecutive ranges.\n *\n * @param range An iterable ranged container.\n * @param middle Bidirectional iterator of the initial position of the 2nd range.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function inplace_merge<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, middle: IBidirectionalContainer.IteratorType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): void;\n/**\n * Test whether two sorted ranges are in inclusion relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether [first, last1) includes [first2, last2).\n */\nexport declare function includes<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2, comp?: Comparator<IForwardContainer.ValueType<Range1>>): boolean;\n/**\n * Combine two sorted ranges to union relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_union<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range1>, OutputIterator>>>(range1: Range1, range2: Range2, output: OutputIterator, comp?: Comparator<IForwardContainer.ValueType<Range1>>): OutputIterator;\n/**\n * Combine two sorted ranges to intersection relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_intersection<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range1>, OutputIterator>>>(range1: Range1, range2: Range2, output: OutputIterator, comp?: Comparator<IForwardContainer.ValueType<Range1>>): OutputIterator;\n/**\n * Combine two sorted ranges to difference relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_difference<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range1>, OutputIterator>>>(range1: Range1, range2: Range2, output: OutputIterator, comp?: Comparator<IForwardContainer.ValueType<Range1>>): OutputIterator;\n/**\n * Combine two sorted ranges to symmetric difference relationship.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function set_symmetric_difference<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range1>, OutputIterator>>>(range1: Range1, range2: Range2, output: OutputIterator, comp?: Comparator<IForwardContainer.ValueType<Range1>>): OutputIterator;\n",
    "node_modules/tstl/lib/ranges/algorithm/modifiers.d.ts": "import { IBidirectionalContainer } from \"../container/IBidirectionalContainer\";\nimport { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IRandomAccessContainer } from \"../container/IRandomAccessContainer\";\nimport { IBidirectionalIterator } from \"../../iterator/IBidirectionalIterator\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { BinaryPredicator } from \"../../internal/functional/BinaryPredicator\";\nimport { UnaryPredicator } from \"../../internal/functional/UnaryPredicator\";\nimport { Writeonly } from \"../../internal/functional/Writeonly\";\ntype UnaryOperatorInferrer<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>> = (val: IForwardContainer.ValueType<Range>) => IPointer.ValueType<OutputIterator>;\ntype BinaryOperatorInferrer<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>> = (x: IForwardContainer.ValueType<Range1>, y: IForwardContainer.ValueType<Range2>) => IPointer.ValueType<OutputIterator>;\n/**\n * Copy elements in range.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator): OutputIterator;\n/**\n * Copy *n* elements.\n *\n * @param range An iterable ranged container.\n * @param n Number of elements to copy.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_n<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, n: number, output: OutputIterator): OutputIterator;\n/**\n * Copy specific elements by a condition.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n * @param pred A function predicates the specific condition.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_if<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): OutputIterator;\n/**\n * Copy elements reversely.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function copy_backward<Range extends Array<any> | IBidirectionalContainer<any, any>, OutputIterator extends Writeonly<IBidirectionalIterator<IBidirectionalContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator): OutputIterator;\n/**\n * Fill range elements\n *\n * @param range An iterable ranged container.\n * @param val The value to fill.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function fill<Range extends Array<any> | IForwardContainer<any>>(range: Range, value: IForwardContainer.ValueType<Range>): void;\n/**\n * Fill *n* elements.\n *\n * @param range An iterable ranged container.\n * @param n Number of elements to fill.\n * @param val The value to fill.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function fill_n<Range extends Array<any> | IForwardContainer<any>>(range: Range, n: number, value: IForwardContainer.ValueType<Range>): IForwardContainer.IteratorType<Range>;\n/**\n * Transform elements.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n * @param op Unary function determines the transform.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function transform<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(range: Range, result: OutputIterator, op: UnaryOperatorInferrer<Range, OutputIterator>): OutputIterator;\n/**\n * Transform elements.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n * @param output Output iterator of the first position.\n * @param op Binary function determines the transform.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function transform<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(range: Range1, first: Range2, result: OutputIterator, op: BinaryOperatorInferrer<Range1, Range2, OutputIterator>): OutputIterator;\n/**\n * Generate range elements.\n *\n * @param range An iterable ranged container.\n * @param gen The generator function.\n */\nexport declare function generate<Range extends Array<any> | IForwardContainer<any>>(range: Range, gen: () => IForwardContainer.ValueType<Range>): void;\n/**\n * Generate *n* elements.\n *\n * @param range An iterable ranged container.\n * @param n Number of elements to generate.\n * @param gen The generator function.\n *\n * @return Forward Iterator to the last position by advancing.\n */\nexport declare function generate_n<Range extends Array<any> | IForwardContainer<any>>(range: Range, n: number, gen: () => IForwardContainer.ValueType<Range>): IForwardContainer.IteratorType<Range>;\n/**\n * Test whether elements are unique in sorted range.\n *\n * @param range An iterable ranged container.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @returns Whether unique or not.\n */\nexport declare function is_unique<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred?: BinaryPredicator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Remove duplicated elements in sorted range.\n *\n * @param range An iterable ranged container.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Input iterator to the last element not removed.\n */\nexport declare function unique<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred?: BinaryPredicator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Copy elements in range without duplicates.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the last position.\n * @param pred A binary function predicates two arguments are equal. Default is {@link equal_to}.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function unique_copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, pred?: BinaryPredicator<IForwardContainer.ValueType<Range>>): OutputIterator;\n/**\n * Remove specific value in range.\n *\n * @param range An iterable ranged container.\n * @param val The specific value to remove.\n *\n * @return Iterator tho the last element not removed.\n */\nexport declare function remove<Range extends Array<any> | IForwardContainer<any>>(range: Range, val: IForwardContainer.ValueType<Range>): IForwardContainer.IteratorType<Range>;\n/**\n * Remove elements in range by a condition.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates remove.\n *\n * @return Iterator tho the last element not removed.\n */\nexport declare function remove_if<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Copy range removing specific value.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the last position.\n * @param val The condition predicates remove.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function remove_copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, val: IForwardContainer.ValueType<Range>): OutputIterator;\n/**\n * Copy range removing elements by a condition.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the last position.\n * @param pred An unary function predicates remove.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function remove_copy_if<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): OutputIterator;\n/**\n * Replace specific value in range.\n *\n * @param range An iterable ranged container.\n * @param old_val Specific value to change\n * @param new_val Specific value to be changed.\n */\nexport declare function replace<Range extends Array<any> | IForwardContainer<any>>(range: Range, old_val: IForwardContainer.ValueType<Range>, new_val: IForwardContainer.ValueType<Range>): void;\n/**\n * Replace specific condition in range.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates the change.\n * @param new_val Specific value to be changed.\n */\nexport declare function replace_if<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>, new_val: IForwardContainer.ValueType<Range>): void;\n/**\n * Copy range replacing specific value.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n * @param old_val Specific value to change\n * @param new_val Specific value to be changed.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function replace_copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, old_val: IForwardContainer.ValueType<Range>, new_val: IForwardContainer.ValueType<Range>): OutputIterator;\n/**\n * Copy range replacing specfic condition.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n * @param pred An unary function predicates the change.\n * @param new_val Specific value to be changed.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function replace_copy_if<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>, new_val: IForwardContainer.ValueType<Range>): OutputIterator;\n/**\n * Swap values of two ranges.\n *\n * @param range1 The 1st iterable ranged container.\n * @param range2 The 2nd iterable ranged container.\n *\n * @return Forward Iterator of the last position of the 2nd range by advancing.\n */\nexport declare function swap_ranges<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends IForwardContainer.SimilarType<Range1>>(range1: Range1, range2: Range2): IForwardContainer.IteratorType<Range2>;\n/**\n * Reverse elements in range.\n *\n * @param range An iterable ranged container.\n */\nexport declare function reverse<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range): void;\n/**\n * Copy reversed elements in range.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function reverse_copy<Range extends Array<any> | IBidirectionalContainer<any, any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator): OutputIterator;\nexport declare function shift_left<Range extends Array<any> | IForwardContainer<any>>(range: Range, n: number): void;\nexport declare function shift_right<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, n: number): void;\n/**\n * Rotate elements in range.\n *\n * @param range An iterable ranged container.\n * @param middle Input iteartor of the initial position of the right side.\n *\n * @return Input iterator of the final position in the left side; *middle*.\n */\nexport declare function rotate<Range extends Array<any> | IForwardContainer<any>>(range: Range, middle: IForwardContainer.IteratorType<Range>): IForwardContainer.IteratorType<Range>;\n/**\n * Copy rotated elements in range.\n *\n * @param range An iterable ranged container.\n * @param middle Input iteartor of the initial position of the right side.\n * @param output Output iterator of the last position.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function rotate_copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, middle: IForwardContainer.IteratorType<Range>, output: OutputIterator): OutputIterator;\n/**\n * Shuffle elements in range.\n *\n * @param range An iterable ranged container.\n */\nexport declare function shuffle<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range): void;\nexport {};\n",
    "node_modules/tstl/lib/ranges/algorithm/partition.d.ts": "import { IBidirectionalContainer } from \"../container/IBidirectionalContainer\";\nimport { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { Pair } from \"../../utility/Pair\";\nimport { UnaryPredicator } from \"../../internal/functional/UnaryPredicator\";\nimport { Writeonly } from \"../../internal/functional/Writeonly\";\n/**\n * Test whether a range is partitioned.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Whether the range is partition or not.\n */\nexport declare function is_partitioned<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Get partition point.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition_point<Range extends Array<any> | IForwardContainer<any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n/**\n * Partition a range into two sections.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IBidirectionalContainer.IteratorType<Range>;\n/**\n * Partition a range into two sections with stable ordering.\n *\n * @param range An iterable ranged container.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function stable_partition<Range extends Array<any> | IBidirectionalContainer<any, any>>(range: Range, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): IBidirectionalContainer.IteratorType<Range>;\n/**\n * Partition a range into two outputs.\n *\n * @param range An iterable ranged container.\n * @param output_true Output iterator to the first position for the first section.\n * @param output_false Output iterator to the first position for the second section.\n * @param pred An unary function predicates partition. Returns `true`, if an element belongs to the first section, otherwise `false` which means the element belongs to the second section.\n *\n * @return Iterator to the first element of the second section.\n */\nexport declare function partition_copy<Range extends Array<any> | IForwardContainer<any>, OutputIterator1 extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator1>>, OutputIterator2 extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator2>>>(range: Range, output_true: OutputIterator1, output_false: OutputIterator2, pred: UnaryPredicator<IForwardContainer.ValueType<Range>>): Pair<OutputIterator1, OutputIterator2>;\n",
    "node_modules/tstl/lib/ranges/algorithm/random.d.ts": "import { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { Writeonly } from \"../../internal/functional/Writeonly\";\n/**\n * Pick sample elements up.\n *\n * @param range An iterable ranged container.\n * @param output Output iterator of the first position.\n * @param n Number of elements to pick up.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function sample<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>>(range: Range, first: OutputIterator, n: number): OutputIterator;\n",
    "node_modules/tstl/lib/ranges/algorithm/sorting.d.ts": "import { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IRandomAccessContainer } from \"../container/IRandomAccessContainer\";\nimport { Comparator } from \"../../internal/functional/Comparator\";\n/**\n * Sort elements in range.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function sort<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): void;\n/**\n * Sort elements in range stably.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function stable_sort<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): void;\n/**\n * Sort elements in range partially.\n *\n * @param range An iterable ranged container.\n * @param middle Random access iterator of the middle position between [first, last). Elements only in [first, middle) are fully sorted.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function partial_sort<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, middle: IRandomAccessContainer.IteratorType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): void;\n/**\n * Copy elements in range with partial sort.\n *\n * @param range An iterable ranged container of input.\n * @param output An iterable ranged container of output.\n *\n * @return Output Iterator of the last position by advancing.\n */\nexport declare function partial_sort_copy<Range extends Array<any> | IForwardContainer<any>, Output extends Array<any> | IForwardContainer<any>>(range: Range, output: Output, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Output>;\n/**\n * Rearrange for the n'th element.\n *\n * @param range An iterable ranged container.\n * @param nth Random access iterator the n'th position.\n * @param last Random access iterator of the last position.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n */\nexport declare function nth_element<Range extends Array<any> | IRandomAccessContainer<any>>(range: Range, nth: IRandomAccessContainer.IteratorType<Range>, comp?: Comparator<IForwardContainer.ValueType<Range>>): void;\n/**\n * Test whether a range is sorted.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Whether sorted or not.\n */\nexport declare function is_sorted<Range extends Array<any> | IForwardContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): boolean;\n/**\n * Find the first unsorted element in range.\n *\n * @param range An iterable ranged container.\n * @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.\n *\n * @return Iterator to the first element who violates the order.\n */\nexport declare function is_sorted_until<Range extends Array<any> | IForwardContainer<any>>(range: Range, comp?: Comparator<IForwardContainer.ValueType<Range>>): IForwardContainer.IteratorType<Range>;\n",
    "node_modules/tstl/lib/ranges/container/IBidirectionalContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nimport { IForwardContainer } from \"./IForwardContainer\";\nimport { IReverseIterator } from \"../../iterator/IReverseIterator\";\nimport { IReversableIterator } from \"../../iterator/IReversableIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { Vector } from \"../../container/Vector\";\n/**\n * Bidirection iterable container.\n *\n * @template Iterator Iterator type\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IBidirectionalContainer<IteratorT extends IReversableIterator<IPointer.ValueType<IteratorT>, IteratorT, ReverseIteratorT>, ReverseIteratorT extends IReverseIterator<IPointer.ValueType<IteratorT>, IteratorT, ReverseIteratorT>> extends IForwardContainer<IteratorT> {\n    /**\n     * Reverse iterator to the first element in reverse.\n     *\n     * @return Reverse iterator to the first.\n     */\n    rbegin(): ReverseIteratorT;\n    /**\n     * Reverse iterator to the reverse end.\n     *\n     * @return Reverse iterator to the end.\n     */\n    rend(): ReverseIteratorT;\n}\nexport declare namespace IBidirectionalContainer {\n    /**\n     * Deduct iterator type.\n     */\n    type IteratorType<Container extends Array<any> | IBidirectionalContainer<any, any>> = Container extends Array<infer T> ? Vector.Iterator<T> : Container extends IBidirectionalContainer<infer Iterator, any> ? Iterator : unknown;\n    /**\n     * Deduct reverse iterator type.\n     */\n    type ReverseIteratorType<Container extends Array<any> | IBidirectionalContainer<any, any>> = Container extends Array<infer T> ? Vector.ReverseIterator<T> : Container extends IBidirectionalContainer<any, infer ReverseIterator> ? ReverseIterator : unknown;\n    /**\n     * Deduct value type.\n     */\n    type ValueType<Container extends Array<any> | IBidirectionalContainer<any, any>> = IPointer.ValueType<IteratorType<Container>>;\n}\n",
    "node_modules/tstl/lib/ranges/container/IForwardContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { ISize } from \"../../internal/container/partial/ISize\";\nimport { Vector } from \"../../container/Vector\";\n/**\n * Forward iterable container.\n *\n * @template Iterator Iterator type\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IForwardContainer<Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>> extends ISize {\n    /**\n     * Iterator to the first element.\n     *\n     * @return Iterator to the first element.\n     */\n    begin(): Iterator;\n    /**\n     * Iterator to the end.\n     *\n     * @return Iterator to the end.\n     */\n    end(): Iterator;\n}\nexport declare namespace IForwardContainer {\n    /**\n     * Deduct iterator type.\n     */\n    type IteratorType<Container extends Array<any> | IForwardContainer<any>> = Container extends Array<infer T> ? Vector.Iterator<T> : Container extends IForwardContainer<infer Iterator> ? Iterator : unknown;\n    /**\n     * Deduct value type.\n     */\n    type ValueType<Container extends Array<any> | IForwardContainer<any>> = IPointer.ValueType<IteratorType<Container>>;\n    /**\n     * Deduct similar type.\n     */\n    type SimilarType<Container extends Array<any> | IForwardContainer<any>> = Array<ValueType<Container>> | IForwardContainer<IForwardIterator<ValueType<Container>, any>>;\n}\n",
    "node_modules/tstl/lib/ranges/container/IRandomAccessContainer.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nimport { IForwardContainer } from \"./IForwardContainer\";\nimport { IRandomAccessIterator } from \"../../iterator/IRandomAccessIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { Vector } from \"../../container/Vector\";\n/**\n * Random-access iterable container.\n *\n * @template Iterator Iterator type\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IRandomAccessContainer<IteratorT extends IRandomAccessIterator<IPointer.ValueType<IteratorT>, IteratorT>> extends IForwardContainer<IteratorT> {\n}\nexport declare namespace IRandomAccessContainer {\n    /**\n     * Deduct iterator type.\n     */\n    type IteratorType<Container extends Array<any> | IRandomAccessContainer<any>> = Container extends Array<infer T> ? Vector.Iterator<T> : Container extends IRandomAccessContainer<infer Iterator> ? Iterator : unknown;\n    /**\n     * Deduct value type.\n     */\n    type ValueType<Container extends Array<any> | IRandomAccessContainer<any>> = IForwardContainer.ValueType<IteratorType<Container>>;\n}\n",
    "node_modules/tstl/lib/ranges/container/index.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nexport * from \"./IForwardContainer\";\nexport * from \"./IBidirectionalContainer\";\nexport * from \"./IRandomAccessContainer\";\n",
    "node_modules/tstl/lib/ranges/index.d.ts": "/**\n * Ranged Features\n *\n * @packageDocumentation\n * @module std.ranges\n * @preferred\n */\nimport * as ranges from \"./module\";\nexport default ranges;\nexport * from \"./module\";\n",
    "node_modules/tstl/lib/ranges/module.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nexport * from \"./algorithm/index\";\nexport * from \"./numeric/index\";\nexport * from \"./container/index\";\n",
    "node_modules/tstl/lib/ranges/numeric/index.d.ts": "/**\n * @packageDocumentation\n * @module std.ranges\n */\nexport * from \"./operations\";\n",
    "node_modules/tstl/lib/ranges/numeric/operations.d.ts": "import { IForwardContainer } from \"../container/IForwardContainer\";\nimport { IForwardIterator } from \"../../iterator/IForwardIterator\";\nimport { IPointer } from \"../../functional/IPointer\";\nimport { Writeonly } from \"../../internal/functional/Writeonly\";\ntype UnaryTransformer<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>> = (val: IForwardContainer.ValueType<Range>) => IPointer.ValueType<OutputIterator>;\ntype BinaryTransformer<OutputIterator extends IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>> = (x: IPointer.ValueType<OutputIterator>, y: IPointer.ValueType<OutputIterator>) => IPointer.ValueType<OutputIterator>;\ntype Operator<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any> = Range1> = (x: IForwardContainer.ValueType<Range1>, y: IForwardContainer.ValueType<Range2>) => IForwardContainer.ValueType<Range1>;\nexport declare function iota<Range extends Array<any> | IForwardContainer<IForwardIterator<number, any>>>(range: Range, value: number): void;\nexport declare function accumulate<Range extends Array<any> | IForwardContainer<any>>(range: Range, init: IForwardContainer.ValueType<Range>, op?: Operator<Range>): IForwardContainer.ValueType<Range>;\nexport declare function inner_product<Range1 extends Array<any> | IForwardContainer<any>, Range2 extends Array<any> | IForwardContainer<any>>(range1: Range1, range2: Range2, value: IForwardContainer.ValueType<Range1>, adder?: Operator<Range1>, multiplier?: Operator<Range1, Range2>): IForwardContainer.ValueType<Range1>;\nexport declare function adjacent_difference<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, subtracter?: Operator<Range>): OutputIterator;\nexport declare function partial_sum<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, adder?: Operator<Range>): OutputIterator;\nexport declare function inclusive_scan<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, adder?: Operator<Range>, init?: IForwardContainer.ValueType<Range>): OutputIterator;\nexport declare function exclusive_scan<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends Writeonly<IForwardIterator<IForwardContainer.ValueType<Range>, OutputIterator>>>(range: Range, output: OutputIterator, init: IForwardContainer.ValueType<Range>, adder?: Operator<Range>): OutputIterator;\nexport declare function transform_inclusive_scan<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>(range: Range, output: OutputIterator, binary: BinaryTransformer<OutputIterator>, unary: UnaryTransformer<Range, OutputIterator>, init?: IForwardContainer.ValueType<Range>): OutputIterator;\nexport declare function transform_exclusive_scan<Range extends Array<any> | IForwardContainer<any>, OutputIterator extends IForwardIterator<IPointer.ValueType<OutputIterator>, OutputIterator>>(range: Range, output: OutputIterator, init: IForwardContainer.ValueType<Range>, binary: BinaryTransformer<OutputIterator>, unary: UnaryTransformer<Range, OutputIterator>): OutputIterator;\nexport {};\n",
    "node_modules/tstl/lib/thread/Barrier.d.ts": "/**\n * Barrier for critical sections.\n *\n * The Barrier class blocks critical sections until the downward counter to be zero. Unlike the\n * {@link Latch} class whose downward counter is disposable, `Barrier` can re-use the downward\n * counter repeatedly, resetting counter to be initial value whenever reach to the zero.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Barrier {\n    private cv_;\n    private size_;\n    private count_;\n    /**\n     * Initializer Constructor\n     *\n     * @param size Size of the downward counter.\n     */\n    constructor(size: number);\n    /**\n     * Waits until the counter to be zero.\n     *\n     * Blocks the function calling until internal counter to be reached to the zero.\n     */\n    wait(): Promise<void>;\n    /**\n     * Tries to wait until the counter to be zero in timeout.\n     *\n     * Attempts to block the function calling until internal counter to be reached to the zero\n     * in timeout. If succeeded to waiting the counter to be reached to the zero, it returns\n     * `true`. Otherwise, the {@link Barrier} fails to reach to the zero in the given time, the\n     * function gives up the waiting and returns `false`.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeeded to waiting in the given time.\n     */\n    wait_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to wait until the counter to be zero in time expiration.\n     *\n     * Attempts to block the function calling until internal counter to be reached to the zero\n     * in time expiration. If succeeded to waiting the counter to be reached to the zero, it\n     * returns `true`. Otherwise, the {@link Barrier} fails to reach to the zero in the given\n     * time, the function gives up the waiting and returns `false`.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeeded to waiting in the given time.\n     */\n    wait_until(at: Date): Promise<boolean>;\n    /**\n     * Derecements the counter.\n     *\n     * Decrements the counter by *n* without blocking.\n     *\n     * If the parametric value *n* is equal to or greater than internal counter, so that the\n     * internal counter be equal to or less than zero, everyone who are {@link wait waiting} for\n     * the {@link Latch} would continue their executions.\n     *\n     * @param n Value of the decrement. Default is 1.\n     */\n    arrive(n?: number): Promise<void>;\n    /**\n     * Decrements the counter and waits until the counter to be zero.\n     *\n     * Decrements the counter by one and blocks the section until internal counter to be zero.\n     *\n     * If the the remained counter be zero by this decrement, everyone who are\n     * {@link wait waiting} for the {@link Barrier} would continue their executions including\n     * this one.\n     */\n    arrive_and_wait(): Promise<void>;\n    /**\n     * Decrements the counter and initial size at the same time.\n     *\n     * Decrements not only internal counter, but also initialize size of the counter at the same\n     * time. If the remained counter be zero by the decrement, everyone who are\n     * {@link wait waiting} for the {@link Barrier} would continue their executions.\n     */\n    arrive_and_drop(): Promise<void>;\n}\n",
    "node_modules/tstl/lib/thread/ConditionVariable.d.ts": "/**\n * Condition variable.\n *\n * The `ConditionVariable` class blocks critical sections until be notified.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class ConditionVariable {\n    private resolvers_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * Wait until notified.\n     */\n    wait(): Promise<void>;\n    /**\n     * Wait until predicator returns true.\n     *\n     * This method is equivalent to:\n     *\n    ```typescript\n    while (!await predicator())\n        await this.wait();\n    ```\n     *\n     * @param predicator A predicator function determines completion.\n     */\n    wait(predicator: ConditionVariable.Predicator): Promise<void>;\n    /**\n     * Wait for timeout or until notified.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether awaken by notification or timeout.\n     */\n    wait_for(ms: number): Promise<boolean>;\n    /**\n     * Wait until timeout or predicator returns true.\n     *\n     * This method is equivalent to:\n    ```typescript\n    const at: Date = new Date(Date.now() + ms);\n    while (!await predicator())\n    {\n        if (!await this.wait_until(at))\n            return await predicator();\n    }\n    return true;\n    ```\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @param predicator A predicator function determines the completion.\n     * @return Returned value of the *predicator*.\n     */\n    wait_for(ms: number, predicator: ConditionVariable.Predicator): Promise<boolean>;\n    /**\n     * Wait until notified or time expiration.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether awaken by notification or time expiration.\n     */\n    wait_until(at: Date): Promise<boolean>;\n    /**\n     * Wait until time expiration or predicator returns true.\n     *\n     * This method is equivalent to:\n    ```typescript\n    while (!await predicator())\n    {\n        if (!await this.wait_until(at))\n            return await predicator();\n    }\n    return true;\n    ```\n     *\n     * @param at The maximum time point to wait.\n     * @param predicator A predicator function determines the completion.\n     * @return Returned value of the *predicator*.\n     */\n    wait_until(at: Date, predicator: ConditionVariable.Predicator): Promise<boolean>;\n    private _Wait;\n    private _Wait_until;\n    /**\n     * Notify, wake only one up.\n     */\n    notify_one(): Promise<void>;\n    /**\n     * Notify, wake all up.\n     */\n    notify_all(): Promise<void>;\n}\n/**\n *\n */\nexport declare namespace ConditionVariable {\n    /**\n     * Type of predicator function who determines the completion.\n     */\n    type Predicator = () => boolean | Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/thread/Latch.d.ts": "/**\n * Latch for critical sections.\n *\n * The `Latch` class blocks critical sections until the downward counter to be zero. Howver,\n * unlike {@link Barrier} who can reusable that downward counter be reset whenever reach to the\n * zero, downward of the `Latch` is not reusable but diposable.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Latch {\n    private cv_;\n    private count_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param size Size of the downward counter.\n     */\n    constructor(size: number);\n    /**\n     * Waits until the counter to be zero.\n     *\n     * Blocks the function calling until internal counter to be reached to the zero.\n     *\n     * If the {@link Latch} already has been reached to the zero, it would be returned\n     * immediately.\n     */\n    wait(): Promise<void>;\n    /**\n     * Test whether the counter has been reached to the zero.\n     *\n     * The {@link try_wait} function tests whether the internal counter has been reached to the\n     * zero.\n     *\n     * @return Whether reached to zero or not.\n     */\n    try_wait(): Promise<boolean>;\n    /**\n     * Tries to wait until the counter to be zero in timeout.\n     *\n     * Attempts to block the function calling until internal counter to be reached to the zero\n     * in timeout. If succeeded to waiting the counter to be reached to the zero, it returns\n     * `true`. Otherwise, the {@link Latch} fails to reach to the zero in the given time, the\n     * function gives up the waiting and returns `false`.\n     *\n     * If the {@link Latch} already has been reached to the zero, it would return `true` directly.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeeded to waiting in the given time.\n     */\n    wait_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to wait until the counter to be zero in time expiration.\n     *\n     * Attempts to block the function calling until internal counter to be reached to the zero\n     * in time expiration. If succeeded to waiting the counter to be reached to the zero, it\n     * returns `true`. Otherwise, the {@link Latch} fails to reach to the zero in the given time,\n     * the function gives up the waiting and returns `false`.\n     *\n     * If the {@link Latch} already has been reached to the zero, it would return `true` directly.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeeded to waiting in the given time.\n     */\n    wait_until(at: Date): Promise<boolean>;\n    private _Try_wait;\n    /**\n     * Derecements the counter.\n     *\n     * Decrements the counter by *n* without blocking.\n     *\n     * If the parametric value *n* is equal to or greater than internal counter, so that the\n     * internal counter be equal to or less than zero, everyone who are {@link wait waiting} for\n     * the {@link Latch} would continue their execution.\n     *\n     * @param n Value of the decrement. Default is 1.\n     */\n    count_down(n?: number): Promise<void>;\n    /**\n     * Decrements the counter and waits until the counter to be zero.\n     *\n     * Decrements the counter by *n* and blocks the section until internal counter to be zero.\n     *\n     * If the parametric value *n* is equal to or greater than internal counter, so that the\n     * internal counter be equal to or less than zero, everyone who are {@link wait waiting} for\n     * the {@link Latch} would continue their execution including this one.\n     *\n     * @param n Value of the decrement. Default is 1.\n     */\n    arrive_and_wait(n?: number): Promise<void>;\n}\n",
    "node_modules/tstl/lib/thread/MutableSingleton.d.ts": "/**\n * Mutable singleton generator.\n *\n * The `MutableSingleton` is an asynchronous singleton generator class who guarantees the *lazy\n * constructor* to be called *\"only one at time\"*. The *\"only one at time\"* would always be\n * kepted, even in the race condition.\n *\n * Create a `MutableSingleton` instance with your custom *lazy constructor* and get the promised\n * value through the {@link MutableSingleton.get}() method. The {@link MutableSingleton.get}()\n * method would construct the return value following below logics:\n *\n *   - At the first time: calls the *lazy constructor* and returns the value.\n *   - After the *lazy construction*: returns the pre-constructed value.\n *   - Race condition:\n *     - simultaneously call happens during the *lazy construction*.\n *     - guarantees the *\"only one at time\"* through a *mutex*.\n *\n * If you want to reload the promised value, regardless of whether the *lazy construction* has\n * been completed or not, call the {@link MutableSingleton.reload}() method. It would call the\n * *lazy constructor* forcibly, even if the *lany construction* has been completed in sometime.\n *\n * @template T Type of the promised value to be lazy-constructed.\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class MutableSingleton<T, Args extends any[] = []> {\n    /**\n     * @hidden\n     */\n    private readonly closure_;\n    /**\n     * @hidden\n     */\n    private readonly mutex_;\n    /**\n     * @hidden\n     */\n    private value_;\n    /**\n     * Initializer Constructor.\n     *\n     * Create a new `Singleton` instance with the *lazy consturctor*.\n     *\n     * @param closure Lazy constructor function returning the promised value.\n     */\n    constructor(closure: (...args: Args) => Promise<T>);\n    /**\n     * Reload value.\n     *\n     * The `MutableSingleton.reload()` method enforces to call the *lazy constructor*, regardless\n     * of whether the *lazy construction* has been completed or not. Therefore, even if the *lazy\n     * construction* has been completed in sometime, the `MutableSingleton.reload()` will call\n     * the *lazy constructor* again.\n     *\n     * @return Re-constructed value.\n     */\n    reload(...args: Args): Promise<T>;\n    /**\n     * Configure value.\n     *\n     * The `MutableSingleton.set()` method enforces the singleton to have a specific value.\n     *\n     * @param value The value to configure\n     */\n    set(value: T): Promise<void>;\n    /**\n     * Clear value.\n     *\n     * The `MutableSingleton.clear()` is a method clearing cached value.\n     *\n     * Therefore, when {@link get} being called, closure of constructor would be reused.\n     */\n    clear(): Promise<void>;\n    /**\n     * Get promised value.\n     *\n     * `MutableSingleton.get()` method returns the *lazy constructed value*. It guarantees the\n     * *lazy constructor* to be called *\"only one at time\"*. It ensures the *\"only one at time\"*,\n     * even in the race condition.\n     *\n     * If the promised value is not constructed yet (call this method at the first time), the\n     * *lazy constructor* would be called and returns the promised value. Otherwise, the promised\n     * value has been already constructed by the *lazy constructor* (this method already had been\n     * called), returns the pre-generated value.\n     *\n     * Also, you don't need to worry anything about the race condition, who may be occured by\n     * calling the `MutableSingleton.get()` method simultaneously during the *lazy construction*\n     * is on going. The `MutableSingleton` guarantees the *lazy constructor* to be called\n     * only one at time by using the {@link UniqueLock.lock} on a {@link Mutex}.\n     *\n     * @return The *lazy constructed* value.\n     */\n    get(...args: Args): Promise<T>;\n    /**\n     * Test whether the value has been loaded.\n     *\n     * The `MutableSingleton.is_loaded()` method tests whether the singleton has coompleted to\n     * constructing its value or not. If the singleton value is on the construction by the\n     * {@link MutableSingleton.get} or {@link MutableSingleton.reload} method, the\n     * `MutableSingleton.is_loaded()` would wait returning value until the construction has been\n     * completed.\n     *\n     * @returns Whether loaded or not\n     */\n    is_loaded(): Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/thread/Mutex.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ILockable } from \"../base/thread/ILockable\";\n/**\n * Mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Mutex implements ILockable {\n    private mutex_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * @inheritDoc\n     */\n    lock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock(): Promise<void>;\n}\n",
    "node_modules/tstl/lib/thread/Semaphore.d.ts": "import { ITimedLockable } from \"../base/thread/ITimedLockable\";\n/**\n * Counting semaphore.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Semaphore<Max extends number = number> {\n    private queue_;\n    private acquiring_;\n    private max_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param max Number of maximum sections acquirable.\n     */\n    constructor(max: Max);\n    /**\n     * Get number of maximum sections lockable.\n     *\n     * @return Number of maximum sections lockable.\n     */\n    max(): Max;\n    /**\n     * Acquires a section.\n     *\n     * Acquires a section until be {@link release released}. If all of the sections in the\n     * semaphore already have been acquired by others, the function call would be blocked until\n     * one of them returns its acquisition by calling the {@link release} method.\n     *\n     * In same reason, if you don't call the {@link release} function after you business, the\n     * others who want to {@link acquire} a section from the semaphore would be fall into the\n     * forever sleep. Therefore, never forget to calling the {@link release} function or utilize\n     * the {@link UniqueLock.lock} function instead with {@link Semaphore.get_lockable} to ensure\n     * the safety.\n     */\n    acquire(): Promise<void>;\n    /**\n     * Tries to acquire a section.\n     *\n     * Attempts to acquire a section without blocking. If succeeded to acquire a section from the\n     * semaphore immediately, it returns `true` directly. Otherwise all of the sections in the\n     * semaphore are full, the function gives up the trial immediately and returns `false`\n     * directly.\n     *\n     * Note that, if you succeeded to acquire a section from the semaphore (returns `true) but do\n     * not call the {@link release} function after your business, the others who want to\n     * {@link acquire} a section from the semaphore would be fall into the forever sleep.\n     * Therefore, never forget to calling the {@link release} function or utilize the\n     * {@link UniqueLock.try_lock} function instead with {@link Semaphore.get_lockable} to ensure\n     * the safety.\n     *\n     * @return Whether succeeded to acquire or not.\n     */\n    try_acquire(): Promise<boolean>;\n    /**\n     * Tries to acquire a section until timeout.\n     *\n     * Attempts to acquire a section from the semaphore until timeout. If succeeded to acquire a\n     * section until the timeout, it returns `true`. Otherwise failed to acquiring a section in\n     * given the time, the function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring a section in the given time (returns `false`), it means that there're\n     * someone who have already {@link acquire acquired} sections and do not return them over the\n     * time expiration.\n     *\n     * Note that, if you succeeded to acquire a section from the semaphore (returns `true) but do\n     * not call the {@link release} function after your business, the others who want to\n     * {@link acquire} a section from the semaphore would be fall into the forever sleep.\n     * Therefore, never forget to calling the {@link release} function or utilize the\n     * {@link UniqueLock.try_acquire_for} function instead with {@link Semaphore.get_lockable} to\n     * ensure the safety.\n     *\n     * @param ms The maximum miliseconds for waiting.\n     * @return Whether succeded to acquire or not.\n     */\n    try_acquire_for(ms: number): Promise<boolean>;\n    /**\n     * Tries to acquire a section until timeout.\n     *\n     * Attempts to acquire a section from the semaphore until time expiration. If succeeded to\n     * acquire a section until the time expiration, it returns `true`. Otherwise failed to\n     * acquiring a section in the given time, the function gives up the trial and returns `false`.\n     *\n     * Failed to acquiring a section in the given time (returns `false`), it means that there're\n     * someone who have already {@link acquire acquired} sections and do not return them over the\n     * time expiration.\n     *\n     * Note that, if you succeeded to acquire a section from the semaphore (returns `true) but do\n     * not call the {@link release} function after your business, the others who want to\n     * {@link acquire} a section from the semaphore would be fall into the forever sleep.\n     * Therefore, never forget to calling the {@link release} function or utilize the\n     * {@link UniqueLock.try_acquire_until} function instead with {@link Semaphore.get_lockable}\n     * to ensure the safety.\n     *\n     * @param at The maximum time point to wait.\n     * @return Whether succeded to acquire or not.\n     */\n    try_acquire_until(at: Date): Promise<boolean>;\n    /**\n     * Release sections.\n     *\n     * When you call this {@link release} method and there're someone who are currently blocked\n     * by attemping to {@link acquire} a section from this semaphore, *n* of them\n     * (FIFO; first-in-first-out) would {@link acquire} those {@link release released} sections\n     * and continue their executions.\n     *\n     * Otherwise, there's not anyone who is {@link acquire acquiring} the section or number of\n     * the blocked are less than *n*, the {@link OutOfRange} error would be thrown.\n     *\n     * > As you know, when you succeeded to {@link acquire} a section, you don't have to forget\n     * > to calling this {@link release} method after your business. If you forget it, it would\n     * > be a terrible situation for the others who're attempting to {@link acquire} a section\n     * > from this semaphore.\n     * >\n     * > However, if you utilize the {@link UniqueLock} with {@link Semaphore.get_lockable}, you\n     * > don't need to consider about this {@link release} method. Just define your business into\n     * > a callback function as a parameter of methods of the {@link UniqueLock}, then this\n     * > {@link release} method would be automatically called by the {@link UniqueLock} after the\n     * > business.\n     *\n     * @param n Number of sections to be released. Default is 1.\n     * @throw {@link OutOfRange} when *n* is greater than currently {@link acquire acquired} sections.\n     */\n    release(n?: number): Promise<void>;\n    private _Cancel;\n}\n/**\n *\n */\nexport declare namespace Semaphore {\n    /**\n     * Capsules a {@link Semaphore} to be suitable for the {@link UniqueLock}.\n     *\n     * @param semaphore Target semaphore to capsule.\n     * @return Lockable instance suitable for the {@link UniqueLock}\n     */\n    function get_lockable<SemaphoreT extends Pick<Semaphore, \"acquire\" | \"try_acquire\" | \"try_acquire_for\" | \"try_acquire_until\" | \"release\">>(semaphore: SemaphoreT): ITimedLockable;\n}\n",
    "node_modules/tstl/lib/thread/SharedLock.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ISharedLockable } from \"../base/thread/ISharedLockable\";\nimport { ISharedTimedLockable } from \"../base/thread/ISharedTimedLockable\";\n/**\n *\n */\nexport declare class SharedLock {\n}\n/**\n * Shared mutex wrapper for the safe read lock.\n *\n * The module {@link SharedLock} is a collection of general purpose functions wrapping shared\n * mutex for ensuring the safe lock. If you *lock* a mutex (with your business logic code) through\n * any function of the {@link SharedLock} module, the shared mutex would be automatically\n * *unlocked* after your business, even if an error has been occured in your business.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace SharedLock {\n    /**\n     * Read locks a shared mutex with your business.\n     *\n     * Shares a mutex until be the *closure* has been completed. If there're someone who have\n     * already {@link ILockable.lock monopolied} the mutex, the function call would be blocked\n     * until all of them to {@link unlock return} their acquisitions.\n     *\n     * When succeeded to {@link ISharedLockable.lock_shared share} the mutex, the {@link lock}\n     * function will call the *closure*, a custom function defning your business. After the\n     * *closure* function be returned, the {@link lock} function automatically\n     * {@link ISharedLockable.unlock_shared unlocks} the mutex, even if the *closure* function\n     * throws any error.\n     *\n     * Therefore, when using this {@link lock} function, you don't need to consider about\n     * {@link ISharedLockable.unlock_shared returning} the lock acquistion after your business.\n     * It would just be done automatically.\n     *\n     * @param mutex Target shared mutex to read lock.\n     * @param closure A function defining your business.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function lock<Mutex extends Pick<ISharedLockable, \"lock_shared\" | \"unlock_shared\">>(mutex: Mutex, closure: Closure): Promise<void>;\n    /**\n     * Tries to read lock a shared mutex with your business.\n     *\n     * Attemps to share a mutex without blocking. If succeeded to share the mutex immediately, it\n     * returns `true` directly. Otherwise there's someone who has already\n     * {@link ILockable.lock monopolied} the mutex, the function gives up the trial immediately\n     * and returns `false` directly without calling the *closure*.\n     *\n     * When succeeded to {@link ISharedLockable.lock_shared share} the mutex, the {@link try_lock}\n     * function will call the *closure*, a custom function defning your business. After the\n     * *closure* function be returned, the {@link try_lock} function automatically\n     * {@link ISharedLockable.unlock_shared unlocks} the mutex, even if the *closure* function\n     * throws any error.\n     *\n     * Therefore, when using this {@link try_lock} function, you don't need to consider about\n     * {@link ISharedLockable.unlock_shared returning} the lock acquistion after your business.\n     * It would just be done automatically.\n     *\n     * @param mutex Target shared mutex to try read lock.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to share the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock<Mutex extends Pick<ISharedLockable, \"try_lock_shared\" | \"unlock_shared\">>(mutex: Mutex, closure: Closure): Promise<boolean>;\n    /**\n     * Tries to read lock a shared mutex with your business until timeout.\n     *\n     * Attemps to share a mutex until timeout. If succeeded to share the mutex until timeout, it\n     * returns `true` after calling the *closure*. Otherwise failed to acquiring the shared lock\n     * in the given time, the function gives up the trial and returns `false` without calling the\n     * *closure*.\n     *\n     * Failed to acquring the shared lock in the given time (returns `false`), it means that\n     * there's someone who has already {@link ILockable.lock monopolied} the mutex and does not\n     * return it over the timeout.\n     *\n     * When succeeded to {@link ISharedLockable.lock_shared share} the mutex, the\n     * {@link try_lock_for} function will call the *closure*, a custom function defning your\n     * business. After the *closure* function be returned, the {@link try_lock} function\n     * automatically {@link ISharedLockable.unlock_shared unlocks} the mutex, even if the\n     * *closure* function throws any error.\n     *\n     * Therefore, when using this {@link try_lock_for} function, you don't need to consider about\n     * {@link ISharedLockable.unlock_shared returning} the lock acquistion after your business.\n     * It would just be done automatically.\n     *\n     * @param mutex Target mutex to try lock until timeout.\n     * @param ms The maximum miliseconds for waiting.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to share the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock_for<Mutex extends Pick<ISharedTimedLockable, \"try_lock_shared_for\" | \"unlock_shared\">>(mutex: Mutex, ms: number, closure: Closure): Promise<boolean>;\n    /**\n     * Tries to read lock a shared mutex with your business until time expiration.\n     *\n     * Attemps to share a mutex until time expiration. If succeeded to share the mutex until the\n     * time expiration, it returns `true` after calling the *closure*. Otherwise failed to\n     * acquiring the shared lock in the given time, the function gives up the trial and returns\n     * `false` without calling the *closure*.\n     *\n     * Failed to acquring the shared lock in the given time (returns `false`), it means that\n     * there's someone who has already {@link ILockable.lock monopolied} the mutex and does not\n     * return it over the time expiration.\n     *\n     * When succeeded to {@link ISharedLockable.lock_shared share} the mutex, the\n     * {@link try_lock_until} function will call the *closure*, a custom function defning your\n     * business. After the *closure* function be returned, the {@link try_lock} function\n     * automatically {@link ISharedLockable.unlock_shared unlocks} the mutex, even if the\n     * *closure* function throws any error.\n     *\n     * Therefore, when using this {@link try_lock_until} function, you don't need to consider\n     * about {@link ISharedLockable.unlock_shared returning} the lock acquistion after your\n     * business. It would just be done automatically.\n     *\n     * @param mutex Target mutex to try lock until time expiration.\n     * @param at The maximum time point to wait.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to share the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock_until<Mutex extends Pick<ISharedTimedLockable, \"try_lock_shared_until\" | \"unlock_shared\">>(mutex: Mutex, at: Date, closure: Closure): Promise<boolean>;\n    /**\n     * Type of closure function defining your business logic.\n     */\n    type Closure = () => void | Promise<void>;\n    export {};\n}\n",
    "node_modules/tstl/lib/thread/SharedMutex.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ISharedLockable } from \"../base/thread/ISharedLockable\";\n/**\n * Shared mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SharedMutex implements ISharedLockable {\n    private mutex_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * @inheritDoc\n     */\n    lock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    lock_shared(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_shared(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock_shared(): Promise<void>;\n}\n",
    "node_modules/tstl/lib/thread/SharedTimedMutex.d.ts": "import { ISharedTimedLockable } from \"../base/thread/ISharedTimedLockable\";\n/**\n * Shared timed mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class SharedTimedMutex implements ISharedTimedLockable {\n    private source_;\n    private queue_;\n    private writing_;\n    private reading_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    private _Current_access_type;\n    /**\n     * @inheritDoc\n     */\n    lock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_for(ms: number): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_until(at: Date): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    lock_shared(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_shared(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_shared_for(ms: number): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_shared_until(at: Date): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock_shared(): Promise<void>;\n    private _Release;\n    private _Cancel;\n}\n",
    "node_modules/tstl/lib/thread/Singleton.d.ts": "/**\n * Singleton generator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Singleton<T, Args extends any[] = []> {\n    private readonly closure_;\n    private value_;\n    constructor(closure: (...args: Args) => T);\n    get(...args: Args): T;\n}\n",
    "node_modules/tstl/lib/thread/TimedMutex.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ITimedLockable } from \"../base/thread/ITimedLockable\";\n/**\n * Timed mutex.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TimedMutex implements ITimedLockable {\n    private mutex_;\n    /**\n     * Default Constructor.\n     */\n    constructor();\n    /**\n     * @inheritDoc\n     */\n    lock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock(): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    unlock(): Promise<void>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_for(ms: number): Promise<boolean>;\n    /**\n     * @inheritDoc\n     */\n    try_lock_until(at: Date): Promise<boolean>;\n}\n",
    "node_modules/tstl/lib/thread/TimedSingleton.d.ts": "/**\n * Timed singleton generator.\n *\n * The `TimedSingleton` is a type of {@link Singleton} class who re-constructs the singleton\n * value repeatedly whenever specific time has been elapsed after the last lazy construction.\n *\n * @template T Type of the value to be lazy-constructed\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class TimedSingleton<T, Args extends any[] = []> {\n    private readonly interval_;\n    private readonly closure_;\n    private expired_at_;\n    private value_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param interval Specific interval time, to determine whether re-generation of the singleton value is required or not, as milliseconds\n     * @param closure Lazy constructor function returning the target value\n     */\n    constructor(interval: number, closure: (...args: Args) => T);\n    /**\n     * Get value.\n     *\n     * @returns The lazy constructed value\n     */\n    get(...args: Args): T;\n}\n",
    "node_modules/tstl/lib/thread/UniqueLock.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ILockable } from \"../base/thread/ILockable\";\nimport { ITimedLockable } from \"../base/thread/ITimedLockable\";\n/**\n *\n */\nexport declare class UniqueLock {\n}\n/**\n * Mutex wrapper for the safe write lock.\n *\n * The module {@link UniqueLock} is a collection of general purpose functions wrapping mutex for\n * ensuring the safe lock. If you *lock* a mutex (with your business logic code) through any\n * function of the {@link UniqueLock} module, the mutex would be automatically *unlocked* after\n * your business, even if an error has been occured in your business.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace UniqueLock {\n    /**\n     * Write locks a mutex with your business logic code.\n     *\n     * Monopolies a mutex until be the *closure* has been completed. If there're someone who have\n     * already {@link ILockable.lock monopolied} or {@link ISharedLockable.lock shared} the mutex,\n     * the function call would be blocked until all of them return their acquisitions by calling\n     * {@link ILockable.unlock} or {@link ISharedLockable.unlock_shared} methods.\n     *\n     * When succeeded to {@link ILockable.lock monopoly} the mutex, the {@link lock} function will\n     * call the *closure*, a custom function definig your business. After the *closure* function\n     * be returned, the {@link lock} function automatically {@link ILockable.unlock unlocks} the\n     * mutex, even if the *closure* function throws any error.\n     *\n     * Therefore, when using this {@link lock} function, you don't need to consider about\n     * {@link ILockable.unlock returning} the lock acquistion after your business. It would just\n     * be done automatically.\n     *\n     * @param mutex Target mutex to write lock.\n     * @param closure A function defining your business.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function lock<Mutex extends Pick<ILockable, \"lock\" | \"unlock\">>(mutex: Mutex, closure: Closure): Promise<void>;\n    /**\n     * Tries to write lock a mutex with your business.\n     *\n     * Attempts to monopoly a mutex without blocking. If succeeded to monopoly the mutex\n     * immediately, it returns `true` after calling the *closure*. Otherwise there's someone who\n     * has already {@link ILockable.lock monopolied} or {@link ISharedLockable.lock shared} the\n     * mutex, the function gives up the trial immediately and returns `false` directly without\n     * calling the *closure*.\n     *\n     * When succeeded to {@link ILockable.lock monopoly} the mutex, the {@link try_lock} function\n     * will call the *closure*, a custom function definig your business. After the *closure*\n     * function be returned, the {@link try_lock} function automatically\n     * {@link ILockable.unlock unlocks} the mutex, even if the *closure* function throws any\n     * error.\n     *\n     * Therefore, when using this {@link try_lock} function, you don't need to consider about\n     * {@link ILockable.unlock returning} the lock acquistion after your business. It would just\n     * be done automatically.\n     *\n     * @param mutex Target mutex to try write lock.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to monopoly the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock<Mutex extends Pick<ILockable, \"try_lock\" | \"unlock\">>(mutex: Mutex, closure: Closure): Promise<boolean>;\n    /**\n     * Tries to write lock a mutex with your business until timeout.\n     *\n     * Attempts to monopoly a mutex until timeout. If succeeded to monopoly the mutex until the\n     * timeout, it returns `true` after calling the *closure*. Otherwise failed to acquiring the\n     * lock in the given time, the function gives up the trial and returns `false` without calling\n     * the *closure*.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link ILockable.lock monopolied} or {@link ISharedLockable.lock}\n     * the mutex and does not return it over the timeout.\n     *\n     * When succeeded to {@link ILockable.lock monopoly} the mutex, the {@link try_lock_for}\n     * function will call the *closure*, a custom function definig your business. After the\n     * *closure* function be returned, the {@link try_lock_for} function automatically\n     * {@link ILockable.unlock unlocks} the mutex and returns `true`, even if the *closure*\n     * function throws any error.\n     *\n     * Therefore, when using this {@link try_lock_for} function, you don't need to consider about\n     * {@link ILockable.unlock returning} the lock acquistion after your business. It would just\n     * be done automatically.\n     *\n     * @param mutex Target mutex to try write lock until timeout.\n     * @param ms The maximum miliseconds for waiting.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to monopoly the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock_for<Mutex extends Pick<ITimedLockable, \"try_lock_for\" | \"unlock\">>(mutex: Mutex, ms: number, closure: Closure): Promise<boolean>;\n    /**\n     * Tries to write lock a mutex with your business until time expiration.\n     *\n     * Attempts to monopoly a mutex until time expiration. If succeeded to monopoly the mutex\n     * until the time expiration, it returns `true` after calling the *closure*. Otherwise failed\n     * to acquiring the lock in the given time, the function gives up the trial and returns\n     * `false` without calling the *closure*.\n     *\n     * Failed to acquiring the lock in the given time (returns `false`), it means that there's\n     * someone who has already {@link ILockable.lock monopolied} or {@link ISharedLockable.lock}\n     * the mutex and does not return it over the time expiration.\n     *\n     * When succeeded to {@link ILockable.lock monopoly} the mutex, the {@link try_lock_until}\n     * function will call the *closure*, a custom function definig your business. After the\n     * *closure* function be returned, the {@link try_lock_until} function automatically\n     * {@link ILockable.unlock unlocks} the mutex and returns `true`, even if the *closure*\n     * function throws any error.\n     *\n     * TTherefore, when using this {@link try_lock_until} function, you don't need to consider\n     * about {@link ILockable.unlock returning} the lock acquistion after your business. It would\n     * just be done automatically.\n     *\n     * @param mutex Target mutex to try write lock until time expiration.\n     * @param at The maximum time point to wait.\n     * @param closure A function defining your business.\n     * @return Whether succeeded to monopoly the mutex or not.\n     *\n     * @throw Exception would be thrown if the *closure* function throws any error.\n     */\n    export function try_lock_until<Mutex extends Pick<ITimedLockable, \"try_lock_until\" | \"unlock\">>(mutex: Mutex, at: Date, closure: Closure): Promise<boolean>;\n    /**\n     * Type of closure function defining your business logic.\n     */\n    type Closure = () => void | Promise<void>;\n    export {};\n}\n",
    "node_modules/tstl/lib/thread/VariadicMutableSingleton.d.ts": "/**\n * Variadic mutable singleton generator.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class VariadicMutableSingleton<T, Args extends any[]> {\n    /**\n     * @hidden\n     */\n    private readonly closure_;\n    /**\n     * @hidden\n     */\n    private readonly dict_;\n    constructor(closure: (...args: Args) => Promise<T>, hashFunc?: (args: Args) => number, pred?: (x: Args, y: Args) => boolean);\n    set(...items: [...Args, T]): Promise<void>;\n    reload(...args: Args): Promise<T>;\n    clear(): Promise<void>;\n    clear(...args: Args): Promise<void>;\n    get(...args: Args): Promise<T>;\n    is_loaded(...args: Args): Promise<boolean>;\n    /**\n     * @hidden\n     */\n    private _Get_singleton;\n}\n",
    "node_modules/tstl/lib/thread/VariadicSingleton.d.ts": "/**\n * Variadic singleton generator.\n *\n * @author Jeongho Nam - https://github.comm/samchon\n */\nexport declare class VariadicSingleton<T, Args extends any[]> {\n    private readonly closure_;\n    private readonly dict_;\n    constructor(closure: (...args: Args) => T, hashFunc?: (args: Args) => number, pred?: (x: Args, y: Args) => boolean);\n    get(...args: Args): T;\n}\n",
    "node_modules/tstl/lib/thread/VariadicTimedSingleton.d.ts": "/**\n * Variadic timed singleton generator.\n *\n * The `VariadicTimedSingleton` is a type of {@link VariadicSingleton} class who re-constructs\n * the singleton value repeatedly whenever specific time has been elapsed after the last lazy\n * construction.\n *\n * @template T Type of the value to be lazy-constructed\n * @template Args Type of parameters of the lazy constructor function\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class VariadicTimedSingleton<T, Args extends any[]> {\n    private readonly interval_;\n    private readonly closure_;\n    private readonly dict_;\n    /**\n     * Initializer Constructor.\n     *\n     * @param interval Specific interval time, to determine whether re-generation of the singleton value is required or not, as milliseconds\n     * @param closure Lazy constructor function returning the target value\n     * @param hasher Hash function for the *lazy constructor* function arguments\n     * @param pred Predicator function for the *lazy constructor* function arguments\n     */\n    constructor(interval: number, closure: (...args: Args) => T, hasher?: (args: Args) => number, pred?: (x: Args, y: Args) => boolean);\n    /**\n     * Get value.\n     *\n     * @param args Parameters for the lazy constructor function\n     * @returns The lazy constructed value\n     */\n    get(...args: Args): T;\n}\n",
    "node_modules/tstl/lib/thread/global.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { ILockable } from \"../base/thread/ILockable\";\n/**\n * Sleep for time span.\n *\n * @param ms The milliseconds to sleep.\n */\nexport declare function sleep_for(ms: number): Promise<void>;\n/**\n * Sleep until time expiration.\n *\n * @param at The time point to wake up.\n */\nexport declare function sleep_until(at: Date): Promise<void>;\n/**\n * Lock multiple mutexes.\n *\n * @param items Items to lock.\n */\nexport declare function lock(...items: Pick<ILockable, \"lock\">[]): Promise<void>;\n/**\n * Try lock mutexes.\n *\n * @param items Items to try lock.\n * @return Index of mutex who failed to lock. None of them're failed, then returns `-1`.\n */\nexport declare function try_lock(...items: Pick<ILockable, \"try_lock\">[]): Promise<number>;\n",
    "node_modules/tstl/lib/thread/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./Mutex\";\nexport * from \"./TimedMutex\";\nexport * from \"./SharedMutex\";\nexport * from \"./SharedTimedMutex\";\nexport * from \"./ConditionVariable\";\nexport * from \"./UniqueLock\";\nexport * from \"./SharedLock\";\nexport * from \"./Semaphore\";\nexport * from \"./Latch\";\nexport * from \"./Barrier\";\nexport * from \"./MutableSingleton\";\nexport * from \"./TimedSingleton\";\nexport * from \"./VariadicMutableSingleton\";\nexport * from \"./VariadicTimedSingleton\";\nexport * from \"./VariadicSingleton\";\nexport * from \"./Singleton\";\nexport * from \"./global\";\n",
    "node_modules/tstl/lib/utility/Entry.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IPair } from \"./IPair\";\nimport { IComparable } from \"../functional/IComparable\";\n/**\n * Entry for mapping.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Entry<Key, T> implements Readonly<IPair<Key, T>>, IComparable<Entry<Key, T>> {\n    /**\n     * The first, key element.\n     */\n    readonly first: Key;\n    /**\n     * The second, mapped element.\n     */\n    second: T;\n    /**\n     * Intializer Constructor.\n     *\n     * @param first The first, key element.\n     * @param second The second, mapped element.\n     */\n    constructor(first: Key, second: T);\n    /**\n     * @inheritDoc\n     */\n    equals(obj: Entry<Key, T>): boolean;\n    /**\n     * @inheritDoc\n     */\n    less(obj: Entry<Key, T>): boolean;\n    /**\n     * @inheritDoc\n     */\n    hashCode(): number;\n}\n",
    "node_modules/tstl/lib/utility/IPair.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Pair of two elements.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IPair<First, Second> {\n    /**\n     * The first element.\n     */\n    first: First;\n    /**\n     * The second element.\n     */\n    second: Second;\n}\n",
    "node_modules/tstl/lib/utility/Pair.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nimport { IPair } from \"./IPair\";\nimport { IComparable } from \"../functional/IComparable\";\n/**\n * Pair of two elements.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare class Pair<First, Second> implements IPair<First, Second>, IComparable<Pair<First, Second>> {\n    /**\n     * @inheritDoc\n     */\n    first: First;\n    /**\n     * @inheritDoc\n     */\n    second: Second;\n    /**\n     * Initializer Constructor.\n     *\n     * @param first The first element.\n     * @param second The second element.\n     */\n    constructor(first: First, second: Second);\n    /**\n     * @inheritDoc\n     */\n    equals<U1 extends First, U2 extends Second>(pair: Pair<U1, U2>): boolean;\n    /**\n     * @inheritDoc\n     */\n    less<U1 extends First, U2 extends Second>(pair: Pair<U1, U2>): boolean;\n    /**\n     * @inheritDoc\n     */\n    hashCode(): number;\n}\n/**\n * Create a {@link Pair}.\n *\n * @param first The 1st element.\n * @param second The 2nd element.\n *\n * @return A {@link Pair} object.\n */\nexport declare function make_pair<First, Second>(first: First, second: Second): Pair<First, Second>;\n",
    "node_modules/tstl/lib/utility/index.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\nexport * from \"./IPair\";\nexport * from \"./Pair\";\nexport * from \"./Entry\";\nexport * from \"./node\";\n",
    "node_modules/tstl/lib/utility/node.d.ts": "/**\n * @packageDocumentation\n * @module std\n */\n/**\n * Test whether the code is running on NodeJS.\n *\n * @return Whether NodeJS or not.\n */\nexport declare function is_node(): boolean;\n",
    "node_modules/tstl/package.json": "{\n  \"name\": \"tstl\",\n  \"description\": \"TypeScript-STL (Standard Template Library, migrated from C++)\",\n  \"author\": {\n    \"name\": \"Jeongho Nam\",\n    \"email\": \"samchon.github@gmail.com\",\n    \"url\": \"https://github.com/samchon\"\n  },\n  \"version\": \"3.0.0\",\n  \"main\": \"./lib/index.js\",\n  \"typings\": \"./lib/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"require\": \"./lib/index.js\",\n      \"import\": \"./lib/index.mjs\"\n    }\n  },\n  \"scripts\": {\n    \"api\": \"typedoc src --exclude \\\"**/+(test|benchmark)/**\\\" --excludeNotDocumented --plugin typedoc-plugin-external-module-name --plugin typedoc-plugin-exclude-references --out ../tstl@gh-pages/api\",\n    \"benchmark\": \"node benchmark\",\n    \"build\": \"rimraf lib && tsc && rollup -c\",\n    \"dev\": \"rimraf lib && tsc --watch\",\n    \"prettier\": \"prettier --write ./src\",\n    \"test\": \"node lib/test\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-terser\": \"^0.4.4\",\n    \"@rollup/plugin-typescript\": \"^11.1.6\",\n    \"@types/cli\": \"^0.11.19\",\n    \"@types/node\": \"^14.6.3\",\n    \"cli\": \"^1.0.1\",\n    \"prettier\": \"^2.7.1\",\n    \"rimraf\": \"^3.0.2\",\n    \"rollup\": \"^4.13.1\",\n    \"source-map-support\": \"^0.5.21\",\n    \"ts-node\": \"^10.7.0\",\n    \"tslib\": \"^2.6.2\",\n    \"typedoc\": \"^0.25.12\",\n    \"typescript\": \"^5.4.3\"\n  },\n  \"homepage\": \"https://github.com/samchon/tstl\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/tstl\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/tstl/issues\"\n  },\n  \"license\": \"MIT\",\n  \"keywords\": [\n    \"tstl\",\n    \"typecript\",\n    \"c++\",\n    \"cpp\",\n    \"stl\",\n    \"standard template library\",\n    \"algorithm\",\n    \"container\",\n    \"exception\",\n    \"functional\",\n    \"iterator\",\n    \"numeric\",\n    \"ranges\",\n    \"thread\",\n    \"utility\",\n    \"base\",\n    \"experimental\",\n    \"internal\",\n    \"Vector\",\n    \"Deque\",\n    \"List\",\n    \"VectorBoolean\",\n    \"ForwardList\",\n    \"Stack\",\n    \"Queue\",\n    \"PriorityQueue\",\n    \"FlatMap\",\n    \"FlatMultiMap\",\n    \"FlatMultiSet\",\n    \"FlatSet\",\n    \"HashMap\",\n    \"HashMultiMap\",\n    \"HashMultiSet\",\n    \"HashSet\",\n    \"TreeMap\",\n    \"TreeMultiMap\",\n    \"TreeMultiSet\",\n    \"TreeSet\",\n    \"ConditionVariable\",\n    \"Semaphore\",\n    \"Latch\",\n    \"Barrier\",\n    \"FlexBarrier\",\n    \"Mutex\",\n    \"TimedMutex\",\n    \"SharedMutex\",\n    \"SharedTimedMutex\",\n    \"SharedLock\",\n    \"UniqueLock\",\n    \"Singleton\"\n  ],\n  \"files\": [\n    \"LICENSE\",\n    \"README.md\",\n    \"lib/\",\n    \"src/\",\n    \"!lib/benchmark\",\n    \"!lib/test\",\n    \"!src/benchmark\",\n    \"!src/test\"\n  ]\n}\n",
    "node_modules/type-fest/base.d.ts": "// Types that are compatible with all supported TypeScript versions.\n// It's shared between all TypeScript version-specific definitions.\n\n// Basic\nexport * from './source/basic';\nexport * from './source/typed-array';\n\n// Utilities\nexport {Except} from './source/except';\nexport {Mutable} from './source/mutable';\nexport {Merge} from './source/merge';\nexport {MergeExclusive} from './source/merge-exclusive';\nexport {RequireAtLeastOne} from './source/require-at-least-one';\nexport {RequireExactlyOne} from './source/require-exactly-one';\nexport {PartialDeep} from './source/partial-deep';\nexport {ReadonlyDeep} from './source/readonly-deep';\nexport {LiteralUnion} from './source/literal-union';\nexport {Promisable} from './source/promisable';\nexport {Opaque} from './source/opaque';\nexport {SetOptional} from './source/set-optional';\nexport {SetRequired} from './source/set-required';\nexport {ValueOf} from './source/value-of';\nexport {PromiseValue} from './source/promise-value';\nexport {AsyncReturnType} from './source/async-return-type';\nexport {ConditionalExcept} from './source/conditional-except';\nexport {ConditionalKeys} from './source/conditional-keys';\nexport {ConditionalPick} from './source/conditional-pick';\nexport {UnionToIntersection} from './source/union-to-intersection';\nexport {Stringified} from './source/stringified';\nexport {FixedLengthArray} from './source/fixed-length-array';\nexport {IterableElement} from './source/iterable-element';\nexport {Entry} from './source/entry';\nexport {Entries} from './source/entries';\nexport {SetReturnType} from './source/set-return-type';\nexport {Asyncify} from './source/asyncify';\n\n// Miscellaneous\nexport {PackageJson} from './source/package-json';\nexport {TsConfigJson} from './source/tsconfig-json';\n",
    "node_modules/type-fest/index.d.ts": "// These are all the basic types that's compatible with all supported TypeScript versions.\nexport * from './base';\n",
    "node_modules/type-fest/package.json": "{\n\t\"name\": \"type-fest\",\n\t\"version\": \"0.21.3\",\n\t\"description\": \"A collection of essential TypeScript types\",\n\t\"license\": \"(MIT OR CC0-1.0)\",\n\t\"repository\": \"sindresorhus/type-fest\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && tsd && tsc\"\n\t},\n\t\"files\": [\n\t\t\"index.d.ts\",\n\t\t\"base.d.ts\",\n\t\t\"source\",\n\t\t\"ts41\"\n\t],\n\t\"keywords\": [\n\t\t\"typescript\",\n\t\t\"ts\",\n\t\t\"types\",\n\t\t\"utility\",\n\t\t\"util\",\n\t\t\"utilities\",\n\t\t\"omit\",\n\t\t\"merge\",\n\t\t\"json\"\n\t],\n\t\"devDependencies\": {\n\t\t\"@sindresorhus/tsconfig\": \"~0.7.0\",\n\t\t\"expect-type\": \"^0.11.0\",\n\t\t\"tsd\": \"^0.14.0\",\n\t\t\"typescript\": \"^4.1.3\",\n\t\t\"xo\": \"^0.36.1\"\n\t},\n\t\"types\": \"./index.d.ts\",\n\t\"typesVersions\": {\n\t\t\">=4.1\": {\n\t\t\t\"*\": [\n\t\t\t\t\"ts41/*\"\n\t\t\t]\n\t\t}\n\t},\n\t\"xo\": {\n\t\t\"rules\": {\n\t\t\t\"@typescript-eslint/ban-types\": \"off\",\n\t\t\t\"@typescript-eslint/indent\": \"off\",\n\t\t\t\"node/no-unsupported-features/es-builtins\": \"off\"\n\t\t}\n\t}\n}\n",
    "node_modules/type-fest/source/async-return-type.d.ts": "import {PromiseValue} from './promise-value';\n\ntype AsyncFunction = (...args: any[]) => Promise<unknown>;\n\n/**\nUnwrap the return type of a function that returns a `Promise`.\n\nThere has been [discussion](https://github.com/microsoft/TypeScript/pull/35998) about implementing this type in TypeScript.\n\n@example\n```ts\nimport {AsyncReturnType} from 'type-fest';\nimport {asyncFunction} from 'api';\n\n// This type resolves to the unwrapped return type of `asyncFunction`.\ntype Value = AsyncReturnType<typeof asyncFunction>;\n\nasync function doSomething(value: Value) {}\n\nasyncFunction().then(value => doSomething(value));\n```\n*/\nexport type AsyncReturnType<Target extends AsyncFunction> = PromiseValue<ReturnType<Target>>;\n",
    "node_modules/type-fest/source/asyncify.d.ts": "import {PromiseValue} from './promise-value';\nimport {SetReturnType} from './set-return-type';\n\n/**\nCreate an async version of the given function type, by boxing the return type in `Promise` while keeping the same parameter types.\n\nUse-case: You have two functions, one synchronous and one asynchronous that do the same thing. Instead of having to duplicate the type definition, you can use `Asyncify` to reuse the synchronous type.\n\n@example\n```\nimport {Asyncify} from 'type-fest';\n\n// Synchronous function.\nfunction getFooSync(someArg: SomeType): Foo {\n\t// …\n}\n\ntype AsyncifiedFooGetter = Asyncify<typeof getFooSync>;\n//=> type AsyncifiedFooGetter = (someArg: SomeType) => Promise<Foo>;\n\n// Same as `getFooSync` but asynchronous.\nconst getFooAsync: AsyncifiedFooGetter = (someArg) => {\n\t// TypeScript now knows that `someArg` is `SomeType` automatically.\n\t// It also knows that this function must return `Promise<Foo>`.\n\t// If you have `@typescript-eslint/promise-function-async` linter rule enabled, it will even report that \"Functions that return promises must be async.\".\n\n\t// …\n}\n```\n*/\nexport type Asyncify<Fn extends (...args: any[]) => any> = SetReturnType<Fn, Promise<PromiseValue<ReturnType<Fn>>>>;\n",
    "node_modules/type-fest/source/basic.d.ts": "/// <reference lib=\"es2020.bigint\"/>\n\n// TODO: This can just be `export type Primitive = not object` when the `not` keyword is out.\n/**\nMatches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).\n*/\nexport type Primitive =\n\t| null\n\t| undefined\n\t| string\n\t| number\n\t| boolean\n\t| symbol\n\t| bigint;\n\n// TODO: Remove the `= unknown` sometime  in the future when most users are on TS 3.5 as it's now the default\n/**\nMatches a [`class` constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes).\n*/\nexport type Class<T = unknown, Arguments extends any[] = any[]> = new(...arguments_: Arguments) => T;\n\n/**\nMatches a JSON object.\n\nThis type can be useful to enforce some input to be JSON-compatible or as a super-type to be extended from. Don't use this as a direct return type as the user would have to double-cast it: `jsonObject as unknown as CustomResponse`. Instead, you could extend your CustomResponse type from it to ensure your type only uses JSON-compatible types: `interface CustomResponse extends JsonObject { … }`.\n*/\nexport type JsonObject = {[Key in string]?: JsonValue};\n\n/**\nMatches a JSON array.\n*/\nexport interface JsonArray extends Array<JsonValue> {}\n\n/**\nMatches any valid JSON value.\n*/\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray;\n\ndeclare global {\n\tinterface SymbolConstructor {\n\t\treadonly observable: symbol;\n\t}\n}\n\n/**\nMatches a value that is like an [Observable](https://github.com/tc39/proposal-observable).\n*/\nexport interface ObservableLike {\n\tsubscribe(observer: (value: unknown) => void): void;\n\t[Symbol.observable](): ObservableLike;\n}\n",
    "node_modules/type-fest/source/conditional-except.d.ts": "import {Except} from './except';\nimport {ConditionalKeys} from './conditional-keys';\n\n/**\nExclude keys from a shape that matches the given `Condition`.\n\nThis is useful when you want to create a new type with a specific set of keys from a shape. For example, you might want to exclude all the primitive properties from a class and form a new shape containing everything but the primitive properties.\n\n@example\n```\nimport {Primitive, ConditionalExcept} from 'type-fest';\n\nclass Awesome {\n\tname: string;\n\tsuccesses: number;\n\tfailures: bigint;\n\n\trun() {}\n}\n\ntype ExceptPrimitivesFromAwesome = ConditionalExcept<Awesome, Primitive>;\n//=> {run: () => void}\n```\n\n@example\n```\nimport {ConditionalExcept} from 'type-fest';\n\ninterface Example {\n\ta: string;\n\tb: string | number;\n\tc: () => void;\n\td: {};\n}\n\ntype NonStringKeysOnly = ConditionalExcept<Example, string>;\n//=> {b: string | number; c: () => void; d: {}}\n```\n*/\nexport type ConditionalExcept<Base, Condition> = Except<\n\tBase,\n\tConditionalKeys<Base, Condition>\n>;\n",
    "node_modules/type-fest/source/conditional-keys.d.ts": "/**\nExtract the keys from a type where the value type of the key extends the given `Condition`.\n\nInternally this is used for the `ConditionalPick` and `ConditionalExcept` types.\n\n@example\n```\nimport {ConditionalKeys} from 'type-fest';\n\ninterface Example {\n\ta: string;\n\tb: string | number;\n\tc?: string;\n\td: {};\n}\n\ntype StringKeysOnly = ConditionalKeys<Example, string>;\n//=> 'a'\n```\n\nTo support partial types, make sure your `Condition` is a union of undefined (for example, `string | undefined`) as demonstrated below.\n\n@example\n```\ntype StringKeysAndUndefined = ConditionalKeys<Example, string | undefined>;\n//=> 'a' | 'c'\n```\n*/\nexport type ConditionalKeys<Base, Condition> = NonNullable<\n\t// Wrap in `NonNullable` to strip away the `undefined` type from the produced union.\n\t{\n\t\t// Map through all the keys of the given base type.\n\t\t[Key in keyof Base]:\n\t\t\t// Pick only keys with types extending the given `Condition` type.\n\t\t\tBase[Key] extends Condition\n\t\t\t\t// Retain this key since the condition passes.\n\t\t\t\t? Key\n\t\t\t\t// Discard this key since the condition fails.\n\t\t\t\t: never;\n\n\t// Convert the produced object into a union type of the keys which passed the conditional test.\n\t}[keyof Base]\n>;\n",
    "node_modules/type-fest/source/conditional-pick.d.ts": "import {ConditionalKeys} from './conditional-keys';\n\n/**\nPick keys from the shape that matches the given `Condition`.\n\nThis is useful when you want to create a new type from a specific subset of an existing type. For example, you might want to pick all the primitive properties from a class and form a new automatically derived type.\n\n@example\n```\nimport {Primitive, ConditionalPick} from 'type-fest';\n\nclass Awesome {\n\tname: string;\n\tsuccesses: number;\n\tfailures: bigint;\n\n\trun() {}\n}\n\ntype PickPrimitivesFromAwesome = ConditionalPick<Awesome, Primitive>;\n//=> {name: string; successes: number; failures: bigint}\n```\n\n@example\n```\nimport {ConditionalPick} from 'type-fest';\n\ninterface Example {\n\ta: string;\n\tb: string | number;\n\tc: () => void;\n\td: {};\n}\n\ntype StringKeysOnly = ConditionalPick<Example, string>;\n//=> {a: string}\n```\n*/\nexport type ConditionalPick<Base, Condition> = Pick<\n\tBase,\n\tConditionalKeys<Base, Condition>\n>;\n",
    "node_modules/type-fest/source/entries.d.ts": "import {ArrayEntry, MapEntry, ObjectEntry, SetEntry} from './entry';\n\ntype ArrayEntries<BaseType extends readonly unknown[]> = Array<ArrayEntry<BaseType>>;\ntype MapEntries<BaseType> = Array<MapEntry<BaseType>>;\ntype ObjectEntries<BaseType> = Array<ObjectEntry<BaseType>>;\ntype SetEntries<BaseType extends Set<unknown>> = Array<SetEntry<BaseType>>;\n\n/**\nMany collections have an `entries` method which returns an array of a given object's own enumerable string-keyed property [key, value] pairs. The `Entries` type will return the type of that collection's entries.\n\nFor example the {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries|`Object`}, {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/entries|`Map`}, {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/entries|`Array`}, and {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/entries|`Set`} collections all have this method. Note that `WeakMap` and `WeakSet` do not have this method since their entries are not enumerable.\n\n@see `Entry` if you want to just access the type of a single entry.\n\n@example\n```\nimport {Entries} from 'type-fest';\n\ninterface Example {\n\tsomeKey: number;\n}\n\nconst manipulatesEntries = (examples: Entries<Example>) => examples.map(example => [\n\t// Does some arbitrary processing on the key (with type information available)\n\texample[0].toUpperCase(),\n\n\t// Does some arbitrary processing on the value (with type information available)\n\texample[1].toFixed()\n]);\n\nconst example: Example = {someKey: 1};\nconst entries = Object.entries(example) as Entries<Example>;\nconst output = manipulatesEntries(entries);\n\n// Objects\nconst objectExample = {a: 1};\nconst objectEntries: Entries<typeof objectExample> = [['a', 1]];\n\n// Arrays\nconst arrayExample = ['a', 1];\nconst arrayEntries: Entries<typeof arrayExample> = [[0, 'a'], [1, 1]];\n\n// Maps\nconst mapExample = new Map([['a', 1]]);\nconst mapEntries: Entries<typeof map> = [['a', 1]];\n\n// Sets\nconst setExample = new Set(['a', 1]);\nconst setEntries: Entries<typeof setExample> = [['a', 'a'], [1, 1]];\n```\n*/\nexport type Entries<BaseType> =\n\tBaseType extends Map<unknown, unknown> ? MapEntries<BaseType>\n\t\t: BaseType extends Set<unknown> ? SetEntries<BaseType>\n\t\t: BaseType extends unknown[] ? ArrayEntries<BaseType>\n\t\t: BaseType extends object ? ObjectEntries<BaseType>\n\t\t: never;\n",
    "node_modules/type-fest/source/entry.d.ts": "type MapKey<BaseType> = BaseType extends Map<infer KeyType, unknown> ? KeyType : never;\ntype MapValue<BaseType> = BaseType extends Map<unknown, infer ValueType> ? ValueType : never;\n\nexport type ArrayEntry<BaseType extends readonly unknown[]> = [number, BaseType[number]];\nexport type MapEntry<BaseType> = [MapKey<BaseType>, MapValue<BaseType>];\nexport type ObjectEntry<BaseType> = [keyof BaseType, BaseType[keyof BaseType]];\nexport type SetEntry<BaseType> = BaseType extends Set<infer ItemType> ? [ItemType, ItemType] : never;\n\n/**\nMany collections have an `entries` method which returns an array of a given object's own enumerable string-keyed property [key, value] pairs. The `Entry` type will return the type of that collection's entry.\n\nFor example the {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries|`Object`}, {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/entries|`Map`}, {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/entries|`Array`}, and {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/entries|`Set`} collections all have this method. Note that `WeakMap` and `WeakSet` do not have this method since their entries are not enumerable.\n\n@see `Entries` if you want to just access the type of the array of entries (which is the return of the `.entries()` method).\n\n@example\n```\nimport {Entry} from 'type-fest';\n\ninterface Example {\n\tsomeKey: number;\n}\n\nconst manipulatesEntry = (example: Entry<Example>) => [\n\t// Does some arbitrary processing on the key (with type information available)\n\texample[0].toUpperCase(),\n\n\t// Does some arbitrary processing on the value (with type information available)\n\texample[1].toFixed(),\n];\n\nconst example: Example = {someKey: 1};\nconst entry = Object.entries(example)[0] as Entry<Example>;\nconst output = manipulatesEntry(entry);\n\n// Objects\nconst objectExample = {a: 1};\nconst objectEntry: Entry<typeof objectExample> = ['a', 1];\n\n// Arrays\nconst arrayExample = ['a', 1];\nconst arrayEntryString: Entry<typeof arrayExample> = [0, 'a'];\nconst arrayEntryNumber: Entry<typeof arrayExample> = [1, 1];\n\n// Maps\nconst mapExample = new Map([['a', 1]]);\nconst mapEntry: Entry<typeof mapExample> = ['a', 1];\n\n// Sets\nconst setExample = new Set(['a', 1]);\nconst setEntryString: Entry<typeof setExample> = ['a', 'a'];\nconst setEntryNumber: Entry<typeof setExample> = [1, 1];\n```\n*/\nexport type Entry<BaseType> =\n\tBaseType extends Map<unknown, unknown> ? MapEntry<BaseType>\n\t\t: BaseType extends Set<unknown> ? SetEntry<BaseType>\n\t\t: BaseType extends unknown[] ? ArrayEntry<BaseType>\n\t\t: BaseType extends object ? ObjectEntry<BaseType>\n\t\t: never;\n",
    "node_modules/type-fest/source/except.d.ts": "/**\nCreate a type from an object type without certain keys.\n\nThis type is a stricter version of [`Omit`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-5.html#the-omit-helper-type). The `Omit` type does not restrict the omitted keys to be keys present on the given type, while `Except` does. The benefits of a stricter type are avoiding typos and allowing the compiler to pick up on rename refactors automatically.\n\nPlease upvote [this issue](https://github.com/microsoft/TypeScript/issues/30825) if you want to have the stricter version as a built-in in TypeScript.\n\n@example\n```\nimport {Except} from 'type-fest';\n\ntype Foo = {\n\ta: number;\n\tb: string;\n\tc: boolean;\n};\n\ntype FooWithoutA = Except<Foo, 'a' | 'c'>;\n//=> {b: string};\n```\n*/\nexport type Except<ObjectType, KeysType extends keyof ObjectType> = Pick<ObjectType, Exclude<keyof ObjectType, KeysType>>;\n",
    "node_modules/type-fest/source/fixed-length-array.d.ts": "/**\nMethods to exclude.\n*/\ntype ArrayLengthMutationKeys = 'splice' | 'push' | 'pop' | 'shift' | 'unshift';\n\n/**\nCreate a type that represents an array of the given type and length. The array's length and the `Array` prototype methods that manipulate its length are excluded in the resulting type.\n\nPlease participate in [this issue](https://github.com/microsoft/TypeScript/issues/26223) if you want to have a similiar type built into TypeScript.\n\nUse-cases:\n- Declaring fixed-length tuples or arrays with a large number of items.\n- Creating a range union (for example, `0 | 1 | 2 | 3 | 4` from the keys of such a type) without having to resort to recursive types.\n- Creating an array of coordinates with a static length, for example, length of 3 for a 3D vector.\n\n@example\n```\nimport {FixedLengthArray} from 'type-fest';\n\ntype FencingTeam = FixedLengthArray<string, 3>;\n\nconst guestFencingTeam: FencingTeam = ['Josh', 'Michael', 'Robert'];\n\nconst homeFencingTeam: FencingTeam = ['George', 'John'];\n//=> error TS2322: Type string[] is not assignable to type 'FencingTeam'\n\nguestFencingTeam.push('Sam');\n//=> error TS2339: Property 'push' does not exist on type 'FencingTeam'\n```\n*/\nexport type FixedLengthArray<Element, Length extends number, ArrayPrototype = [Element, ...Element[]]> = Pick<\n\tArrayPrototype,\n\tExclude<keyof ArrayPrototype, ArrayLengthMutationKeys>\n> & {\n\t[index: number]: Element;\n\t[Symbol.iterator]: () => IterableIterator<Element>;\n\treadonly length: Length;\n};\n",
    "node_modules/type-fest/source/iterable-element.d.ts": "/**\nGet the element type of an `Iterable`/`AsyncIterable`. For example, an array or a generator.\n\nThis can be useful, for example, if you want to get the type that is yielded in a generator function. Often the return type of those functions are not specified.\n\nThis type works with both `Iterable`s and `AsyncIterable`s, so it can be use with synchronous and asynchronous generators.\n\nHere is an example of `IterableElement` in action with a generator function:\n\n@example\n```\nfunction * iAmGenerator() {\n\tyield 1;\n\tyield 2;\n}\n\ntype MeNumber = IterableElement<ReturnType<typeof iAmGenerator>>\n```\n\nAnd here is an example with an async generator:\n\n@example\n```\nasync function * iAmGeneratorAsync() {\n\tyield 'hi';\n\tyield true;\n}\n\ntype MeStringOrBoolean = IterableElement<ReturnType<typeof iAmGeneratorAsync>>\n```\n\nMany types in JavaScript/TypeScript are iterables. This type works on all types that implement those interfaces. For example, `Array`, `Set`, `Map`, `stream.Readable`, etc.\n\nAn example with an array of strings:\n\n@example\n```\ntype MeString = IterableElement<string[]>\n```\n*/\nexport type IterableElement<TargetIterable> =\n\tTargetIterable extends Iterable<infer ElementType> ?\n\tElementType :\n\tTargetIterable extends AsyncIterable<infer ElementType> ?\n\tElementType :\n\tnever;\n",
    "node_modules/type-fest/source/literal-union.d.ts": "import {Primitive} from './basic';\n\n/**\nAllows creating a union type by combining primitive types and literal types without sacrificing auto-completion in IDEs for the literal type part of the union.\n\nCurrently, when a union type of a primitive type is combined with literal types, TypeScript loses all information about the combined literals. Thus, when such type is used in an IDE with autocompletion, no suggestions are made for the declared literals.\n\nThis type is a workaround for [Microsoft/TypeScript#29729](https://github.com/Microsoft/TypeScript/issues/29729). It will be removed as soon as it's not needed anymore.\n\n@example\n```\nimport {LiteralUnion} from 'type-fest';\n\n// Before\n\ntype Pet = 'dog' | 'cat' | string;\n\nconst pet: Pet = '';\n// Start typing in your TypeScript-enabled IDE.\n// You **will not** get auto-completion for `dog` and `cat` literals.\n\n// After\n\ntype Pet2 = LiteralUnion<'dog' | 'cat', string>;\n\nconst pet: Pet2 = '';\n// You **will** get auto-completion for `dog` and `cat` literals.\n```\n */\nexport type LiteralUnion<\n\tLiteralType,\n\tBaseType extends Primitive\n> = LiteralType | (BaseType & {_?: never});\n",
    "node_modules/type-fest/source/merge-exclusive.d.ts": "// Helper type. Not useful on its own.\ntype Without<FirstType, SecondType> = {[KeyType in Exclude<keyof FirstType, keyof SecondType>]?: never};\n\n/**\nCreate a type that has mutually exclusive keys.\n\nThis type was inspired by [this comment](https://github.com/Microsoft/TypeScript/issues/14094#issuecomment-373782604).\n\nThis type works with a helper type, called `Without`. `Without<FirstType, SecondType>` produces a type that has only keys from `FirstType` which are not present on `SecondType` and sets the value type for these keys to `never`. This helper type is then used in `MergeExclusive` to remove keys from either `FirstType` or `SecondType`.\n\n@example\n```\nimport {MergeExclusive} from 'type-fest';\n\ninterface ExclusiveVariation1 {\n\texclusive1: boolean;\n}\n\ninterface ExclusiveVariation2 {\n\texclusive2: string;\n}\n\ntype ExclusiveOptions = MergeExclusive<ExclusiveVariation1, ExclusiveVariation2>;\n\nlet exclusiveOptions: ExclusiveOptions;\n\nexclusiveOptions = {exclusive1: true};\n//=> Works\nexclusiveOptions = {exclusive2: 'hi'};\n//=> Works\nexclusiveOptions = {exclusive1: true, exclusive2: 'hi'};\n//=> Error\n```\n*/\nexport type MergeExclusive<FirstType, SecondType> =\n\t(FirstType | SecondType) extends object ?\n\t\t(Without<FirstType, SecondType> & SecondType) | (Without<SecondType, FirstType> & FirstType) :\n\t\tFirstType | SecondType;\n\n",
    "node_modules/type-fest/source/merge.d.ts": "import {Except} from './except';\nimport {Simplify} from './simplify';\n\ntype Merge_<FirstType, SecondType> = Except<FirstType, Extract<keyof FirstType, keyof SecondType>> & SecondType;\n\n/**\nMerge two types into a new type. Keys of the second type overrides keys of the first type.\n\n@example\n```\nimport {Merge} from 'type-fest';\n\ntype Foo = {\n\ta: number;\n\tb: string;\n};\n\ntype Bar = {\n\tb: number;\n};\n\nconst ab: Merge<Foo, Bar> = {a: 1, b: 2};\n```\n*/\nexport type Merge<FirstType, SecondType> = Simplify<Merge_<FirstType, SecondType>>;\n",
    "node_modules/type-fest/source/mutable.d.ts": "import {Except} from './except';\nimport {Simplify} from './simplify';\n\n/**\nCreate a type that strips `readonly` from all or some of an object's keys. Inverse of `Readonly<T>`.\n\nThis can be used to [store and mutate options within a class](https://github.com/sindresorhus/pageres/blob/4a5d05fca19a5fbd2f53842cbf3eb7b1b63bddd2/source/index.ts#L72), [edit `readonly` objects within tests](https://stackoverflow.com/questions/50703834), [construct a `readonly` object within a function](https://github.com/Microsoft/TypeScript/issues/24509), or to define a single model where the only thing that changes is whether or not some of the keys are mutable.\n\n@example\n```\nimport {Mutable} from 'type-fest';\n\ntype Foo = {\n\treadonly a: number;\n\treadonly b: readonly string[]; // To show that only the mutability status of the properties, not their values, are affected.\n\treadonly c: boolean;\n};\n\nconst mutableFoo: Mutable<Foo> = {a: 1, b: ['2']};\nmutableFoo.a = 3;\nmutableFoo.b[0] = 'new value'; // Will still fail as the value of property \"b\" is still a readonly type.\nmutableFoo.b = ['something']; // Will work as the \"b\" property itself is no longer readonly.\n\ntype SomeMutable = Mutable<Foo, 'b' | 'c'>;\n// type SomeMutable = {\n// \treadonly a: number;\n// \tb: readonly string[]; // It's now mutable. The type of the property remains unaffected.\n// \tc: boolean; // It's now mutable.\n// }\n```\n*/\nexport type Mutable<BaseType, Keys extends keyof BaseType = keyof BaseType> =\n\tSimplify<\n\t\t// Pick just the keys that are not mutable from the base type.\n\t\tExcept<BaseType, Keys> &\n        // Pick the keys that should be mutable from the base type and make them mutable by removing the `readonly` modifier from the key.\n        {-readonly [KeyType in keyof Pick<BaseType, Keys>]: Pick<BaseType, Keys>[KeyType]}\n\t>;\n",
    "node_modules/type-fest/source/opaque.d.ts": "/**\nCreate an opaque type, which hides its internal details from the public, and can only be created by being used explicitly.\n\nThe generic type parameter can be anything. It doesn't have to be an object.\n\n[Read more about opaque types.](https://codemix.com/opaque-types-in-javascript/)\n\nThere have been several discussions about adding this feature to TypeScript via the `opaque type` operator, similar to how Flow does it. Unfortunately, nothing has (yet) moved forward:\n\t- [Microsoft/TypeScript#15408](https://github.com/Microsoft/TypeScript/issues/15408)\n\t- [Microsoft/TypeScript#15807](https://github.com/Microsoft/TypeScript/issues/15807)\n\n@example\n```\nimport {Opaque} from 'type-fest';\n\ntype AccountNumber = Opaque<number, 'AccountNumber'>;\ntype AccountBalance = Opaque<number, 'AccountBalance'>;\n\n// The Token parameter allows the compiler to differentiate between types, whereas \"unknown\" will not. For example, consider the following structures:\ntype ThingOne = Opaque<string>;\ntype ThingTwo = Opaque<string>;\n\n// To the compiler, these types are allowed to be cast to each other as they have the same underlying type. They are both `string & { __opaque__: unknown }`.\n// To avoid this behaviour, you would instead pass the \"Token\" parameter, like so.\ntype NewThingOne = Opaque<string, 'ThingOne'>;\ntype NewThingTwo = Opaque<string, 'ThingTwo'>;\n\n// Now they're completely separate types, so the following will fail to compile.\nfunction createNewThingOne (): NewThingOne {\n\t// As you can see, casting from a string is still allowed. However, you may not cast NewThingOne to NewThingTwo, and vice versa.\n\treturn 'new thing one' as NewThingOne;\n}\n\n// This will fail to compile, as they are fundamentally different types.\nconst thingTwo = createNewThingOne() as NewThingTwo;\n\n// Here's another example of opaque typing.\nfunction createAccountNumber(): AccountNumber {\n\treturn 2 as AccountNumber;\n}\n\nfunction getMoneyForAccount(accountNumber: AccountNumber): AccountBalance {\n\treturn 4 as AccountBalance;\n}\n\n// This will compile successfully.\ngetMoneyForAccount(createAccountNumber());\n\n// But this won't, because it has to be explicitly passed as an `AccountNumber` type.\ngetMoneyForAccount(2);\n\n// You can use opaque values like they aren't opaque too.\nconst accountNumber = createAccountNumber();\n\n// This will not compile successfully.\nconst newAccountNumber = accountNumber + 2;\n\n// As a side note, you can (and should) use recursive types for your opaque types to make them stronger and hopefully easier to type.\ntype Person = {\n\tid: Opaque<number, Person>;\n\tname: string;\n};\n```\n*/\nexport type Opaque<Type, Token = unknown> = Type & {readonly __opaque__: Token};\n",
    "node_modules/type-fest/source/package-json.d.ts": "import {LiteralUnion} from './literal-union';\n\ndeclare namespace PackageJson {\n\t/**\n\tA person who has been involved in creating or maintaining the package.\n\t*/\n\texport type Person =\n\t\t| string\n\t\t| {\n\t\t\tname: string;\n\t\t\turl?: string;\n\t\t\temail?: string;\n\t\t};\n\n\texport type BugsLocation =\n\t\t| string\n\t\t| {\n\t\t\t/**\n\t\t\tThe URL to the package's issue tracker.\n\t\t\t*/\n\t\t\turl?: string;\n\n\t\t\t/**\n\t\t\tThe email address to which issues should be reported.\n\t\t\t*/\n\t\t\temail?: string;\n\t\t};\n\n\texport interface DirectoryLocations {\n\t\t[directoryType: string]: unknown;\n\n\t\t/**\n\t\tLocation for executable scripts. Sugar to generate entries in the `bin` property by walking the folder.\n\t\t*/\n\t\tbin?: string;\n\n\t\t/**\n\t\tLocation for Markdown files.\n\t\t*/\n\t\tdoc?: string;\n\n\t\t/**\n\t\tLocation for example scripts.\n\t\t*/\n\t\texample?: string;\n\n\t\t/**\n\t\tLocation for the bulk of the library.\n\t\t*/\n\t\tlib?: string;\n\n\t\t/**\n\t\tLocation for man pages. Sugar to generate a `man` array by walking the folder.\n\t\t*/\n\t\tman?: string;\n\n\t\t/**\n\t\tLocation for test files.\n\t\t*/\n\t\ttest?: string;\n\t}\n\n\texport type Scripts = {\n\t\t/**\n\t\tRun **before** the package is published (Also run on local `npm install` without any arguments).\n\t\t*/\n\t\tprepublish?: string;\n\n\t\t/**\n\t\tRun both **before** the package is packed and published, and on local `npm install` without any arguments. This is run **after** `prepublish`, but **before** `prepublishOnly`.\n\t\t*/\n\t\tprepare?: string;\n\n\t\t/**\n\t\tRun **before** the package is prepared and packed, **only** on `npm publish`.\n\t\t*/\n\t\tprepublishOnly?: string;\n\n\t\t/**\n\t\tRun **before** a tarball is packed (on `npm pack`, `npm publish`, and when installing git dependencies).\n\t\t*/\n\t\tprepack?: string;\n\n\t\t/**\n\t\tRun **after** the tarball has been generated and moved to its final destination.\n\t\t*/\n\t\tpostpack?: string;\n\n\t\t/**\n\t\tRun **after** the package is published.\n\t\t*/\n\t\tpublish?: string;\n\n\t\t/**\n\t\tRun **after** the package is published.\n\t\t*/\n\t\tpostpublish?: string;\n\n\t\t/**\n\t\tRun **before** the package is installed.\n\t\t*/\n\t\tpreinstall?: string;\n\n\t\t/**\n\t\tRun **after** the package is installed.\n\t\t*/\n\t\tinstall?: string;\n\n\t\t/**\n\t\tRun **after** the package is installed and after `install`.\n\t\t*/\n\t\tpostinstall?: string;\n\n\t\t/**\n\t\tRun **before** the package is uninstalled and before `uninstall`.\n\t\t*/\n\t\tpreuninstall?: string;\n\n\t\t/**\n\t\tRun **before** the package is uninstalled.\n\t\t*/\n\t\tuninstall?: string;\n\n\t\t/**\n\t\tRun **after** the package is uninstalled.\n\t\t*/\n\t\tpostuninstall?: string;\n\n\t\t/**\n\t\tRun **before** bump the package version and before `version`.\n\t\t*/\n\t\tpreversion?: string;\n\n\t\t/**\n\t\tRun **before** bump the package version.\n\t\t*/\n\t\tversion?: string;\n\n\t\t/**\n\t\tRun **after** bump the package version.\n\t\t*/\n\t\tpostversion?: string;\n\n\t\t/**\n\t\tRun with the `npm test` command, before `test`.\n\t\t*/\n\t\tpretest?: string;\n\n\t\t/**\n\t\tRun with the `npm test` command.\n\t\t*/\n\t\ttest?: string;\n\n\t\t/**\n\t\tRun with the `npm test` command, after `test`.\n\t\t*/\n\t\tposttest?: string;\n\n\t\t/**\n\t\tRun with the `npm stop` command, before `stop`.\n\t\t*/\n\t\tprestop?: string;\n\n\t\t/**\n\t\tRun with the `npm stop` command.\n\t\t*/\n\t\tstop?: string;\n\n\t\t/**\n\t\tRun with the `npm stop` command, after `stop`.\n\t\t*/\n\t\tpoststop?: string;\n\n\t\t/**\n\t\tRun with the `npm start` command, before `start`.\n\t\t*/\n\t\tprestart?: string;\n\n\t\t/**\n\t\tRun with the `npm start` command.\n\t\t*/\n\t\tstart?: string;\n\n\t\t/**\n\t\tRun with the `npm start` command, after `start`.\n\t\t*/\n\t\tpoststart?: string;\n\n\t\t/**\n\t\tRun with the `npm restart` command, before `restart`. Note: `npm restart` will run the `stop` and `start` scripts if no `restart` script is provided.\n\t\t*/\n\t\tprerestart?: string;\n\n\t\t/**\n\t\tRun with the `npm restart` command. Note: `npm restart` will run the `stop` and `start` scripts if no `restart` script is provided.\n\t\t*/\n\t\trestart?: string;\n\n\t\t/**\n\t\tRun with the `npm restart` command, after `restart`. Note: `npm restart` will run the `stop` and `start` scripts if no `restart` script is provided.\n\t\t*/\n\t\tpostrestart?: string;\n\t} & Record<string, string>;\n\n\t/**\n\tDependencies of the package. The version range is a string which has one or more space-separated descriptors. Dependencies can also be identified with a tarball or Git URL.\n\t*/\n\texport type Dependency = Record<string, string>;\n\n\t/**\n\tConditions which provide a way to resolve a package entry point based on the environment.\n\t*/\n\texport type ExportCondition = LiteralUnion<\n\t\t| 'import'\n\t\t| 'require'\n\t\t| 'node'\n\t\t| 'deno'\n\t\t| 'browser'\n\t\t| 'electron'\n\t\t| 'react-native'\n\t\t| 'default',\n\t\tstring\n\t>;\n\n\t/**\n\tEntry points of a module, optionally with conditions and subpath exports.\n\t*/\n\texport type Exports =\n\t| string\n\t| {[key in ExportCondition]: Exports}\n\t| {[key: string]: Exports}; // eslint-disable-line @typescript-eslint/consistent-indexed-object-style\n\n\texport interface NonStandardEntryPoints {\n\t\t/**\n\t\tAn ECMAScript module ID that is the primary entry point to the program.\n\t\t*/\n\t\tmodule?: string;\n\n\t\t/**\n\t\tA module ID with untranspiled code that is the primary entry point to the program.\n\t\t*/\n\t\tesnext?:\n\t\t| string\n\t\t| {\n\t\t\t[moduleName: string]: string | undefined;\n\t\t\tmain?: string;\n\t\t\tbrowser?: string;\n\t\t};\n\n\t\t/**\n\t\tA hint to JavaScript bundlers or component tools when packaging modules for client side use.\n\t\t*/\n\t\tbrowser?:\n\t\t| string\n\t\t| Record<string, string | false>;\n\n\t\t/**\n\t\tDenote which files in your project are \"pure\" and therefore safe for Webpack to prune if unused.\n\n\t\t[Read more.](https://webpack.js.org/guides/tree-shaking/)\n\t\t*/\n\t\tsideEffects?: boolean | string[];\n\t}\n\n\texport interface TypeScriptConfiguration {\n\t\t/**\n\t\tLocation of the bundled TypeScript declaration file.\n\t\t*/\n\t\ttypes?: string;\n\n\t\t/**\n\t\tLocation of the bundled TypeScript declaration file. Alias of `types`.\n\t\t*/\n\t\ttypings?: string;\n\t}\n\n\t/**\n\tAn alternative configuration for Yarn workspaces.\n\t*/\n\texport interface WorkspaceConfig {\n\t\t/**\n\t\tAn array of workspace pattern strings which contain the workspace packages.\n\t\t*/\n\t\tpackages?: WorkspacePattern[];\n\n\t\t/**\n\t\tDesigned to solve the problem of packages which break when their `node_modules` are moved to the root workspace directory - a process known as hoisting. For these packages, both within your workspace, and also some that have been installed via `node_modules`, it is important to have a mechanism for preventing the default Yarn workspace behavior. By adding workspace pattern strings here, Yarn will resume non-workspace behavior for any package which matches the defined patterns.\n\n\t\t[Read more](https://classic.yarnpkg.com/blog/2018/02/15/nohoist/)\n\t\t*/\n\t\tnohoist?: WorkspacePattern[];\n\t}\n\n\t/**\n\tA workspace pattern points to a directory or group of directories which contain packages that should be included in the workspace installation process.\n\n\tThe patterns are handled with [minimatch](https://github.com/isaacs/minimatch).\n\n\t@example\n\t`docs` → Include the docs directory and install its dependencies.\n\t`packages/*` → Include all nested directories within the packages directory, like `packages/cli` and `packages/core`.\n\t*/\n\ttype WorkspacePattern = string;\n\n\texport interface YarnConfiguration {\n\t\t/**\n\t\tUsed to configure [Yarn workspaces](https://classic.yarnpkg.com/docs/workspaces/).\n\n\t\tWorkspaces allow you to manage multiple packages within the same repository in such a way that you only need to run `yarn install` once to install all of them in a single pass.\n\n\t\tPlease note that the top-level `private` property of `package.json` **must** be set to `true` in order to use workspaces.\n\t\t*/\n\t\tworkspaces?: WorkspacePattern[] | WorkspaceConfig;\n\n\t\t/**\n\t\tIf your package only allows one version of a given dependency, and you’d like to enforce the same behavior as `yarn install --flat` on the command-line, set this to `true`.\n\n\t\tNote that if your `package.json` contains `\"flat\": true` and other packages depend on yours (e.g. you are building a library rather than an app), those other packages will also need `\"flat\": true` in their `package.json` or be installed with `yarn install --flat` on the command-line.\n\t\t*/\n\t\tflat?: boolean;\n\n\t\t/**\n\t\tSelective version resolutions. Allows the definition of custom package versions inside dependencies without manual edits in the `yarn.lock` file.\n\t\t*/\n\t\tresolutions?: Dependency;\n\t}\n\n\texport interface JSPMConfiguration {\n\t\t/**\n\t\tJSPM configuration.\n\t\t*/\n\t\tjspm?: PackageJson;\n\t}\n\n\t/**\n\tType for [npm's `package.json` file](https://docs.npmjs.com/creating-a-package-json-file). Containing standard npm properties.\n\t*/\n\texport interface PackageJsonStandard {\n\t\t/**\n\t\tThe name of the package.\n\t\t*/\n\t\tname?: string;\n\n\t\t/**\n\t\tPackage version, parseable by [`node-semver`](https://github.com/npm/node-semver).\n\t\t*/\n\t\tversion?: string;\n\n\t\t/**\n\t\tPackage description, listed in `npm search`.\n\t\t*/\n\t\tdescription?: string;\n\n\t\t/**\n\t\tKeywords associated with package, listed in `npm search`.\n\t\t*/\n\t\tkeywords?: string[];\n\n\t\t/**\n\t\tThe URL to the package's homepage.\n\t\t*/\n\t\thomepage?: LiteralUnion<'.', string>;\n\n\t\t/**\n\t\tThe URL to the package's issue tracker and/or the email address to which issues should be reported.\n\t\t*/\n\t\tbugs?: BugsLocation;\n\n\t\t/**\n\t\tThe license for the package.\n\t\t*/\n\t\tlicense?: string;\n\n\t\t/**\n\t\tThe licenses for the package.\n\t\t*/\n\t\tlicenses?: Array<{\n\t\t\ttype?: string;\n\t\t\turl?: string;\n\t\t}>;\n\n\t\tauthor?: Person;\n\n\t\t/**\n\t\tA list of people who contributed to the package.\n\t\t*/\n\t\tcontributors?: Person[];\n\n\t\t/**\n\t\tA list of people who maintain the package.\n\t\t*/\n\t\tmaintainers?: Person[];\n\n\t\t/**\n\t\tThe files included in the package.\n\t\t*/\n\t\tfiles?: string[];\n\n\t\t/**\n\t\tResolution algorithm for importing \".js\" files from the package's scope.\n\n\t\t[Read more.](https://nodejs.org/api/esm.html#esm_package_json_type_field)\n\t\t*/\n\t\ttype?: 'module' | 'commonjs';\n\n\t\t/**\n\t\tThe module ID that is the primary entry point to the program.\n\t\t*/\n\t\tmain?: string;\n\n\t\t/**\n\t\tStandard entry points of the package, with enhanced support for ECMAScript Modules.\n\n\t\t[Read more.](https://nodejs.org/api/esm.html#esm_package_entry_points)\n\t\t*/\n\t\texports?: Exports;\n\n\t\t/**\n\t\tThe executable files that should be installed into the `PATH`.\n\t\t*/\n\t\tbin?:\n\t\t| string\n\t\t| Record<string, string>;\n\n\t\t/**\n\t\tFilenames to put in place for the `man` program to find.\n\t\t*/\n\t\tman?: string | string[];\n\n\t\t/**\n\t\tIndicates the structure of the package.\n\t\t*/\n\t\tdirectories?: DirectoryLocations;\n\n\t\t/**\n\t\tLocation for the code repository.\n\t\t*/\n\t\trepository?:\n\t\t| string\n\t\t| {\n\t\t\ttype: string;\n\t\t\turl: string;\n\n\t\t\t/**\n\t\t\tRelative path to package.json if it is placed in non-root directory (for example if it is part of a monorepo).\n\n\t\t\t[Read more.](https://github.com/npm/rfcs/blob/latest/implemented/0010-monorepo-subdirectory-declaration.md)\n\t\t\t*/\n\t\t\tdirectory?: string;\n\t\t};\n\n\t\t/**\n\t\tScript commands that are run at various times in the lifecycle of the package. The key is the lifecycle event, and the value is the command to run at that point.\n\t\t*/\n\t\tscripts?: Scripts;\n\n\t\t/**\n\t\tIs used to set configuration parameters used in package scripts that persist across upgrades.\n\t\t*/\n\t\tconfig?: Record<string, unknown>;\n\n\t\t/**\n\t\tThe dependencies of the package.\n\t\t*/\n\t\tdependencies?: Dependency;\n\n\t\t/**\n\t\tAdditional tooling dependencies that are not required for the package to work. Usually test, build, or documentation tooling.\n\t\t*/\n\t\tdevDependencies?: Dependency;\n\n\t\t/**\n\t\tDependencies that are skipped if they fail to install.\n\t\t*/\n\t\toptionalDependencies?: Dependency;\n\n\t\t/**\n\t\tDependencies that will usually be required by the package user directly or via another dependency.\n\t\t*/\n\t\tpeerDependencies?: Dependency;\n\n\t\t/**\n\t\tIndicate peer dependencies that are optional.\n\t\t*/\n\t\tpeerDependenciesMeta?: Record<string, {optional: true}>;\n\n\t\t/**\n\t\tPackage names that are bundled when the package is published.\n\t\t*/\n\t\tbundledDependencies?: string[];\n\n\t\t/**\n\t\tAlias of `bundledDependencies`.\n\t\t*/\n\t\tbundleDependencies?: string[];\n\n\t\t/**\n\t\tEngines that this package runs on.\n\t\t*/\n\t\tengines?: {\n\t\t\t[EngineName in 'npm' | 'node' | string]: string;\n\t\t};\n\n\t\t/**\n\t\t@deprecated\n\t\t*/\n\t\tengineStrict?: boolean;\n\n\t\t/**\n\t\tOperating systems the module runs on.\n\t\t*/\n\t\tos?: Array<LiteralUnion<\n\t\t| 'aix'\n\t\t| 'darwin'\n\t\t| 'freebsd'\n\t\t| 'linux'\n\t\t| 'openbsd'\n\t\t| 'sunos'\n\t\t| 'win32'\n\t\t| '!aix'\n\t\t| '!darwin'\n\t\t| '!freebsd'\n\t\t| '!linux'\n\t\t| '!openbsd'\n\t\t| '!sunos'\n\t\t| '!win32',\n\t\tstring\n\t\t>>;\n\n\t\t/**\n\t\tCPU architectures the module runs on.\n\t\t*/\n\t\tcpu?: Array<LiteralUnion<\n\t\t| 'arm'\n\t\t| 'arm64'\n\t\t| 'ia32'\n\t\t| 'mips'\n\t\t| 'mipsel'\n\t\t| 'ppc'\n\t\t| 'ppc64'\n\t\t| 's390'\n\t\t| 's390x'\n\t\t| 'x32'\n\t\t| 'x64'\n\t\t| '!arm'\n\t\t| '!arm64'\n\t\t| '!ia32'\n\t\t| '!mips'\n\t\t| '!mipsel'\n\t\t| '!ppc'\n\t\t| '!ppc64'\n\t\t| '!s390'\n\t\t| '!s390x'\n\t\t| '!x32'\n\t\t| '!x64',\n\t\tstring\n\t\t>>;\n\n\t\t/**\n\t\tIf set to `true`, a warning will be shown if package is installed locally. Useful if the package is primarily a command-line application that should be installed globally.\n\n\t\t@deprecated\n\t\t*/\n\t\tpreferGlobal?: boolean;\n\n\t\t/**\n\t\tIf set to `true`, then npm will refuse to publish it.\n\t\t*/\n\t\tprivate?: boolean;\n\n\t\t/**\n\t\tA set of config values that will be used at publish-time. It's especially handy to set the tag, registry or access, to ensure that a given package is not tagged with 'latest', published to the global public registry or that a scoped module is private by default.\n\t\t*/\n\t\tpublishConfig?: Record<string, unknown>;\n\n\t\t/**\n\t\tDescribes and notifies consumers of a package's monetary support information.\n\n\t\t[Read more.](https://github.com/npm/rfcs/blob/latest/accepted/0017-add-funding-support.md)\n\t\t*/\n\t\tfunding?: string | {\n\t\t\t/**\n\t\t\tThe type of funding.\n\t\t\t*/\n\t\t\ttype?: LiteralUnion<\n\t\t\t| 'github'\n\t\t\t| 'opencollective'\n\t\t\t| 'patreon'\n\t\t\t| 'individual'\n\t\t\t| 'foundation'\n\t\t\t| 'corporation',\n\t\t\tstring\n\t\t\t>;\n\n\t\t\t/**\n\t\t\tThe URL to the funding page.\n\t\t\t*/\n\t\t\turl: string;\n\t\t};\n\t}\n}\n\n/**\nType for [npm's `package.json` file](https://docs.npmjs.com/creating-a-package-json-file). Also includes types for fields used by other popular projects, like TypeScript and Yarn.\n*/\nexport type PackageJson =\nPackageJson.PackageJsonStandard &\nPackageJson.NonStandardEntryPoints &\nPackageJson.TypeScriptConfiguration &\nPackageJson.YarnConfiguration &\nPackageJson.JSPMConfiguration;\n",
    "node_modules/type-fest/source/partial-deep.d.ts": "import {Primitive} from './basic';\n\n/**\nCreate a type from another type with all keys and nested keys set to optional.\n\nUse-cases:\n- Merging a default settings/config object with another object, the second object would be a deep partial of the default object.\n- Mocking and testing complex entities, where populating an entire object with its keys would be redundant in terms of the mock or test.\n\n@example\n```\nimport {PartialDeep} from 'type-fest';\n\nconst settings: Settings = {\n\ttextEditor: {\n\t\tfontSize: 14;\n\t\tfontColor: '#000000';\n\t\tfontWeight: 400;\n\t}\n\tautocomplete: false;\n\tautosave: true;\n};\n\nconst applySavedSettings = (savedSettings: PartialDeep<Settings>) => {\n\treturn {...settings, ...savedSettings};\n}\n\nsettings = applySavedSettings({textEditor: {fontWeight: 500}});\n```\n*/\nexport type PartialDeep<T> = T extends Primitive\n\t? Partial<T>\n\t: T extends Map<infer KeyType, infer ValueType>\n\t? PartialMapDeep<KeyType, ValueType>\n\t: T extends Set<infer ItemType>\n\t? PartialSetDeep<ItemType>\n\t: T extends ReadonlyMap<infer KeyType, infer ValueType>\n\t? PartialReadonlyMapDeep<KeyType, ValueType>\n\t: T extends ReadonlySet<infer ItemType>\n\t? PartialReadonlySetDeep<ItemType>\n\t: T extends ((...arguments: any[]) => unknown)\n\t? T | undefined\n\t: T extends object\n\t? PartialObjectDeep<T>\n\t: unknown;\n\n/**\nSame as `PartialDeep`, but accepts only `Map`s and  as inputs. Internal helper for `PartialDeep`.\n*/\ninterface PartialMapDeep<KeyType, ValueType> extends Map<PartialDeep<KeyType>, PartialDeep<ValueType>> {}\n\n/**\nSame as `PartialDeep`, but accepts only `Set`s as inputs. Internal helper for `PartialDeep`.\n*/\ninterface PartialSetDeep<T> extends Set<PartialDeep<T>> {}\n\n/**\nSame as `PartialDeep`, but accepts only `ReadonlyMap`s as inputs. Internal helper for `PartialDeep`.\n*/\ninterface PartialReadonlyMapDeep<KeyType, ValueType> extends ReadonlyMap<PartialDeep<KeyType>, PartialDeep<ValueType>> {}\n\n/**\nSame as `PartialDeep`, but accepts only `ReadonlySet`s as inputs. Internal helper for `PartialDeep`.\n*/\ninterface PartialReadonlySetDeep<T> extends ReadonlySet<PartialDeep<T>> {}\n\n/**\nSame as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.\n*/\ntype PartialObjectDeep<ObjectType extends object> = {\n\t[KeyType in keyof ObjectType]?: PartialDeep<ObjectType[KeyType]>\n};\n",
    "node_modules/type-fest/source/promisable.d.ts": "/**\nCreate a type that represents either the value or the value wrapped in `PromiseLike`.\n\nUse-cases:\n- A function accepts a callback that may either return a value synchronously or may return a promised value.\n- This type could be the return type of `Promise#then()`, `Promise#catch()`, and `Promise#finally()` callbacks.\n\nPlease upvote [this issue](https://github.com/microsoft/TypeScript/issues/31394) if you want to have this type as a built-in in TypeScript.\n\n@example\n```\nimport {Promisable} from 'type-fest';\n\nasync function logger(getLogEntry: () => Promisable<string>): Promise<void> {\n    const entry = await getLogEntry();\n    console.log(entry);\n}\n\nlogger(() => 'foo');\nlogger(() => Promise.resolve('bar'));\n```\n*/\nexport type Promisable<T> = T | PromiseLike<T>;\n",
    "node_modules/type-fest/source/promise-value.d.ts": "/**\nReturns the type that is wrapped inside a `Promise` type.\nIf the type is a nested Promise, it is unwrapped recursively until a non-Promise type is obtained.\nIf the type is not a `Promise`, the type itself is returned.\n\n@example\n```\nimport {PromiseValue} from 'type-fest';\n\ntype AsyncData = Promise<string>;\nlet asyncData: PromiseValue<AsyncData> = Promise.resolve('ABC');\n\ntype Data = PromiseValue<AsyncData>;\nlet data: Data = await asyncData;\n\n// Here's an example that shows how this type reacts to non-Promise types.\ntype SyncData = PromiseValue<string>;\nlet syncData: SyncData = getSyncData();\n\n// Here's an example that shows how this type reacts to recursive Promise types.\ntype RecursiveAsyncData = Promise<Promise<string> >;\nlet recursiveAsyncData: PromiseValue<RecursiveAsyncData> = Promise.resolve(Promise.resolve('ABC'));\n```\n*/\nexport type PromiseValue<PromiseType, Otherwise = PromiseType> = PromiseType extends Promise<infer Value>\n\t? { 0: PromiseValue<Value>; 1: Value }[PromiseType extends Promise<unknown> ? 0 : 1]\n\t: Otherwise;\n",
    "node_modules/type-fest/source/readonly-deep.d.ts": "import {Primitive} from './basic';\n\n/**\nConvert `object`s, `Map`s, `Set`s, and `Array`s and all of their keys/elements into immutable structures recursively.\n\nThis is useful when a deeply nested structure needs to be exposed as completely immutable, for example, an imported JSON module or when receiving an API response that is passed around.\n\nPlease upvote [this issue](https://github.com/microsoft/TypeScript/issues/13923) if you want to have this type as a built-in in TypeScript.\n\n@example\n```\n// data.json\n{\n\t\"foo\": [\"bar\"]\n}\n\n// main.ts\nimport {ReadonlyDeep} from 'type-fest';\nimport dataJson = require('./data.json');\n\nconst data: ReadonlyDeep<typeof dataJson> = dataJson;\n\nexport default data;\n\n// test.ts\nimport data from './main';\n\ndata.foo.push('bar');\n//=> error TS2339: Property 'push' does not exist on type 'readonly string[]'\n```\n*/\nexport type ReadonlyDeep<T> = T extends Primitive | ((...arguments: any[]) => unknown)\n\t? T\n\t: T extends ReadonlyMap<infer KeyType, infer ValueType>\n\t? ReadonlyMapDeep<KeyType, ValueType>\n\t: T extends ReadonlySet<infer ItemType>\n\t? ReadonlySetDeep<ItemType>\n\t: T extends object\n\t? ReadonlyObjectDeep<T>\n\t: unknown;\n\n/**\nSame as `ReadonlyDeep`, but accepts only `ReadonlyMap`s as inputs. Internal helper for `ReadonlyDeep`.\n*/\ninterface ReadonlyMapDeep<KeyType, ValueType>\n\textends ReadonlyMap<ReadonlyDeep<KeyType>, ReadonlyDeep<ValueType>> {}\n\n/**\nSame as `ReadonlyDeep`, but accepts only `ReadonlySet`s as inputs. Internal helper for `ReadonlyDeep`.\n*/\ninterface ReadonlySetDeep<ItemType>\n\textends ReadonlySet<ReadonlyDeep<ItemType>> {}\n\n/**\nSame as `ReadonlyDeep`, but accepts only `object`s as inputs. Internal helper for `ReadonlyDeep`.\n*/\ntype ReadonlyObjectDeep<ObjectType extends object> = {\n\treadonly [KeyType in keyof ObjectType]: ReadonlyDeep<ObjectType[KeyType]>\n};\n",
    "node_modules/type-fest/source/require-at-least-one.d.ts": "import {Except} from './except';\n\n/**\nCreate a type that requires at least one of the given keys. The remaining keys are kept as is.\n\n@example\n```\nimport {RequireAtLeastOne} from 'type-fest';\n\ntype Responder = {\n\ttext?: () => string;\n\tjson?: () => string;\n\n\tsecure?: boolean;\n};\n\nconst responder: RequireAtLeastOne<Responder, 'text' | 'json'> = {\n\tjson: () => '{\"message\": \"ok\"}',\n\tsecure: true\n};\n```\n*/\nexport type RequireAtLeastOne<\n\tObjectType,\n\tKeysType extends keyof ObjectType = keyof ObjectType\n> = {\n\t// For each `Key` in `KeysType` make a mapped type:\n\t[Key in KeysType]-?: Required<Pick<ObjectType, Key>> & // 1. Make `Key`'s type required\n\t\t// 2. Make all other keys in `KeysType` optional\n\t\tPartial<Pick<ObjectType, Exclude<KeysType, Key>>>;\n}[KeysType] &\n\t// 3. Add the remaining keys not in `KeysType`\n\tExcept<ObjectType, KeysType>;\n",
    "node_modules/type-fest/source/require-exactly-one.d.ts": "// TODO: Remove this when we target TypeScript >=3.5.\ntype _Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;\n\n/**\nCreate a type that requires exactly one of the given keys and disallows more. The remaining keys are kept as is.\n\nUse-cases:\n- Creating interfaces for components that only need one of the keys to display properly.\n- Declaring generic keys in a single place for a single use-case that gets narrowed down via `RequireExactlyOne`.\n\nThe caveat with `RequireExactlyOne` is that TypeScript doesn't always know at compile time every key that will exist at runtime. Therefore `RequireExactlyOne` can't do anything to prevent extra keys it doesn't know about.\n\n@example\n```\nimport {RequireExactlyOne} from 'type-fest';\n\ntype Responder = {\n\ttext: () => string;\n\tjson: () => string;\n\tsecure: boolean;\n};\n\nconst responder: RequireExactlyOne<Responder, 'text' | 'json'> = {\n\t// Adding a `text` key here would cause a compile error.\n\n\tjson: () => '{\"message\": \"ok\"}',\n\tsecure: true\n};\n```\n*/\nexport type RequireExactlyOne<ObjectType, KeysType extends keyof ObjectType = keyof ObjectType> =\n\t{[Key in KeysType]: (\n\t\tRequired<Pick<ObjectType, Key>> &\n\t\tPartial<Record<Exclude<KeysType, Key>, never>>\n\t)}[KeysType] & _Omit<ObjectType, KeysType>;\n",
    "node_modules/type-fest/source/set-optional.d.ts": "import {Except} from './except';\nimport {Simplify} from './simplify';\n\n/**\nCreate a type that makes the given keys optional. The remaining keys are kept as is. The sister of the `SetRequired` type.\n\nUse-case: You want to define a single model where the only thing that changes is whether or not some of the keys are optional.\n\n@example\n```\nimport {SetOptional} from 'type-fest';\n\ntype Foo = {\n\ta: number;\n\tb?: string;\n\tc: boolean;\n}\n\ntype SomeOptional = SetOptional<Foo, 'b' | 'c'>;\n// type SomeOptional = {\n// \ta: number;\n// \tb?: string; // Was already optional and still is.\n// \tc?: boolean; // Is now optional.\n// }\n```\n*/\nexport type SetOptional<BaseType, Keys extends keyof BaseType> =\n\tSimplify<\n\t\t// Pick just the keys that are readonly from the base type.\n\t\tExcept<BaseType, Keys> &\n\t\t// Pick the keys that should be mutable from the base type and make them mutable.\n\t\tPartial<Pick<BaseType, Keys>>\n\t>;\n",
    "node_modules/type-fest/source/set-required.d.ts": "import {Except} from './except';\nimport {Simplify} from './simplify';\n\n/**\nCreate a type that makes the given keys required. The remaining keys are kept as is. The sister of the `SetOptional` type.\n\nUse-case: You want to define a single model where the only thing that changes is whether or not some of the keys are required.\n\n@example\n```\nimport {SetRequired} from 'type-fest';\n\ntype Foo = {\n\ta?: number;\n\tb: string;\n\tc?: boolean;\n}\n\ntype SomeRequired = SetRequired<Foo, 'b' | 'c'>;\n// type SomeRequired = {\n// \ta?: number;\n// \tb: string; // Was already required and still is.\n// \tc: boolean; // Is now required.\n// }\n```\n*/\nexport type SetRequired<BaseType, Keys extends keyof BaseType> =\n\tSimplify<\n\t\t// Pick just the keys that are optional from the base type.\n\t\tExcept<BaseType, Keys> &\n\t\t// Pick the keys that should be required from the base type and make them required.\n\t\tRequired<Pick<BaseType, Keys>>\n\t>;\n",
    "node_modules/type-fest/source/set-return-type.d.ts": "type IsAny<T> = 0 extends (1 & T) ? true : false; // https://stackoverflow.com/a/49928360/3406963\ntype IsNever<T> = [T] extends [never] ? true : false;\ntype IsUnknown<T> = IsNever<T> extends false ? T extends unknown ? unknown extends T ? IsAny<T> extends false ? true : false : false : false : false;\n\n/**\nCreate a function type with a return type of your choice and the same parameters as the given function type.\n\nUse-case: You want to define a wrapped function that returns something different while receiving the same parameters. For example, you might want to wrap a function that can throw an error into one that will return `undefined` instead.\n\n@example\n```\nimport {SetReturnType} from 'type-fest';\n\ntype MyFunctionThatCanThrow = (foo: SomeType, bar: unknown) => SomeOtherType;\n\ntype MyWrappedFunction = SetReturnType<MyFunctionThatCanThrow, SomeOtherType | undefined>;\n//=> type MyWrappedFunction = (foo: SomeType, bar: unknown) => SomeOtherType | undefined;\n```\n*/\nexport type SetReturnType<Fn extends (...args: any[]) => any, TypeToReturn> =\n\t// Just using `Parameters<Fn>` isn't ideal because it doesn't handle the `this` fake parameter.\n\tFn extends (this: infer ThisArg, ...args: infer Arguments) => any ? (\n\t\t// If a function did not specify the `this` fake parameter, it will be inferred to `unknown`.\n\t\t// We want to detect this situation just to display a friendlier type upon hovering on an IntelliSense-powered IDE.\n\t\tIsUnknown<ThisArg> extends true ? (...args: Arguments) => TypeToReturn : (this: ThisArg, ...args: Arguments) => TypeToReturn\n\t) : (\n\t\t// This part should be unreachable, but we make it meaningful just in case…\n\t\t(...args: Parameters<Fn>) => TypeToReturn\n\t);\n",
    "node_modules/type-fest/source/simplify.d.ts": "/**\nFlatten the type output to improve type hints shown in editors.\n*/\nexport type Simplify<T> = {[KeyType in keyof T]: T[KeyType]};\n",
    "node_modules/type-fest/source/stringified.d.ts": "/**\nCreate a type with the keys of the given type changed to `string` type.\n\nUse-case: Changing interface values to strings in order to use them in a form model.\n\n@example\n```\nimport {Stringified} from 'type-fest';\n\ntype Car {\n\tmodel: string;\n\tspeed: number;\n}\n\nconst carForm: Stringified<Car> = {\n\tmodel: 'Foo',\n\tspeed: '101'\n};\n```\n*/\nexport type Stringified<ObjectType> = {[KeyType in keyof ObjectType]: string};\n",
    "node_modules/type-fest/source/tsconfig-json.d.ts": "declare namespace TsConfigJson {\n\tnamespace CompilerOptions {\n\t\texport type JSX =\n\t\t\t| 'preserve'\n\t\t\t| 'react'\n\t\t\t| 'react-native';\n\n\t\texport type Module =\n\t\t\t| 'CommonJS'\n\t\t\t| 'AMD'\n\t\t\t| 'System'\n\t\t\t| 'UMD'\n\t\t\t| 'ES6'\n\t\t\t| 'ES2015'\n\t\t\t| 'ESNext'\n\t\t\t| 'None'\n\t\t\t// Lowercase alternatives\n\t\t\t| 'commonjs'\n\t\t\t| 'amd'\n\t\t\t| 'system'\n\t\t\t| 'umd'\n\t\t\t| 'es6'\n\t\t\t| 'es2015'\n\t\t\t| 'esnext'\n\t\t\t| 'none';\n\n\t\texport type NewLine =\n\t\t\t| 'CRLF'\n\t\t\t| 'LF'\n\t\t\t// Lowercase alternatives\n\t\t\t| 'crlf'\n\t\t\t| 'lf';\n\n\t\texport type Target =\n\t\t\t| 'ES3'\n\t\t\t| 'ES5'\n\t\t\t| 'ES6'\n\t\t\t| 'ES2015'\n\t\t\t| 'ES2016'\n\t\t\t| 'ES2017'\n\t\t\t| 'ES2018'\n\t\t\t| 'ES2019'\n\t\t\t| 'ES2020'\n\t\t\t| 'ESNext'\n\t\t\t// Lowercase alternatives\n\t\t\t| 'es3'\n\t\t\t| 'es5'\n\t\t\t| 'es6'\n\t\t\t| 'es2015'\n\t\t\t| 'es2016'\n\t\t\t| 'es2017'\n\t\t\t| 'es2018'\n\t\t\t| 'es2019'\n\t\t\t| 'es2020'\n\t\t\t| 'esnext';\n\n\t\texport type Lib =\n\t\t\t| 'ES5'\n\t\t\t| 'ES6'\n\t\t\t| 'ES7'\n\t\t\t| 'ES2015'\n\t\t\t| 'ES2015.Collection'\n\t\t\t| 'ES2015.Core'\n\t\t\t| 'ES2015.Generator'\n\t\t\t| 'ES2015.Iterable'\n\t\t\t| 'ES2015.Promise'\n\t\t\t| 'ES2015.Proxy'\n\t\t\t| 'ES2015.Reflect'\n\t\t\t| 'ES2015.Symbol.WellKnown'\n\t\t\t| 'ES2015.Symbol'\n\t\t\t| 'ES2016'\n\t\t\t| 'ES2016.Array.Include'\n\t\t\t| 'ES2017'\n\t\t\t| 'ES2017.Intl'\n\t\t\t| 'ES2017.Object'\n\t\t\t| 'ES2017.SharedMemory'\n\t\t\t| 'ES2017.String'\n\t\t\t| 'ES2017.TypedArrays'\n\t\t\t| 'ES2018'\n\t\t\t| 'ES2018.AsyncIterable'\n\t\t\t| 'ES2018.Intl'\n\t\t\t| 'ES2018.Promise'\n\t\t\t| 'ES2018.Regexp'\n\t\t\t| 'ES2019'\n\t\t\t| 'ES2019.Array'\n\t\t\t| 'ES2019.Object'\n\t\t\t| 'ES2019.String'\n\t\t\t| 'ES2019.Symbol'\n\t\t\t| 'ES2020'\n\t\t\t| 'ES2020.String'\n\t\t\t| 'ES2020.Symbol.WellKnown'\n\t\t\t| 'ESNext'\n\t\t\t| 'ESNext.Array'\n\t\t\t| 'ESNext.AsyncIterable'\n\t\t\t| 'ESNext.BigInt'\n\t\t\t| 'ESNext.Intl'\n\t\t\t| 'ESNext.Symbol'\n\t\t\t| 'DOM'\n\t\t\t| 'DOM.Iterable'\n\t\t\t| 'ScriptHost'\n\t\t\t| 'WebWorker'\n\t\t\t| 'WebWorker.ImportScripts'\n\t\t\t// Lowercase alternatives\n\t\t\t| 'es5'\n\t\t\t| 'es6'\n\t\t\t| 'es7'\n\t\t\t| 'es2015'\n\t\t\t| 'es2015.collection'\n\t\t\t| 'es2015.core'\n\t\t\t| 'es2015.generator'\n\t\t\t| 'es2015.iterable'\n\t\t\t| 'es2015.promise'\n\t\t\t| 'es2015.proxy'\n\t\t\t| 'es2015.reflect'\n\t\t\t| 'es2015.symbol.wellknown'\n\t\t\t| 'es2015.symbol'\n\t\t\t| 'es2016'\n\t\t\t| 'es2016.array.include'\n\t\t\t| 'es2017'\n\t\t\t| 'es2017.intl'\n\t\t\t| 'es2017.object'\n\t\t\t| 'es2017.sharedmemory'\n\t\t\t| 'es2017.string'\n\t\t\t| 'es2017.typedarrays'\n\t\t\t| 'es2018'\n\t\t\t| 'es2018.asynciterable'\n\t\t\t| 'es2018.intl'\n\t\t\t| 'es2018.promise'\n\t\t\t| 'es2018.regexp'\n\t\t\t| 'es2019'\n\t\t\t| 'es2019.array'\n\t\t\t| 'es2019.object'\n\t\t\t| 'es2019.string'\n\t\t\t| 'es2019.symbol'\n\t\t\t| 'es2020'\n\t\t\t| 'es2020.string'\n\t\t\t| 'es2020.symbol.wellknown'\n\t\t\t| 'esnext'\n\t\t\t| 'esnext.array'\n\t\t\t| 'esnext.asynciterable'\n\t\t\t| 'esnext.bigint'\n\t\t\t| 'esnext.intl'\n\t\t\t| 'esnext.symbol'\n\t\t\t| 'dom'\n\t\t\t| 'dom.iterable'\n\t\t\t| 'scripthost'\n\t\t\t| 'webworker'\n\t\t\t| 'webworker.importscripts';\n\n\t\texport interface Plugin {\n\t\t\t[key: string]: unknown;\n\t\t\t/**\n\t\t\tPlugin name.\n\t\t\t*/\n\t\t\tname?: string;\n\t\t}\n\t}\n\n\texport interface CompilerOptions {\n\t\t/**\n\t\tThe character set of the input files.\n\n\t\t@default 'utf8'\n\t\t*/\n\t\tcharset?: string;\n\n\t\t/**\n\t\tEnables building for project references.\n\n\t\t@default true\n\t\t*/\n\t\tcomposite?: boolean;\n\n\t\t/**\n\t\tGenerates corresponding d.ts files.\n\n\t\t@default false\n\t\t*/\n\t\tdeclaration?: boolean;\n\n\t\t/**\n\t\tSpecify output directory for generated declaration files.\n\n\t\tRequires TypeScript version 2.0 or later.\n\t\t*/\n\t\tdeclarationDir?: string;\n\n\t\t/**\n\t\tShow diagnostic information.\n\n\t\t@default false\n\t\t*/\n\t\tdiagnostics?: boolean;\n\n\t\t/**\n\t\tEmit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n\n\t\t@default false\n\t\t*/\n\t\temitBOM?: boolean;\n\n\t\t/**\n\t\tOnly emit `.d.ts` declaration files.\n\n\t\t@default false\n\t\t*/\n\t\temitDeclarationOnly?: boolean;\n\n\t\t/**\n\t\tEnable incremental compilation.\n\n\t\t@default `composite`\n\t\t*/\n\t\tincremental?: boolean;\n\n\t\t/**\n\t\tSpecify file to store incremental compilation information.\n\n\t\t@default '.tsbuildinfo'\n\t\t*/\n\t\ttsBuildInfoFile?: string;\n\n\t\t/**\n\t\tEmit a single file with source maps instead of having a separate file.\n\n\t\t@default false\n\t\t*/\n\t\tinlineSourceMap?: boolean;\n\n\t\t/**\n\t\tEmit the source alongside the sourcemaps within a single file.\n\n\t\tRequires `--inlineSourceMap` to be set.\n\n\t\t@default false\n\t\t*/\n\t\tinlineSources?: boolean;\n\n\t\t/**\n\t\tSpecify JSX code generation: `'preserve'`, `'react'`, or `'react-native'`.\n\n\t\t@default 'preserve'\n\t\t*/\n\t\tjsx?: CompilerOptions.JSX;\n\n\t\t/**\n\t\tSpecifies the object invoked for `createElement` and `__spread` when targeting `'react'` JSX emit.\n\n\t\t@default 'React'\n\t\t*/\n\t\treactNamespace?: string;\n\n\t\t/**\n\t\tPrint names of files part of the compilation.\n\n\t\t@default false\n\t\t*/\n\t\tlistFiles?: boolean;\n\n\t\t/**\n\t\tSpecifies the location where debugger should locate map files instead of generated locations.\n\t\t*/\n\t\tmapRoot?: string;\n\n\t\t/**\n\t\tSpecify module code generation: 'None', 'CommonJS', 'AMD', 'System', 'UMD', 'ES6', 'ES2015' or 'ESNext'. Only 'AMD' and 'System' can be used in conjunction with `--outFile`. 'ES6' and 'ES2015' values may be used when targeting 'ES5' or lower.\n\n\t\t@default ['ES3', 'ES5'].includes(target) ? 'CommonJS' : 'ES6'\n\t\t*/\n\t\tmodule?: CompilerOptions.Module;\n\n\t\t/**\n\t\tSpecifies the end of line sequence to be used when emitting files: 'crlf' (Windows) or 'lf' (Unix).\n\n\t\tDefault: Platform specific\n\t\t*/\n\t\tnewLine?: CompilerOptions.NewLine;\n\n\t\t/**\n\t\tDo not emit output.\n\n\t\t@default false\n\t\t*/\n\t\tnoEmit?: boolean;\n\n\t\t/**\n\t\tDo not generate custom helper functions like `__extends` in compiled output.\n\n\t\t@default false\n\t\t*/\n\t\tnoEmitHelpers?: boolean;\n\n\t\t/**\n\t\tDo not emit outputs if any type checking errors were reported.\n\n\t\t@default false\n\t\t*/\n\t\tnoEmitOnError?: boolean;\n\n\t\t/**\n\t\tWarn on expressions and declarations with an implied 'any' type.\n\n\t\t@default false\n\t\t*/\n\t\tnoImplicitAny?: boolean;\n\n\t\t/**\n\t\tRaise error on 'this' expressions with an implied any type.\n\n\t\t@default false\n\t\t*/\n\t\tnoImplicitThis?: boolean;\n\n\t\t/**\n\t\tReport errors on unused locals.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tnoUnusedLocals?: boolean;\n\n\t\t/**\n\t\tReport errors on unused parameters.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tnoUnusedParameters?: boolean;\n\n\t\t/**\n\t\tDo not include the default library file (lib.d.ts).\n\n\t\t@default false\n\t\t*/\n\t\tnoLib?: boolean;\n\n\t\t/**\n\t\tDo not add triple-slash references or module import targets to the list of compiled files.\n\n\t\t@default false\n\t\t*/\n\t\tnoResolve?: boolean;\n\n\t\t/**\n\t\tDisable strict checking of generic signatures in function types.\n\n\t\t@default false\n\t\t*/\n\t\tnoStrictGenericChecks?: boolean;\n\n\t\t/**\n\t\t@deprecated use `skipLibCheck` instead.\n\t\t*/\n\t\tskipDefaultLibCheck?: boolean;\n\n\t\t/**\n\t\tSkip type checking of declaration files.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tskipLibCheck?: boolean;\n\n\t\t/**\n\t\tConcatenate and emit output to single file.\n\t\t*/\n\t\toutFile?: string;\n\n\t\t/**\n\t\tRedirect output structure to the directory.\n\t\t*/\n\t\toutDir?: string;\n\n\t\t/**\n\t\tDo not erase const enum declarations in generated code.\n\n\t\t@default false\n\t\t*/\n\t\tpreserveConstEnums?: boolean;\n\n\t\t/**\n\t\tDo not resolve symlinks to their real path; treat a symlinked file like a real one.\n\n\t\t@default false\n\t\t*/\n\t\tpreserveSymlinks?: boolean;\n\n\t\t/**\n\t\tKeep outdated console output in watch mode instead of clearing the screen.\n\n\t\t@default false\n\t\t*/\n\t\tpreserveWatchOutput?: boolean;\n\n\t\t/**\n\t\tStylize errors and messages using color and context (experimental).\n\n\t\t@default true // Unless piping to another program or redirecting output to a file.\n\t\t*/\n\t\tpretty?: boolean;\n\n\t\t/**\n\t\tDo not emit comments to output.\n\n\t\t@default false\n\t\t*/\n\t\tremoveComments?: boolean;\n\n\t\t/**\n\t\tSpecifies the root directory of input files.\n\n\t\tUse to control the output directory structure with `--outDir`.\n\t\t*/\n\t\trootDir?: string;\n\n\t\t/**\n\t\tUnconditionally emit imports for unresolved files.\n\n\t\t@default false\n\t\t*/\n\t\tisolatedModules?: boolean;\n\n\t\t/**\n\t\tGenerates corresponding '.map' file.\n\n\t\t@default false\n\t\t*/\n\t\tsourceMap?: boolean;\n\n\t\t/**\n\t\tSpecifies the location where debugger should locate TypeScript files instead of source locations.\n\t\t*/\n\t\tsourceRoot?: string;\n\n\t\t/**\n\t\tSuppress excess property checks for object literals.\n\n\t\t@default false\n\t\t*/\n\t\tsuppressExcessPropertyErrors?: boolean;\n\n\t\t/**\n\t\tSuppress noImplicitAny errors for indexing objects lacking index signatures.\n\n\t\t@default false\n\t\t*/\n\t\tsuppressImplicitAnyIndexErrors?: boolean;\n\n\t\t/**\n\t\tDo not emit declarations for code that has an `@internal` annotation.\n\t\t*/\n\t\tstripInternal?: boolean;\n\n\t\t/**\n\t\tSpecify ECMAScript target version.\n\n\t\t@default 'es3'\n\t\t*/\n\t\ttarget?: CompilerOptions.Target;\n\n\t\t/**\n\t\tWatch input files.\n\n\t\t@default false\n\t\t*/\n\t\twatch?: boolean;\n\n\t\t/**\n\t\tEnables experimental support for ES7 decorators.\n\n\t\t@default false\n\t\t*/\n\t\texperimentalDecorators?: boolean;\n\n\t\t/**\n\t\tEmit design-type metadata for decorated declarations in source.\n\n\t\t@default false\n\t\t*/\n\t\temitDecoratorMetadata?: boolean;\n\n\t\t/**\n\t\tSpecifies module resolution strategy: 'node' (Node) or 'classic' (TypeScript pre 1.6).\n\n\t\t@default ['AMD', 'System', 'ES6'].includes(module) ? 'classic' : 'node'\n\t\t*/\n\t\tmoduleResolution?: 'classic' | 'node';\n\n\t\t/**\n\t\tDo not report errors on unused labels.\n\n\t\t@default false\n\t\t*/\n\t\tallowUnusedLabels?: boolean;\n\n\t\t/**\n\t\tReport error when not all code paths in function return a value.\n\n\t\t@default false\n\t\t*/\n\t\tnoImplicitReturns?: boolean;\n\n\t\t/**\n\t\tReport errors for fallthrough cases in switch statement.\n\n\t\t@default false\n\t\t*/\n\t\tnoFallthroughCasesInSwitch?: boolean;\n\n\t\t/**\n\t\tDo not report errors on unreachable code.\n\n\t\t@default false\n\t\t*/\n\t\tallowUnreachableCode?: boolean;\n\n\t\t/**\n\t\tDisallow inconsistently-cased references to the same file.\n\n\t\t@default false\n\t\t*/\n\t\tforceConsistentCasingInFileNames?: boolean;\n\n\t\t/**\n\t\tBase directory to resolve non-relative module names.\n\t\t*/\n\t\tbaseUrl?: string;\n\n\t\t/**\n\t\tSpecify path mapping to be computed relative to baseUrl option.\n\t\t*/\n\t\tpaths?: Record<string, string[]>;\n\n\t\t/**\n\t\tList of TypeScript language server plugins to load.\n\n\t\tRequires TypeScript version 2.3 or later.\n\t\t*/\n\t\tplugins?: CompilerOptions.Plugin[];\n\n\t\t/**\n\t\tSpecify list of root directories to be used when resolving modules.\n\t\t*/\n\t\trootDirs?: string[];\n\n\t\t/**\n\t\tSpecify list of directories for type definition files to be included.\n\n\t\tRequires TypeScript version 2.0 or later.\n\t\t*/\n\t\ttypeRoots?: string[];\n\n\t\t/**\n\t\tType declaration files to be included in compilation.\n\n\t\tRequires TypeScript version 2.0 or later.\n\t\t*/\n\t\ttypes?: string[];\n\n\t\t/**\n\t\tEnable tracing of the name resolution process.\n\n\t\t@default false\n\t\t*/\n\t\ttraceResolution?: boolean;\n\n\t\t/**\n\t\tAllow javascript files to be compiled.\n\n\t\t@default false\n\t\t*/\n\t\tallowJs?: boolean;\n\n\t\t/**\n\t\tDo not truncate error messages.\n\n\t\t@default false\n\t\t*/\n\t\tnoErrorTruncation?: boolean;\n\n\t\t/**\n\t\tAllow default imports from modules with no default export. This does not affect code emit, just typechecking.\n\n\t\t@default module === 'system' || esModuleInterop\n\t\t*/\n\t\tallowSyntheticDefaultImports?: boolean;\n\n\t\t/**\n\t\tDo not emit `'use strict'` directives in module output.\n\n\t\t@default false\n\t\t*/\n\t\tnoImplicitUseStrict?: boolean;\n\n\t\t/**\n\t\tEnable to list all emitted files.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tlistEmittedFiles?: boolean;\n\n\t\t/**\n\t\tDisable size limit for JavaScript project.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tdisableSizeLimit?: boolean;\n\n\t\t/**\n\t\tList of library files to be included in the compilation.\n\n\t\tRequires TypeScript version 2.0 or later.\n\t\t*/\n\t\tlib?: CompilerOptions.Lib[];\n\n\t\t/**\n\t\tEnable strict null checks.\n\n\t\tRequires TypeScript version 2.0 or later.\n\n\t\t@default false\n\t\t*/\n\t\tstrictNullChecks?: boolean;\n\n\t\t/**\n\t\tThe maximum dependency depth to search under `node_modules` and load JavaScript files. Only applicable with `--allowJs`.\n\n\t\t@default 0\n\t\t*/\n\t\tmaxNodeModuleJsDepth?: number;\n\n\t\t/**\n\t\tImport emit helpers (e.g. `__extends`, `__rest`, etc..) from tslib.\n\n\t\tRequires TypeScript version 2.1 or later.\n\n\t\t@default false\n\t\t*/\n\t\timportHelpers?: boolean;\n\n\t\t/**\n\t\tSpecify the JSX factory function to use when targeting React JSX emit, e.g. `React.createElement` or `h`.\n\n\t\tRequires TypeScript version 2.1 or later.\n\n\t\t@default 'React.createElement'\n\t\t*/\n\t\tjsxFactory?: string;\n\n\t\t/**\n\t\tParse in strict mode and emit `'use strict'` for each source file.\n\n\t\tRequires TypeScript version 2.1 or later.\n\n\t\t@default false\n\t\t*/\n\t\talwaysStrict?: boolean;\n\n\t\t/**\n\t\tEnable all strict type checking options.\n\n\t\tRequires TypeScript version 2.3 or later.\n\n\t\t@default false\n\t\t*/\n\t\tstrict?: boolean;\n\n\t\t/**\n\t\tEnable stricter checking of of the `bind`, `call`, and `apply` methods on functions.\n\n\t\t@default false\n\t\t*/\n\t\tstrictBindCallApply?: boolean;\n\n\t\t/**\n\t\tProvide full support for iterables in `for-of`, spread, and destructuring when targeting `ES5` or `ES3`.\n\n\t\tRequires TypeScript version 2.3 or later.\n\n\t\t@default false\n\t\t*/\n\t\tdownlevelIteration?: boolean;\n\n\t\t/**\n\t\tReport errors in `.js` files.\n\n\t\tRequires TypeScript version 2.3 or later.\n\n\t\t@default false\n\t\t*/\n\t\tcheckJs?: boolean;\n\n\t\t/**\n\t\tDisable bivariant parameter checking for function types.\n\n\t\tRequires TypeScript version 2.6 or later.\n\n\t\t@default false\n\t\t*/\n\t\tstrictFunctionTypes?: boolean;\n\n\t\t/**\n\t\tEnsure non-undefined class properties are initialized in the constructor.\n\n\t\tRequires TypeScript version 2.7 or later.\n\n\t\t@default false\n\t\t*/\n\t\tstrictPropertyInitialization?: boolean;\n\n\t\t/**\n\t\tEmit `__importStar` and `__importDefault` helpers for runtime Babel ecosystem compatibility and enable `--allowSyntheticDefaultImports` for typesystem compatibility.\n\n\t\tRequires TypeScript version 2.7 or later.\n\n\t\t@default false\n\t\t*/\n\t\tesModuleInterop?: boolean;\n\n\t\t/**\n\t\tAllow accessing UMD globals from modules.\n\n\t\t@default false\n\t\t*/\n\t\tallowUmdGlobalAccess?: boolean;\n\n\t\t/**\n\t\tResolve `keyof` to string valued property names only (no numbers or symbols).\n\n\t\tRequires TypeScript version 2.9 or later.\n\n\t\t@default false\n\t\t*/\n\t\tkeyofStringsOnly?: boolean;\n\n\t\t/**\n\t\tEmit ECMAScript standard class fields.\n\n\t\tRequires TypeScript version 3.7 or later.\n\n\t\t@default false\n\t\t*/\n\t\tuseDefineForClassFields?: boolean;\n\n\t\t/**\n\t\tGenerates a sourcemap for each corresponding `.d.ts` file.\n\n\t\tRequires TypeScript version 2.9 or later.\n\n\t\t@default false\n\t\t*/\n\t\tdeclarationMap?: boolean;\n\n\t\t/**\n\t\tInclude modules imported with `.json` extension.\n\n\t\tRequires TypeScript version 2.9 or later.\n\n\t\t@default false\n\t\t*/\n\t\tresolveJsonModule?: boolean;\n\t}\n\n\t/**\n\tAuto type (.d.ts) acquisition options for this project.\n\n\tRequires TypeScript version 2.1 or later.\n\t*/\n\texport interface TypeAcquisition {\n\t\t/**\n\t\tEnable auto type acquisition.\n\t\t*/\n\t\tenable?: boolean;\n\n\t\t/**\n\t\tSpecifies a list of type declarations to be included in auto type acquisition. For example, `['jquery', 'lodash']`.\n\t\t*/\n\t\tinclude?: string[];\n\n\t\t/**\n\t\tSpecifies a list of type declarations to be excluded from auto type acquisition. For example, `['jquery', 'lodash']`.\n\t\t*/\n\t\texclude?: string[];\n\t}\n\n\texport interface References {\n\t\t/**\n\t\tA normalized path on disk.\n\t\t*/\n\t\tpath: string;\n\n\t\t/**\n\t\tThe path as the user originally wrote it.\n\t\t*/\n\t\toriginalPath?: string;\n\n\t\t/**\n\t\tTrue if the output of this reference should be prepended to the output of this project.\n\n\t\tOnly valid for `--outFile` compilations.\n\t\t*/\n\t\tprepend?: boolean;\n\n\t\t/**\n\t\tTrue if it is intended that this reference form a circularity.\n\t\t*/\n\t\tcircular?: boolean;\n\t}\n}\n\nexport interface TsConfigJson {\n\t/**\n\tInstructs the TypeScript compiler how to compile `.ts` files.\n\t*/\n\tcompilerOptions?: TsConfigJson.CompilerOptions;\n\n\t/**\n\tAuto type (.d.ts) acquisition options for this project.\n\n\tRequires TypeScript version 2.1 or later.\n\t*/\n\ttypeAcquisition?: TsConfigJson.TypeAcquisition;\n\n\t/**\n\tEnable Compile-on-Save for this project.\n\t*/\n\tcompileOnSave?: boolean;\n\n\t/**\n\tPath to base configuration file to inherit from.\n\n\tRequires TypeScript version 2.1 or later.\n\t*/\n\textends?: string;\n\n\t/**\n\tIf no `files` or `include` property is present in a `tsconfig.json`, the compiler defaults to including all files in the containing directory and subdirectories except those specified by `exclude`. When a `files` property is specified, only those files and those specified by `include` are included.\n\t*/\n\tfiles?: string[];\n\n\t/**\n\tSpecifies a list of files to be excluded from compilation. The `exclude` property only affects the files included via the `include` property and not the `files` property.\n\n\tGlob patterns require TypeScript version 2.0 or later.\n\t*/\n\texclude?: string[];\n\n\t/**\n\tSpecifies a list of glob patterns that match files to be included in compilation.\n\n\tIf no `files` or `include` property is present in a `tsconfig.json`, the compiler defaults to including all files in the containing directory and subdirectories except those specified by `exclude`.\n\n\tRequires TypeScript version 2.0 or later.\n\t*/\n\tinclude?: string[];\n\n\t/**\n\tReferenced projects.\n\n\tRequires TypeScript version 3.0 or later.\n\t*/\n\treferences?: TsConfigJson.References[];\n}\n",
    "node_modules/type-fest/source/typed-array.d.ts": "/**\nMatches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`.\n*/\nexport type TypedArray =\n\t| Int8Array\n\t| Uint8Array\n\t| Uint8ClampedArray\n\t| Int16Array\n\t| Uint16Array\n\t| Int32Array\n\t| Uint32Array\n\t| Float32Array\n\t| Float64Array\n\t| BigInt64Array\n\t| BigUint64Array;\n",
    "node_modules/type-fest/source/union-to-intersection.d.ts": "/**\nConvert a union type to an intersection type using [distributive conditional types](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-8.html#distributive-conditional-types).\n\nInspired by [this Stack Overflow answer](https://stackoverflow.com/a/50375286/2172153).\n\n@example\n```\nimport {UnionToIntersection} from 'type-fest';\n\ntype Union = {the(): void} | {great(arg: string): void} | {escape: boolean};\n\ntype Intersection = UnionToIntersection<Union>;\n//=> {the(): void; great(arg: string): void; escape: boolean};\n```\n\nA more applicable example which could make its way into your library code follows.\n\n@example\n```\nimport {UnionToIntersection} from 'type-fest';\n\nclass CommandOne {\n\tcommands: {\n\t\ta1: () => undefined,\n\t\tb1: () => undefined,\n\t}\n}\n\nclass CommandTwo {\n\tcommands: {\n\t\ta2: (argA: string) => undefined,\n\t\tb2: (argB: string) => undefined,\n\t}\n}\n\nconst union = [new CommandOne(), new CommandTwo()].map(instance => instance.commands);\ntype Union = typeof union;\n//=> {a1(): void; b1(): void} | {a2(argA: string): void; b2(argB: string): void}\n\ntype Intersection = UnionToIntersection<Union>;\n//=> {a1(): void; b1(): void; a2(argA: string): void; b2(argB: string): void}\n```\n*/\nexport type UnionToIntersection<Union> = (\n\t// `extends unknown` is always going to be the case and is used to convert the\n\t// `Union` into a [distributive conditional\n\t// type](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-8.html#distributive-conditional-types).\n\tUnion extends unknown\n\t\t// The union type is used as the only argument to a function since the union\n\t\t// of function arguments is an intersection.\n\t\t? (distributedUnion: Union) => void\n\t\t// This won't happen.\n\t\t: never\n\t\t// Infer the `Intersection` type since TypeScript represents the positional\n\t\t// arguments of unions of functions as an intersection of the union.\n\t) extends ((mergedIntersection: infer Intersection) => void)\n\t\t? Intersection\n\t\t: never;\n",
    "node_modules/type-fest/source/utilities.d.ts": "export type UpperCaseCharacters = 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G' | 'H' | 'I' | 'J' | 'K' | 'L' | 'M' | 'N' | 'O' | 'P' | 'Q' | 'R' | 'S' | 'T' | 'U' | 'V' | 'W' | 'X' | 'Y' | 'Z';\n\nexport type WordSeparators = '-' | '_' | ' ';\n\nexport type StringDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';\n",
    "node_modules/type-fest/source/value-of.d.ts": "/**\nCreate a union of the given object's values, and optionally specify which keys to get the values from.\n\nPlease upvote [this issue](https://github.com/microsoft/TypeScript/issues/31438) if you want to have this type as a built-in in TypeScript.\n\n@example\n```\n// data.json\n{\n\t'foo': 1,\n\t'bar': 2,\n\t'biz': 3\n}\n\n// main.ts\nimport {ValueOf} from 'type-fest';\nimport data = require('./data.json');\n\nexport function getData(name: string): ValueOf<typeof data> {\n\treturn data[name];\n}\n\nexport function onlyBar(name: string): ValueOf<typeof data, 'bar'> {\n\treturn data[name];\n}\n\n// file.ts\nimport {getData, onlyBar} from './main';\n\ngetData('foo');\n//=> 1\n\nonlyBar('foo');\n//=> TypeError ...\n\nonlyBar('bar');\n//=> 2\n```\n*/\nexport type ValueOf<ObjectType, ValueType extends keyof ObjectType = keyof ObjectType> = ObjectType[ValueType];\n",
    "node_modules/type-fest/ts41/camel-case.d.ts": "import {WordSeparators} from '../source/utilities';\nimport {Split} from './utilities';\n\n/**\nStep by step takes the first item in an array literal, formats it and adds it to a string literal, and then recursively appends the remainder.\n\nOnly to be used by `CamelCaseStringArray<>`.\n\n@see CamelCaseStringArray\n*/\ntype InnerCamelCaseStringArray<Parts extends any[], PreviousPart> =\n\tParts extends [`${infer FirstPart}`, ...infer RemainingParts]\n\t\t? FirstPart extends undefined\n\t\t\t? ''\n\t\t\t: FirstPart extends ''\n\t\t\t\t\t? InnerCamelCaseStringArray<RemainingParts, PreviousPart>\n\t\t\t\t\t: `${PreviousPart extends '' ? FirstPart : Capitalize<FirstPart>}${InnerCamelCaseStringArray<RemainingParts, FirstPart>}`\n\t\t: '';\n\n/**\nStarts fusing the output of `Split<>`, an array literal of strings, into a camel-cased string literal.\n\nIt's separate from `InnerCamelCaseStringArray<>` to keep a clean API outwards to the rest of the code.\n\n@see Split\n*/\ntype CamelCaseStringArray<Parts extends string[]> =\n\tParts extends [`${infer FirstPart}`, ...infer RemainingParts]\n\t\t? Uncapitalize<`${FirstPart}${InnerCamelCaseStringArray<RemainingParts, FirstPart>}`>\n\t\t: never;\n\n/**\nConvert a string literal to camel-case.\n\nThis can be useful when, for example, converting some kebab-cased command-line flags or a snake-cased database result.\n\n@example\n```\nimport {CamelCase} from 'type-fest';\n\n// Simple\n\nconst someVariable: CamelCase<'foo-bar'> = 'fooBar';\n\n// Advanced\n\ntype CamelCasedProps<T> = {\n\t[K in keyof T as CamelCase<K>]: T[K]\n};\n\ninterface RawOptions {\n\t'dry-run': boolean;\n\t'full_family_name': string;\n\tfoo: number;\n}\n\nconst dbResult: CamelCasedProps<ModelProps> = {\n\tdryRun: true,\n\tfullFamilyName: 'bar.js',\n\tfoo: 123\n};\n```\n*/\nexport type CamelCase<K> = K extends string ? CamelCaseStringArray<Split<K, WordSeparators>> : K;\n",
    "node_modules/type-fest/ts41/delimiter-case.d.ts": "import {UpperCaseCharacters, WordSeparators} from '../source/utilities';\n\n/**\nUnlike a simpler split, this one includes the delimiter splitted on in the resulting array literal. This is to enable splitting on, for example, upper-case characters.\n*/\nexport type SplitIncludingDelimiters<Source extends string, Delimiter extends string> =\n\tSource extends '' ? [] :\n\tSource extends `${infer FirstPart}${Delimiter}${infer SecondPart}` ?\n\t(\n\t\tSource extends `${FirstPart}${infer UsedDelimiter}${SecondPart}`\n\t\t\t? UsedDelimiter extends Delimiter\n\t\t\t\t? Source extends `${infer FirstPart}${UsedDelimiter}${infer SecondPart}`\n\t\t\t\t\t? [...SplitIncludingDelimiters<FirstPart, Delimiter>, UsedDelimiter, ...SplitIncludingDelimiters<SecondPart, Delimiter>]\n\t\t\t\t\t: never\n\t\t\t\t: never\n\t\t\t: never\n\t) :\n\t[Source];\n\n/**\nFormat a specific part of the splitted string literal that `StringArrayToDelimiterCase<>` fuses together, ensuring desired casing.\n\n@see StringArrayToDelimiterCase\n*/\ntype StringPartToDelimiterCase<StringPart extends string, UsedWordSeparators extends string, UsedUpperCaseCharacters extends string, Delimiter extends string> =\n\tStringPart extends UsedWordSeparators ? Delimiter :\n\tStringPart extends UsedUpperCaseCharacters ? `${Delimiter}${Lowercase<StringPart>}` :\n\tStringPart;\n\n/**\nTakes the result of a splitted string literal and recursively concatenates it together into the desired casing.\n\nIt receives `UsedWordSeparators` and `UsedUpperCaseCharacters` as input to ensure it's fully encapsulated.\n\n@see SplitIncludingDelimiters\n*/\ntype StringArrayToDelimiterCase<Parts extends any[], UsedWordSeparators extends string, UsedUpperCaseCharacters extends string, Delimiter extends string> =\n\tParts extends [`${infer FirstPart}`, ...infer RemainingParts]\n\t\t? `${StringPartToDelimiterCase<FirstPart, UsedWordSeparators, UsedUpperCaseCharacters, Delimiter>}${StringArrayToDelimiterCase<RemainingParts, UsedWordSeparators, UsedUpperCaseCharacters, Delimiter>}`\n\t\t: '';\n\n/**\nConvert a string literal to a custom string delimiter casing.\n\nThis can be useful when, for example, converting a camel-cased object property to an oddly cased one.\n\n@see KebabCase\n@see SnakeCase\n\n@example\n```\nimport {DelimiterCase} from 'type-fest';\n\n// Simple\n\nconst someVariable: DelimiterCase<'fooBar', '#'> = 'foo#bar';\n\n// Advanced\n\ntype OddlyCasedProps<T> = {\n\t[K in keyof T as DelimiterCase<K, '#'>]: T[K]\n};\n\ninterface SomeOptions {\n\tdryRun: boolean;\n\tincludeFile: string;\n\tfoo: number;\n}\n\nconst rawCliOptions: OddlyCasedProps<SomeOptions> = {\n\t'dry#run': true,\n\t'include#file': 'bar.js',\n\tfoo: 123\n};\n```\n*/\n\nexport type DelimiterCase<Value, Delimiter extends string> = Value extends string\n\t? StringArrayToDelimiterCase<\n\t\tSplitIncludingDelimiters<Value, WordSeparators | UpperCaseCharacters>,\n\t\tWordSeparators,\n\t\tUpperCaseCharacters,\n\t\tDelimiter\n\t>\n\t: Value;\n",
    "node_modules/type-fest/ts41/get.d.ts": "import {Split} from './utilities';\nimport {StringDigit} from '../source/utilities';\n\n/**\nLike the `Get` type but receives an array of strings as a path parameter.\n*/\ntype GetWithPath<BaseType, Keys extends readonly string[]> =\n\tKeys extends []\n\t? BaseType\n\t: Keys extends [infer Head, ...infer Tail]\n\t? GetWithPath<PropertyOf<BaseType, Extract<Head, string>>, Extract<Tail, string[]>>\n\t: never;\n\n/**\nSplits a dot-prop style path into a tuple comprised of the properties in the path. Handles square-bracket notation.\n\n@example\n```\nToPath<'foo.bar.baz'>\n//=> ['foo', 'bar', 'baz']\n\nToPath<'foo[0].bar.baz'>\n//=> ['foo', '0', 'bar', 'baz']\n```\n*/\ntype ToPath<S extends string> = Split<FixPathSquareBrackets<S>, '.'>;\n\n/**\nReplaces square-bracketed dot notation with dots, for example, `foo[0].bar` -> `foo.0.bar`.\n*/\ntype FixPathSquareBrackets<Path extends string> =\n\tPath extends `${infer Head}[${infer Middle}]${infer Tail}`\n\t? `${Head}.${Middle}${FixPathSquareBrackets<Tail>}`\n\t: Path;\n\n/**\nReturns true if `LongString` is made up out of `Substring` repeated 0 or more times.\n\n@example\n```\nConsistsOnlyOf<'aaa', 'a'> //=> true\nConsistsOnlyOf<'ababab', 'ab'> //=> true\nConsistsOnlyOf<'aBa', 'a'> //=> false\nConsistsOnlyOf<'', 'a'> //=> true\n```\n*/\ntype ConsistsOnlyOf<LongString extends string, Substring extends string> =\n\tLongString extends ''\n\t? true\n\t: LongString extends `${Substring}${infer Tail}`\n\t? ConsistsOnlyOf<Tail, Substring>\n  : false;\n\n/**\nConvert a type which may have number keys to one with string keys, making it possible to index using strings retrieved from template types.\n\n@example\n```\ntype WithNumbers = {foo: string; 0: boolean};\ntype WithStrings = WithStringKeys<WithNumbers>;\n\ntype WithNumbersKeys = keyof WithNumbers;\n//=> 'foo' | 0\ntype WithStringsKeys = keyof WithStrings;\n//=> 'foo' | '0'\n```\n*/\ntype WithStringKeys<BaseType extends Record<string | number, any>> = {\n\t[Key in `${Extract<keyof BaseType, string | number>}`]: BaseType[Key]\n};\n\n/**\nGet a property of an object or array. Works when indexing arrays using number-literal-strings, for example, `PropertyOf<number[], '0'> = number`, and when indexing objects with number keys.\n\nNote:\n- Returns `unknown` if `Key` is not a property of `BaseType`, since TypeScript uses structural typing, and it cannot be guaranteed that extra properties unknown to the type system will exist at runtime.\n- Returns `undefined` from nullish values, to match the behaviour of most deep-key libraries like `lodash`, `dot-prop`, etc.\n*/\ntype PropertyOf<BaseType, Key extends string> =\n\tBaseType extends null | undefined\n\t? undefined\n\t: Key extends keyof BaseType\n\t? BaseType[Key]\n\t: BaseType extends {\n\t\t[n: number]: infer Item;\n\t\tlength: number; // Note: This is needed to avoid being too lax with records types using number keys like `{0: string; 1: boolean}`.\n\t}\n\t? (\n\t\tConsistsOnlyOf<Key, StringDigit> extends true\n\t\t? Item\n\t\t: unknown\n\t)\n\t: Key extends keyof WithStringKeys<BaseType>\n\t? WithStringKeys<BaseType>[Key]\n\t: unknown;\n\n// This works by first splitting the path based on `.` and `[...]` characters into a tuple of string keys. Then it recursively uses the head key to get the next property of the current object, until there are no keys left. Number keys extract the item type from arrays, or are converted to strings to extract types from tuples and dictionaries with number keys.\n/**\nGet a deeply-nested property from an object using a key path, like Lodash's `.get()` function.\n\nUse-case: Retrieve a property from deep inside an API response or some other complex object.\n\n@example\n```\nimport {Get} from 'type-fest';\nimport * as lodash from 'lodash';\n\nconst get = <BaseType, Path extends string>(object: BaseType, path: Path): Get<BaseType, Path> =>\n\tlodash.get(object, path);\n\ninterface ApiResponse {\n\thits: {\n\t\thits: Array<{\n\t\t\t_id: string\n\t\t\t_source: {\n\t\t\t\tname: Array<{\n\t\t\t\t\tgiven: string[]\n\t\t\t\t\tfamily: string\n\t\t\t\t}>\n\t\t\t\tbirthDate: string\n\t\t\t}\n\t\t}>\n\t}\n}\n\nconst getName = (apiResponse: ApiResponse) =>\n\tget(apiResponse, 'hits.hits[0]._source.name');\n\t//=> Array<{given: string[]; family: string}>\n```\n*/\nexport type Get<BaseType, Path extends string> = GetWithPath<BaseType, ToPath<Path>>;\n",
    "node_modules/type-fest/ts41/index.d.ts": "// These are all the basic types that's compatible with all supported TypeScript versions.\nexport * from '../base';\n\n// These are special types that require at least TypeScript 4.1.\nexport {CamelCase} from './camel-case';\nexport {KebabCase} from './kebab-case';\nexport {PascalCase} from './pascal-case';\nexport {SnakeCase} from './snake-case';\nexport {DelimiterCase} from './delimiter-case';\nexport {Get} from './get';\n",
    "node_modules/type-fest/ts41/kebab-case.d.ts": "import {DelimiterCase} from './delimiter-case';\n\n/**\nConvert a string literal to kebab-case.\n\nThis can be useful when, for example, converting a camel-cased object property to a kebab-cased CSS class name or a command-line flag.\n\n@example\n```\nimport {KebabCase} from 'type-fest';\n\n// Simple\n\nconst someVariable: KebabCase<'fooBar'> = 'foo-bar';\n\n// Advanced\n\ntype KebabCasedProps<T> = {\n\t[K in keyof T as KebabCase<K>]: T[K]\n};\n\ninterface CliOptions {\n\tdryRun: boolean;\n\tincludeFile: string;\n\tfoo: number;\n}\n\nconst rawCliOptions: KebabCasedProps<CliOptions> = {\n\t'dry-run': true,\n\t'include-file': 'bar.js',\n\tfoo: 123\n};\n```\n*/\n\nexport type KebabCase<Value> = DelimiterCase<Value, '-'>;\n",
    "node_modules/type-fest/ts41/pascal-case.d.ts": "import {CamelCase} from './camel-case';\n\n/**\nConverts a string literal to pascal-case.\n\n@example\n```\nimport {PascalCase} from 'type-fest';\n\n// Simple\n\nconst someVariable: PascalCase<'foo-bar'> = 'FooBar';\n\n// Advanced\n\ntype PascalCaseProps<T> = {\n\t[K in keyof T as PascalCase<K>]: T[K]\n};\n\ninterface RawOptions {\n\t'dry-run': boolean;\n\t'full_family_name': string;\n\tfoo: number;\n}\n\nconst dbResult: CamelCasedProps<ModelProps> = {\n\tDryRun: true,\n\tFullFamilyName: 'bar.js',\n\tFoo: 123\n};\n```\n*/\n\nexport type PascalCase<Value> = CamelCase<Value> extends string\n\t? Capitalize<CamelCase<Value>>\n\t: CamelCase<Value>;\n",
    "node_modules/type-fest/ts41/snake-case.d.ts": "import {DelimiterCase} from './delimiter-case';\n\n/**\nConvert a string literal to snake-case.\n\nThis can be useful when, for example, converting a camel-cased object property to a snake-cased SQL column name.\n\n@example\n```\nimport {SnakeCase} from 'type-fest';\n\n// Simple\n\nconst someVariable: SnakeCase<'fooBar'> = 'foo_bar';\n\n// Advanced\n\ntype SnakeCasedProps<T> = {\n\t[K in keyof T as SnakeCase<K>]: T[K]\n};\n\ninterface ModelProps {\n\tisHappy: boolean;\n\tfullFamilyName: string;\n\tfoo: number;\n}\n\nconst dbResult: SnakeCasedProps<ModelProps> = {\n\t'is_happy': true,\n\t'full_family_name': 'Carla Smith',\n\tfoo: 123\n};\n```\n*/\nexport type SnakeCase<Value> = DelimiterCase<Value, '_'>;\n",
    "node_modules/type-fest/ts41/utilities.d.ts": "/**\nRecursively split a string literal into two parts on the first occurence of the given string, returning an array literal of all the separate parts.\n*/\nexport type Split<S extends string, D extends string> =\n\tstring extends S ? string[] :\n\tS extends '' ? [] :\n\tS extends `${infer T}${D}${infer U}` ? [T, ...Split<U, D>] :\n\t[S];\n",
    "node_modules/typescript/lib/lib.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es5\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n",
    "node_modules/typescript/lib/lib.decorators.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/**\n * The decorator context types provided to class element decorators.\n */\ntype ClassMemberDecoratorContext =\n    | ClassMethodDecoratorContext\n    | ClassGetterDecoratorContext\n    | ClassSetterDecoratorContext\n    | ClassFieldDecoratorContext\n    | ClassAccessorDecoratorContext;\n\n/**\n * The decorator context types provided to any decorator.\n */\ntype DecoratorContext =\n    | ClassDecoratorContext\n    | ClassMemberDecoratorContext;\n\ntype DecoratorMetadataObject = Record<PropertyKey, unknown> & object;\n\ntype DecoratorMetadata = typeof globalThis extends { Symbol: { readonly metadata: symbol; }; } ? DecoratorMetadataObject : DecoratorMetadataObject | undefined;\n\n/**\n * Context provided to a class decorator.\n * @template Class The type of the decorated class associated with this context.\n */\ninterface ClassDecoratorContext<\n    Class extends abstract new (...args: any) => any = abstract new (...args: any) => any,\n> {\n    /** The kind of element that was decorated. */\n    readonly kind: \"class\";\n\n    /** The name of the decorated class. */\n    readonly name: string | undefined;\n\n    /**\n     * Adds a callback to be invoked after the class definition has been finalized.\n     *\n     * @example\n     * ```ts\n     * function customElement(name: string): ClassDecoratorFunction {\n     *   return (target, context) => {\n     *     context.addInitializer(function () {\n     *       customElements.define(name, this);\n     *     });\n     *   }\n     * }\n     *\n     * @customElement(\"my-element\")\n     * class MyElement {}\n     * ```\n     */\n    addInitializer(initializer: (this: Class) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n\n/**\n * Context provided to a class method decorator.\n * @template This The type on which the class element will be defined. For a static class element, this will be\n * the type of the constructor. For a non-static class element, this will be the type of the instance.\n * @template Value The type of the decorated class method.\n */\ninterface ClassMethodDecoratorContext<\n    This = unknown,\n    Value extends (this: This, ...args: any) => any = (this: This, ...args: any) => any,\n> {\n    /** The kind of class element that was decorated. */\n    readonly kind: \"method\";\n\n    /** The name of the decorated class element. */\n    readonly name: string | symbol;\n\n    /** A value indicating whether the class element is a static (`true`) or instance (`false`) element. */\n    readonly static: boolean;\n\n    /** A value indicating whether the class element has a private name. */\n    readonly private: boolean;\n\n    /** An object that can be used to access the current value of the class element at runtime. */\n    readonly access: {\n        /**\n         * Determines whether an object has a property with the same name as the decorated element.\n         */\n        has(object: This): boolean;\n        /**\n         * Gets the current value of the method from the provided object.\n         *\n         * @example\n         * let fn = context.access.get(instance);\n         */\n        get(object: This): Value;\n    };\n\n    /**\n     * Adds a callback to be invoked either after static methods are defined but before\n     * static initializers are run (when decorating a `static` element), or before instance\n     * initializers are run (when decorating a non-`static` element).\n     *\n     * @example\n     * ```ts\n     * const bound: ClassMethodDecoratorFunction = (value, context) {\n     *   if (context.private) throw new TypeError(\"Not supported on private methods.\");\n     *   context.addInitializer(function () {\n     *     this[context.name] = this[context.name].bind(this);\n     *   });\n     * }\n     *\n     * class C {\n     *   message = \"Hello\";\n     *\n     *   @bound\n     *   m() {\n     *     console.log(this.message);\n     *   }\n     * }\n     * ```\n     */\n    addInitializer(initializer: (this: This) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n\n/**\n * Context provided to a class getter decorator.\n * @template This The type on which the class element will be defined. For a static class element, this will be\n * the type of the constructor. For a non-static class element, this will be the type of the instance.\n * @template Value The property type of the decorated class getter.\n */\ninterface ClassGetterDecoratorContext<\n    This = unknown,\n    Value = unknown,\n> {\n    /** The kind of class element that was decorated. */\n    readonly kind: \"getter\";\n\n    /** The name of the decorated class element. */\n    readonly name: string | symbol;\n\n    /** A value indicating whether the class element is a static (`true`) or instance (`false`) element. */\n    readonly static: boolean;\n\n    /** A value indicating whether the class element has a private name. */\n    readonly private: boolean;\n\n    /** An object that can be used to access the current value of the class element at runtime. */\n    readonly access: {\n        /**\n         * Determines whether an object has a property with the same name as the decorated element.\n         */\n        has(object: This): boolean;\n        /**\n         * Invokes the getter on the provided object.\n         *\n         * @example\n         * let value = context.access.get(instance);\n         */\n        get(object: This): Value;\n    };\n\n    /**\n     * Adds a callback to be invoked either after static methods are defined but before\n     * static initializers are run (when decorating a `static` element), or before instance\n     * initializers are run (when decorating a non-`static` element).\n     */\n    addInitializer(initializer: (this: This) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n\n/**\n * Context provided to a class setter decorator.\n * @template This The type on which the class element will be defined. For a static class element, this will be\n * the type of the constructor. For a non-static class element, this will be the type of the instance.\n * @template Value The type of the decorated class setter.\n */\ninterface ClassSetterDecoratorContext<\n    This = unknown,\n    Value = unknown,\n> {\n    /** The kind of class element that was decorated. */\n    readonly kind: \"setter\";\n\n    /** The name of the decorated class element. */\n    readonly name: string | symbol;\n\n    /** A value indicating whether the class element is a static (`true`) or instance (`false`) element. */\n    readonly static: boolean;\n\n    /** A value indicating whether the class element has a private name. */\n    readonly private: boolean;\n\n    /** An object that can be used to access the current value of the class element at runtime. */\n    readonly access: {\n        /**\n         * Determines whether an object has a property with the same name as the decorated element.\n         */\n        has(object: This): boolean;\n        /**\n         * Invokes the setter on the provided object.\n         *\n         * @example\n         * context.access.set(instance, value);\n         */\n        set(object: This, value: Value): void;\n    };\n\n    /**\n     * Adds a callback to be invoked either after static methods are defined but before\n     * static initializers are run (when decorating a `static` element), or before instance\n     * initializers are run (when decorating a non-`static` element).\n     */\n    addInitializer(initializer: (this: This) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n\n/**\n * Context provided to a class `accessor` field decorator.\n * @template This The type on which the class element will be defined. For a static class element, this will be\n * the type of the constructor. For a non-static class element, this will be the type of the instance.\n * @template Value The type of decorated class field.\n */\ninterface ClassAccessorDecoratorContext<\n    This = unknown,\n    Value = unknown,\n> {\n    /** The kind of class element that was decorated. */\n    readonly kind: \"accessor\";\n\n    /** The name of the decorated class element. */\n    readonly name: string | symbol;\n\n    /** A value indicating whether the class element is a static (`true`) or instance (`false`) element. */\n    readonly static: boolean;\n\n    /** A value indicating whether the class element has a private name. */\n    readonly private: boolean;\n\n    /** An object that can be used to access the current value of the class element at runtime. */\n    readonly access: {\n        /**\n         * Determines whether an object has a property with the same name as the decorated element.\n         */\n        has(object: This): boolean;\n\n        /**\n         * Invokes the getter on the provided object.\n         *\n         * @example\n         * let value = context.access.get(instance);\n         */\n        get(object: This): Value;\n\n        /**\n         * Invokes the setter on the provided object.\n         *\n         * @example\n         * context.access.set(instance, value);\n         */\n        set(object: This, value: Value): void;\n    };\n\n    /**\n     * Adds a callback to be invoked immediately after the auto `accessor` being\n     * decorated is initialized (regardless if the `accessor` is `static` or not).\n     */\n    addInitializer(initializer: (this: This) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n\n/**\n * Describes the target provided to class `accessor` field decorators.\n * @template This The `this` type to which the target applies.\n * @template Value The property type for the class `accessor` field.\n */\ninterface ClassAccessorDecoratorTarget<This, Value> {\n    /**\n     * Invokes the getter that was defined prior to decorator application.\n     *\n     * @example\n     * let value = target.get.call(instance);\n     */\n    get(this: This): Value;\n\n    /**\n     * Invokes the setter that was defined prior to decorator application.\n     *\n     * @example\n     * target.set.call(instance, value);\n     */\n    set(this: This, value: Value): void;\n}\n\n/**\n * Describes the allowed return value from a class `accessor` field decorator.\n * @template This The `this` type to which the target applies.\n * @template Value The property type for the class `accessor` field.\n */\ninterface ClassAccessorDecoratorResult<This, Value> {\n    /**\n     * An optional replacement getter function. If not provided, the existing getter function is used instead.\n     */\n    get?(this: This): Value;\n\n    /**\n     * An optional replacement setter function. If not provided, the existing setter function is used instead.\n     */\n    set?(this: This, value: Value): void;\n\n    /**\n     * An optional initializer mutator that is invoked when the underlying field initializer is evaluated.\n     * @param value The incoming initializer value.\n     * @returns The replacement initializer value.\n     */\n    init?(this: This, value: Value): Value;\n}\n\n/**\n * Context provided to a class field decorator.\n * @template This The type on which the class element will be defined. For a static class element, this will be\n * the type of the constructor. For a non-static class element, this will be the type of the instance.\n * @template Value The type of the decorated class field.\n */\ninterface ClassFieldDecoratorContext<\n    This = unknown,\n    Value = unknown,\n> {\n    /** The kind of class element that was decorated. */\n    readonly kind: \"field\";\n\n    /** The name of the decorated class element. */\n    readonly name: string | symbol;\n\n    /** A value indicating whether the class element is a static (`true`) or instance (`false`) element. */\n    readonly static: boolean;\n\n    /** A value indicating whether the class element has a private name. */\n    readonly private: boolean;\n\n    /** An object that can be used to access the current value of the class element at runtime. */\n    readonly access: {\n        /**\n         * Determines whether an object has a property with the same name as the decorated element.\n         */\n        has(object: This): boolean;\n\n        /**\n         * Gets the value of the field on the provided object.\n         */\n        get(object: This): Value;\n\n        /**\n         * Sets the value of the field on the provided object.\n         */\n        set(object: This, value: Value): void;\n    };\n\n    /**\n     * Adds a callback to be invoked immediately after the field being decorated\n     * is initialized (regardless if the field is `static` or not).\n     */\n    addInitializer(initializer: (this: This) => void): void;\n\n    readonly metadata: DecoratorMetadata;\n}\n",
    "node_modules/typescript/lib/lib.decorators.legacy.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;\ndeclare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;\ndeclare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;\ndeclare type ParameterDecorator = (target: Object, propertyKey: string | symbol | undefined, parameterIndex: number) => void;\n",
    "node_modules/typescript/lib/lib.dom.asynciterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Window Async Iterable APIs\n/////////////////////////////\n\ninterface FileSystemDirectoryHandleAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<T>;\n}\n\ninterface FileSystemDirectoryHandle {\n    [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;\n    entries(): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;\n    keys(): FileSystemDirectoryHandleAsyncIterator<string>;\n    values(): FileSystemDirectoryHandleAsyncIterator<FileSystemHandle>;\n}\n\ninterface ReadableStreamAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;\n}\n\ninterface ReadableStream<R = any> {\n    [Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;\n    values(options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;\n}\n",
    "node_modules/typescript/lib/lib.dom.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Window APIs\n/////////////////////////////\n\ninterface AddEventListenerOptions extends EventListenerOptions {\n    once?: boolean;\n    passive?: boolean;\n    signal?: AbortSignal;\n}\n\ninterface AddressErrors {\n    addressLine?: string;\n    city?: string;\n    country?: string;\n    dependentLocality?: string;\n    organization?: string;\n    phone?: string;\n    postalCode?: string;\n    recipient?: string;\n    region?: string;\n    sortingCode?: string;\n}\n\ninterface AesCbcParams extends Algorithm {\n    iv: BufferSource;\n}\n\ninterface AesCtrParams extends Algorithm {\n    counter: BufferSource;\n    length: number;\n}\n\ninterface AesDerivedKeyParams extends Algorithm {\n    length: number;\n}\n\ninterface AesGcmParams extends Algorithm {\n    additionalData?: BufferSource;\n    iv: BufferSource;\n    tagLength?: number;\n}\n\ninterface AesKeyAlgorithm extends KeyAlgorithm {\n    length: number;\n}\n\ninterface AesKeyGenParams extends Algorithm {\n    length: number;\n}\n\ninterface Algorithm {\n    name: string;\n}\n\ninterface AnalyserOptions extends AudioNodeOptions {\n    fftSize?: number;\n    maxDecibels?: number;\n    minDecibels?: number;\n    smoothingTimeConstant?: number;\n}\n\ninterface AnimationEventInit extends EventInit {\n    animationName?: string;\n    elapsedTime?: number;\n    pseudoElement?: string;\n}\n\ninterface AnimationPlaybackEventInit extends EventInit {\n    currentTime?: CSSNumberish | null;\n    timelineTime?: CSSNumberish | null;\n}\n\ninterface AssignedNodesOptions {\n    flatten?: boolean;\n}\n\ninterface AudioBufferOptions {\n    length: number;\n    numberOfChannels?: number;\n    sampleRate: number;\n}\n\ninterface AudioBufferSourceOptions {\n    buffer?: AudioBuffer | null;\n    detune?: number;\n    loop?: boolean;\n    loopEnd?: number;\n    loopStart?: number;\n    playbackRate?: number;\n}\n\ninterface AudioConfiguration {\n    bitrate?: number;\n    channels?: string;\n    contentType: string;\n    samplerate?: number;\n    spatialRendering?: boolean;\n}\n\ninterface AudioContextOptions {\n    latencyHint?: AudioContextLatencyCategory | number;\n    sampleRate?: number;\n}\n\ninterface AudioDataCopyToOptions {\n    format?: AudioSampleFormat;\n    frameCount?: number;\n    frameOffset?: number;\n    planeIndex: number;\n}\n\ninterface AudioDataInit {\n    data: BufferSource;\n    format: AudioSampleFormat;\n    numberOfChannels: number;\n    numberOfFrames: number;\n    sampleRate: number;\n    timestamp: number;\n    transfer?: ArrayBuffer[];\n}\n\ninterface AudioDecoderConfig {\n    codec: string;\n    description?: AllowSharedBufferSource;\n    numberOfChannels: number;\n    sampleRate: number;\n}\n\ninterface AudioDecoderInit {\n    error: WebCodecsErrorCallback;\n    output: AudioDataOutputCallback;\n}\n\ninterface AudioDecoderSupport {\n    config?: AudioDecoderConfig;\n    supported?: boolean;\n}\n\ninterface AudioEncoderConfig {\n    bitrate?: number;\n    bitrateMode?: BitrateMode;\n    codec: string;\n    numberOfChannels: number;\n    opus?: OpusEncoderConfig;\n    sampleRate: number;\n}\n\ninterface AudioEncoderInit {\n    error: WebCodecsErrorCallback;\n    output: EncodedAudioChunkOutputCallback;\n}\n\ninterface AudioEncoderSupport {\n    config?: AudioEncoderConfig;\n    supported?: boolean;\n}\n\ninterface AudioNodeOptions {\n    channelCount?: number;\n    channelCountMode?: ChannelCountMode;\n    channelInterpretation?: ChannelInterpretation;\n}\n\ninterface AudioProcessingEventInit extends EventInit {\n    inputBuffer: AudioBuffer;\n    outputBuffer: AudioBuffer;\n    playbackTime: number;\n}\n\ninterface AudioTimestamp {\n    contextTime?: number;\n    performanceTime?: DOMHighResTimeStamp;\n}\n\ninterface AudioWorkletNodeOptions extends AudioNodeOptions {\n    numberOfInputs?: number;\n    numberOfOutputs?: number;\n    outputChannelCount?: number[];\n    parameterData?: Record<string, number>;\n    processorOptions?: any;\n}\n\ninterface AuthenticationExtensionsClientInputs {\n    appid?: string;\n    credProps?: boolean;\n    credentialProtectionPolicy?: string;\n    enforceCredentialProtectionPolicy?: boolean;\n    hmacCreateSecret?: boolean;\n    largeBlob?: AuthenticationExtensionsLargeBlobInputs;\n    minPinLength?: boolean;\n    prf?: AuthenticationExtensionsPRFInputs;\n}\n\ninterface AuthenticationExtensionsClientInputsJSON {\n    appid?: string;\n    credProps?: boolean;\n    largeBlob?: AuthenticationExtensionsLargeBlobInputsJSON;\n    prf?: AuthenticationExtensionsPRFInputsJSON;\n}\n\ninterface AuthenticationExtensionsClientOutputs {\n    appid?: boolean;\n    credProps?: CredentialPropertiesOutput;\n    hmacCreateSecret?: boolean;\n    largeBlob?: AuthenticationExtensionsLargeBlobOutputs;\n    prf?: AuthenticationExtensionsPRFOutputs;\n}\n\ninterface AuthenticationExtensionsLargeBlobInputs {\n    read?: boolean;\n    support?: string;\n    write?: BufferSource;\n}\n\ninterface AuthenticationExtensionsLargeBlobInputsJSON {\n    read?: boolean;\n    support?: string;\n    write?: Base64URLString;\n}\n\ninterface AuthenticationExtensionsLargeBlobOutputs {\n    blob?: ArrayBuffer;\n    supported?: boolean;\n    written?: boolean;\n}\n\ninterface AuthenticationExtensionsPRFInputs {\n    eval?: AuthenticationExtensionsPRFValues;\n    evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;\n}\n\ninterface AuthenticationExtensionsPRFInputsJSON {\n    eval?: AuthenticationExtensionsPRFValuesJSON;\n    evalByCredential?: Record<string, AuthenticationExtensionsPRFValuesJSON>;\n}\n\ninterface AuthenticationExtensionsPRFOutputs {\n    enabled?: boolean;\n    results?: AuthenticationExtensionsPRFValues;\n}\n\ninterface AuthenticationExtensionsPRFValues {\n    first: BufferSource;\n    second?: BufferSource;\n}\n\ninterface AuthenticationExtensionsPRFValuesJSON {\n    first: Base64URLString;\n    second?: Base64URLString;\n}\n\ninterface AuthenticatorSelectionCriteria {\n    authenticatorAttachment?: AuthenticatorAttachment;\n    requireResidentKey?: boolean;\n    residentKey?: ResidentKeyRequirement;\n    userVerification?: UserVerificationRequirement;\n}\n\ninterface AvcEncoderConfig {\n    format?: AvcBitstreamFormat;\n}\n\ninterface BiquadFilterOptions extends AudioNodeOptions {\n    Q?: number;\n    detune?: number;\n    frequency?: number;\n    gain?: number;\n    type?: BiquadFilterType;\n}\n\ninterface BlobEventInit extends EventInit {\n    data: Blob;\n    timecode?: DOMHighResTimeStamp;\n}\n\ninterface BlobPropertyBag {\n    endings?: EndingType;\n    type?: string;\n}\n\ninterface CSSMatrixComponentOptions {\n    is2D?: boolean;\n}\n\ninterface CSSNumericType {\n    angle?: number;\n    flex?: number;\n    frequency?: number;\n    length?: number;\n    percent?: number;\n    percentHint?: CSSNumericBaseType;\n    resolution?: number;\n    time?: number;\n}\n\ninterface CSSStyleSheetInit {\n    baseURL?: string;\n    disabled?: boolean;\n    media?: MediaList | string;\n}\n\ninterface CacheQueryOptions {\n    ignoreMethod?: boolean;\n    ignoreSearch?: boolean;\n    ignoreVary?: boolean;\n}\n\ninterface CanvasRenderingContext2DSettings {\n    alpha?: boolean;\n    colorSpace?: PredefinedColorSpace;\n    desynchronized?: boolean;\n    willReadFrequently?: boolean;\n}\n\ninterface CaretPositionFromPointOptions {\n    shadowRoots?: ShadowRoot[];\n}\n\ninterface ChannelMergerOptions extends AudioNodeOptions {\n    numberOfInputs?: number;\n}\n\ninterface ChannelSplitterOptions extends AudioNodeOptions {\n    numberOfOutputs?: number;\n}\n\ninterface CheckVisibilityOptions {\n    checkOpacity?: boolean;\n    checkVisibilityCSS?: boolean;\n    contentVisibilityAuto?: boolean;\n    opacityProperty?: boolean;\n    visibilityProperty?: boolean;\n}\n\ninterface ClientQueryOptions {\n    includeUncontrolled?: boolean;\n    type?: ClientTypes;\n}\n\ninterface ClipboardEventInit extends EventInit {\n    clipboardData?: DataTransfer | null;\n}\n\ninterface ClipboardItemOptions {\n    presentationStyle?: PresentationStyle;\n}\n\ninterface CloseEventInit extends EventInit {\n    code?: number;\n    reason?: string;\n    wasClean?: boolean;\n}\n\ninterface CompositionEventInit extends UIEventInit {\n    data?: string;\n}\n\ninterface ComputedEffectTiming extends EffectTiming {\n    activeDuration?: CSSNumberish;\n    currentIteration?: number | null;\n    endTime?: CSSNumberish;\n    localTime?: CSSNumberish | null;\n    progress?: number | null;\n    startTime?: CSSNumberish;\n}\n\ninterface ComputedKeyframe {\n    composite: CompositeOperationOrAuto;\n    computedOffset: number;\n    easing: string;\n    offset: number | null;\n    [property: string]: string | number | null | undefined;\n}\n\ninterface ConstantSourceOptions {\n    offset?: number;\n}\n\ninterface ConstrainBooleanParameters {\n    exact?: boolean;\n    ideal?: boolean;\n}\n\ninterface ConstrainDOMStringParameters {\n    exact?: string | string[];\n    ideal?: string | string[];\n}\n\ninterface ConstrainDoubleRange extends DoubleRange {\n    exact?: number;\n    ideal?: number;\n}\n\ninterface ConstrainULongRange extends ULongRange {\n    exact?: number;\n    ideal?: number;\n}\n\ninterface ContentVisibilityAutoStateChangeEventInit extends EventInit {\n    skipped?: boolean;\n}\n\ninterface ConvolverOptions extends AudioNodeOptions {\n    buffer?: AudioBuffer | null;\n    disableNormalization?: boolean;\n}\n\ninterface CookieChangeEventInit extends EventInit {\n    changed?: CookieList;\n    deleted?: CookieList;\n}\n\ninterface CookieInit {\n    domain?: string | null;\n    expires?: DOMHighResTimeStamp | null;\n    name: string;\n    partitioned?: boolean;\n    path?: string;\n    sameSite?: CookieSameSite;\n    value: string;\n}\n\ninterface CookieListItem {\n    name?: string;\n    value?: string;\n}\n\ninterface CookieStoreDeleteOptions {\n    domain?: string | null;\n    name: string;\n    partitioned?: boolean;\n    path?: string;\n}\n\ninterface CookieStoreGetOptions {\n    name?: string;\n    url?: string;\n}\n\ninterface CredentialCreationOptions {\n    publicKey?: PublicKeyCredentialCreationOptions;\n    signal?: AbortSignal;\n}\n\ninterface CredentialPropertiesOutput {\n    rk?: boolean;\n}\n\ninterface CredentialRequestOptions {\n    mediation?: CredentialMediationRequirement;\n    publicKey?: PublicKeyCredentialRequestOptions;\n    signal?: AbortSignal;\n}\n\ninterface CryptoKeyPair {\n    privateKey: CryptoKey;\n    publicKey: CryptoKey;\n}\n\ninterface CustomEventInit<T = any> extends EventInit {\n    detail?: T;\n}\n\ninterface DOMMatrix2DInit {\n    a?: number;\n    b?: number;\n    c?: number;\n    d?: number;\n    e?: number;\n    f?: number;\n    m11?: number;\n    m12?: number;\n    m21?: number;\n    m22?: number;\n    m41?: number;\n    m42?: number;\n}\n\ninterface DOMMatrixInit extends DOMMatrix2DInit {\n    is2D?: boolean;\n    m13?: number;\n    m14?: number;\n    m23?: number;\n    m24?: number;\n    m31?: number;\n    m32?: number;\n    m33?: number;\n    m34?: number;\n    m43?: number;\n    m44?: number;\n}\n\ninterface DOMPointInit {\n    w?: number;\n    x?: number;\n    y?: number;\n    z?: number;\n}\n\ninterface DOMQuadInit {\n    p1?: DOMPointInit;\n    p2?: DOMPointInit;\n    p3?: DOMPointInit;\n    p4?: DOMPointInit;\n}\n\ninterface DOMRectInit {\n    height?: number;\n    width?: number;\n    x?: number;\n    y?: number;\n}\n\ninterface DelayOptions extends AudioNodeOptions {\n    delayTime?: number;\n    maxDelayTime?: number;\n}\n\ninterface DeviceMotionEventAccelerationInit {\n    x?: number | null;\n    y?: number | null;\n    z?: number | null;\n}\n\ninterface DeviceMotionEventInit extends EventInit {\n    acceleration?: DeviceMotionEventAccelerationInit;\n    accelerationIncludingGravity?: DeviceMotionEventAccelerationInit;\n    interval?: number;\n    rotationRate?: DeviceMotionEventRotationRateInit;\n}\n\ninterface DeviceMotionEventRotationRateInit {\n    alpha?: number | null;\n    beta?: number | null;\n    gamma?: number | null;\n}\n\ninterface DeviceOrientationEventInit extends EventInit {\n    absolute?: boolean;\n    alpha?: number | null;\n    beta?: number | null;\n    gamma?: number | null;\n}\n\ninterface DisplayMediaStreamOptions {\n    audio?: boolean | MediaTrackConstraints;\n    video?: boolean | MediaTrackConstraints;\n}\n\ninterface DocumentTimelineOptions {\n    originTime?: DOMHighResTimeStamp;\n}\n\ninterface DoubleRange {\n    max?: number;\n    min?: number;\n}\n\ninterface DragEventInit extends MouseEventInit {\n    dataTransfer?: DataTransfer | null;\n}\n\ninterface DynamicsCompressorOptions extends AudioNodeOptions {\n    attack?: number;\n    knee?: number;\n    ratio?: number;\n    release?: number;\n    threshold?: number;\n}\n\ninterface EcKeyAlgorithm extends KeyAlgorithm {\n    namedCurve: NamedCurve;\n}\n\ninterface EcKeyGenParams extends Algorithm {\n    namedCurve: NamedCurve;\n}\n\ninterface EcKeyImportParams extends Algorithm {\n    namedCurve: NamedCurve;\n}\n\ninterface EcdhKeyDeriveParams extends Algorithm {\n    public: CryptoKey;\n}\n\ninterface EcdsaParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface EffectTiming {\n    delay?: number;\n    direction?: PlaybackDirection;\n    duration?: number | CSSNumericValue | string;\n    easing?: string;\n    endDelay?: number;\n    fill?: FillMode;\n    iterationStart?: number;\n    iterations?: number;\n    playbackRate?: number;\n}\n\ninterface ElementCreationOptions {\n    customElementRegistry?: CustomElementRegistry;\n    is?: string;\n}\n\ninterface ElementDefinitionOptions {\n    extends?: string;\n}\n\ninterface EncodedAudioChunkInit {\n    data: AllowSharedBufferSource;\n    duration?: number;\n    timestamp: number;\n    transfer?: ArrayBuffer[];\n    type: EncodedAudioChunkType;\n}\n\ninterface EncodedAudioChunkMetadata {\n    decoderConfig?: AudioDecoderConfig;\n}\n\ninterface EncodedVideoChunkInit {\n    data: AllowSharedBufferSource;\n    duration?: number;\n    timestamp: number;\n    type: EncodedVideoChunkType;\n}\n\ninterface EncodedVideoChunkMetadata {\n    decoderConfig?: VideoDecoderConfig;\n}\n\ninterface ErrorEventInit extends EventInit {\n    colno?: number;\n    error?: any;\n    filename?: string;\n    lineno?: number;\n    message?: string;\n}\n\ninterface EventInit {\n    bubbles?: boolean;\n    cancelable?: boolean;\n    composed?: boolean;\n}\n\ninterface EventListenerOptions {\n    capture?: boolean;\n}\n\ninterface EventModifierInit extends UIEventInit {\n    altKey?: boolean;\n    ctrlKey?: boolean;\n    metaKey?: boolean;\n    modifierAltGraph?: boolean;\n    modifierCapsLock?: boolean;\n    modifierFn?: boolean;\n    modifierFnLock?: boolean;\n    modifierHyper?: boolean;\n    modifierNumLock?: boolean;\n    modifierScrollLock?: boolean;\n    modifierSuper?: boolean;\n    modifierSymbol?: boolean;\n    modifierSymbolLock?: boolean;\n    shiftKey?: boolean;\n}\n\ninterface EventSourceInit {\n    withCredentials?: boolean;\n}\n\ninterface FilePropertyBag extends BlobPropertyBag {\n    lastModified?: number;\n}\n\ninterface FileSystemCreateWritableOptions {\n    keepExistingData?: boolean;\n}\n\ninterface FileSystemFlags {\n    create?: boolean;\n    exclusive?: boolean;\n}\n\ninterface FileSystemGetDirectoryOptions {\n    create?: boolean;\n}\n\ninterface FileSystemGetFileOptions {\n    create?: boolean;\n}\n\ninterface FileSystemRemoveOptions {\n    recursive?: boolean;\n}\n\ninterface FocusEventInit extends UIEventInit {\n    relatedTarget?: EventTarget | null;\n}\n\ninterface FocusOptions {\n    preventScroll?: boolean;\n}\n\ninterface FontFaceDescriptors {\n    ascentOverride?: string;\n    descentOverride?: string;\n    display?: FontDisplay;\n    featureSettings?: string;\n    lineGapOverride?: string;\n    stretch?: string;\n    style?: string;\n    unicodeRange?: string;\n    weight?: string;\n}\n\ninterface FontFaceSetLoadEventInit extends EventInit {\n    fontfaces?: FontFace[];\n}\n\ninterface FormDataEventInit extends EventInit {\n    formData: FormData;\n}\n\ninterface FullscreenOptions {\n    navigationUI?: FullscreenNavigationUI;\n}\n\ninterface GainOptions extends AudioNodeOptions {\n    gain?: number;\n}\n\ninterface GamepadEffectParameters {\n    duration?: number;\n    leftTrigger?: number;\n    rightTrigger?: number;\n    startDelay?: number;\n    strongMagnitude?: number;\n    weakMagnitude?: number;\n}\n\ninterface GamepadEventInit extends EventInit {\n    gamepad: Gamepad;\n}\n\ninterface GetAnimationsOptions {\n    subtree?: boolean;\n}\n\ninterface GetComposedRangesOptions {\n    shadowRoots?: ShadowRoot[];\n}\n\ninterface GetHTMLOptions {\n    serializableShadowRoots?: boolean;\n    shadowRoots?: ShadowRoot[];\n}\n\ninterface GetNotificationOptions {\n    tag?: string;\n}\n\ninterface GetRootNodeOptions {\n    composed?: boolean;\n}\n\ninterface HashChangeEventInit extends EventInit {\n    newURL?: string;\n    oldURL?: string;\n}\n\ninterface HkdfParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    info: BufferSource;\n    salt: BufferSource;\n}\n\ninterface HmacImportParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    length?: number;\n}\n\ninterface HmacKeyAlgorithm extends KeyAlgorithm {\n    hash: KeyAlgorithm;\n    length: number;\n}\n\ninterface HmacKeyGenParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    length?: number;\n}\n\ninterface IDBDatabaseInfo {\n    name?: string;\n    version?: number;\n}\n\ninterface IDBIndexParameters {\n    multiEntry?: boolean;\n    unique?: boolean;\n}\n\ninterface IDBObjectStoreParameters {\n    autoIncrement?: boolean;\n    keyPath?: string | string[] | null;\n}\n\ninterface IDBTransactionOptions {\n    durability?: IDBTransactionDurability;\n}\n\ninterface IDBVersionChangeEventInit extends EventInit {\n    newVersion?: number | null;\n    oldVersion?: number;\n}\n\ninterface IIRFilterOptions extends AudioNodeOptions {\n    feedback: number[];\n    feedforward: number[];\n}\n\ninterface IdleRequestOptions {\n    timeout?: number;\n}\n\ninterface ImageBitmapOptions {\n    colorSpaceConversion?: ColorSpaceConversion;\n    imageOrientation?: ImageOrientation;\n    premultiplyAlpha?: PremultiplyAlpha;\n    resizeHeight?: number;\n    resizeQuality?: ResizeQuality;\n    resizeWidth?: number;\n}\n\ninterface ImageBitmapRenderingContextSettings {\n    alpha?: boolean;\n}\n\ninterface ImageDataSettings {\n    colorSpace?: PredefinedColorSpace;\n}\n\ninterface ImageDecodeOptions {\n    completeFramesOnly?: boolean;\n    frameIndex?: number;\n}\n\ninterface ImageDecodeResult {\n    complete: boolean;\n    image: VideoFrame;\n}\n\ninterface ImageDecoderInit {\n    colorSpaceConversion?: ColorSpaceConversion;\n    data: ImageBufferSource;\n    desiredHeight?: number;\n    desiredWidth?: number;\n    preferAnimation?: boolean;\n    transfer?: ArrayBuffer[];\n    type: string;\n}\n\ninterface ImageEncodeOptions {\n    quality?: number;\n    type?: string;\n}\n\ninterface ImportNodeOptions {\n    customElementRegistry?: CustomElementRegistry;\n    selfOnly?: boolean;\n}\n\ninterface InputEventInit extends UIEventInit {\n    data?: string | null;\n    dataTransfer?: DataTransfer | null;\n    inputType?: string;\n    isComposing?: boolean;\n    targetRanges?: StaticRange[];\n}\n\ninterface IntersectionObserverInit {\n    root?: Element | Document | null;\n    rootMargin?: string;\n    threshold?: number | number[];\n}\n\ninterface JsonWebKey {\n    alg?: string;\n    crv?: string;\n    d?: string;\n    dp?: string;\n    dq?: string;\n    e?: string;\n    ext?: boolean;\n    k?: string;\n    key_ops?: string[];\n    kty?: string;\n    n?: string;\n    oth?: RsaOtherPrimesInfo[];\n    p?: string;\n    q?: string;\n    qi?: string;\n    use?: string;\n    x?: string;\n    y?: string;\n}\n\ninterface KeyAlgorithm {\n    name: string;\n}\n\ninterface KeySystemTrackConfiguration {\n    robustness?: string;\n}\n\ninterface KeyboardEventInit extends EventModifierInit {\n    /** @deprecated */\n    charCode?: number;\n    code?: string;\n    isComposing?: boolean;\n    key?: string;\n    /** @deprecated */\n    keyCode?: number;\n    location?: number;\n    repeat?: boolean;\n}\n\ninterface Keyframe {\n    composite?: CompositeOperationOrAuto;\n    easing?: string;\n    offset?: number | null;\n    [property: string]: string | number | null | undefined;\n}\n\ninterface KeyframeAnimationOptions extends KeyframeEffectOptions {\n    id?: string;\n    timeline?: AnimationTimeline | null;\n}\n\ninterface KeyframeEffectOptions extends EffectTiming {\n    composite?: CompositeOperation;\n    iterationComposite?: IterationCompositeOperation;\n    pseudoElement?: string | null;\n}\n\ninterface LockInfo {\n    clientId?: string;\n    mode?: LockMode;\n    name?: string;\n}\n\ninterface LockManagerSnapshot {\n    held?: LockInfo[];\n    pending?: LockInfo[];\n}\n\ninterface LockOptions {\n    ifAvailable?: boolean;\n    mode?: LockMode;\n    signal?: AbortSignal;\n    steal?: boolean;\n}\n\ninterface MIDIConnectionEventInit extends EventInit {\n    port?: MIDIPort;\n}\n\ninterface MIDIMessageEventInit extends EventInit {\n    data?: Uint8Array<ArrayBuffer>;\n}\n\ninterface MIDIOptions {\n    software?: boolean;\n    sysex?: boolean;\n}\n\ninterface MediaCapabilitiesDecodingInfo extends MediaCapabilitiesInfo {\n    keySystemAccess: MediaKeySystemAccess | null;\n}\n\ninterface MediaCapabilitiesEncodingInfo extends MediaCapabilitiesInfo {\n}\n\ninterface MediaCapabilitiesInfo {\n    powerEfficient: boolean;\n    smooth: boolean;\n    supported: boolean;\n}\n\ninterface MediaCapabilitiesKeySystemConfiguration {\n    audio?: KeySystemTrackConfiguration;\n    distinctiveIdentifier?: MediaKeysRequirement;\n    initDataType?: string;\n    keySystem: string;\n    persistentState?: MediaKeysRequirement;\n    sessionTypes?: string[];\n    video?: KeySystemTrackConfiguration;\n}\n\ninterface MediaConfiguration {\n    audio?: AudioConfiguration;\n    video?: VideoConfiguration;\n}\n\ninterface MediaDecodingConfiguration extends MediaConfiguration {\n    keySystemConfiguration?: MediaCapabilitiesKeySystemConfiguration;\n    type: MediaDecodingType;\n}\n\ninterface MediaElementAudioSourceOptions {\n    mediaElement: HTMLMediaElement;\n}\n\ninterface MediaEncodingConfiguration extends MediaConfiguration {\n    type: MediaEncodingType;\n}\n\ninterface MediaEncryptedEventInit extends EventInit {\n    initData?: ArrayBuffer | null;\n    initDataType?: string;\n}\n\ninterface MediaImage {\n    sizes?: string;\n    src: string;\n    type?: string;\n}\n\ninterface MediaKeyMessageEventInit extends EventInit {\n    message: ArrayBuffer;\n    messageType: MediaKeyMessageType;\n}\n\ninterface MediaKeySystemConfiguration {\n    audioCapabilities?: MediaKeySystemMediaCapability[];\n    distinctiveIdentifier?: MediaKeysRequirement;\n    initDataTypes?: string[];\n    label?: string;\n    persistentState?: MediaKeysRequirement;\n    sessionTypes?: string[];\n    videoCapabilities?: MediaKeySystemMediaCapability[];\n}\n\ninterface MediaKeySystemMediaCapability {\n    contentType?: string;\n    encryptionScheme?: string | null;\n    robustness?: string;\n}\n\ninterface MediaKeysPolicy {\n    minHdcpVersion?: string;\n}\n\ninterface MediaMetadataInit {\n    album?: string;\n    artist?: string;\n    artwork?: MediaImage[];\n    title?: string;\n}\n\ninterface MediaPositionState {\n    duration?: number;\n    playbackRate?: number;\n    position?: number;\n}\n\ninterface MediaQueryListEventInit extends EventInit {\n    matches?: boolean;\n    media?: string;\n}\n\ninterface MediaRecorderOptions {\n    audioBitsPerSecond?: number;\n    bitsPerSecond?: number;\n    mimeType?: string;\n    videoBitsPerSecond?: number;\n}\n\ninterface MediaSessionActionDetails {\n    action: MediaSessionAction;\n    fastSeek?: boolean;\n    seekOffset?: number;\n    seekTime?: number;\n}\n\ninterface MediaSettingsRange {\n    max?: number;\n    min?: number;\n    step?: number;\n}\n\ninterface MediaStreamAudioSourceOptions {\n    mediaStream: MediaStream;\n}\n\ninterface MediaStreamConstraints {\n    audio?: boolean | MediaTrackConstraints;\n    peerIdentity?: string;\n    preferCurrentTab?: boolean;\n    video?: boolean | MediaTrackConstraints;\n}\n\ninterface MediaStreamTrackEventInit extends EventInit {\n    track: MediaStreamTrack;\n}\n\ninterface MediaTrackCapabilities {\n    aspectRatio?: DoubleRange;\n    autoGainControl?: boolean[];\n    backgroundBlur?: boolean[];\n    channelCount?: ULongRange;\n    deviceId?: string;\n    displaySurface?: string;\n    echoCancellation?: boolean[];\n    facingMode?: string[];\n    frameRate?: DoubleRange;\n    groupId?: string;\n    height?: ULongRange;\n    noiseSuppression?: boolean[];\n    sampleRate?: ULongRange;\n    sampleSize?: ULongRange;\n    width?: ULongRange;\n}\n\ninterface MediaTrackConstraintSet {\n    aspectRatio?: ConstrainDouble;\n    autoGainControl?: ConstrainBoolean;\n    backgroundBlur?: ConstrainBoolean;\n    channelCount?: ConstrainULong;\n    deviceId?: ConstrainDOMString;\n    displaySurface?: ConstrainDOMString;\n    echoCancellation?: ConstrainBoolean;\n    facingMode?: ConstrainDOMString;\n    frameRate?: ConstrainDouble;\n    groupId?: ConstrainDOMString;\n    height?: ConstrainULong;\n    noiseSuppression?: ConstrainBoolean;\n    sampleRate?: ConstrainULong;\n    sampleSize?: ConstrainULong;\n    width?: ConstrainULong;\n}\n\ninterface MediaTrackConstraints extends MediaTrackConstraintSet {\n    advanced?: MediaTrackConstraintSet[];\n}\n\ninterface MediaTrackSettings {\n    aspectRatio?: number;\n    autoGainControl?: boolean;\n    backgroundBlur?: boolean;\n    channelCount?: number;\n    deviceId?: string;\n    displaySurface?: string;\n    echoCancellation?: boolean;\n    facingMode?: string;\n    frameRate?: number;\n    groupId?: string;\n    height?: number;\n    noiseSuppression?: boolean;\n    sampleRate?: number;\n    sampleSize?: number;\n    torch?: boolean;\n    whiteBalanceMode?: string;\n    width?: number;\n    zoom?: number;\n}\n\ninterface MediaTrackSupportedConstraints {\n    aspectRatio?: boolean;\n    autoGainControl?: boolean;\n    backgroundBlur?: boolean;\n    channelCount?: boolean;\n    deviceId?: boolean;\n    displaySurface?: boolean;\n    echoCancellation?: boolean;\n    facingMode?: boolean;\n    frameRate?: boolean;\n    groupId?: boolean;\n    height?: boolean;\n    noiseSuppression?: boolean;\n    sampleRate?: boolean;\n    sampleSize?: boolean;\n    width?: boolean;\n}\n\ninterface MessageEventInit<T = any> extends EventInit {\n    data?: T;\n    lastEventId?: string;\n    origin?: string;\n    ports?: MessagePort[];\n    source?: MessageEventSource | null;\n}\n\ninterface MouseEventInit extends EventModifierInit {\n    button?: number;\n    buttons?: number;\n    clientX?: number;\n    clientY?: number;\n    movementX?: number;\n    movementY?: number;\n    relatedTarget?: EventTarget | null;\n    screenX?: number;\n    screenY?: number;\n}\n\ninterface MultiCacheQueryOptions extends CacheQueryOptions {\n    cacheName?: string;\n}\n\ninterface MutationObserverInit {\n    /** Set to a list of attribute local names (without namespace) if not all attribute mutations need to be observed and attributes is true or omitted. */\n    attributeFilter?: string[];\n    /** Set to true if attributes is true or omitted and target's attribute value before the mutation needs to be recorded. */\n    attributeOldValue?: boolean;\n    /** Set to true if mutations to target's attributes are to be observed. Can be omitted if attributeOldValue or attributeFilter is specified. */\n    attributes?: boolean;\n    /** Set to true if mutations to target's data are to be observed. Can be omitted if characterDataOldValue is specified. */\n    characterData?: boolean;\n    /** Set to true if characterData is set to true or omitted and target's data before the mutation needs to be recorded. */\n    characterDataOldValue?: boolean;\n    /** Set to true if mutations to target's children are to be observed. */\n    childList?: boolean;\n    /** Set to true if mutations to not just target, but also target's descendants are to be observed. */\n    subtree?: boolean;\n}\n\ninterface NavigationPreloadState {\n    enabled?: boolean;\n    headerValue?: string;\n}\n\ninterface NotificationOptions {\n    badge?: string;\n    body?: string;\n    data?: any;\n    dir?: NotificationDirection;\n    icon?: string;\n    lang?: string;\n    requireInteraction?: boolean;\n    silent?: boolean | null;\n    tag?: string;\n}\n\ninterface OfflineAudioCompletionEventInit extends EventInit {\n    renderedBuffer: AudioBuffer;\n}\n\ninterface OfflineAudioContextOptions {\n    length: number;\n    numberOfChannels?: number;\n    sampleRate: number;\n}\n\ninterface OptionalEffectTiming {\n    delay?: number;\n    direction?: PlaybackDirection;\n    duration?: number | string;\n    easing?: string;\n    endDelay?: number;\n    fill?: FillMode;\n    iterationStart?: number;\n    iterations?: number;\n    playbackRate?: number;\n}\n\ninterface OpusEncoderConfig {\n    complexity?: number;\n    format?: OpusBitstreamFormat;\n    frameDuration?: number;\n    packetlossperc?: number;\n    usedtx?: boolean;\n    useinbandfec?: boolean;\n}\n\ninterface OscillatorOptions extends AudioNodeOptions {\n    detune?: number;\n    frequency?: number;\n    periodicWave?: PeriodicWave;\n    type?: OscillatorType;\n}\n\ninterface PageRevealEventInit extends EventInit {\n    viewTransition?: ViewTransition | null;\n}\n\ninterface PageSwapEventInit extends EventInit {\n    activation?: NavigationActivation | null;\n    viewTransition?: ViewTransition | null;\n}\n\ninterface PageTransitionEventInit extends EventInit {\n    persisted?: boolean;\n}\n\ninterface PannerOptions extends AudioNodeOptions {\n    coneInnerAngle?: number;\n    coneOuterAngle?: number;\n    coneOuterGain?: number;\n    distanceModel?: DistanceModelType;\n    maxDistance?: number;\n    orientationX?: number;\n    orientationY?: number;\n    orientationZ?: number;\n    panningModel?: PanningModelType;\n    positionX?: number;\n    positionY?: number;\n    positionZ?: number;\n    refDistance?: number;\n    rolloffFactor?: number;\n}\n\ninterface PayerErrors {\n    email?: string;\n    name?: string;\n    phone?: string;\n}\n\ninterface PaymentCurrencyAmount {\n    currency: string;\n    value: string;\n}\n\ninterface PaymentDetailsBase {\n    displayItems?: PaymentItem[];\n    modifiers?: PaymentDetailsModifier[];\n    shippingOptions?: PaymentShippingOption[];\n}\n\ninterface PaymentDetailsInit extends PaymentDetailsBase {\n    id?: string;\n    total: PaymentItem;\n}\n\ninterface PaymentDetailsModifier {\n    additionalDisplayItems?: PaymentItem[];\n    data?: any;\n    supportedMethods: string;\n    total?: PaymentItem;\n}\n\ninterface PaymentDetailsUpdate extends PaymentDetailsBase {\n    error?: string;\n    paymentMethodErrors?: any;\n    shippingAddressErrors?: AddressErrors;\n    total?: PaymentItem;\n}\n\ninterface PaymentItem {\n    amount: PaymentCurrencyAmount;\n    label: string;\n    pending?: boolean;\n}\n\ninterface PaymentMethodChangeEventInit extends PaymentRequestUpdateEventInit {\n    methodDetails?: any;\n    methodName?: string;\n}\n\ninterface PaymentMethodData {\n    data?: any;\n    supportedMethods: string;\n}\n\ninterface PaymentOptions {\n    requestPayerEmail?: boolean;\n    requestPayerName?: boolean;\n    requestPayerPhone?: boolean;\n    requestShipping?: boolean;\n    shippingType?: PaymentShippingType;\n}\n\ninterface PaymentRequestUpdateEventInit extends EventInit {\n}\n\ninterface PaymentShippingOption {\n    amount: PaymentCurrencyAmount;\n    id: string;\n    label: string;\n    selected?: boolean;\n}\n\ninterface PaymentValidationErrors {\n    error?: string;\n    payer?: PayerErrors;\n    shippingAddress?: AddressErrors;\n}\n\ninterface Pbkdf2Params extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    iterations: number;\n    salt: BufferSource;\n}\n\ninterface PerformanceMarkOptions {\n    detail?: any;\n    startTime?: DOMHighResTimeStamp;\n}\n\ninterface PerformanceMeasureOptions {\n    detail?: any;\n    duration?: DOMHighResTimeStamp;\n    end?: string | DOMHighResTimeStamp;\n    start?: string | DOMHighResTimeStamp;\n}\n\ninterface PerformanceObserverInit {\n    buffered?: boolean;\n    entryTypes?: string[];\n    type?: string;\n}\n\ninterface PeriodicWaveConstraints {\n    disableNormalization?: boolean;\n}\n\ninterface PeriodicWaveOptions extends PeriodicWaveConstraints {\n    imag?: number[] | Float32Array;\n    real?: number[] | Float32Array;\n}\n\ninterface PermissionDescriptor {\n    name: PermissionName;\n}\n\ninterface PhotoCapabilities {\n    fillLightMode?: FillLightMode[];\n    imageHeight?: MediaSettingsRange;\n    imageWidth?: MediaSettingsRange;\n    redEyeReduction?: RedEyeReduction;\n}\n\ninterface PhotoSettings {\n    fillLightMode?: FillLightMode;\n    imageHeight?: number;\n    imageWidth?: number;\n    redEyeReduction?: boolean;\n}\n\ninterface PictureInPictureEventInit extends EventInit {\n    pictureInPictureWindow: PictureInPictureWindow;\n}\n\ninterface PlaneLayout {\n    offset: number;\n    stride: number;\n}\n\ninterface PointerEventInit extends MouseEventInit {\n    altitudeAngle?: number;\n    azimuthAngle?: number;\n    coalescedEvents?: PointerEvent[];\n    height?: number;\n    isPrimary?: boolean;\n    pointerId?: number;\n    pointerType?: string;\n    predictedEvents?: PointerEvent[];\n    pressure?: number;\n    tangentialPressure?: number;\n    tiltX?: number;\n    tiltY?: number;\n    twist?: number;\n    width?: number;\n}\n\ninterface PointerLockOptions {\n    unadjustedMovement?: boolean;\n}\n\ninterface PopStateEventInit extends EventInit {\n    state?: any;\n}\n\ninterface PositionOptions {\n    enableHighAccuracy?: boolean;\n    maximumAge?: number;\n    timeout?: number;\n}\n\ninterface ProgressEventInit extends EventInit {\n    lengthComputable?: boolean;\n    loaded?: number;\n    total?: number;\n}\n\ninterface PromiseRejectionEventInit extends EventInit {\n    promise: Promise<any>;\n    reason?: any;\n}\n\ninterface PropertyDefinition {\n    inherits: boolean;\n    initialValue?: string;\n    name: string;\n    syntax?: string;\n}\n\ninterface PropertyIndexedKeyframes {\n    composite?: CompositeOperationOrAuto | CompositeOperationOrAuto[];\n    easing?: string | string[];\n    offset?: number | (number | null)[];\n    [property: string]: string | string[] | number | null | (number | null)[] | undefined;\n}\n\ninterface PublicKeyCredentialCreationOptions {\n    attestation?: AttestationConveyancePreference;\n    authenticatorSelection?: AuthenticatorSelectionCriteria;\n    challenge: BufferSource;\n    excludeCredentials?: PublicKeyCredentialDescriptor[];\n    extensions?: AuthenticationExtensionsClientInputs;\n    pubKeyCredParams: PublicKeyCredentialParameters[];\n    rp: PublicKeyCredentialRpEntity;\n    timeout?: number;\n    user: PublicKeyCredentialUserEntity;\n}\n\ninterface PublicKeyCredentialCreationOptionsJSON {\n    attestation?: string;\n    authenticatorSelection?: AuthenticatorSelectionCriteria;\n    challenge: Base64URLString;\n    excludeCredentials?: PublicKeyCredentialDescriptorJSON[];\n    extensions?: AuthenticationExtensionsClientInputsJSON;\n    hints?: string[];\n    pubKeyCredParams: PublicKeyCredentialParameters[];\n    rp: PublicKeyCredentialRpEntity;\n    timeout?: number;\n    user: PublicKeyCredentialUserEntityJSON;\n}\n\ninterface PublicKeyCredentialDescriptor {\n    id: BufferSource;\n    transports?: AuthenticatorTransport[];\n    type: PublicKeyCredentialType;\n}\n\ninterface PublicKeyCredentialDescriptorJSON {\n    id: Base64URLString;\n    transports?: string[];\n    type: string;\n}\n\ninterface PublicKeyCredentialEntity {\n    name: string;\n}\n\ninterface PublicKeyCredentialParameters {\n    alg: COSEAlgorithmIdentifier;\n    type: PublicKeyCredentialType;\n}\n\ninterface PublicKeyCredentialRequestOptions {\n    allowCredentials?: PublicKeyCredentialDescriptor[];\n    challenge: BufferSource;\n    extensions?: AuthenticationExtensionsClientInputs;\n    rpId?: string;\n    timeout?: number;\n    userVerification?: UserVerificationRequirement;\n}\n\ninterface PublicKeyCredentialRequestOptionsJSON {\n    allowCredentials?: PublicKeyCredentialDescriptorJSON[];\n    challenge: Base64URLString;\n    extensions?: AuthenticationExtensionsClientInputsJSON;\n    hints?: string[];\n    rpId?: string;\n    timeout?: number;\n    userVerification?: string;\n}\n\ninterface PublicKeyCredentialRpEntity extends PublicKeyCredentialEntity {\n    id?: string;\n}\n\ninterface PublicKeyCredentialUserEntity extends PublicKeyCredentialEntity {\n    displayName: string;\n    id: BufferSource;\n}\n\ninterface PublicKeyCredentialUserEntityJSON {\n    displayName: string;\n    id: Base64URLString;\n    name: string;\n}\n\ninterface PushSubscriptionJSON {\n    endpoint?: string;\n    expirationTime?: EpochTimeStamp | null;\n    keys?: Record<string, string>;\n}\n\ninterface PushSubscriptionOptionsInit {\n    applicationServerKey?: BufferSource | string | null;\n    userVisibleOnly?: boolean;\n}\n\ninterface QueuingStrategy<T = any> {\n    highWaterMark?: number;\n    size?: QueuingStrategySize<T>;\n}\n\ninterface QueuingStrategyInit {\n    /**\n     * Creates a new ByteLengthQueuingStrategy with the provided high water mark.\n     *\n     * Note that the provided high water mark will not be validated ahead of time. Instead, if it is negative, NaN, or not a number, the resulting ByteLengthQueuingStrategy will cause the corresponding stream constructor to throw.\n     */\n    highWaterMark: number;\n}\n\ninterface RTCAnswerOptions extends RTCOfferAnswerOptions {\n}\n\ninterface RTCCertificateExpiration {\n    expires?: number;\n}\n\ninterface RTCConfiguration {\n    bundlePolicy?: RTCBundlePolicy;\n    certificates?: RTCCertificate[];\n    iceCandidatePoolSize?: number;\n    iceServers?: RTCIceServer[];\n    iceTransportPolicy?: RTCIceTransportPolicy;\n    rtcpMuxPolicy?: RTCRtcpMuxPolicy;\n}\n\ninterface RTCDTMFToneChangeEventInit extends EventInit {\n    tone?: string;\n}\n\ninterface RTCDataChannelEventInit extends EventInit {\n    channel: RTCDataChannel;\n}\n\ninterface RTCDataChannelInit {\n    id?: number;\n    maxPacketLifeTime?: number;\n    maxRetransmits?: number;\n    negotiated?: boolean;\n    ordered?: boolean;\n    protocol?: string;\n}\n\ninterface RTCDtlsFingerprint {\n    algorithm?: string;\n    value?: string;\n}\n\ninterface RTCEncodedAudioFrameMetadata extends RTCEncodedFrameMetadata {\n    sequenceNumber?: number;\n}\n\ninterface RTCEncodedFrameMetadata {\n    contributingSources?: number[];\n    mimeType?: string;\n    payloadType?: number;\n    rtpTimestamp?: number;\n    synchronizationSource?: number;\n}\n\ninterface RTCEncodedVideoFrameMetadata extends RTCEncodedFrameMetadata {\n    dependencies?: number[];\n    frameId?: number;\n    height?: number;\n    spatialIndex?: number;\n    temporalIndex?: number;\n    timestamp?: number;\n    width?: number;\n}\n\ninterface RTCErrorEventInit extends EventInit {\n    error: RTCError;\n}\n\ninterface RTCErrorInit {\n    errorDetail: RTCErrorDetailType;\n    httpRequestStatusCode?: number;\n    receivedAlert?: number;\n    sctpCauseCode?: number;\n    sdpLineNumber?: number;\n    sentAlert?: number;\n}\n\ninterface RTCIceCandidateInit {\n    candidate?: string;\n    sdpMLineIndex?: number | null;\n    sdpMid?: string | null;\n    usernameFragment?: string | null;\n}\n\ninterface RTCIceCandidatePairStats extends RTCStats {\n    availableIncomingBitrate?: number;\n    availableOutgoingBitrate?: number;\n    bytesDiscardedOnSend?: number;\n    bytesReceived?: number;\n    bytesSent?: number;\n    consentRequestsSent?: number;\n    currentRoundTripTime?: number;\n    lastPacketReceivedTimestamp?: DOMHighResTimeStamp;\n    lastPacketSentTimestamp?: DOMHighResTimeStamp;\n    localCandidateId: string;\n    nominated?: boolean;\n    packetsDiscardedOnSend?: number;\n    packetsReceived?: number;\n    packetsSent?: number;\n    remoteCandidateId: string;\n    requestsReceived?: number;\n    requestsSent?: number;\n    responsesReceived?: number;\n    responsesSent?: number;\n    state: RTCStatsIceCandidatePairState;\n    totalRoundTripTime?: number;\n    transportId: string;\n}\n\ninterface RTCIceServer {\n    credential?: string;\n    urls: string | string[];\n    username?: string;\n}\n\ninterface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {\n    audioLevel?: number;\n    bytesReceived?: number;\n    concealedSamples?: number;\n    concealmentEvents?: number;\n    decoderImplementation?: string;\n    estimatedPlayoutTimestamp?: DOMHighResTimeStamp;\n    fecBytesReceived?: number;\n    fecPacketsDiscarded?: number;\n    fecPacketsReceived?: number;\n    fecSsrc?: number;\n    firCount?: number;\n    frameHeight?: number;\n    frameWidth?: number;\n    framesAssembledFromMultiplePackets?: number;\n    framesDecoded?: number;\n    framesDropped?: number;\n    framesPerSecond?: number;\n    framesReceived?: number;\n    framesRendered?: number;\n    freezeCount?: number;\n    headerBytesReceived?: number;\n    insertedSamplesForDeceleration?: number;\n    jitterBufferDelay?: number;\n    jitterBufferEmittedCount?: number;\n    jitterBufferMinimumDelay?: number;\n    jitterBufferTargetDelay?: number;\n    keyFramesDecoded?: number;\n    lastPacketReceivedTimestamp?: DOMHighResTimeStamp;\n    mid?: string;\n    nackCount?: number;\n    packetsDiscarded?: number;\n    pauseCount?: number;\n    playoutId?: string;\n    pliCount?: number;\n    qpSum?: number;\n    remoteId?: string;\n    removedSamplesForAcceleration?: number;\n    retransmittedBytesReceived?: number;\n    retransmittedPacketsReceived?: number;\n    rtxSsrc?: number;\n    silentConcealedSamples?: number;\n    totalAssemblyTime?: number;\n    totalAudioEnergy?: number;\n    totalDecodeTime?: number;\n    totalFreezesDuration?: number;\n    totalInterFrameDelay?: number;\n    totalPausesDuration?: number;\n    totalProcessingDelay?: number;\n    totalSamplesDuration?: number;\n    totalSamplesReceived?: number;\n    totalSquaredInterFrameDelay?: number;\n    trackIdentifier: string;\n}\n\ninterface RTCLocalIceCandidateInit extends RTCIceCandidateInit {\n}\n\ninterface RTCLocalSessionDescriptionInit {\n    sdp?: string;\n    type?: RTCSdpType;\n}\n\ninterface RTCOfferAnswerOptions {\n}\n\ninterface RTCOfferOptions extends RTCOfferAnswerOptions {\n    iceRestart?: boolean;\n    offerToReceiveAudio?: boolean;\n    offerToReceiveVideo?: boolean;\n}\n\ninterface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {\n    active?: boolean;\n    firCount?: number;\n    frameHeight?: number;\n    frameWidth?: number;\n    framesEncoded?: number;\n    framesPerSecond?: number;\n    framesSent?: number;\n    headerBytesSent?: number;\n    hugeFramesSent?: number;\n    keyFramesEncoded?: number;\n    mediaSourceId?: string;\n    mid?: string;\n    nackCount?: number;\n    pliCount?: number;\n    qpSum?: number;\n    qualityLimitationDurations?: Record<string, number>;\n    qualityLimitationReason?: RTCQualityLimitationReason;\n    qualityLimitationResolutionChanges?: number;\n    remoteId?: string;\n    retransmittedBytesSent?: number;\n    retransmittedPacketsSent?: number;\n    rid?: string;\n    rtxSsrc?: number;\n    scalabilityMode?: string;\n    targetBitrate?: number;\n    totalEncodeTime?: number;\n    totalEncodedBytesTarget?: number;\n    totalPacketSendDelay?: number;\n}\n\ninterface RTCPeerConnectionIceErrorEventInit extends EventInit {\n    address?: string | null;\n    errorCode: number;\n    errorText?: string;\n    port?: number | null;\n    url?: string;\n}\n\ninterface RTCPeerConnectionIceEventInit extends EventInit {\n    candidate?: RTCIceCandidate | null;\n}\n\ninterface RTCReceivedRtpStreamStats extends RTCRtpStreamStats {\n    jitter?: number;\n    packetsLost?: number;\n    packetsReceived?: number;\n}\n\ninterface RTCRtcpParameters {\n    cname?: string;\n    reducedSize?: boolean;\n}\n\ninterface RTCRtpCapabilities {\n    codecs: RTCRtpCodec[];\n    headerExtensions: RTCRtpHeaderExtensionCapability[];\n}\n\ninterface RTCRtpCodec {\n    channels?: number;\n    clockRate: number;\n    mimeType: string;\n    sdpFmtpLine?: string;\n}\n\ninterface RTCRtpCodecParameters extends RTCRtpCodec {\n    payloadType: number;\n}\n\ninterface RTCRtpCodingParameters {\n    rid?: string;\n}\n\ninterface RTCRtpContributingSource {\n    audioLevel?: number;\n    rtpTimestamp: number;\n    source: number;\n    timestamp: DOMHighResTimeStamp;\n}\n\ninterface RTCRtpEncodingParameters extends RTCRtpCodingParameters {\n    active?: boolean;\n    maxBitrate?: number;\n    maxFramerate?: number;\n    networkPriority?: RTCPriorityType;\n    priority?: RTCPriorityType;\n    scaleResolutionDownBy?: number;\n}\n\ninterface RTCRtpHeaderExtensionCapability {\n    uri: string;\n}\n\ninterface RTCRtpHeaderExtensionParameters {\n    encrypted?: boolean;\n    id: number;\n    uri: string;\n}\n\ninterface RTCRtpParameters {\n    codecs: RTCRtpCodecParameters[];\n    headerExtensions: RTCRtpHeaderExtensionParameters[];\n    rtcp: RTCRtcpParameters;\n}\n\ninterface RTCRtpReceiveParameters extends RTCRtpParameters {\n}\n\ninterface RTCRtpSendParameters extends RTCRtpParameters {\n    degradationPreference?: RTCDegradationPreference;\n    encodings: RTCRtpEncodingParameters[];\n    transactionId: string;\n}\n\ninterface RTCRtpStreamStats extends RTCStats {\n    codecId?: string;\n    kind: string;\n    ssrc: number;\n    transportId?: string;\n}\n\ninterface RTCRtpSynchronizationSource extends RTCRtpContributingSource {\n}\n\ninterface RTCRtpTransceiverInit {\n    direction?: RTCRtpTransceiverDirection;\n    sendEncodings?: RTCRtpEncodingParameters[];\n    streams?: MediaStream[];\n}\n\ninterface RTCSentRtpStreamStats extends RTCRtpStreamStats {\n    bytesSent?: number;\n    packetsSent?: number;\n}\n\ninterface RTCSessionDescriptionInit {\n    sdp?: string;\n    type: RTCSdpType;\n}\n\ninterface RTCSetParameterOptions {\n}\n\ninterface RTCStats {\n    id: string;\n    timestamp: DOMHighResTimeStamp;\n    type: RTCStatsType;\n}\n\ninterface RTCTrackEventInit extends EventInit {\n    receiver: RTCRtpReceiver;\n    streams?: MediaStream[];\n    track: MediaStreamTrack;\n    transceiver: RTCRtpTransceiver;\n}\n\ninterface RTCTransportStats extends RTCStats {\n    bytesReceived?: number;\n    bytesSent?: number;\n    dtlsCipher?: string;\n    dtlsRole?: RTCDtlsRole;\n    dtlsState: RTCDtlsTransportState;\n    iceLocalUsernameFragment?: string;\n    iceRole?: RTCIceRole;\n    iceState?: RTCIceTransportState;\n    localCertificateId?: string;\n    packetsReceived?: number;\n    packetsSent?: number;\n    remoteCertificateId?: string;\n    selectedCandidatePairChanges?: number;\n    selectedCandidatePairId?: string;\n    srtpCipher?: string;\n    tlsVersion?: string;\n}\n\ninterface ReadableStreamGetReaderOptions {\n    /**\n     * Creates a ReadableStreamBYOBReader and locks the stream to the new reader.\n     *\n     * This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle \"bring your own buffer\" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation.\n     */\n    mode?: ReadableStreamReaderMode;\n}\n\ninterface ReadableStreamIteratorOptions {\n    /**\n     * Asynchronously iterates over the chunks in the stream's internal queue.\n     *\n     * Asynchronously iterating over the stream will lock it, preventing any other consumer from acquiring a reader. The lock will be released if the async iterator's return() method is called, e.g. by breaking out of the loop.\n     *\n     * By default, calling the async iterator's return() method will also cancel the stream. To prevent this, use the stream's values() method, passing true for the preventCancel option.\n     */\n    preventCancel?: boolean;\n}\n\ninterface ReadableStreamReadDoneResult<T> {\n    done: true;\n    value: T | undefined;\n}\n\ninterface ReadableStreamReadValueResult<T> {\n    done: false;\n    value: T;\n}\n\ninterface ReadableWritablePair<R = any, W = any> {\n    readable: ReadableStream<R>;\n    /**\n     * Provides a convenient, chainable way of piping this readable stream through a transform stream (or any other { writable, readable } pair). It simply pipes the stream into the writable side of the supplied pair, and returns the readable side for further use.\n     *\n     * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader.\n     */\n    writable: WritableStream<W>;\n}\n\ninterface RegistrationOptions {\n    scope?: string;\n    type?: WorkerType;\n    updateViaCache?: ServiceWorkerUpdateViaCache;\n}\n\ninterface ReportingObserverOptions {\n    buffered?: boolean;\n    types?: string[];\n}\n\ninterface RequestInit {\n    /** A BodyInit object or null to set request's body. */\n    body?: BodyInit | null;\n    /** A string indicating how the request will interact with the browser's cache to set request's cache. */\n    cache?: RequestCache;\n    /** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */\n    credentials?: RequestCredentials;\n    /** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */\n    headers?: HeadersInit;\n    /** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */\n    integrity?: string;\n    /** A boolean to set request's keepalive. */\n    keepalive?: boolean;\n    /** A string to set request's method. */\n    method?: string;\n    /** A string to indicate whether the request will use CORS, or will be restricted to same-origin URLs. Sets request's mode. */\n    mode?: RequestMode;\n    priority?: RequestPriority;\n    /** A string indicating whether request follows redirects, results in an error upon encountering a redirect, or returns the redirect (in an opaque fashion). Sets request's redirect. */\n    redirect?: RequestRedirect;\n    /** A string whose value is a same-origin URL, \"about:client\", or the empty string, to set request's referrer. */\n    referrer?: string;\n    /** A referrer policy to set request's referrerPolicy. */\n    referrerPolicy?: ReferrerPolicy;\n    /** An AbortSignal to set request's signal. */\n    signal?: AbortSignal | null;\n    /** Can only be null. Used to disassociate request from any Window. */\n    window?: null;\n}\n\ninterface ResizeObserverOptions {\n    box?: ResizeObserverBoxOptions;\n}\n\ninterface ResponseInit {\n    headers?: HeadersInit;\n    status?: number;\n    statusText?: string;\n}\n\ninterface RsaHashedImportParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm {\n    hash: KeyAlgorithm;\n}\n\ninterface RsaHashedKeyGenParams extends RsaKeyGenParams {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface RsaKeyAlgorithm extends KeyAlgorithm {\n    modulusLength: number;\n    publicExponent: BigInteger;\n}\n\ninterface RsaKeyGenParams extends Algorithm {\n    modulusLength: number;\n    publicExponent: BigInteger;\n}\n\ninterface RsaOaepParams extends Algorithm {\n    label?: BufferSource;\n}\n\ninterface RsaOtherPrimesInfo {\n    d?: string;\n    r?: string;\n    t?: string;\n}\n\ninterface RsaPssParams extends Algorithm {\n    saltLength: number;\n}\n\ninterface SVGBoundingBoxOptions {\n    clipped?: boolean;\n    fill?: boolean;\n    markers?: boolean;\n    stroke?: boolean;\n}\n\ninterface ScrollIntoViewOptions extends ScrollOptions {\n    block?: ScrollLogicalPosition;\n    inline?: ScrollLogicalPosition;\n}\n\ninterface ScrollOptions {\n    behavior?: ScrollBehavior;\n}\n\ninterface ScrollToOptions extends ScrollOptions {\n    left?: number;\n    top?: number;\n}\n\ninterface SecurityPolicyViolationEventInit extends EventInit {\n    blockedURI?: string;\n    columnNumber?: number;\n    disposition?: SecurityPolicyViolationEventDisposition;\n    documentURI?: string;\n    effectiveDirective?: string;\n    lineNumber?: number;\n    originalPolicy?: string;\n    referrer?: string;\n    sample?: string;\n    sourceFile?: string;\n    statusCode?: number;\n    violatedDirective?: string;\n}\n\ninterface ShadowRootInit {\n    clonable?: boolean;\n    customElementRegistry?: CustomElementRegistry;\n    delegatesFocus?: boolean;\n    mode: ShadowRootMode;\n    serializable?: boolean;\n    slotAssignment?: SlotAssignmentMode;\n}\n\ninterface ShareData {\n    files?: File[];\n    text?: string;\n    title?: string;\n    url?: string;\n}\n\ninterface SpeechSynthesisErrorEventInit extends SpeechSynthesisEventInit {\n    error: SpeechSynthesisErrorCode;\n}\n\ninterface SpeechSynthesisEventInit extends EventInit {\n    charIndex?: number;\n    charLength?: number;\n    elapsedTime?: number;\n    name?: string;\n    utterance: SpeechSynthesisUtterance;\n}\n\ninterface StartViewTransitionOptions {\n    types?: string[] | null;\n    update?: ViewTransitionUpdateCallback | null;\n}\n\ninterface StaticRangeInit {\n    endContainer: Node;\n    endOffset: number;\n    startContainer: Node;\n    startOffset: number;\n}\n\ninterface StereoPannerOptions extends AudioNodeOptions {\n    pan?: number;\n}\n\ninterface StorageEstimate {\n    quota?: number;\n    usage?: number;\n}\n\ninterface StorageEventInit extends EventInit {\n    key?: string | null;\n    newValue?: string | null;\n    oldValue?: string | null;\n    storageArea?: Storage | null;\n    url?: string;\n}\n\ninterface StreamPipeOptions {\n    preventAbort?: boolean;\n    preventCancel?: boolean;\n    /**\n     * Pipes this readable stream to a given writable stream destination. The way in which the piping process behaves under various error conditions can be customized with a number of passed options. It returns a promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered.\n     *\n     * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader.\n     *\n     * Errors and closures of the source and destination streams propagate as follows:\n     *\n     * An error in this source readable stream will abort destination, unless preventAbort is truthy. The returned promise will be rejected with the source's error, or with any error that occurs during aborting the destination.\n     *\n     * An error in destination will cancel this source readable stream, unless preventCancel is truthy. The returned promise will be rejected with the destination's error, or with any error that occurs during canceling the source.\n     *\n     * When this source readable stream closes, destination will be closed, unless preventClose is truthy. The returned promise will be fulfilled once this process completes, unless an error is encountered while closing the destination, in which case it will be rejected with that error.\n     *\n     * If destination starts out closed or closing, this source readable stream will be canceled, unless preventCancel is true. The returned promise will be rejected with an error indicating piping to a closed stream failed, or with any error that occurs during canceling the source.\n     *\n     * The signal option can be set to an AbortSignal to allow aborting an ongoing pipe operation via the corresponding AbortController. In this case, this source readable stream will be canceled, and destination aborted, unless the respective options preventCancel or preventAbort are set.\n     */\n    preventClose?: boolean;\n    signal?: AbortSignal;\n}\n\ninterface StructuredSerializeOptions {\n    transfer?: Transferable[];\n}\n\ninterface SubmitEventInit extends EventInit {\n    submitter?: HTMLElement | null;\n}\n\ninterface TextDecodeOptions {\n    stream?: boolean;\n}\n\ninterface TextDecoderOptions {\n    fatal?: boolean;\n    ignoreBOM?: boolean;\n}\n\ninterface TextEncoderEncodeIntoResult {\n    read: number;\n    written: number;\n}\n\ninterface ToggleEventInit extends EventInit {\n    newState?: string;\n    oldState?: string;\n}\n\ninterface TouchEventInit extends EventModifierInit {\n    changedTouches?: Touch[];\n    targetTouches?: Touch[];\n    touches?: Touch[];\n}\n\ninterface TouchInit {\n    altitudeAngle?: number;\n    azimuthAngle?: number;\n    clientX?: number;\n    clientY?: number;\n    force?: number;\n    identifier: number;\n    pageX?: number;\n    pageY?: number;\n    radiusX?: number;\n    radiusY?: number;\n    rotationAngle?: number;\n    screenX?: number;\n    screenY?: number;\n    target: EventTarget;\n    touchType?: TouchType;\n}\n\ninterface TrackEventInit extends EventInit {\n    track?: TextTrack | null;\n}\n\ninterface Transformer<I = any, O = any> {\n    flush?: TransformerFlushCallback<O>;\n    readableType?: undefined;\n    start?: TransformerStartCallback<O>;\n    transform?: TransformerTransformCallback<I, O>;\n    writableType?: undefined;\n}\n\ninterface TransitionEventInit extends EventInit {\n    elapsedTime?: number;\n    propertyName?: string;\n    pseudoElement?: string;\n}\n\ninterface UIEventInit extends EventInit {\n    detail?: number;\n    view?: Window | null;\n    /** @deprecated */\n    which?: number;\n}\n\ninterface ULongRange {\n    max?: number;\n    min?: number;\n}\n\ninterface UnderlyingByteSource {\n    autoAllocateChunkSize?: number;\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: (controller: ReadableByteStreamController) => void | PromiseLike<void>;\n    start?: (controller: ReadableByteStreamController) => any;\n    type: \"bytes\";\n}\n\ninterface UnderlyingDefaultSource<R = any> {\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: (controller: ReadableStreamDefaultController<R>) => void | PromiseLike<void>;\n    start?: (controller: ReadableStreamDefaultController<R>) => any;\n    type?: undefined;\n}\n\ninterface UnderlyingSink<W = any> {\n    abort?: UnderlyingSinkAbortCallback;\n    close?: UnderlyingSinkCloseCallback;\n    start?: UnderlyingSinkStartCallback;\n    type?: undefined;\n    write?: UnderlyingSinkWriteCallback<W>;\n}\n\ninterface UnderlyingSource<R = any> {\n    autoAllocateChunkSize?: number;\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: UnderlyingSourcePullCallback<R>;\n    start?: UnderlyingSourceStartCallback<R>;\n    type?: ReadableStreamType;\n}\n\ninterface ValidityStateFlags {\n    badInput?: boolean;\n    customError?: boolean;\n    patternMismatch?: boolean;\n    rangeOverflow?: boolean;\n    rangeUnderflow?: boolean;\n    stepMismatch?: boolean;\n    tooLong?: boolean;\n    tooShort?: boolean;\n    typeMismatch?: boolean;\n    valueMissing?: boolean;\n}\n\ninterface VideoColorSpaceInit {\n    fullRange?: boolean | null;\n    matrix?: VideoMatrixCoefficients | null;\n    primaries?: VideoColorPrimaries | null;\n    transfer?: VideoTransferCharacteristics | null;\n}\n\ninterface VideoConfiguration {\n    bitrate: number;\n    colorGamut?: ColorGamut;\n    contentType: string;\n    framerate: number;\n    hasAlphaChannel?: boolean;\n    hdrMetadataType?: HdrMetadataType;\n    height: number;\n    scalabilityMode?: string;\n    transferFunction?: TransferFunction;\n    width: number;\n}\n\ninterface VideoDecoderConfig {\n    codec: string;\n    codedHeight?: number;\n    codedWidth?: number;\n    colorSpace?: VideoColorSpaceInit;\n    description?: AllowSharedBufferSource;\n    displayAspectHeight?: number;\n    displayAspectWidth?: number;\n    hardwareAcceleration?: HardwareAcceleration;\n    optimizeForLatency?: boolean;\n}\n\ninterface VideoDecoderInit {\n    error: WebCodecsErrorCallback;\n    output: VideoFrameOutputCallback;\n}\n\ninterface VideoDecoderSupport {\n    config?: VideoDecoderConfig;\n    supported?: boolean;\n}\n\ninterface VideoEncoderConfig {\n    alpha?: AlphaOption;\n    avc?: AvcEncoderConfig;\n    bitrate?: number;\n    bitrateMode?: VideoEncoderBitrateMode;\n    codec: string;\n    contentHint?: string;\n    displayHeight?: number;\n    displayWidth?: number;\n    framerate?: number;\n    hardwareAcceleration?: HardwareAcceleration;\n    height: number;\n    latencyMode?: LatencyMode;\n    scalabilityMode?: string;\n    width: number;\n}\n\ninterface VideoEncoderEncodeOptions {\n    avc?: VideoEncoderEncodeOptionsForAvc;\n    keyFrame?: boolean;\n}\n\ninterface VideoEncoderEncodeOptionsForAvc {\n    quantizer?: number | null;\n}\n\ninterface VideoEncoderInit {\n    error: WebCodecsErrorCallback;\n    output: EncodedVideoChunkOutputCallback;\n}\n\ninterface VideoEncoderSupport {\n    config?: VideoEncoderConfig;\n    supported?: boolean;\n}\n\ninterface VideoFrameBufferInit {\n    codedHeight: number;\n    codedWidth: number;\n    colorSpace?: VideoColorSpaceInit;\n    displayHeight?: number;\n    displayWidth?: number;\n    duration?: number;\n    format: VideoPixelFormat;\n    layout?: PlaneLayout[];\n    timestamp: number;\n    visibleRect?: DOMRectInit;\n}\n\ninterface VideoFrameCallbackMetadata {\n    captureTime?: DOMHighResTimeStamp;\n    expectedDisplayTime: DOMHighResTimeStamp;\n    height: number;\n    mediaTime: number;\n    presentationTime: DOMHighResTimeStamp;\n    presentedFrames: number;\n    processingDuration?: number;\n    receiveTime?: DOMHighResTimeStamp;\n    rtpTimestamp?: number;\n    width: number;\n}\n\ninterface VideoFrameCopyToOptions {\n    colorSpace?: PredefinedColorSpace;\n    format?: VideoPixelFormat;\n    layout?: PlaneLayout[];\n    rect?: DOMRectInit;\n}\n\ninterface VideoFrameInit {\n    alpha?: AlphaOption;\n    displayHeight?: number;\n    displayWidth?: number;\n    duration?: number;\n    timestamp?: number;\n    visibleRect?: DOMRectInit;\n}\n\ninterface WaveShaperOptions extends AudioNodeOptions {\n    curve?: number[] | Float32Array;\n    oversample?: OverSampleType;\n}\n\ninterface WebGLContextAttributes {\n    alpha?: boolean;\n    antialias?: boolean;\n    depth?: boolean;\n    desynchronized?: boolean;\n    failIfMajorPerformanceCaveat?: boolean;\n    powerPreference?: WebGLPowerPreference;\n    premultipliedAlpha?: boolean;\n    preserveDrawingBuffer?: boolean;\n    stencil?: boolean;\n}\n\ninterface WebGLContextEventInit extends EventInit {\n    statusMessage?: string;\n}\n\ninterface WebTransportCloseInfo {\n    closeCode?: number;\n    reason?: string;\n}\n\ninterface WebTransportErrorOptions {\n    source?: WebTransportErrorSource;\n    streamErrorCode?: number | null;\n}\n\ninterface WebTransportHash {\n    algorithm?: string;\n    value?: BufferSource;\n}\n\ninterface WebTransportOptions {\n    allowPooling?: boolean;\n    congestionControl?: WebTransportCongestionControl;\n    requireUnreliable?: boolean;\n    serverCertificateHashes?: WebTransportHash[];\n}\n\ninterface WebTransportSendOptions {\n    sendOrder?: number;\n}\n\ninterface WebTransportSendStreamOptions extends WebTransportSendOptions {\n}\n\ninterface WheelEventInit extends MouseEventInit {\n    deltaMode?: number;\n    deltaX?: number;\n    deltaY?: number;\n    deltaZ?: number;\n}\n\ninterface WindowPostMessageOptions extends StructuredSerializeOptions {\n    targetOrigin?: string;\n}\n\ninterface WorkerOptions {\n    credentials?: RequestCredentials;\n    name?: string;\n    type?: WorkerType;\n}\n\ninterface WorkletOptions {\n    credentials?: RequestCredentials;\n}\n\ninterface WriteParams {\n    data?: BufferSource | Blob | string | null;\n    position?: number | null;\n    size?: number | null;\n    type: WriteCommandType;\n}\n\ntype NodeFilter = ((node: Node) => number) | { acceptNode(node: Node): number; };\n\ndeclare var NodeFilter: {\n    readonly FILTER_ACCEPT: 1;\n    readonly FILTER_REJECT: 2;\n    readonly FILTER_SKIP: 3;\n    readonly SHOW_ALL: 0xFFFFFFFF;\n    readonly SHOW_ELEMENT: 0x1;\n    readonly SHOW_ATTRIBUTE: 0x2;\n    readonly SHOW_TEXT: 0x4;\n    readonly SHOW_CDATA_SECTION: 0x8;\n    readonly SHOW_ENTITY_REFERENCE: 0x10;\n    readonly SHOW_ENTITY: 0x20;\n    readonly SHOW_PROCESSING_INSTRUCTION: 0x40;\n    readonly SHOW_COMMENT: 0x80;\n    readonly SHOW_DOCUMENT: 0x100;\n    readonly SHOW_DOCUMENT_TYPE: 0x200;\n    readonly SHOW_DOCUMENT_FRAGMENT: 0x400;\n    readonly SHOW_NOTATION: 0x800;\n};\n\ntype XPathNSResolver = ((prefix: string | null) => string | null) | { lookupNamespaceURI(prefix: string | null): string | null; };\n\n/**\n * The **`ANGLE_instanced_arrays`** extension is part of the WebGL API and allows to draw the same object, or groups of similar objects multiple times, if they share the same vertex data, primitive count and type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays)\n */\ninterface ANGLE_instanced_arrays {\n    /**\n     * The **`ANGLE_instanced_arrays.drawArraysInstancedANGLE()`** method of the WebGL API renders primitives from array data like the WebGLRenderingContext.drawArrays() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawArraysInstancedANGLE)\n     */\n    drawArraysInstancedANGLE(mode: GLenum, first: GLint, count: GLsizei, primcount: GLsizei): void;\n    /**\n     * The **`ANGLE_instanced_arrays.drawElementsInstancedANGLE()`** method of the WebGL API renders primitives from array data like the WebGLRenderingContext.drawElements() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawElementsInstancedANGLE)\n     */\n    drawElementsInstancedANGLE(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr, primcount: GLsizei): void;\n    /**\n     * The **ANGLE_instanced_arrays.vertexAttribDivisorANGLE()** method of the WebGL API modifies the rate at which generic vertex attributes advance when rendering multiple instances of primitives with ANGLE_instanced_arrays.drawArraysInstancedANGLE() and ANGLE_instanced_arrays.drawElementsInstancedANGLE().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/vertexAttribDivisorANGLE)\n     */\n    vertexAttribDivisorANGLE(index: GLuint, divisor: GLuint): void;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: 0x88FE;\n}\n\ninterface ARIAMixin {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaActiveDescendantElement) */\n    ariaActiveDescendantElement: Element | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) */\n    ariaAtomic: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */\n    ariaAutoComplete: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) */\n    ariaBrailleLabel: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) */\n    ariaBrailleRoleDescription: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */\n    ariaBusy: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) */\n    ariaChecked: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColCount) */\n    ariaColCount: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndex) */\n    ariaColIndex: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndexText) */\n    ariaColIndexText: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */\n    ariaColSpan: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaControlsElements) */\n    ariaControlsElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */\n    ariaCurrent: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements) */\n    ariaDescribedByElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */\n    ariaDescription: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDetailsElements) */\n    ariaDetailsElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */\n    ariaDisabled: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaErrorMessageElements) */\n    ariaErrorMessageElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */\n    ariaExpanded: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaFlowToElements) */\n    ariaFlowToElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) */\n    ariaHasPopup: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) */\n    ariaHidden: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaInvalid) */\n    ariaInvalid: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaKeyShortcuts) */\n    ariaKeyShortcuts: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) */\n    ariaLabel: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements) */\n    ariaLabelledByElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) */\n    ariaLevel: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) */\n    ariaLive: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaModal) */\n    ariaModal: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiLine) */\n    ariaMultiLine: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiSelectable) */\n    ariaMultiSelectable: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) */\n    ariaOrientation: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOwnsElements) */\n    ariaOwnsElements: ReadonlyArray<Element> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) */\n    ariaPlaceholder: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) */\n    ariaPosInSet: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPressed) */\n    ariaPressed: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaReadOnly) */\n    ariaReadOnly: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRelevant) */\n    ariaRelevant: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRequired) */\n    ariaRequired: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRoleDescription) */\n    ariaRoleDescription: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowCount) */\n    ariaRowCount: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndex) */\n    ariaRowIndex: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndexText) */\n    ariaRowIndexText: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowSpan) */\n    ariaRowSpan: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSelected) */\n    ariaSelected: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSetSize) */\n    ariaSetSize: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSort) */\n    ariaSort: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMax) */\n    ariaValueMax: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMin) */\n    ariaValueMin: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueNow) */\n    ariaValueNow: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueText) */\n    ariaValueText: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/role) */\n    role: string | null;\n}\n\n/**\n * The **`AbortController`** interface represents a controller object that allows you to abort one or more Web requests as and when desired.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController)\n */\ninterface AbortController {\n    /**\n     * The **`signal`** read-only property of the AbortController interface returns an AbortSignal object instance, which can be used to communicate with/abort an asynchronous operation as desired.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`abort()`** method of the AbortController interface aborts an asynchronous operation before it has completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/abort)\n     */\n    abort(reason?: any): void;\n}\n\ndeclare var AbortController: {\n    prototype: AbortController;\n    new(): AbortController;\n};\n\ninterface AbortSignalEventMap {\n    \"abort\": Event;\n}\n\n/**\n * The **`AbortSignal`** interface represents a signal object that allows you to communicate with an asynchronous operation (such as a fetch request) and abort it if required via an AbortController object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal)\n */\ninterface AbortSignal extends EventTarget {\n    /**\n     * The **`aborted`** read-only property returns a value that indicates whether the asynchronous operations the signal is communicating with are aborted (`true`) or not (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/aborted)\n     */\n    readonly aborted: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_event) */\n    onabort: ((this: AbortSignal, ev: Event) => any) | null;\n    /**\n     * The **`reason`** read-only property returns a JavaScript value that indicates the abort reason.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/reason)\n     */\n    readonly reason: any;\n    /**\n     * The **`throwIfAborted()`** method throws the signal's abort AbortSignal.reason if the signal has been aborted; otherwise it does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/throwIfAborted)\n     */\n    throwIfAborted(): void;\n    addEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AbortSignal: {\n    prototype: AbortSignal;\n    new(): AbortSignal;\n    /**\n     * The **`AbortSignal.abort()`** static method returns an AbortSignal that is already set as aborted (and which does not trigger an AbortSignal/abort_event event).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static)\n     */\n    abort(reason?: any): AbortSignal;\n    /**\n     * The **`AbortSignal.any()`** static method takes an iterable of abort signals and returns an AbortSignal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static)\n     */\n    any(signals: AbortSignal[]): AbortSignal;\n    /**\n     * The **`AbortSignal.timeout()`** static method returns an AbortSignal that will automatically abort after a specified time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static)\n     */\n    timeout(milliseconds: number): AbortSignal;\n};\n\n/**\n * The **`AbstractRange`** abstract interface is the base class upon which all DOM range types are defined.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange)\n */\ninterface AbstractRange {\n    /**\n     * The read-only **`collapsed`** property of the AbstractRange interface returns `true` if the range's start position and end position are the same.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange/collapsed)\n     */\n    readonly collapsed: boolean;\n    /**\n     * The read-only **`endContainer`** property of the AbstractRange interface returns the Node in which the end of the range is located.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange/endContainer)\n     */\n    readonly endContainer: Node;\n    /**\n     * The **`endOffset`** property of the AbstractRange interface returns the offset into the end node of the range's end position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange/endOffset)\n     */\n    readonly endOffset: number;\n    /**\n     * The read-only **`startContainer`** property of the AbstractRange interface returns the start Node for the range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange/startContainer)\n     */\n    readonly startContainer: Node;\n    /**\n     * The read-only **`startOffset`** property of the AbstractRange interface returns the offset into the start node of the range's start position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbstractRange/startOffset)\n     */\n    readonly startOffset: number;\n}\n\ndeclare var AbstractRange: {\n    prototype: AbstractRange;\n    new(): AbstractRange;\n};\n\ninterface AbstractWorkerEventMap {\n    \"error\": ErrorEvent;\n}\n\ninterface AbstractWorker {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/error_event) */\n    onerror: ((this: AbstractWorker, ev: ErrorEvent) => any) | null;\n    addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/**\n * The **`AnalyserNode`** interface represents a node able to provide real-time frequency and time-domain analysis information.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode)\n */\ninterface AnalyserNode extends AudioNode {\n    /**\n     * The **`fftSize`** property of the AnalyserNode interface is an unsigned long value and represents the window size in samples that is used when performing a Fast Fourier Transform (FFT) to get frequency domain data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/fftSize)\n     */\n    fftSize: number;\n    /**\n     * The **`frequencyBinCount`** read-only property of the AnalyserNode interface contains the total number of data points available to AudioContext BaseAudioContext.sampleRate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/frequencyBinCount)\n     */\n    readonly frequencyBinCount: number;\n    /**\n     * The **`maxDecibels`** property of the AnalyserNode interface is a double value representing the maximum power value in the scaling range for the FFT analysis data, for conversion to unsigned byte values — basically, this specifies the maximum value for the range of results when using `getByteFrequencyData()`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/maxDecibels)\n     */\n    maxDecibels: number;\n    /**\n     * The **`minDecibels`** property of the AnalyserNode interface is a double value representing the minimum power value in the scaling range for the FFT analysis data, for conversion to unsigned byte values — basically, this specifies the minimum value for the range of results when using `getByteFrequencyData()`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/minDecibels)\n     */\n    minDecibels: number;\n    /**\n     * The **`smoothingTimeConstant`** property of the AnalyserNode interface is a double value representing the averaging constant with the last analysis frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/smoothingTimeConstant)\n     */\n    smoothingTimeConstant: number;\n    /**\n     * The **`getByteFrequencyData()`** method of the AnalyserNode interface copies the current frequency data into a Uint8Array (unsigned byte array) passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/getByteFrequencyData)\n     */\n    getByteFrequencyData(array: Uint8Array<ArrayBuffer>): void;\n    /**\n     * The **`getByteTimeDomainData()`** method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Uint8Array (unsigned byte array) passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/getByteTimeDomainData)\n     */\n    getByteTimeDomainData(array: Uint8Array<ArrayBuffer>): void;\n    /**\n     * The **`getFloatFrequencyData()`** method of the AnalyserNode Interface copies the current frequency data into a Float32Array array passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/getFloatFrequencyData)\n     */\n    getFloatFrequencyData(array: Float32Array<ArrayBuffer>): void;\n    /**\n     * The **`getFloatTimeDomainData()`** method of the AnalyserNode Interface copies the current waveform, or time-domain, data into a Float32Array array passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnalyserNode/getFloatTimeDomainData)\n     */\n    getFloatTimeDomainData(array: Float32Array<ArrayBuffer>): void;\n}\n\ndeclare var AnalyserNode: {\n    prototype: AnalyserNode;\n    new(context: BaseAudioContext, options?: AnalyserOptions): AnalyserNode;\n};\n\ninterface Animatable {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animate) */\n    animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAnimations) */\n    getAnimations(options?: GetAnimationsOptions): Animation[];\n}\n\ninterface AnimationEventMap {\n    \"cancel\": AnimationPlaybackEvent;\n    \"finish\": AnimationPlaybackEvent;\n    \"remove\": AnimationPlaybackEvent;\n}\n\n/**\n * The **`Animation`** interface of the Web Animations API represents a single animation player and provides playback controls and a timeline for an animation node or source.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation)\n */\ninterface Animation extends EventTarget {\n    /**\n     * The **`Animation.currentTime`** property of the Web Animations API returns and sets the current time value of the animation in milliseconds, whether running or paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/currentTime)\n     */\n    currentTime: CSSNumberish | null;\n    /**\n     * The **`Animation.effect`** property of the Web Animations API gets and sets the target effect of an animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/effect)\n     */\n    effect: AnimationEffect | null;\n    /**\n     * The **`Animation.finished`** read-only property of the Web Animations API returns a Promise which resolves once the animation has finished playing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/finished)\n     */\n    readonly finished: Promise<Animation>;\n    /**\n     * The **`Animation.id`** property of the Web Animations API returns or sets a string used to identify the animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/id)\n     */\n    id: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/cancel_event) */\n    oncancel: ((this: Animation, ev: AnimationPlaybackEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/finish_event) */\n    onfinish: ((this: Animation, ev: AnimationPlaybackEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/remove_event) */\n    onremove: ((this: Animation, ev: AnimationPlaybackEvent) => any) | null;\n    /**\n     * The read-only **`Animation.pending`** property of the Web Animations API indicates whether the animation is currently waiting for an asynchronous operation such as initiating playback or pausing a running animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/pending)\n     */\n    readonly pending: boolean;\n    /**\n     * The read-only **`Animation.playState`** property of the Web Animations API returns an enumerated value describing the playback state of an animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/playState)\n     */\n    readonly playState: AnimationPlayState;\n    /**\n     * The **`Animation.playbackRate`** property of the Web Animations API returns or sets the playback rate of the animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/playbackRate)\n     */\n    playbackRate: number;\n    /**\n     * The read-only **`Animation.ready`** property of the Web Animations API returns a Promise which resolves when the animation is ready to play.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/ready)\n     */\n    readonly ready: Promise<Animation>;\n    /**\n     * The read-only **`Animation.replaceState`** property of the Web Animations API indicates whether the animation has been removed by the browser automatically after being replaced by another animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/replaceState)\n     */\n    readonly replaceState: AnimationReplaceState;\n    /**\n     * The **`Animation.startTime`** property of the Animation interface is a double-precision floating-point value which indicates the scheduled time when an animation's playback should begin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/startTime)\n     */\n    startTime: CSSNumberish | null;\n    /**\n     * The **`Animation.timeline`** property of the Animation interface returns or sets the AnimationTimeline associated with this animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/timeline)\n     */\n    timeline: AnimationTimeline | null;\n    /**\n     * The Web Animations API's **`cancel()`** method of the Animation interface clears all KeyframeEffects caused by this animation and aborts its playback.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/cancel)\n     */\n    cancel(): void;\n    /**\n     * The `commitStyles()` method of the Web Animations API's Animation interface writes the computed values of the animation's current styles into its target element's `style` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/commitStyles)\n     */\n    commitStyles(): void;\n    /**\n     * The **`finish()`** method of the Web Animations API's Animation Interface sets the current playback time to the end of the animation corresponding to the current playback direction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/finish)\n     */\n    finish(): void;\n    /**\n     * The **`pause()`** method of the Web Animations API's Animation interface suspends playback of the animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/pause)\n     */\n    pause(): void;\n    /**\n     * The `persist()` method of the Web Animations API's Animation interface explicitly persists an animation, preventing it from being automatically removed when it is replaced by another animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/persist)\n     */\n    persist(): void;\n    /**\n     * The **`play()`** method of the Web Animations API's Animation Interface starts or resumes playing of an animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/play)\n     */\n    play(): void;\n    /**\n     * The **`Animation.reverse()`** method of the Animation Interface reverses the playback direction, meaning the animation ends at its beginning.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/reverse)\n     */\n    reverse(): void;\n    /**\n     * The **`updatePlaybackRate()`** method of the Web Animations API's synchronizing its playback position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/updatePlaybackRate)\n     */\n    updatePlaybackRate(playbackRate: number): void;\n    addEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: Animation, ev: AnimationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: Animation, ev: AnimationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Animation: {\n    prototype: Animation;\n    new(effect?: AnimationEffect | null, timeline?: AnimationTimeline | null): Animation;\n};\n\n/**\n * The `AnimationEffect` interface of the Web Animations API is an interface representing animation effects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEffect)\n */\ninterface AnimationEffect {\n    /**\n     * The `getComputedTiming()` method of the AnimationEffect interface returns the calculated timing properties for this animation effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEffect/getComputedTiming)\n     */\n    getComputedTiming(): ComputedEffectTiming;\n    /**\n     * The `AnimationEffect.getTiming()` method of the AnimationEffect interface returns an object containing the timing properties for the Animation Effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEffect/getTiming)\n     */\n    getTiming(): EffectTiming;\n    /**\n     * The `updateTiming()` method of the AnimationEffect interface updates the specified timing properties for an animation effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEffect/updateTiming)\n     */\n    updateTiming(timing?: OptionalEffectTiming): void;\n}\n\ndeclare var AnimationEffect: {\n    prototype: AnimationEffect;\n    new(): AnimationEffect;\n};\n\n/**\n * The **`AnimationEvent`** interface represents events providing information related to animations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEvent)\n */\ninterface AnimationEvent extends Event {\n    /**\n     * The **`AnimationEvent.animationName`** read-only property is a string containing the value of the animation-name CSS property associated with the transition.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEvent/animationName)\n     */\n    readonly animationName: string;\n    /**\n     * The **`AnimationEvent.elapsedTime`** read-only property is a `float` giving the amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEvent/elapsedTime)\n     */\n    readonly elapsedTime: number;\n    /**\n     * The **`AnimationEvent.pseudoElement`** read-only property is a string, starting with `'::'`, containing the name of the pseudo-element the animation runs on.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationEvent/pseudoElement)\n     */\n    readonly pseudoElement: string;\n}\n\ndeclare var AnimationEvent: {\n    prototype: AnimationEvent;\n    new(type: string, animationEventInitDict?: AnimationEventInit): AnimationEvent;\n};\n\ninterface AnimationFrameProvider {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */\n    cancelAnimationFrame(handle: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */\n    requestAnimationFrame(callback: FrameRequestCallback): number;\n}\n\n/**\n * The AnimationPlaybackEvent interface of the Web Animations API represents animation events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationPlaybackEvent)\n */\ninterface AnimationPlaybackEvent extends Event {\n    /**\n     * The **`currentTime`** read-only property of the AnimationPlaybackEvent interface represents the current time of the animation that generated the event at the moment the event is queued.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationPlaybackEvent/currentTime)\n     */\n    readonly currentTime: CSSNumberish | null;\n    /**\n     * The **`timelineTime`** read-only property of the AnimationPlaybackEvent interface represents the time value of the animation's AnimationTimeline at the moment the event is queued.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationPlaybackEvent/timelineTime)\n     */\n    readonly timelineTime: CSSNumberish | null;\n}\n\ndeclare var AnimationPlaybackEvent: {\n    prototype: AnimationPlaybackEvent;\n    new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent;\n};\n\n/**\n * The `AnimationTimeline` interface of the Web Animations API represents the timeline of an animation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline)\n */\ninterface AnimationTimeline {\n    /**\n     * The **`currentTime`** read-only property of the Web Animations API's AnimationTimeline interface returns the timeline's current time in milliseconds, or `null` if the timeline is inactive.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)\n     */\n    readonly currentTime: CSSNumberish | null;\n}\n\ndeclare var AnimationTimeline: {\n    prototype: AnimationTimeline;\n    new(): AnimationTimeline;\n};\n\n/**\n * The **`Attr`** interface represents one of an element's attributes as an object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr)\n */\ninterface Attr extends Node {\n    /**\n     * The read-only **`localName`** property of the Attr interface returns the _local part_ of the _qualified name_ of an attribute, that is the name of the attribute, stripped from any namespace in front of it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/localName)\n     */\n    readonly localName: string;\n    /**\n     * The read-only **`name`** property of the Attr interface returns the _qualified name_ of an attribute, that is the name of the attribute, with the namespace prefix, if any, in front of it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`namespaceURI`** property of the Attr interface returns the namespace URI of the attribute, or `null` if the element is not in a namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/namespaceURI)\n     */\n    readonly namespaceURI: string | null;\n    readonly ownerDocument: Document;\n    /**\n     * The read-only **`ownerElement`** property of the Attr interface returns the Element the attribute belongs to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/ownerElement)\n     */\n    readonly ownerElement: Element | null;\n    /**\n     * The read-only **`prefix`** property of the Attr returns the namespace prefix of the attribute, or `null` if no prefix is specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/prefix)\n     */\n    readonly prefix: string | null;\n    /**\n     * The read-only **`specified`** property of the Attr interface always returns `true`.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/specified)\n     */\n    readonly specified: boolean;\n    /**\n     * The **`value`** property of the Attr interface contains the value of the attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Attr/value)\n     */\n    value: string;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): string;\n    set textContent(value: string | null);\n}\n\ndeclare var Attr: {\n    prototype: Attr;\n    new(): Attr;\n};\n\n/**\n * The **`AudioBuffer`** interface represents a short audio asset residing in memory, created from an audio file using the BaseAudioContext/decodeAudioData method, or from raw data using BaseAudioContext/createBuffer.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer)\n */\ninterface AudioBuffer {\n    /**\n     * The **`duration`** property of the AudioBuffer interface returns a double representing the duration, in seconds, of the PCM data stored in the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/duration)\n     */\n    readonly duration: number;\n    /**\n     * The **`length`** property of the AudioBuffer interface returns an integer representing the length, in sample-frames, of the PCM data stored in the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/length)\n     */\n    readonly length: number;\n    /**\n     * The `numberOfChannels` property of the AudioBuffer interface returns an integer representing the number of discrete audio channels described by the PCM data stored in the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/numberOfChannels)\n     */\n    readonly numberOfChannels: number;\n    /**\n     * The **`sampleRate`** property of the AudioBuffer interface returns a float representing the sample rate, in samples per second, of the PCM data stored in the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/sampleRate)\n     */\n    readonly sampleRate: number;\n    /**\n     * The **`copyFromChannel()`** method of the channel of the `AudioBuffer` to a specified ```js-nolint copyFromChannel(destination, channelNumber, startInChannel) ``` - `destination` - : A Float32Array to copy the channel's samples to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/copyFromChannel)\n     */\n    copyFromChannel(destination: Float32Array<ArrayBuffer>, channelNumber: number, bufferOffset?: number): void;\n    /**\n     * The `copyToChannel()` method of the AudioBuffer interface copies the samples to the specified channel of the `AudioBuffer`, from the source array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/copyToChannel)\n     */\n    copyToChannel(source: Float32Array<ArrayBuffer>, channelNumber: number, bufferOffset?: number): void;\n    /**\n     * The **`getChannelData()`** method of the AudioBuffer Interface returns a Float32Array containing the PCM data associated with the channel, defined by the channel parameter (with 0 representing the first channel).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/getChannelData)\n     */\n    getChannelData(channel: number): Float32Array<ArrayBuffer>;\n}\n\ndeclare var AudioBuffer: {\n    prototype: AudioBuffer;\n    new(options: AudioBufferOptions): AudioBuffer;\n};\n\n/**\n * The **`AudioBufferSourceNode`** interface is an AudioScheduledSourceNode which represents an audio source consisting of in-memory audio data, stored in an AudioBuffer.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode)\n */\ninterface AudioBufferSourceNode extends AudioScheduledSourceNode {\n    /**\n     * The **`buffer`** property of the AudioBufferSourceNode interface provides the ability to play back audio using an AudioBuffer as the source of the sound data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/buffer)\n     */\n    buffer: AudioBuffer | null;\n    /**\n     * The **`detune`** property of the representing detuning of oscillation in cents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/detune)\n     */\n    readonly detune: AudioParam;\n    /**\n     * The `loop` property of the AudioBufferSourceNode interface is a Boolean indicating if the audio asset must be replayed when the end of the AudioBuffer is reached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/loop)\n     */\n    loop: boolean;\n    /**\n     * The `loopEnd` property of the AudioBufferSourceNode interface specifies is a floating point number specifying, in seconds, at what offset into playing the AudioBuffer playback should loop back to the time indicated by the AudioBufferSourceNode.loopStart property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/loopEnd)\n     */\n    loopEnd: number;\n    /**\n     * The **`loopStart`** property of the AudioBufferSourceNode interface is a floating-point value indicating, in seconds, where in the AudioBuffer the restart of the play must happen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/loopStart)\n     */\n    loopStart: number;\n    /**\n     * The **`playbackRate`** property of the AudioBufferSourceNode interface Is a k-rate AudioParam that defines the speed at which the audio asset will be played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/playbackRate)\n     */\n    readonly playbackRate: AudioParam;\n    /**\n     * The `start()` method of the AudioBufferSourceNode Interface is used to schedule playback of the audio data contained in the buffer, or to begin playback immediately.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/start)\n     */\n    start(when?: number, offset?: number, duration?: number): void;\n    addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: AudioBufferSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: AudioBufferSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioBufferSourceNode: {\n    prototype: AudioBufferSourceNode;\n    new(context: BaseAudioContext, options?: AudioBufferSourceOptions): AudioBufferSourceNode;\n};\n\n/**\n * The `AudioContext` interface represents an audio-processing graph built from audio modules linked together, each represented by an AudioNode.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext)\n */\ninterface AudioContext extends BaseAudioContext {\n    /**\n     * The **`baseLatency`** read-only property of the seconds of processing latency incurred by the `AudioContext` passing an audio buffer from the AudioDestinationNode — i.e., the end of the audio graph — into the host system's audio subsystem ready for playing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/baseLatency)\n     */\n    readonly baseLatency: number;\n    /**\n     * The **`outputLatency`** read-only property of the AudioContext Interface provides an estimation of the output latency of the current audio context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/outputLatency)\n     */\n    readonly outputLatency: number;\n    /**\n     * The `close()` method of the AudioContext Interface closes the audio context, releasing any system audio resources that it uses.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The `createMediaElementSource()` method of the AudioContext Interface is used to create a new MediaElementAudioSourceNode object, given an existing HTML audio or video element, the audio from which can then be played and manipulated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/createMediaElementSource)\n     */\n    createMediaElementSource(mediaElement: HTMLMediaElement): MediaElementAudioSourceNode;\n    /**\n     * The `createMediaStreamDestination()` method of the AudioContext Interface is used to create a new MediaStreamAudioDestinationNode object associated with a WebRTC MediaStream representing an audio stream, which may be stored in a local file or sent to another computer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/createMediaStreamDestination)\n     */\n    createMediaStreamDestination(): MediaStreamAudioDestinationNode;\n    /**\n     * The `createMediaStreamSource()` method of the AudioContext Interface is used to create a new MediaStreamAudioSourceNode object, given a media stream (say, from a MediaDevices.getUserMedia instance), the audio from which can then be played and manipulated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/createMediaStreamSource)\n     */\n    createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;\n    /**\n     * The **`getOutputTimestamp()`** method of the containing two audio timestamp values relating to the current audio context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/getOutputTimestamp)\n     */\n    getOutputTimestamp(): AudioTimestamp;\n    /**\n     * The **`resume()`** method of the AudioContext interface resumes the progression of time in an audio context that has previously been suspended.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/resume)\n     */\n    resume(): Promise<void>;\n    /**\n     * The `suspend()` method of the AudioContext Interface suspends the progression of time in the audio context, temporarily halting audio hardware access and reducing CPU/battery usage in the process — this is useful if you want an application to power down the audio hardware when it will not be using an audio context for a while.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/suspend)\n     */\n    suspend(): Promise<void>;\n    addEventListener<K extends keyof BaseAudioContextEventMap>(type: K, listener: (this: AudioContext, ev: BaseAudioContextEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof BaseAudioContextEventMap>(type: K, listener: (this: AudioContext, ev: BaseAudioContextEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioContext: {\n    prototype: AudioContext;\n    new(contextOptions?: AudioContextOptions): AudioContext;\n};\n\n/**\n * The **`AudioData`** interface of the WebCodecs API represents an audio sample.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData)\n */\ninterface AudioData {\n    /**\n     * The **`duration`** read-only property of the AudioData interface returns the duration in microseconds of this `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/duration)\n     */\n    readonly duration: number;\n    /**\n     * The **`format`** read-only property of the AudioData interface returns the sample format of the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/format)\n     */\n    readonly format: AudioSampleFormat | null;\n    /**\n     * The **`numberOfChannels`** read-only property of the AudioData interface returns the number of channels in the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/numberOfChannels)\n     */\n    readonly numberOfChannels: number;\n    /**\n     * The **`numberOfFrames`** read-only property of the AudioData interface returns the number of frames in the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/numberOfFrames)\n     */\n    readonly numberOfFrames: number;\n    /**\n     * The **`sampleRate`** read-only property of the AudioData interface returns the sample rate in Hz.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/sampleRate)\n     */\n    readonly sampleRate: number;\n    /**\n     * The **`timestamp`** read-only property of the AudioData interface returns the timestamp of this `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`allocationSize()`** method of the AudioData interface returns the size in bytes required to hold the current sample as filtered by options passed into the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/allocationSize)\n     */\n    allocationSize(options: AudioDataCopyToOptions): number;\n    /**\n     * The **`clone()`** method of the AudioData interface creates a new `AudioData` object with reference to the same media resource as the original.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/clone)\n     */\n    clone(): AudioData;\n    /**\n     * The **`close()`** method of the AudioData interface clears all states and releases the reference to the media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/close)\n     */\n    close(): void;\n    /**\n     * The **`copyTo()`** method of the AudioData interface copies a plane of an `AudioData` object to a destination buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource, options: AudioDataCopyToOptions): void;\n}\n\ndeclare var AudioData: {\n    prototype: AudioData;\n    new(init: AudioDataInit): AudioData;\n};\n\ninterface AudioDecoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`AudioDecoder`** interface of the WebCodecs API decodes chunks of audio.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder)\n */\ninterface AudioDecoder extends EventTarget {\n    /**\n     * The **`decodeQueueSize`** read-only property of the AudioDecoder interface returns the number of pending decode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/decodeQueueSize)\n     */\n    readonly decodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/dequeue_event) */\n    ondequeue: ((this: AudioDecoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the AudioDecoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the AudioDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the AudioDecoder interface enqueues a control message to configure the audio decoder for decoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/configure)\n     */\n    configure(config: AudioDecoderConfig): void;\n    /**\n     * The **`decode()`** method of the AudioDecoder interface enqueues a control message to decode a given chunk of audio.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/decode)\n     */\n    decode(chunk: EncodedAudioChunk): void;\n    /**\n     * The **`flush()`** method of the AudioDecoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the AudioDecoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof AudioDecoderEventMap>(type: K, listener: (this: AudioDecoder, ev: AudioDecoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioDecoderEventMap>(type: K, listener: (this: AudioDecoder, ev: AudioDecoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioDecoder: {\n    prototype: AudioDecoder;\n    new(init: AudioDecoderInit): AudioDecoder;\n    /**\n     * The **`isConfigSupported()`** static method of the AudioDecoder interface checks if the given config is supported (that is, if AudioDecoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;\n};\n\n/**\n * The `AudioDestinationNode` interface represents the end destination of an audio graph in a given context — usually the speakers of your device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDestinationNode)\n */\ninterface AudioDestinationNode extends AudioNode {\n    /**\n     * The `maxChannelCount` property of the AudioDestinationNode interface is an `unsigned long` defining the maximum amount of channels that the physical device can handle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDestinationNode/maxChannelCount)\n     */\n    readonly maxChannelCount: number;\n}\n\ndeclare var AudioDestinationNode: {\n    prototype: AudioDestinationNode;\n    new(): AudioDestinationNode;\n};\n\ninterface AudioEncoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`AudioEncoder`** interface of the WebCodecs API encodes AudioData objects.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder)\n */\ninterface AudioEncoder extends EventTarget {\n    /**\n     * The **`encodeQueueSize`** read-only property of the AudioEncoder interface returns the number of pending encode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/encodeQueueSize)\n     */\n    readonly encodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/dequeue_event) */\n    ondequeue: ((this: AudioEncoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the AudioEncoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the AudioEncoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the AudioEncoder interface enqueues a control message to configure the audio encoder for encoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/configure)\n     */\n    configure(config: AudioEncoderConfig): void;\n    /**\n     * The **`encode()`** method of the AudioEncoder interface enqueues a control message to encode a given AudioData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/encode)\n     */\n    encode(data: AudioData): void;\n    /**\n     * The **`flush()`** method of the AudioEncoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the AudioEncoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof AudioEncoderEventMap>(type: K, listener: (this: AudioEncoder, ev: AudioEncoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioEncoderEventMap>(type: K, listener: (this: AudioEncoder, ev: AudioEncoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioEncoder: {\n    prototype: AudioEncoder;\n    new(init: AudioEncoderInit): AudioEncoder;\n    /**\n     * The **`isConfigSupported()`** static method of the AudioEncoder interface checks if the given config is supported (that is, if AudioEncoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;\n};\n\n/**\n * The `AudioListener` interface represents the position and orientation of the unique person listening to the audio scene, and is used in audio spatialization.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener)\n */\ninterface AudioListener {\n    /**\n     * The `forwardX` read-only property of the AudioListener interface is an AudioParam representing the x value of the direction vector defining the forward direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/forwardX)\n     */\n    readonly forwardX: AudioParam;\n    /**\n     * The `forwardY` read-only property of the AudioListener interface is an AudioParam representing the y value of the direction vector defining the forward direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/forwardY)\n     */\n    readonly forwardY: AudioParam;\n    /**\n     * The `forwardZ` read-only property of the AudioListener interface is an AudioParam representing the z value of the direction vector defining the forward direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/forwardZ)\n     */\n    readonly forwardZ: AudioParam;\n    /**\n     * The `positionX` read-only property of the AudioListener interface is an AudioParam representing the x position of the listener in 3D cartesian space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/positionX)\n     */\n    readonly positionX: AudioParam;\n    /**\n     * The `positionY` read-only property of the AudioListener interface is an AudioParam representing the y position of the listener in 3D cartesian space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/positionY)\n     */\n    readonly positionY: AudioParam;\n    /**\n     * The `positionZ` read-only property of the AudioListener interface is an AudioParam representing the z position of the listener in 3D cartesian space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/positionZ)\n     */\n    readonly positionZ: AudioParam;\n    /**\n     * The `upX` read-only property of the AudioListener interface is an AudioParam representing the x value of the direction vector defining the up direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/upX)\n     */\n    readonly upX: AudioParam;\n    /**\n     * The `upY` read-only property of the AudioListener interface is an AudioParam representing the y value of the direction vector defining the up direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/upY)\n     */\n    readonly upY: AudioParam;\n    /**\n     * The `upZ` read-only property of the AudioListener interface is an AudioParam representing the z value of the direction vector defining the up direction the listener is pointing in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/upZ)\n     */\n    readonly upZ: AudioParam;\n    /**\n     * The `setOrientation()` method of the AudioListener interface defines the orientation of the listener.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/setOrientation)\n     */\n    setOrientation(x: number, y: number, z: number, xUp: number, yUp: number, zUp: number): void;\n    /**\n     * The `setPosition()` method of the AudioListener Interface defines the position of the listener.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioListener/setPosition)\n     */\n    setPosition(x: number, y: number, z: number): void;\n}\n\ndeclare var AudioListener: {\n    prototype: AudioListener;\n    new(): AudioListener;\n};\n\n/**\n * The **`AudioNode`** interface is a generic interface for representing an audio processing module.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode)\n */\ninterface AudioNode extends EventTarget {\n    /**\n     * The **`channelCount`** property of the AudioNode interface represents an integer used to determine how many channels are used when up-mixing and down-mixing connections to any inputs to the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/channelCount)\n     */\n    channelCount: number;\n    /**\n     * The `channelCountMode` property of the AudioNode interface represents an enumerated value describing the way channels must be matched between the node's inputs and outputs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/channelCountMode)\n     */\n    channelCountMode: ChannelCountMode;\n    /**\n     * The **`channelInterpretation`** property of the AudioNode interface represents an enumerated value describing how input channels are mapped to output channels when the number of inputs/outputs is different.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/channelInterpretation)\n     */\n    channelInterpretation: ChannelInterpretation;\n    /**\n     * The read-only `context` property of the the node is participating in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/context)\n     */\n    readonly context: BaseAudioContext;\n    /**\n     * The `numberOfInputs` property of the AudioNode interface returns the number of inputs feeding the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/numberOfInputs)\n     */\n    readonly numberOfInputs: number;\n    /**\n     * The `numberOfOutputs` property of the AudioNode interface returns the number of outputs coming out of the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/numberOfOutputs)\n     */\n    readonly numberOfOutputs: number;\n    /**\n     * The `connect()` method of the AudioNode interface lets you connect one of the node's outputs to a target, which may be either another `AudioNode` (thereby directing the sound data to the specified node) or an change the value of that parameter over time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/connect)\n     */\n    connect(destinationNode: AudioNode, output?: number, input?: number): AudioNode;\n    connect(destinationParam: AudioParam, output?: number): void;\n    /**\n     * The **`disconnect()`** method of the AudioNode interface lets you disconnect one or more nodes from the node on which the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/disconnect)\n     */\n    disconnect(): void;\n    disconnect(output: number): void;\n    disconnect(destinationNode: AudioNode): void;\n    disconnect(destinationNode: AudioNode, output: number): void;\n    disconnect(destinationNode: AudioNode, output: number, input: number): void;\n    disconnect(destinationParam: AudioParam): void;\n    disconnect(destinationParam: AudioParam, output: number): void;\n}\n\ndeclare var AudioNode: {\n    prototype: AudioNode;\n    new(): AudioNode;\n};\n\n/**\n * The Web Audio API's `AudioParam` interface represents an audio-related parameter, usually a parameter of an AudioNode (such as GainNode.gain).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam)\n */\ninterface AudioParam {\n    automationRate: AutomationRate;\n    /**\n     * The **`defaultValue`** read-only property of the AudioParam interface represents the initial value of the attributes as defined by the specific AudioNode creating the `AudioParam`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/defaultValue)\n     */\n    readonly defaultValue: number;\n    /**\n     * The **`maxValue`** read-only property of the AudioParam interface represents the maximum possible value for the parameter's nominal (effective) range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/maxValue)\n     */\n    readonly maxValue: number;\n    /**\n     * The **`minValue`** read-only property of the AudioParam interface represents the minimum possible value for the parameter's nominal (effective) range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/minValue)\n     */\n    readonly minValue: number;\n    /**\n     * The **`value`** property of the AudioParam interface gets or sets the value of this `AudioParam` at the current time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/value)\n     */\n    value: number;\n    /**\n     * The **`cancelAndHoldAtTime()`** method of the `AudioParam` but holds its value at a given time until further changes are made using other methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/cancelAndHoldAtTime)\n     */\n    cancelAndHoldAtTime(cancelTime: number): AudioParam;\n    /**\n     * The `cancelScheduledValues()` method of the AudioParam Interface cancels all scheduled future changes to the `AudioParam`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/cancelScheduledValues)\n     */\n    cancelScheduledValues(cancelTime: number): AudioParam;\n    /**\n     * The **`exponentialRampToValueAtTime()`** method of the AudioParam Interface schedules a gradual exponential change in the value of the AudioParam.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/exponentialRampToValueAtTime)\n     */\n    exponentialRampToValueAtTime(value: number, endTime: number): AudioParam;\n    /**\n     * The `linearRampToValueAtTime()` method of the AudioParam Interface schedules a gradual linear change in the value of the `AudioParam`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/linearRampToValueAtTime)\n     */\n    linearRampToValueAtTime(value: number, endTime: number): AudioParam;\n    /**\n     * The `setTargetAtTime()` method of the `AudioParam` value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setTargetAtTime)\n     */\n    setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;\n    /**\n     * The `setValueAtTime()` method of the `AudioParam` value at a precise time, as measured against ```js-nolint setValueAtTime(value, startTime) ``` - `value` - : A floating point number representing the value the AudioParam will change to at the given time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueAtTime)\n     */\n    setValueAtTime(value: number, startTime: number): AudioParam;\n    /**\n     * The **`setValueCurveAtTime()`** method of the following a curve defined by a list of values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime)\n     */\n    setValueCurveAtTime(values: number[] | Float32Array, startTime: number, duration: number): AudioParam;\n}\n\ndeclare var AudioParam: {\n    prototype: AudioParam;\n    new(): AudioParam;\n};\n\n/**\n * The **`AudioParamMap`** interface of the Web Audio API represents an iterable and read-only set of multiple audio parameters.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParamMap)\n */\ninterface AudioParamMap {\n    forEach(callbackfn: (value: AudioParam, key: string, parent: AudioParamMap) => void, thisArg?: any): void;\n}\n\ndeclare var AudioParamMap: {\n    prototype: AudioParamMap;\n    new(): AudioParamMap;\n};\n\n/**\n * The `AudioProcessingEvent` interface of the Web Audio API represents events that occur when a ScriptProcessorNode input buffer is ready to be processed.\n * @deprecated As of the August 29 2014 Web Audio API spec publication, this feature has been marked as deprecated, and is soon to be replaced by AudioWorklet.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioProcessingEvent)\n */\ninterface AudioProcessingEvent extends Event {\n    /**\n     * The **`inputBuffer`** read-only property of the AudioProcessingEvent interface represents the input buffer of an audio processing event.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioProcessingEvent/inputBuffer)\n     */\n    readonly inputBuffer: AudioBuffer;\n    /**\n     * The **`outputBuffer`** read-only property of the AudioProcessingEvent interface represents the output buffer of an audio processing event.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioProcessingEvent/outputBuffer)\n     */\n    readonly outputBuffer: AudioBuffer;\n    /**\n     * The **`playbackTime`** read-only property of the AudioProcessingEvent interface represents the time when the audio will be played.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioProcessingEvent/playbackTime)\n     */\n    readonly playbackTime: number;\n}\n\n/** @deprecated */\ndeclare var AudioProcessingEvent: {\n    prototype: AudioProcessingEvent;\n    new(type: string, eventInitDict: AudioProcessingEventInit): AudioProcessingEvent;\n};\n\ninterface AudioScheduledSourceNodeEventMap {\n    \"ended\": Event;\n}\n\n/**\n * The `AudioScheduledSourceNode` interface—part of the Web Audio API—is a parent interface for several types of audio source node interfaces which share the ability to be started and stopped, optionally at specified times.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioScheduledSourceNode)\n */\ninterface AudioScheduledSourceNode extends AudioNode {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioScheduledSourceNode/ended_event) */\n    onended: ((this: AudioScheduledSourceNode, ev: Event) => any) | null;\n    /**\n     * The `start()` method on AudioScheduledSourceNode schedules a sound to begin playback at the specified time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioScheduledSourceNode/start)\n     */\n    start(when?: number): void;\n    /**\n     * The `stop()` method on AudioScheduledSourceNode schedules a sound to cease playback at the specified time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioScheduledSourceNode/stop)\n     */\n    stop(when?: number): void;\n    addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: AudioScheduledSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: AudioScheduledSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioScheduledSourceNode: {\n    prototype: AudioScheduledSourceNode;\n    new(): AudioScheduledSourceNode;\n};\n\n/**\n * The **`AudioWorklet`** interface of the Web Audio API is used to supply custom audio processing scripts that execute in a separate thread to provide very low latency audio processing.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorklet)\n */\ninterface AudioWorklet extends Worklet {\n}\n\ndeclare var AudioWorklet: {\n    prototype: AudioWorklet;\n    new(): AudioWorklet;\n};\n\ninterface AudioWorkletNodeEventMap {\n    \"processorerror\": ErrorEvent;\n}\n\n/**\n * The **`AudioWorkletNode`** interface of the Web Audio API represents a base class for a user-defined AudioNode, which can be connected to an audio routing graph along with other nodes.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode)\n */\ninterface AudioWorkletNode extends AudioNode {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/processorerror_event) */\n    onprocessorerror: ((this: AudioWorkletNode, ev: ErrorEvent) => any) | null;\n    /**\n     * The read-only **`parameters`** property of the underlying AudioWorkletProcessor according to its getter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/parameters)\n     */\n    readonly parameters: AudioParamMap;\n    /**\n     * The read-only **`port`** property of the associated AudioWorkletProcessor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/port)\n     */\n    readonly port: MessagePort;\n    addEventListener<K extends keyof AudioWorkletNodeEventMap>(type: K, listener: (this: AudioWorkletNode, ev: AudioWorkletNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioWorkletNodeEventMap>(type: K, listener: (this: AudioWorkletNode, ev: AudioWorkletNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioWorkletNode: {\n    prototype: AudioWorkletNode;\n    new(context: BaseAudioContext, name: string, options?: AudioWorkletNodeOptions): AudioWorkletNode;\n};\n\n/**\n * The **`AuthenticatorAssertionResponse`** interface of the Web Authentication API contains a digital signature from the private key of a particular WebAuthn credential.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse)\n */\ninterface AuthenticatorAssertionResponse extends AuthenticatorResponse {\n    /**\n     * The **`authenticatorData`** property of the AuthenticatorAssertionResponse interface returns an ArrayBuffer containing information from the authenticator such as the Relying Party ID Hash (rpIdHash), a signature counter, test of user presence, user verification flags, and any extensions processed by the authenticator.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/authenticatorData)\n     */\n    readonly authenticatorData: ArrayBuffer;\n    /**\n     * The **`signature`** read-only property of the object which is the signature of the authenticator for both the client data (AuthenticatorResponse.clientDataJSON).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/signature)\n     */\n    readonly signature: ArrayBuffer;\n    /**\n     * The **`userHandle`** read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object providing an opaque identifier for the given user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/userHandle)\n     */\n    readonly userHandle: ArrayBuffer | null;\n}\n\ndeclare var AuthenticatorAssertionResponse: {\n    prototype: AuthenticatorAssertionResponse;\n    new(): AuthenticatorAssertionResponse;\n};\n\n/**\n * The **`AuthenticatorAttestationResponse`** interface of the Web Authentication API is the result of a WebAuthn credential registration.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse)\n */\ninterface AuthenticatorAttestationResponse extends AuthenticatorResponse {\n    /**\n     * The **`attestationObject`** property of the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject)\n     */\n    readonly attestationObject: ArrayBuffer;\n    /**\n     * The **`getAuthenticatorData()`** method of the AuthenticatorAttestationResponse interface returns an ArrayBuffer containing the authenticator data contained within the AuthenticatorAttestationResponse.attestationObject property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getAuthenticatorData)\n     */\n    getAuthenticatorData(): ArrayBuffer;\n    /**\n     * The **`getPublicKey()`** method of the AuthenticatorAttestationResponse interface returns an ArrayBuffer containing the DER `SubjectPublicKeyInfo` of the new credential (see Subject Public Key Info), or `null` if this is not available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKey)\n     */\n    getPublicKey(): ArrayBuffer | null;\n    /**\n     * The **`getPublicKeyAlgorithm()`** method of the AuthenticatorAttestationResponse interface returns a number that is equal to a COSE Algorithm Identifier, representing the cryptographic algorithm used for the new credential.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKeyAlgorithm)\n     */\n    getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;\n    /**\n     * The **`getTransports()`** method of the AuthenticatorAttestationResponse interface returns an array of strings describing the different transports which may be used by the authenticator.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getTransports)\n     */\n    getTransports(): string[];\n}\n\ndeclare var AuthenticatorAttestationResponse: {\n    prototype: AuthenticatorAttestationResponse;\n    new(): AuthenticatorAttestationResponse;\n};\n\n/**\n * The **`AuthenticatorResponse`** interface of the Web Authentication API is the base interface for interfaces that provide a cryptographic root of trust for a key pair.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorResponse)\n */\ninterface AuthenticatorResponse {\n    /**\n     * The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an An ArrayBuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorResponse/clientDataJSON)\n     */\n    readonly clientDataJSON: ArrayBuffer;\n}\n\ndeclare var AuthenticatorResponse: {\n    prototype: AuthenticatorResponse;\n    new(): AuthenticatorResponse;\n};\n\n/**\n * The **`BarProp`** interface of the Document Object Model represents the web browser user interface elements that are exposed to scripts in web pages.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BarProp)\n */\ninterface BarProp {\n    /**\n     * The **`visible`** read-only property of the BarProp interface returns `true` if the user interface element it represents is visible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BarProp/visible)\n     */\n    readonly visible: boolean;\n}\n\ndeclare var BarProp: {\n    prototype: BarProp;\n    new(): BarProp;\n};\n\ninterface BaseAudioContextEventMap {\n    \"statechange\": Event;\n}\n\n/**\n * The `BaseAudioContext` interface of the Web Audio API acts as a base definition for online and offline audio-processing graphs, as represented by AudioContext and OfflineAudioContext respectively.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext)\n */\ninterface BaseAudioContext extends EventTarget {\n    /**\n     * The `audioWorklet` read-only property of the processing.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/audioWorklet)\n     */\n    readonly audioWorklet: AudioWorklet;\n    /**\n     * The `currentTime` read-only property of the BaseAudioContext interface returns a double representing an ever-increasing hardware timestamp in seconds that can be used for scheduling audio playback, visualizing timelines, etc.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/currentTime)\n     */\n    readonly currentTime: number;\n    /**\n     * The `destination` property of the BaseAudioContext interface returns an AudioDestinationNode representing the final destination of all audio in the context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/destination)\n     */\n    readonly destination: AudioDestinationNode;\n    /**\n     * The `listener` property of the BaseAudioContext interface returns an AudioListener object that can then be used for implementing 3D audio spatialization.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/listener)\n     */\n    readonly listener: AudioListener;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/statechange_event) */\n    onstatechange: ((this: BaseAudioContext, ev: Event) => any) | null;\n    /**\n     * The `sampleRate` property of the BaseAudioContext interface returns a floating point number representing the sample rate, in samples per second, used by all nodes in this audio context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/sampleRate)\n     */\n    readonly sampleRate: number;\n    /**\n     * The `state` read-only property of the BaseAudioContext interface returns the current state of the `AudioContext`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/state)\n     */\n    readonly state: AudioContextState;\n    /**\n     * The `createAnalyser()` method of the can be used to expose audio time and frequency data and create data visualizations.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createAnalyser)\n     */\n    createAnalyser(): AnalyserNode;\n    /**\n     * The `createBiquadFilter()` method of the BaseAudioContext interface creates a BiquadFilterNode, which represents a second order filter configurable as several different common filter types.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createBiquadFilter)\n     */\n    createBiquadFilter(): BiquadFilterNode;\n    /**\n     * The `createBuffer()` method of the BaseAudioContext Interface is used to create a new, empty AudioBuffer object, which can then be populated by data, and played via an AudioBufferSourceNode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createBuffer)\n     */\n    createBuffer(numberOfChannels: number, length: number, sampleRate: number): AudioBuffer;\n    /**\n     * The `createBufferSource()` method of the BaseAudioContext Interface is used to create a new AudioBufferSourceNode, which can be used to play audio data contained within an AudioBuffer object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createBufferSource)\n     */\n    createBufferSource(): AudioBufferSourceNode;\n    /**\n     * The `createChannelMerger()` method of the BaseAudioContext interface creates a ChannelMergerNode, which combines channels from multiple audio streams into a single audio stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createChannelMerger)\n     */\n    createChannelMerger(numberOfInputs?: number): ChannelMergerNode;\n    /**\n     * The `createChannelSplitter()` method of the BaseAudioContext Interface is used to create a ChannelSplitterNode, which is used to access the individual channels of an audio stream and process them separately.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createChannelSplitter)\n     */\n    createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;\n    /**\n     * The **`createConstantSource()`** property of the BaseAudioContext interface creates a outputs a monaural (one-channel) sound signal whose samples all have the same value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createConstantSource)\n     */\n    createConstantSource(): ConstantSourceNode;\n    /**\n     * The `createConvolver()` method of the BaseAudioContext interface creates a ConvolverNode, which is commonly used to apply reverb effects to your audio.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createConvolver)\n     */\n    createConvolver(): ConvolverNode;\n    /**\n     * The `createDelay()` method of the which is used to delay the incoming audio signal by a certain amount of time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createDelay)\n     */\n    createDelay(maxDelayTime?: number): DelayNode;\n    /**\n     * The `createDynamicsCompressor()` method of the BaseAudioContext Interface is used to create a DynamicsCompressorNode, which can be used to apply compression to an audio signal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createDynamicsCompressor)\n     */\n    createDynamicsCompressor(): DynamicsCompressorNode;\n    /**\n     * The `createGain()` method of the BaseAudioContext interface creates a GainNode, which can be used to control the overall gain (or volume) of the audio graph.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createGain)\n     */\n    createGain(): GainNode;\n    /**\n     * The **`createIIRFilter()`** method of the BaseAudioContext interface creates an IIRFilterNode, which represents a general **infinite impulse response** (IIR) filter which can be configured to serve as various types of filter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createIIRFilter)\n     */\n    createIIRFilter(feedforward: number[], feedback: number[]): IIRFilterNode;\n    /**\n     * The `createOscillator()` method of the BaseAudioContext interface creates an OscillatorNode, a source representing a periodic waveform.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createOscillator)\n     */\n    createOscillator(): OscillatorNode;\n    /**\n     * The `createPanner()` method of the BaseAudioContext Interface is used to create a new PannerNode, which is used to spatialize an incoming audio stream in 3D space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createPanner)\n     */\n    createPanner(): PannerNode;\n    /**\n     * The `createPeriodicWave()` method of the BaseAudioContext interface is used to create a PeriodicWave.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createPeriodicWave)\n     */\n    createPeriodicWave(real: number[] | Float32Array, imag: number[] | Float32Array, constraints?: PeriodicWaveConstraints): PeriodicWave;\n    /**\n     * The `createScriptProcessor()` method of the BaseAudioContext interface creates a ScriptProcessorNode used for direct audio processing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createScriptProcessor)\n     */\n    createScriptProcessor(bufferSize?: number, numberOfInputChannels?: number, numberOfOutputChannels?: number): ScriptProcessorNode;\n    /**\n     * The `createStereoPanner()` method of the BaseAudioContext interface creates a StereoPannerNode, which can be used to apply stereo panning to an audio source.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createStereoPanner)\n     */\n    createStereoPanner(): StereoPannerNode;\n    /**\n     * The `createWaveShaper()` method of the BaseAudioContext interface creates a WaveShaperNode, which represents a non-linear distortion.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createWaveShaper)\n     */\n    createWaveShaper(): WaveShaperNode;\n    /**\n     * The `decodeAudioData()` method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an rate, then passed to a callback or promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/decodeAudioData)\n     */\n    decodeAudioData(audioData: ArrayBuffer, successCallback?: DecodeSuccessCallback | null, errorCallback?: DecodeErrorCallback | null): Promise<AudioBuffer>;\n    addEventListener<K extends keyof BaseAudioContextEventMap>(type: K, listener: (this: BaseAudioContext, ev: BaseAudioContextEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof BaseAudioContextEventMap>(type: K, listener: (this: BaseAudioContext, ev: BaseAudioContextEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var BaseAudioContext: {\n    prototype: BaseAudioContext;\n    new(): BaseAudioContext;\n};\n\n/**\n * The **`BeforeUnloadEvent`** interface represents the event object for the Window/beforeunload_event event, which is fired when the current window, contained document, and associated resources are about to be unloaded.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)\n */\ninterface BeforeUnloadEvent extends Event {\n    /**\n     * The **`returnValue`** property of the `returnValue` is initialized to an empty string (`''`) value.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)\n     */\n    returnValue: any;\n}\n\ndeclare var BeforeUnloadEvent: {\n    prototype: BeforeUnloadEvent;\n    new(): BeforeUnloadEvent;\n};\n\n/**\n * The `BiquadFilterNode` interface represents a simple low-order filter, and is created using the BaseAudioContext/createBiquadFilter method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode)\n */\ninterface BiquadFilterNode extends AudioNode {\n    /**\n     * The `Q` property of the BiquadFilterNode interface is an a-rate AudioParam, a double representing a Q factor, or _quality factor_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/Q)\n     */\n    readonly Q: AudioParam;\n    /**\n     * The `detune` property of the BiquadFilterNode interface is an a-rate AudioParam representing detuning of the frequency in cents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/detune)\n     */\n    readonly detune: AudioParam;\n    /**\n     * The `frequency` property of the BiquadFilterNode interface is an a-rate AudioParam — a double representing a frequency in the current filtering algorithm measured in hertz (Hz).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/frequency)\n     */\n    readonly frequency: AudioParam;\n    /**\n     * The `gain` property of the BiquadFilterNode interface is an a-rate AudioParam — a double representing the gain used in the current filtering algorithm.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/gain)\n     */\n    readonly gain: AudioParam;\n    /**\n     * The `type` property of the BiquadFilterNode interface is a string (enum) value defining the kind of filtering algorithm the node is implementing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/type)\n     */\n    type: BiquadFilterType;\n    /**\n     * The `getFrequencyResponse()` method of the BiquadFilterNode interface takes the current filtering algorithm's settings and calculates the frequency response for frequencies specified in a specified array of frequencies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BiquadFilterNode/getFrequencyResponse)\n     */\n    getFrequencyResponse(frequencyHz: Float32Array<ArrayBuffer>, magResponse: Float32Array<ArrayBuffer>, phaseResponse: Float32Array<ArrayBuffer>): void;\n}\n\ndeclare var BiquadFilterNode: {\n    prototype: BiquadFilterNode;\n    new(context: BaseAudioContext, options?: BiquadFilterOptions): BiquadFilterNode;\n};\n\n/**\n * The **`Blob`** interface represents a blob, which is a file-like object of immutable, raw data; they can be read as text or binary data, or converted into a ReadableStream so its methods can be used for processing the data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob)\n */\ninterface Blob {\n    /**\n     * The **`size`** read-only property of the Blob interface returns the size of the Blob or File in bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size)\n     */\n    readonly size: number;\n    /**\n     * The **`type`** read-only property of the Blob interface returns the MIME type of the file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type)\n     */\n    readonly type: string;\n    /**\n     * The **`arrayBuffer()`** method of the Blob interface returns a Promise that resolves with the contents of the blob as binary data contained in an ArrayBuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer)\n     */\n    arrayBuffer(): Promise<ArrayBuffer>;\n    /**\n     * The **`bytes()`** method of the Blob interface returns a Promise that resolves with a Uint8Array containing the contents of the blob as an array of bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/bytes)\n     */\n    bytes(): Promise<Uint8Array<ArrayBuffer>>;\n    /**\n     * The **`slice()`** method of the Blob interface creates and returns a new `Blob` object which contains data from a subset of the blob on which it's called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice)\n     */\n    slice(start?: number, end?: number, contentType?: string): Blob;\n    /**\n     * The **`stream()`** method of the Blob interface returns a ReadableStream which upon reading returns the data contained within the `Blob`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/stream)\n     */\n    stream(): ReadableStream<Uint8Array<ArrayBuffer>>;\n    /**\n     * The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text)\n     */\n    text(): Promise<string>;\n}\n\ndeclare var Blob: {\n    prototype: Blob;\n    new(blobParts?: BlobPart[], options?: BlobPropertyBag): Blob;\n};\n\n/**\n * The **`BlobEvent`** interface of the MediaStream Recording API represents events associated with a Blob.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BlobEvent)\n */\ninterface BlobEvent extends Event {\n    /**\n     * The **`data`** read-only property of the BlobEvent interface represents a Blob associated with the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BlobEvent/data)\n     */\n    readonly data: Blob;\n    /**\n     * The **`timecode`** read-only property of the BlobEvent interface indicates the difference between the timestamp of the first chunk of data, and the timestamp of the first chunk in the first `BlobEvent` produced by this recorder.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BlobEvent/timecode)\n     */\n    readonly timecode: DOMHighResTimeStamp;\n}\n\ndeclare var BlobEvent: {\n    prototype: BlobEvent;\n    new(type: string, eventInitDict: BlobEventInit): BlobEvent;\n};\n\ninterface Body {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */\n    readonly body: ReadableStream<Uint8Array<ArrayBuffer>> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */\n    readonly bodyUsed: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */\n    arrayBuffer(): Promise<ArrayBuffer>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/blob) */\n    blob(): Promise<Blob>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes) */\n    bytes(): Promise<Uint8Array<ArrayBuffer>>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/formData) */\n    formData(): Promise<FormData>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/json) */\n    json(): Promise<any>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */\n    text(): Promise<string>;\n}\n\ninterface BroadcastChannelEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`BroadcastChannel`** interface represents a named channel that any browsing context of a given origin can subscribe to.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel)\n */\ninterface BroadcastChannel extends EventTarget {\n    /**\n     * The **`name`** read-only property of the BroadcastChannel interface returns a string, which uniquely identifies the given channel with its name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/message_event) */\n    onmessage: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/messageerror_event) */\n    onmessageerror: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;\n    /**\n     * The **`close()`** method of the BroadcastChannel interface terminates the connection to the underlying channel, allowing the object to be garbage collected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/close)\n     */\n    close(): void;\n    /**\n     * The **`postMessage()`** method of the BroadcastChannel interface sends a message, which can be of any kind of Object, to each listener in any browsing context with the same origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/postMessage)\n     */\n    postMessage(message: any): void;\n    addEventListener<K extends keyof BroadcastChannelEventMap>(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof BroadcastChannelEventMap>(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var BroadcastChannel: {\n    prototype: BroadcastChannel;\n    new(name: string): BroadcastChannel;\n};\n\n/**\n * The **`ByteLengthQueuingStrategy`** interface of the Streams API provides a built-in byte length queuing strategy that can be used when constructing streams.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy)\n */\ninterface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {\n    /**\n     * The read-only **`ByteLengthQueuingStrategy.highWaterMark`** property returns the total number of bytes that can be contained in the internal queue before backpressure is applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark)\n     */\n    readonly highWaterMark: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/size) */\n    readonly size: QueuingStrategySize<ArrayBufferView>;\n}\n\ndeclare var ByteLengthQueuingStrategy: {\n    prototype: ByteLengthQueuingStrategy;\n    new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;\n};\n\n/**\n * The **`CDATASection`** interface represents a CDATA section that can be used within XML to include extended portions of unescaped text.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CDATASection)\n */\ninterface CDATASection extends Text {\n}\n\ndeclare var CDATASection: {\n    prototype: CDATASection;\n    new(): CDATASection;\n};\n\n/**\n * The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)\n */\ninterface CSPViolationReportBody extends ReportBody {\n    /**\n     * The **`blockedURL`** read-only property of the CSPViolationReportBody interface is a string value that represents the resource that was blocked because it violates a Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL)\n     */\n    readonly blockedURL: string | null;\n    /**\n     * The **`columnNumber`** read-only property of the CSPViolationReportBody interface indicates the column number in the source file that triggered the Content Security Policy (CSP) violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber)\n     */\n    readonly columnNumber: number | null;\n    /**\n     * The **`disposition`** read-only property of the CSPViolationReportBody interface indicates whether the user agent is configured to enforce Content Security Policy (CSP) violations or only report them.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition)\n     */\n    readonly disposition: SecurityPolicyViolationEventDisposition;\n    /**\n     * The **`documentURL`** read-only property of the CSPViolationReportBody interface is a string that represents the URL of the document or worker that violated the Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL)\n     */\n    readonly documentURL: string;\n    /**\n     * The **`effectiveDirective`** read-only property of the CSPViolationReportBody interface is a string that represents the effective Content Security Policy (CSP) directive that was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective)\n     */\n    readonly effectiveDirective: string;\n    /**\n     * The **`lineNumber`** read-only property of the CSPViolationReportBody interface indicates the line number in the source file that triggered the Content Security Policy (CSP) violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber)\n     */\n    readonly lineNumber: number | null;\n    /**\n     * The **`originalPolicy`** read-only property of the CSPViolationReportBody interface is a string that represents the Content Security Policy (CSP) whose enforcement uncovered the violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy)\n     */\n    readonly originalPolicy: string;\n    /**\n     * The **`referrer`** read-only property of the CSPViolationReportBody interface is a string that represents the URL of the referring page of the resource who's Content Security Policy (CSP) was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer)\n     */\n    readonly referrer: string | null;\n    /**\n     * The **`sample`** read-only property of the CSPViolationReportBody interface is a string that contains a part of the resource that violated the Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample)\n     */\n    readonly sample: string | null;\n    /**\n     * The **`sourceFile`** read-only property of the CSPViolationReportBody interface indicates the URL of the source file that violated the Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile)\n     */\n    readonly sourceFile: string | null;\n    /**\n     * The **`statusCode`** read-only property of the CSPViolationReportBody interface is a number representing the HTTP status code of the response to the request that triggered a Content Security Policy (CSP) violation (when loading a window or worker).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode)\n     */\n    readonly statusCode: number;\n    /**\n     * The **`toJSON()`** method of the CSPViolationReportBody interface is a _serializer_, which returns a JSON representation of the `CSPViolationReportBody` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var CSPViolationReportBody: {\n    prototype: CSPViolationReportBody;\n    new(): CSPViolationReportBody;\n};\n\n/**\n * The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSAnimation)\n */\ninterface CSSAnimation extends Animation {\n    /**\n     * The **`animationName`** property of the specifies one or more keyframe at-rules which describe the animation applied to the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSAnimation/animationName)\n     */\n    readonly animationName: string;\n    addEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: CSSAnimation, ev: AnimationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: CSSAnimation, ev: AnimationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var CSSAnimation: {\n    prototype: CSSAnimation;\n    new(): CSSAnimation;\n};\n\n/**\n * An object implementing the **`CSSConditionRule`** interface represents a single condition CSS at-rule, which consists of a condition and a statement block.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSConditionRule)\n */\ninterface CSSConditionRule extends CSSGroupingRule {\n    /**\n     * The read-only **`conditionText`** property of the CSSConditionRule interface returns or sets the text of the CSS rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSConditionRule/conditionText)\n     */\n    readonly conditionText: string;\n}\n\ndeclare var CSSConditionRule: {\n    prototype: CSSConditionRule;\n    new(): CSSConditionRule;\n};\n\n/**\n * The **`CSSContainerRule`** interface represents a single CSS @container rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule)\n */\ninterface CSSContainerRule extends CSSConditionRule {\n    /**\n     * The read-only **`containerName`** property of the CSSContainerRule interface represents the container name of the associated CSS @container at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule/containerName)\n     */\n    readonly containerName: string;\n    /**\n     * The read-only **`containerQuery`** property of the CSSContainerRule interface returns a string representing the container conditions that are evaluated when the container changes size in order to determine if the styles in the associated @container are applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule/containerQuery)\n     */\n    readonly containerQuery: string;\n}\n\ndeclare var CSSContainerRule: {\n    prototype: CSSContainerRule;\n    new(): CSSContainerRule;\n};\n\n/**\n * The **`CSSCounterStyleRule`** interface represents an @counter-style at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule)\n */\ninterface CSSCounterStyleRule extends CSSRule {\n    /**\n     * The **`additiveSymbols`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/additive-symbols descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/additiveSymbols)\n     */\n    additiveSymbols: string;\n    /**\n     * The **`fallback`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/fallback descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/fallback)\n     */\n    fallback: string;\n    /**\n     * The **`name`** property of the CSSCounterStyleRule interface gets and sets the &lt;custom-ident&gt; defined as the `name` for the associated rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/name)\n     */\n    name: string;\n    /**\n     * The **`negative`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/negative descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/negative)\n     */\n    negative: string;\n    /**\n     * The **`pad`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/pad descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/pad)\n     */\n    pad: string;\n    /**\n     * The **`prefix`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/prefix descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/prefix)\n     */\n    prefix: string;\n    /**\n     * The **`range`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/range descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/range)\n     */\n    range: string;\n    /**\n     * The **`speakAs`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/speak-as descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/speakAs)\n     */\n    speakAs: string;\n    /**\n     * The **`suffix`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/suffix descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/suffix)\n     */\n    suffix: string;\n    /**\n     * The **`symbols`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/symbols descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/symbols)\n     */\n    symbols: string;\n    /**\n     * The **`system`** property of the CSSCounterStyleRule interface gets and sets the value of the @counter-style/system descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSCounterStyleRule/system)\n     */\n    system: string;\n}\n\ndeclare var CSSCounterStyleRule: {\n    prototype: CSSCounterStyleRule;\n    new(): CSSCounterStyleRule;\n};\n\n/**\n * The **`CSSFontFaceRule`** interface represents an @font-face at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule)\n */\ninterface CSSFontFaceRule extends CSSRule {\n    /**\n     * The read-only **`style`** property of the CSSFontFaceRule interface returns the style information from the @font-face at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)\n     */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n}\n\ndeclare var CSSFontFaceRule: {\n    prototype: CSSFontFaceRule;\n    new(): CSSFontFaceRule;\n};\n\n/**\n * The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)\n */\ninterface CSSFontFeatureValuesRule extends CSSRule {\n    /**\n     * The **`fontFamily`** property of the CSSConditionRule interface represents the name of the font family it applies to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily)\n     */\n    fontFamily: string;\n}\n\ndeclare var CSSFontFeatureValuesRule: {\n    prototype: CSSFontFeatureValuesRule;\n    new(): CSSFontFeatureValuesRule;\n};\n\n/**\n * The **`CSSFontPaletteValuesRule`** interface represents an @font-palette-values at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontPaletteValuesRule)\n */\ninterface CSSFontPaletteValuesRule extends CSSRule {\n    /**\n     * The read-only **`basePalette`** property of the CSSFontPaletteValuesRule interface indicates the base palette associated with the rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontPaletteValuesRule/basePalette)\n     */\n    readonly basePalette: string;\n    /**\n     * The read-only **`fontFamily`** property of the CSSFontPaletteValuesRule interface lists the font families the rule can be applied to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontPaletteValuesRule/fontFamily)\n     */\n    readonly fontFamily: string;\n    /**\n     * The read-only **`name`** property of the CSSFontPaletteValuesRule interface represents the name identifying the associated @font-palette-values at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontPaletteValuesRule/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`overrideColors`** property of the CSSFontPaletteValuesRule interface is a string containing a list of color index and color pair that are to be used instead.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontPaletteValuesRule/overrideColors)\n     */\n    readonly overrideColors: string;\n}\n\ndeclare var CSSFontPaletteValuesRule: {\n    prototype: CSSFontPaletteValuesRule;\n    new(): CSSFontPaletteValuesRule;\n};\n\n/**\n * The **`CSSGroupingRule`** interface of the CSS Object Model represents any CSS at-rule that contains other rules nested within it.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule)\n */\ninterface CSSGroupingRule extends CSSRule {\n    /**\n     * The **`cssRules`** property of the a collection of CSSRule objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/cssRules)\n     */\n    readonly cssRules: CSSRuleList;\n    /**\n     * The **`deleteRule()`** method of the rules.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/deleteRule)\n     */\n    deleteRule(index: number): void;\n    /**\n     * The **`insertRule()`** method of the ```js-nolint insertRule(rule) insertRule(rule, index) ``` - `rule` - : A string - `index` [MISSING: optional_inline] - : An optional index at which to insert the rule; defaults to 0.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/insertRule)\n     */\n    insertRule(rule: string, index?: number): number;\n}\n\ndeclare var CSSGroupingRule: {\n    prototype: CSSGroupingRule;\n    new(): CSSGroupingRule;\n};\n\n/**\n * The **`CSSImageValue`** interface of the CSS Typed Object Model API represents values for properties that take an image, for example background-image, list-style-image, or border-image-source.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImageValue)\n */\ninterface CSSImageValue extends CSSStyleValue {\n}\n\ndeclare var CSSImageValue: {\n    prototype: CSSImageValue;\n    new(): CSSImageValue;\n};\n\n/**\n * The **`CSSImportRule`** interface represents an @import at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule)\n */\ninterface CSSImportRule extends CSSRule {\n    /**\n     * The read-only **`href`** property of the The resolved URL will be the `href` attribute of the associated stylesheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/href)\n     */\n    readonly href: string;\n    /**\n     * The read-only **`layerName`** property of the CSSImportRule interface returns the name of the cascade layer created by the @import at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/layerName)\n     */\n    readonly layerName: string | null;\n    /**\n     * The read-only **`media`** property of the containing the value of the `media` attribute of the associated stylesheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)\n     */\n    get media(): MediaList;\n    set media(mediaText: string);\n    /**\n     * The read-only **`styleSheet`** property of the in the form of a CSSStyleSheet object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet)\n     */\n    readonly styleSheet: CSSStyleSheet | null;\n    /**\n     * The read-only **`supportsText`** property of the CSSImportRule interface returns the supports condition specified by the @import at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText)\n     */\n    readonly supportsText: string | null;\n}\n\ndeclare var CSSImportRule: {\n    prototype: CSSImportRule;\n    new(): CSSImportRule;\n};\n\n/**\n * The **`CSSKeyframeRule`** interface describes an object representing a set of styles for a given keyframe.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule)\n */\ninterface CSSKeyframeRule extends CSSRule {\n    /**\n     * The **`keyText`** property of the CSSKeyframeRule interface represents the keyframe selector as a comma-separated list of percentage values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule/keyText)\n     */\n    keyText: string;\n    /**\n     * The read-only **`CSSKeyframeRule.style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSKeyframeRule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule/style)\n     */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n}\n\ndeclare var CSSKeyframeRule: {\n    prototype: CSSKeyframeRule;\n    new(): CSSKeyframeRule;\n};\n\n/**\n * The **`CSSKeyframesRule`** interface describes an object representing a complete set of keyframes for a CSS animation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule)\n */\ninterface CSSKeyframesRule extends CSSRule {\n    /**\n     * The read-only **`cssRules`** property of the CSSKeyframeRule interface returns a CSSRuleList containing the rules in the keyframes at-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/cssRules)\n     */\n    readonly cssRules: CSSRuleList;\n    /**\n     * The read-only **`length`** property of the CSSKeyframeRule interface returns the number of CSSKeyframeRule objects in its list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/length)\n     */\n    readonly length: number;\n    /**\n     * The **`name`** property of the CSSKeyframeRule interface gets and sets the name of the animation as used by the animation-name property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/name)\n     */\n    name: string;\n    /**\n     * The **`appendRule()`** method of the CSSKeyframeRule interface appends a CSSKeyFrameRule to the end of the rules.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/appendRule)\n     */\n    appendRule(rule: string): void;\n    /**\n     * The **`deleteRule()`** method of the CSSKeyframeRule interface deletes the CSSKeyFrameRule that matches the specified keyframe selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/deleteRule)\n     */\n    deleteRule(select: string): void;\n    /**\n     * The **`findRule()`** method of the CSSKeyframeRule interface finds the CSSKeyFrameRule that matches the specified keyframe selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/findRule)\n     */\n    findRule(select: string): CSSKeyframeRule | null;\n    [index: number]: CSSKeyframeRule;\n}\n\ndeclare var CSSKeyframesRule: {\n    prototype: CSSKeyframesRule;\n    new(): CSSKeyframesRule;\n};\n\n/**\n * The **`CSSKeywordValue`** interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue)\n */\ninterface CSSKeywordValue extends CSSStyleValue {\n    /**\n     * The **`value`** property of the `CSSKeywordValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)\n     */\n    value: string;\n}\n\ndeclare var CSSKeywordValue: {\n    prototype: CSSKeywordValue;\n    new(value: string): CSSKeywordValue;\n};\n\n/**\n * The **`CSSLayerBlockRule`** represents a @layer block rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerBlockRule)\n */\ninterface CSSLayerBlockRule extends CSSGroupingRule {\n    /**\n     * The read-only **`name`** property of the CSSLayerBlockRule interface represents the name of the associated cascade layer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerBlockRule/name)\n     */\n    readonly name: string;\n}\n\ndeclare var CSSLayerBlockRule: {\n    prototype: CSSLayerBlockRule;\n    new(): CSSLayerBlockRule;\n};\n\n/**\n * The **`CSSLayerStatementRule`** represents a @layer statement rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerStatementRule)\n */\ninterface CSSLayerStatementRule extends CSSRule {\n    /**\n     * The read-only **`nameList`** property of the CSSLayerStatementRule interface return the list of associated cascade layer names.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerStatementRule/nameList)\n     */\n    readonly nameList: ReadonlyArray<string>;\n}\n\ndeclare var CSSLayerStatementRule: {\n    prototype: CSSLayerStatementRule;\n    new(): CSSLayerStatementRule;\n};\n\ninterface CSSMathClamp extends CSSMathValue {\n    readonly lower: CSSNumericValue;\n    readonly upper: CSSNumericValue;\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathClamp: {\n    prototype: CSSMathClamp;\n    new(lower: CSSNumberish, value: CSSNumberish, upper: CSSNumberish): CSSMathClamp;\n};\n\n/**\n * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)\n */\ninterface CSSMathInvert extends CSSMathValue {\n    /**\n     * The CSSMathInvert.value read-only property of the A CSSNumericValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)\n     */\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathInvert: {\n    prototype: CSSMathInvert;\n    new(arg: CSSNumberish): CSSMathInvert;\n};\n\n/**\n * The **`CSSMathMax`** interface of the CSS Typed Object Model API represents the CSS max function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax)\n */\ninterface CSSMathMax extends CSSMathValue {\n    /**\n     * The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathMax: {\n    prototype: CSSMathMax;\n    new(...args: CSSNumberish[]): CSSMathMax;\n};\n\n/**\n * The **`CSSMathMin`** interface of the CSS Typed Object Model API represents the CSS min function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin)\n */\ninterface CSSMathMin extends CSSMathValue {\n    /**\n     * The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathMin: {\n    prototype: CSSMathMin;\n    new(...args: CSSNumberish[]): CSSMathMin;\n};\n\n/**\n * The **`CSSMathNegate`** interface of the CSS Typed Object Model API negates the value passed into it.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate)\n */\ninterface CSSMathNegate extends CSSMathValue {\n    /**\n     * The CSSMathNegate.value read-only property of the A CSSNumericValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)\n     */\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathNegate: {\n    prototype: CSSMathNegate;\n    new(arg: CSSNumberish): CSSMathNegate;\n};\n\n/**\n * The **`CSSMathProduct`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct)\n */\ninterface CSSMathProduct extends CSSMathValue {\n    /**\n     * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a A CSSNumericArray.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathProduct: {\n    prototype: CSSMathProduct;\n    new(...args: CSSNumberish[]): CSSMathProduct;\n};\n\n/**\n * The **`CSSMathSum`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum)\n */\ninterface CSSMathSum extends CSSMathValue {\n    /**\n     * The **`CSSMathSum.values`** read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathSum: {\n    prototype: CSSMathSum;\n    new(...args: CSSNumberish[]): CSSMathSum;\n};\n\n/**\n * The **`CSSMathValue`** interface of the CSS Typed Object Model API a base class for classes representing complex numeric values.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue)\n */\ninterface CSSMathValue extends CSSNumericValue {\n    /**\n     * The **`CSSMathValue.operator`** read-only property of the CSSMathValue interface indicates the operator that the current subtype represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue/operator)\n     */\n    readonly operator: CSSMathOperator;\n}\n\ndeclare var CSSMathValue: {\n    prototype: CSSMathValue;\n    new(): CSSMathValue;\n};\n\n/**\n * The **`CSSMatrixComponent`** interface of the CSS Typed Object Model API represents the matrix() and matrix3d() values of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent)\n */\ninterface CSSMatrixComponent extends CSSTransformComponent {\n    /**\n     * The **`matrix`** property of the See the matrix() and matrix3d() pages for examples.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)\n     */\n    matrix: DOMMatrix;\n}\n\ndeclare var CSSMatrixComponent: {\n    prototype: CSSMatrixComponent;\n    new(matrix: DOMMatrixReadOnly, options?: CSSMatrixComponentOptions): CSSMatrixComponent;\n};\n\n/**\n * The **`CSSMediaRule`** interface represents a single CSS @media rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule)\n */\ninterface CSSMediaRule extends CSSConditionRule {\n    /**\n     * The read-only **`media`** property of the destination medium for style information.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)\n     */\n    get media(): MediaList;\n    set media(mediaText: string);\n}\n\ndeclare var CSSMediaRule: {\n    prototype: CSSMediaRule;\n    new(): CSSMediaRule;\n};\n\n/**\n * The **`CSSNamespaceRule`** interface describes an object representing a single CSS @namespace at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNamespaceRule)\n */\ninterface CSSNamespaceRule extends CSSRule {\n    /**\n     * The read-only **`namespaceURI`** property of the CSSNamespaceRule returns a string containing the text of the URI of the given namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNamespaceRule/namespaceURI)\n     */\n    readonly namespaceURI: string;\n    /**\n     * The read-only **`prefix`** property of the CSSNamespaceRule returns a string with the name of the prefix associated to this namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNamespaceRule/prefix)\n     */\n    readonly prefix: string;\n}\n\ndeclare var CSSNamespaceRule: {\n    prototype: CSSNamespaceRule;\n    new(): CSSNamespaceRule;\n};\n\n/**\n * The **`CSSNestedDeclarations`** interface of the CSS Rule API is used to group nested CSSRules.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNestedDeclarations)\n */\ninterface CSSNestedDeclarations extends CSSRule {\n    /**\n     * The read-only **`style`** property of the CSSNestedDeclarations interface represents the styles associated with the nested rules.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNestedDeclarations/style)\n     */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n}\n\ndeclare var CSSNestedDeclarations: {\n    prototype: CSSNestedDeclarations;\n    new(): CSSNestedDeclarations;\n};\n\n/**\n * The **`CSSNumericArray`** interface of the CSS Typed Object Model API contains a list of CSSNumericValue objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray)\n */\ninterface CSSNumericArray {\n    /**\n     * The read-only **`length`** property of the An integer representing the number of CSSNumericValue objects in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)\n     */\n    readonly length: number;\n    forEach(callbackfn: (value: CSSNumericValue, key: number, parent: CSSNumericArray) => void, thisArg?: any): void;\n    [index: number]: CSSNumericValue;\n}\n\ndeclare var CSSNumericArray: {\n    prototype: CSSNumericArray;\n    new(): CSSNumericArray;\n};\n\n/**\n * The **`CSSNumericValue`** interface of the CSS Typed Object Model API represents operations that all numeric values can perform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue)\n */\ninterface CSSNumericValue extends CSSStyleValue {\n    /**\n     * The **`add()`** method of the `CSSNumericValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)\n     */\n    add(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`div()`** method of the supplied value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)\n     */\n    div(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`equals()`** method of the value are strictly equal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)\n     */\n    equals(...value: CSSNumberish[]): boolean;\n    /**\n     * The **`max()`** method of the passed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)\n     */\n    max(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`min()`** method of the values passed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)\n     */\n    min(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`mul()`** method of the the supplied value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)\n     */\n    mul(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`sub()`** method of the `CSSNumericValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)\n     */\n    sub(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`to()`** method of the another.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)\n     */\n    to(unit: string): CSSUnitValue;\n    /**\n     * The **`toSum()`** method of the ```js-nolint toSum(units) ``` - `units` - : The units to convert to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)\n     */\n    toSum(...units: string[]): CSSMathSum;\n    /**\n     * The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)\n     */\n    type(): CSSNumericType;\n}\n\ndeclare var CSSNumericValue: {\n    prototype: CSSNumericValue;\n    new(): CSSNumericValue;\n    /**\n     * The **`parse()`** static method of the members are value and the units.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/parse_static)\n     */\n    parse(cssText: string): CSSNumericValue;\n};\n\n/**\n * **`CSSPageRule`** represents a single CSS @page rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule)\n */\ninterface CSSPageRule extends CSSGroupingRule {\n    /**\n     * The **`selectorText`** property of the CSSPageRule interface gets and sets the selectors associated with the `CSSPageRule`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/selectorText)\n     */\n    selectorText: string;\n    /**\n     * The **`style`** read-only property of the CSSPageRule interface returns a CSSPageDescriptors object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style)\n     */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n}\n\ndeclare var CSSPageRule: {\n    prototype: CSSPageRule;\n    new(): CSSPageRule;\n};\n\n/**\n * The **`CSSPerspective`** interface of the CSS Typed Object Model API represents the perspective() value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective)\n */\ninterface CSSPerspective extends CSSTransformComponent {\n    /**\n     * The **`length`** property of the It is used to apply a perspective transform to the element and its content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)\n     */\n    length: CSSPerspectiveValue;\n}\n\ndeclare var CSSPerspective: {\n    prototype: CSSPerspective;\n    new(length: CSSPerspectiveValue): CSSPerspective;\n};\n\n/**\n * The **`CSSPropertyRule`** interface of the CSS Properties and Values API represents a single CSS @property rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule)\n */\ninterface CSSPropertyRule extends CSSRule {\n    /**\n     * The read-only **`inherits`** property of the CSSPropertyRule interface returns the inherit flag of the custom property registration represented by the @property rule, a boolean describing whether or not the property inherits by default.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/inherits)\n     */\n    readonly inherits: boolean;\n    /**\n     * The read-only **`initialValue`** nullable property of the CSSPropertyRule interface returns the initial value of the custom property registration represented by the @property rule, controlling the property's initial value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialValue)\n     */\n    readonly initialValue: string | null;\n    /**\n     * The read-only **`name`** property of the CSSPropertyRule interface represents the property name, this being the serialization of the name given to the custom property in the @property rule's prelude.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`syntax`** property of the CSSPropertyRule interface returns the literal syntax of the custom property registration represented by the @property rule, controlling how the property's value is parsed at computed-value time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/syntax)\n     */\n    readonly syntax: string;\n}\n\ndeclare var CSSPropertyRule: {\n    prototype: CSSPropertyRule;\n    new(): CSSPropertyRule;\n};\n\n/**\n * The **`CSSRotate`** interface of the CSS Typed Object Model API represents the rotate value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate)\n */\ninterface CSSRotate extends CSSTransformComponent {\n    /**\n     * The **`angle`** property of the denotes a clockwise rotation, a negative angle a counter-clockwise one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)\n     */\n    angle: CSSNumericValue;\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)\n     */\n    x: CSSNumberish;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)\n     */\n    y: CSSNumberish;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)\n     */\n    z: CSSNumberish;\n}\n\ndeclare var CSSRotate: {\n    prototype: CSSRotate;\n    new(angle: CSSNumericValue): CSSRotate;\n    new(x: CSSNumberish, y: CSSNumberish, z: CSSNumberish, angle: CSSNumericValue): CSSRotate;\n};\n\n/**\n * The **`CSSRule`** interface represents a single CSS rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule)\n */\ninterface CSSRule {\n    /**\n     * The **`cssText`** property of the CSSRule interface returns the actual text of a CSSStyleSheet style-rule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/cssText)\n     */\n    cssText: string;\n    /**\n     * The **`parentRule`** property of the CSSRule interface returns the containing rule of the current rule if this exists, or otherwise returns null.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentRule)\n     */\n    readonly parentRule: CSSRule | null;\n    /**\n     * The **`parentStyleSheet`** property of the the current rule is defined.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentStyleSheet)\n     */\n    readonly parentStyleSheet: CSSStyleSheet | null;\n    /**\n     * The read-only **`type`** property of the indicating which type of rule the CSSRule represents.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/type)\n     */\n    readonly type: number;\n    readonly STYLE_RULE: 1;\n    readonly CHARSET_RULE: 2;\n    readonly IMPORT_RULE: 3;\n    readonly MEDIA_RULE: 4;\n    readonly FONT_FACE_RULE: 5;\n    readonly PAGE_RULE: 6;\n    readonly NAMESPACE_RULE: 10;\n    readonly KEYFRAMES_RULE: 7;\n    readonly KEYFRAME_RULE: 8;\n    readonly SUPPORTS_RULE: 12;\n    readonly COUNTER_STYLE_RULE: 11;\n    readonly FONT_FEATURE_VALUES_RULE: 14;\n}\n\ndeclare var CSSRule: {\n    prototype: CSSRule;\n    new(): CSSRule;\n    readonly STYLE_RULE: 1;\n    readonly CHARSET_RULE: 2;\n    readonly IMPORT_RULE: 3;\n    readonly MEDIA_RULE: 4;\n    readonly FONT_FACE_RULE: 5;\n    readonly PAGE_RULE: 6;\n    readonly NAMESPACE_RULE: 10;\n    readonly KEYFRAMES_RULE: 7;\n    readonly KEYFRAME_RULE: 8;\n    readonly SUPPORTS_RULE: 12;\n    readonly COUNTER_STYLE_RULE: 11;\n    readonly FONT_FEATURE_VALUES_RULE: 14;\n};\n\n/**\n * A `CSSRuleList` represents an ordered collection of read-only CSSRule objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRuleList)\n */\ninterface CSSRuleList {\n    /**\n     * The **`length`** property of the CSSRuleList interface returns the number of CSSRule objects in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRuleList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method of the CSSRuleList interface returns the CSSRule object at the specified `index` or `null` if the specified `index` doesn't exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRuleList/item)\n     */\n    item(index: number): CSSRule | null;\n    [index: number]: CSSRule;\n}\n\ndeclare var CSSRuleList: {\n    prototype: CSSRuleList;\n    new(): CSSRuleList;\n};\n\n/**\n * The **`CSSScale`** interface of the CSS Typed Object Model API represents the scale() and scale3d() values of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale)\n */\ninterface CSSScale extends CSSTransformComponent {\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)\n     */\n    x: CSSNumberish;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)\n     */\n    y: CSSNumberish;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)\n     */\n    z: CSSNumberish;\n}\n\ndeclare var CSSScale: {\n    prototype: CSSScale;\n    new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;\n};\n\n/**\n * The **`CSSScopeRule`** interface of the CSS Object Model represents a CSS @scope at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule)\n */\ninterface CSSScopeRule extends CSSGroupingRule {\n    /**\n     * The **`end`** property of the CSSScopeRule interface returns a string containing the value of the `@scope` at-rule's scope limit.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/end)\n     */\n    readonly end: string | null;\n    /**\n     * The **`start`** property of the CSSScopeRule interface returns a string containing the value of the `@scope` at-rule's scope root.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/start)\n     */\n    readonly start: string | null;\n}\n\ndeclare var CSSScopeRule: {\n    prototype: CSSScopeRule;\n    new(): CSSScopeRule;\n};\n\n/**\n * The **`CSSSkew`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew)\n */\ninterface CSSSkew extends CSSTransformComponent {\n    /**\n     * The **`ax`** property of the along the x-axis (or abscissa).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)\n     */\n    ax: CSSNumericValue;\n    /**\n     * The **`ay`** property of the along the y-axis (or ordinate).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)\n     */\n    ay: CSSNumericValue;\n}\n\ndeclare var CSSSkew: {\n    prototype: CSSSkew;\n    new(ax: CSSNumericValue, ay: CSSNumericValue): CSSSkew;\n};\n\n/**\n * The **`CSSSkewX`** interface of the CSS Typed Object Model API represents the `skewX()` value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX)\n */\ninterface CSSSkewX extends CSSTransformComponent {\n    /**\n     * The **`ax`** property of the along the x-axis (or abscissa).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)\n     */\n    ax: CSSNumericValue;\n}\n\ndeclare var CSSSkewX: {\n    prototype: CSSSkewX;\n    new(ax: CSSNumericValue): CSSSkewX;\n};\n\n/**\n * The **`CSSSkewY`** interface of the CSS Typed Object Model API represents the `skewY()` value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY)\n */\ninterface CSSSkewY extends CSSTransformComponent {\n    /**\n     * The **`ay`** property of the along the y-axis (or ordinate).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)\n     */\n    ay: CSSNumericValue;\n}\n\ndeclare var CSSSkewY: {\n    prototype: CSSSkewY;\n    new(ay: CSSNumericValue): CSSSkewY;\n};\n\n/**\n * The **`CSSStartingStyleRule`** interface of the CSS Object Model represents a CSS @starting-style at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStartingStyleRule)\n */\ninterface CSSStartingStyleRule extends CSSGroupingRule {\n}\n\ndeclare var CSSStartingStyleRule: {\n    prototype: CSSStartingStyleRule;\n    new(): CSSStartingStyleRule;\n};\n\n/**\n * The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration)\n */\ninterface CSSStyleDeclaration {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */\n    accentColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-content) */\n    alignContent: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-items) */\n    alignItems: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self) */\n    alignSelf: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/alignment-baseline) */\n    alignmentBaseline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/all) */\n    all: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation) */\n    animation: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-composition) */\n    animationComposition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay) */\n    animationDelay: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction) */\n    animationDirection: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-duration) */\n    animationDuration: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode) */\n    animationFillMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count) */\n    animationIterationCount: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-name) */\n    animationName: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-play-state) */\n    animationPlayState: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-timing-function) */\n    animationTimingFunction: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/appearance) */\n    appearance: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/aspect-ratio) */\n    aspectRatio: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backdrop-filter) */\n    backdropFilter: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backface-visibility) */\n    backfaceVisibility: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background) */\n    background: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-attachment) */\n    backgroundAttachment: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-blend-mode) */\n    backgroundBlendMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-clip) */\n    backgroundClip: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-color) */\n    backgroundColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-image) */\n    backgroundImage: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-origin) */\n    backgroundOrigin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position) */\n    backgroundPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-x) */\n    backgroundPositionX: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-y) */\n    backgroundPositionY: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-repeat) */\n    backgroundRepeat: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */\n    backgroundSize: string;\n    baselineShift: string;\n    baselineSource: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */\n    blockSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border) */\n    border: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block) */\n    borderBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-color) */\n    borderBlockColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end) */\n    borderBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-color) */\n    borderBlockEndColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-style) */\n    borderBlockEndStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-width) */\n    borderBlockEndWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start) */\n    borderBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-color) */\n    borderBlockStartColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-style) */\n    borderBlockStartStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-width) */\n    borderBlockStartWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-style) */\n    borderBlockStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-width) */\n    borderBlockWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom) */\n    borderBottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-color) */\n    borderBottomColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius) */\n    borderBottomLeftRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius) */\n    borderBottomRightRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-style) */\n    borderBottomStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-width) */\n    borderBottomWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-collapse) */\n    borderCollapse: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-color) */\n    borderColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius) */\n    borderEndEndRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius) */\n    borderEndStartRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image) */\n    borderImage: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-outset) */\n    borderImageOutset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-repeat) */\n    borderImageRepeat: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-slice) */\n    borderImageSlice: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-source) */\n    borderImageSource: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-width) */\n    borderImageWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline) */\n    borderInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-color) */\n    borderInlineColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end) */\n    borderInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color) */\n    borderInlineEndColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style) */\n    borderInlineEndStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width) */\n    borderInlineEndWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start) */\n    borderInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color) */\n    borderInlineStartColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style) */\n    borderInlineStartStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width) */\n    borderInlineStartWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-style) */\n    borderInlineStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-width) */\n    borderInlineWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left) */\n    borderLeft: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-color) */\n    borderLeftColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-style) */\n    borderLeftStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-width) */\n    borderLeftWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-radius) */\n    borderRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right) */\n    borderRight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-color) */\n    borderRightColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-style) */\n    borderRightStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-width) */\n    borderRightWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-spacing) */\n    borderSpacing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius) */\n    borderStartEndRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius) */\n    borderStartStartRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-style) */\n    borderStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top) */\n    borderTop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-color) */\n    borderTopColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius) */\n    borderTopLeftRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius) */\n    borderTopRightRadius: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-style) */\n    borderTopStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-width) */\n    borderTopWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-width) */\n    borderWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/bottom) */\n    bottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-decoration-break) */\n    boxDecorationBreak: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow) */\n    boxShadow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing) */\n    boxSizing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-after) */\n    breakAfter: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-before) */\n    breakBefore: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-inside) */\n    breakInside: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caption-side) */\n    captionSide: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caret-color) */\n    caretColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clear) */\n    clear: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip)\n     */\n    clip: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip-path) */\n    clipPath: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip-rule) */\n    clipRule: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */\n    color: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-interpolation) */\n    colorInterpolation: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-interpolation-filters) */\n    colorInterpolationFilters: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */\n    colorScheme: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-count) */\n    columnCount: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-fill) */\n    columnFill: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-gap) */\n    columnGap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule) */\n    columnRule: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-color) */\n    columnRuleColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-style) */\n    columnRuleStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-width) */\n    columnRuleWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-span) */\n    columnSpan: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-width) */\n    columnWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/columns) */\n    columns: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */\n    contain: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size) */\n    containIntrinsicBlockSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */\n    containIntrinsicHeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size) */\n    containIntrinsicInlineSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */\n    containIntrinsicSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width) */\n    containIntrinsicWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container) */\n    container: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-name) */\n    containerName: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-type) */\n    containerType: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */\n    content: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content-visibility) */\n    contentVisibility: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */\n    counterIncrement: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */\n    counterReset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */\n    counterSet: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */\n    cssFloat: string;\n    /**\n     * The **`cssText`** property of the CSSStyleDeclaration interface returns or sets the text of the element's **inline** style declaration only.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssText)\n     */\n    cssText: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */\n    cursor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cx) */\n    cx: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cy) */\n    cy: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/d) */\n    d: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */\n    direction: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/display) */\n    display: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */\n    dominantBaseline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */\n    emptyCells: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/fill) */\n    fill: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/fill-opacity) */\n    fillOpacity: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/fill-rule) */\n    fillRule: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/filter) */\n    filter: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex) */\n    flex: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-basis) */\n    flexBasis: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-direction) */\n    flexDirection: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-flow) */\n    flexFlow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-grow) */\n    flexGrow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-shrink) */\n    flexShrink: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-wrap) */\n    flexWrap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/float) */\n    float: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flood-color) */\n    floodColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flood-opacity) */\n    floodOpacity: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font) */\n    font: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-family) */\n    fontFamily: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-feature-settings) */\n    fontFeatureSettings: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-kerning) */\n    fontKerning: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing) */\n    fontOpticalSizing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-palette) */\n    fontPalette: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size) */\n    fontSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size-adjust) */\n    fontSizeAdjust: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-stretch)\n     */\n    fontStretch: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-style) */\n    fontStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */\n    fontSynthesis: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */\n    fontSynthesisSmallCaps: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */\n    fontSynthesisStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */\n    fontSynthesisWeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */\n    fontVariant: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates) */\n    fontVariantAlternates: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-caps) */\n    fontVariantCaps: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian) */\n    fontVariantEastAsian: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures) */\n    fontVariantLigatures: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric) */\n    fontVariantNumeric: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-position) */\n    fontVariantPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variation-settings) */\n    fontVariationSettings: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-weight) */\n    fontWeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust) */\n    forcedColorAdjust: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/gap) */\n    gap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid) */\n    grid: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-area) */\n    gridArea: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns) */\n    gridAutoColumns: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow) */\n    gridAutoFlow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows) */\n    gridAutoRows: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column) */\n    gridColumn: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-end) */\n    gridColumnEnd: string;\n    /** @deprecated This is a legacy alias of `columnGap`. */\n    gridColumnGap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-start) */\n    gridColumnStart: string;\n    /** @deprecated This is a legacy alias of `gap`. */\n    gridGap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row) */\n    gridRow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-end) */\n    gridRowEnd: string;\n    /** @deprecated This is a legacy alias of `rowGap`. */\n    gridRowGap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-start) */\n    gridRowStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template) */\n    gridTemplate: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-areas) */\n    gridTemplateAreas: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-columns) */\n    gridTemplateColumns: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-rows) */\n    gridTemplateRows: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/height) */\n    height: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */\n    hyphenateCharacter: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars) */\n    hyphenateLimitChars: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */\n    hyphens: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-orientation)\n     */\n    imageOrientation: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-rendering) */\n    imageRendering: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inline-size) */\n    inlineSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset) */\n    inset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block) */\n    insetBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-end) */\n    insetBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-start) */\n    insetBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline) */\n    insetInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-end) */\n    insetInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-start) */\n    insetInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/isolation) */\n    isolation: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content) */\n    justifyContent: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-items) */\n    justifyItems: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-self) */\n    justifySelf: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/left) */\n    left: string;\n    /**\n     * The read-only property returns an integer that represents the number of style declarations in this CSS declaration block.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/length)\n     */\n    readonly length: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/letter-spacing) */\n    letterSpacing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/lighting-color) */\n    lightingColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-break) */\n    lineBreak: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-height) */\n    lineHeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style) */\n    listStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-image) */\n    listStyleImage: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-position) */\n    listStylePosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-type) */\n    listStyleType: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin) */\n    margin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block) */\n    marginBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-end) */\n    marginBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-start) */\n    marginBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-bottom) */\n    marginBottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline) */\n    marginInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-end) */\n    marginInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-start) */\n    marginInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-left) */\n    marginLeft: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-right) */\n    marginRight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-top) */\n    marginTop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/marker) */\n    marker: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/marker-end) */\n    markerEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/marker-mid) */\n    markerMid: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/marker-start) */\n    markerStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask) */\n    mask: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip) */\n    maskClip: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite) */\n    maskComposite: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-image) */\n    maskImage: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-mode) */\n    maskMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-origin) */\n    maskOrigin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-position) */\n    maskPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-repeat) */\n    maskRepeat: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-size) */\n    maskSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-type) */\n    maskType: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-depth) */\n    mathDepth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-style) */\n    mathStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-block-size) */\n    maxBlockSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-height) */\n    maxHeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-inline-size) */\n    maxInlineSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-width) */\n    maxWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-block-size) */\n    minBlockSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-height) */\n    minHeight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-inline-size) */\n    minInlineSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-width) */\n    minWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode) */\n    mixBlendMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-fit) */\n    objectFit: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-position) */\n    objectPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset) */\n    offset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-anchor) */\n    offsetAnchor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-distance) */\n    offsetDistance: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */\n    offsetPath: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-position) */\n    offsetPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */\n    offsetRotate: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */\n    opacity: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/order) */\n    order: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/orphans) */\n    orphans: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline) */\n    outline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-color) */\n    outlineColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-offset) */\n    outlineOffset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-style) */\n    outlineStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-width) */\n    outlineWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow) */\n    overflow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */\n    overflowAnchor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-block) */\n    overflowBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */\n    overflowClipMargin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-inline) */\n    overflowInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */\n    overflowWrap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */\n    overflowX: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-y) */\n    overflowY: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior) */\n    overscrollBehavior: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block) */\n    overscrollBehaviorBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline) */\n    overscrollBehaviorInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x) */\n    overscrollBehaviorX: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y) */\n    overscrollBehaviorY: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding) */\n    padding: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block) */\n    paddingBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-end) */\n    paddingBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-start) */\n    paddingBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-bottom) */\n    paddingBottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline) */\n    paddingInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-end) */\n    paddingInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-start) */\n    paddingInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-left) */\n    paddingLeft: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-right) */\n    paddingRight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-top) */\n    paddingTop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page) */\n    page: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after)\n     */\n    pageBreakAfter: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before)\n     */\n    pageBreakBefore: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside)\n     */\n    pageBreakInside: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/paint-order) */\n    paintOrder: string;\n    /**\n     * The **CSSStyleDeclaration.parentRule** read-only property returns a CSSRule that is the parent of this style block, e.g., a CSSStyleRule representing the style for a CSS selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/parentRule)\n     */\n    readonly parentRule: CSSRule | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective) */\n    perspective: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective-origin) */\n    perspectiveOrigin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-content) */\n    placeContent: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-items) */\n    placeItems: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-self) */\n    placeSelf: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/pointer-events) */\n    pointerEvents: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */\n    position: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */\n    printColorAdjust: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */\n    quotes: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/r) */\n    r: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */\n    resize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */\n    right: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/rotate) */\n    rotate: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/row-gap) */\n    rowGap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-align) */\n    rubyAlign: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */\n    rubyPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/rx) */\n    rx: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ry) */\n    ry: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */\n    scale: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */\n    scrollBehavior: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin) */\n    scrollMargin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block) */\n    scrollMarginBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end) */\n    scrollMarginBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start) */\n    scrollMarginBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom) */\n    scrollMarginBottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline) */\n    scrollMarginInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end) */\n    scrollMarginInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start) */\n    scrollMarginInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left) */\n    scrollMarginLeft: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right) */\n    scrollMarginRight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top) */\n    scrollMarginTop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding) */\n    scrollPadding: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block) */\n    scrollPaddingBlock: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end) */\n    scrollPaddingBlockEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start) */\n    scrollPaddingBlockStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom) */\n    scrollPaddingBottom: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline) */\n    scrollPaddingInline: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end) */\n    scrollPaddingInlineEnd: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start) */\n    scrollPaddingInlineStart: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left) */\n    scrollPaddingLeft: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right) */\n    scrollPaddingRight: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top) */\n    scrollPaddingTop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align) */\n    scrollSnapAlign: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop) */\n    scrollSnapStop: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */\n    scrollSnapType: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-color) */\n    scrollbarColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */\n    scrollbarGutter: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-width) */\n    scrollbarWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */\n    shapeImageThreshold: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */\n    shapeMargin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-outside) */\n    shapeOutside: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-rendering) */\n    shapeRendering: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stop-color) */\n    stopColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stop-opacity) */\n    stopOpacity: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke) */\n    stroke: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray) */\n    strokeDasharray: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset) */\n    strokeDashoffset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-linecap) */\n    strokeLinecap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin) */\n    strokeLinejoin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit) */\n    strokeMiterlimit: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-opacity) */\n    strokeOpacity: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/stroke-width) */\n    strokeWidth: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/tab-size) */\n    tabSize: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/table-layout) */\n    tableLayout: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align) */\n    textAlign: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align-last) */\n    textAlignLast: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */\n    textAnchor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box) */\n    textBox: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-edge) */\n    textBoxEdge: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-box-trim) */\n    textBoxTrim: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */\n    textCombineUpright: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */\n    textDecoration: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-color) */\n    textDecorationColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-line) */\n    textDecorationLine: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink) */\n    textDecorationSkipInk: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-style) */\n    textDecorationStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness) */\n    textDecorationThickness: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis) */\n    textEmphasis: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color) */\n    textEmphasisColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position) */\n    textEmphasisPosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style) */\n    textEmphasisStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-indent) */\n    textIndent: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-orientation) */\n    textOrientation: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-overflow) */\n    textOverflow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-rendering) */\n    textRendering: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-shadow) */\n    textShadow: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-transform) */\n    textTransform: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-offset) */\n    textUnderlineOffset: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-position) */\n    textUnderlinePosition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */\n    textWrap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-mode) */\n    textWrapMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-style) */\n    textWrapStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */\n    top: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */\n    touchAction: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform) */\n    transform: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-box) */\n    transformBox: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-origin) */\n    transformOrigin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-style) */\n    transformStyle: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */\n    transition: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-behavior) */\n    transitionBehavior: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */\n    transitionDelay: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */\n    transitionDuration: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-property) */\n    transitionProperty: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-timing-function) */\n    transitionTimingFunction: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/translate) */\n    translate: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/unicode-bidi) */\n    unicodeBidi: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */\n    userSelect: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vector-effect) */\n    vectorEffect: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */\n    verticalAlign: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-class) */\n    viewTransitionClass: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */\n    viewTransitionName: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */\n    visibility: string;\n    /**\n     * @deprecated This is a legacy alias of `alignContent`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-content)\n     */\n    webkitAlignContent: string;\n    /**\n     * @deprecated This is a legacy alias of `alignItems`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-items)\n     */\n    webkitAlignItems: string;\n    /**\n     * @deprecated This is a legacy alias of `alignSelf`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self)\n     */\n    webkitAlignSelf: string;\n    /**\n     * @deprecated This is a legacy alias of `animation`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation)\n     */\n    webkitAnimation: string;\n    /**\n     * @deprecated This is a legacy alias of `animationDelay`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay)\n     */\n    webkitAnimationDelay: string;\n    /**\n     * @deprecated This is a legacy alias of `animationDirection`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction)\n     */\n    webkitAnimationDirection: string;\n    /**\n     * @deprecated This is a legacy alias of `animationDuration`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-duration)\n     */\n    webkitAnimationDuration: string;\n    /**\n     * @deprecated This is a legacy alias of `animationFillMode`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode)\n     */\n    webkitAnimationFillMode: string;\n    /**\n     * @deprecated This is a legacy alias of `animationIterationCount`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count)\n     */\n    webkitAnimationIterationCount: string;\n    /**\n     * @deprecated This is a legacy alias of `animationName`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-name)\n     */\n    webkitAnimationName: string;\n    /**\n     * @deprecated This is a legacy alias of `animationPlayState`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-play-state)\n     */\n    webkitAnimationPlayState: string;\n    /**\n     * @deprecated This is a legacy alias of `animationTimingFunction`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-timing-function)\n     */\n    webkitAnimationTimingFunction: string;\n    /**\n     * @deprecated This is a legacy alias of `appearance`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/appearance)\n     */\n    webkitAppearance: string;\n    /**\n     * @deprecated This is a legacy alias of `backfaceVisibility`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backface-visibility)\n     */\n    webkitBackfaceVisibility: string;\n    /**\n     * @deprecated This is a legacy alias of `backgroundClip`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-clip)\n     */\n    webkitBackgroundClip: string;\n    /**\n     * @deprecated This is a legacy alias of `backgroundOrigin`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-origin)\n     */\n    webkitBackgroundOrigin: string;\n    /**\n     * @deprecated This is a legacy alias of `backgroundSize`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size)\n     */\n    webkitBackgroundSize: string;\n    /**\n     * @deprecated This is a legacy alias of `borderBottomLeftRadius`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius)\n     */\n    webkitBorderBottomLeftRadius: string;\n    /**\n     * @deprecated This is a legacy alias of `borderBottomRightRadius`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius)\n     */\n    webkitBorderBottomRightRadius: string;\n    /**\n     * @deprecated This is a legacy alias of `borderRadius`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-radius)\n     */\n    webkitBorderRadius: string;\n    /**\n     * @deprecated This is a legacy alias of `borderTopLeftRadius`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius)\n     */\n    webkitBorderTopLeftRadius: string;\n    /**\n     * @deprecated This is a legacy alias of `borderTopRightRadius`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius)\n     */\n    webkitBorderTopRightRadius: string;\n    /**\n     * @deprecated This is a legacy alias of `boxAlign`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-align)\n     */\n    webkitBoxAlign: string;\n    /**\n     * @deprecated This is a legacy alias of `boxFlex`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-flex)\n     */\n    webkitBoxFlex: string;\n    /**\n     * @deprecated This is a legacy alias of `boxOrdinalGroup`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group)\n     */\n    webkitBoxOrdinalGroup: string;\n    /**\n     * @deprecated This is a legacy alias of `boxOrient`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-orient)\n     */\n    webkitBoxOrient: string;\n    /**\n     * @deprecated This is a legacy alias of `boxPack`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-pack)\n     */\n    webkitBoxPack: string;\n    /**\n     * @deprecated This is a legacy alias of `boxShadow`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow)\n     */\n    webkitBoxShadow: string;\n    /**\n     * @deprecated This is a legacy alias of `boxSizing`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing)\n     */\n    webkitBoxSizing: string;\n    /**\n     * @deprecated This is a legacy alias of `filter`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/filter)\n     */\n    webkitFilter: string;\n    /**\n     * @deprecated This is a legacy alias of `flex`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex)\n     */\n    webkitFlex: string;\n    /**\n     * @deprecated This is a legacy alias of `flexBasis`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-basis)\n     */\n    webkitFlexBasis: string;\n    /**\n     * @deprecated This is a legacy alias of `flexDirection`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-direction)\n     */\n    webkitFlexDirection: string;\n    /**\n     * @deprecated This is a legacy alias of `flexFlow`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-flow)\n     */\n    webkitFlexFlow: string;\n    /**\n     * @deprecated This is a legacy alias of `flexGrow`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-grow)\n     */\n    webkitFlexGrow: string;\n    /**\n     * @deprecated This is a legacy alias of `flexShrink`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-shrink)\n     */\n    webkitFlexShrink: string;\n    /**\n     * @deprecated This is a legacy alias of `flexWrap`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-wrap)\n     */\n    webkitFlexWrap: string;\n    /**\n     * @deprecated This is a legacy alias of `justifyContent`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)\n     */\n    webkitJustifyContent: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-clamp) */\n    webkitLineClamp: string;\n    /**\n     * @deprecated This is a legacy alias of `mask`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask)\n     */\n    webkitMask: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorder`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border)\n     */\n    webkitMaskBoxImage: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorderOutset`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-outset)\n     */\n    webkitMaskBoxImageOutset: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorderRepeat`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat)\n     */\n    webkitMaskBoxImageRepeat: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorderSlice`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-slice)\n     */\n    webkitMaskBoxImageSlice: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorderSource`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-source)\n     */\n    webkitMaskBoxImageSource: string;\n    /**\n     * @deprecated This is a legacy alias of `maskBorderWidth`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-border-width)\n     */\n    webkitMaskBoxImageWidth: string;\n    /**\n     * @deprecated This is a legacy alias of `maskClip`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip)\n     */\n    webkitMaskClip: string;\n    /**\n     * @deprecated This is a legacy alias of `maskComposite`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite)\n     */\n    webkitMaskComposite: string;\n    /**\n     * @deprecated This is a legacy alias of `maskImage`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-image)\n     */\n    webkitMaskImage: string;\n    /**\n     * @deprecated This is a legacy alias of `maskOrigin`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-origin)\n     */\n    webkitMaskOrigin: string;\n    /**\n     * @deprecated This is a legacy alias of `maskPosition`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-position)\n     */\n    webkitMaskPosition: string;\n    /**\n     * @deprecated This is a legacy alias of `maskRepeat`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-repeat)\n     */\n    webkitMaskRepeat: string;\n    /**\n     * @deprecated This is a legacy alias of `maskSize`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-size)\n     */\n    webkitMaskSize: string;\n    /**\n     * @deprecated This is a legacy alias of `order`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/order)\n     */\n    webkitOrder: string;\n    /**\n     * @deprecated This is a legacy alias of `perspective`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective)\n     */\n    webkitPerspective: string;\n    /**\n     * @deprecated This is a legacy alias of `perspectiveOrigin`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective-origin)\n     */\n    webkitPerspectiveOrigin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color) */\n    webkitTextFillColor: string;\n    /**\n     * @deprecated This is a legacy alias of `textSizeAdjust`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-size-adjust)\n     */\n    webkitTextSizeAdjust: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke) */\n    webkitTextStroke: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color) */\n    webkitTextStrokeColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width) */\n    webkitTextStrokeWidth: string;\n    /**\n     * @deprecated This is a legacy alias of `transform`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform)\n     */\n    webkitTransform: string;\n    /**\n     * @deprecated This is a legacy alias of `transformOrigin`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-origin)\n     */\n    webkitTransformOrigin: string;\n    /**\n     * @deprecated This is a legacy alias of `transformStyle`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-style)\n     */\n    webkitTransformStyle: string;\n    /**\n     * @deprecated This is a legacy alias of `transition`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition)\n     */\n    webkitTransition: string;\n    /**\n     * @deprecated This is a legacy alias of `transitionDelay`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay)\n     */\n    webkitTransitionDelay: string;\n    /**\n     * @deprecated This is a legacy alias of `transitionDuration`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration)\n     */\n    webkitTransitionDuration: string;\n    /**\n     * @deprecated This is a legacy alias of `transitionProperty`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-property)\n     */\n    webkitTransitionProperty: string;\n    /**\n     * @deprecated This is a legacy alias of `transitionTimingFunction`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-timing-function)\n     */\n    webkitTransitionTimingFunction: string;\n    /**\n     * @deprecated This is a legacy alias of `userSelect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select)\n     */\n    webkitUserSelect: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */\n    whiteSpace: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space-collapse) */\n    whiteSpaceCollapse: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */\n    widows: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */\n    width: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/will-change) */\n    willChange: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-break) */\n    wordBreak: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */\n    wordSpacing: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)\n     */\n    wordWrap: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */\n    writingMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/x) */\n    x: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/y) */\n    y: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */\n    zIndex: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/zoom) */\n    zoom: string;\n    /**\n     * The **CSSStyleDeclaration.getPropertyPriority()** method interface returns a string that provides all explicitly set priorities on the CSS property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority)\n     */\n    getPropertyPriority(property: string): string;\n    /**\n     * The **CSSStyleDeclaration.getPropertyValue()** method interface returns a string containing the value of a specified CSS property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyValue)\n     */\n    getPropertyValue(property: string): string;\n    /**\n     * The `CSSStyleDeclaration.item()` method interface returns a CSS property name from a CSSStyleDeclaration by index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/item)\n     */\n    item(index: number): string;\n    /**\n     * The **`CSSStyleDeclaration.removeProperty()`** method interface removes a property from a CSS style declaration object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/removeProperty)\n     */\n    removeProperty(property: string): string;\n    /**\n     * The **`CSSStyleDeclaration.setProperty()`** method interface sets a new value for a property on a CSS style declaration object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/setProperty)\n     */\n    setProperty(property: string, value: string | null, priority?: string): void;\n    [index: number]: string;\n}\n\ndeclare var CSSStyleDeclaration: {\n    prototype: CSSStyleDeclaration;\n    new(): CSSStyleDeclaration;\n};\n\n/**\n * The **`CSSStyleRule`** interface represents a single CSS style rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule)\n */\ninterface CSSStyleRule extends CSSGroupingRule {\n    /**\n     * The **`selectorText`** property of the CSSStyleRule interface gets and sets the selectors associated with the `CSSStyleRule`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/selectorText)\n     */\n    selectorText: string;\n    /**\n     * The read-only **`style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSStyleRule.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)\n     */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n    /**\n     * The **`styleMap`** read-only property of the which provides access to the rule's property-value pairs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap)\n     */\n    readonly styleMap: StylePropertyMap;\n}\n\ndeclare var CSSStyleRule: {\n    prototype: CSSStyleRule;\n    new(): CSSStyleRule;\n};\n\n/**\n * The **`CSSStyleSheet`** interface represents a single CSS stylesheet, and lets you inspect and modify the list of rules contained in the stylesheet.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet)\n */\ninterface CSSStyleSheet extends StyleSheet {\n    /**\n     * The read-only CSSStyleSheet property **`cssRules`** returns a live CSSRuleList which provides a real-time, up-to-date list of every CSS rule which comprises the stylesheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/cssRules)\n     */\n    readonly cssRules: CSSRuleList;\n    /**\n     * The read-only CSSStyleSheet property **`ownerRule`** returns the CSSImportRule corresponding to the @import at-rule which imported the stylesheet into the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/ownerRule)\n     */\n    readonly ownerRule: CSSRule | null;\n    /**\n     * **`rules`** is a _deprecated_ _legacy property_ of the CSSStyleSheet interface.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/rules)\n     */\n    readonly rules: CSSRuleList;\n    /**\n     * The obsolete CSSStyleSheet interface's **`addRule()`** _legacy method_ adds a new rule to the stylesheet.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/addRule)\n     */\n    addRule(selector?: string, style?: string, index?: number): number;\n    /**\n     * The CSSStyleSheet method **`deleteRule()`** removes a rule from the stylesheet object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/deleteRule)\n     */\n    deleteRule(index: number): void;\n    /**\n     * The **`CSSStyleSheet.insertRule()`** method inserts a new CSS rule into the current style sheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/insertRule)\n     */\n    insertRule(rule: string, index?: number): number;\n    /**\n     * The obsolete CSSStyleSheet method **`removeRule()`** removes a rule from the stylesheet object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/removeRule)\n     */\n    removeRule(index?: number): void;\n    /**\n     * The **`replace()`** method of the CSSStyleSheet interface asynchronously replaces the content of the stylesheet with the content passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/replace)\n     */\n    replace(text: string): Promise<CSSStyleSheet>;\n    /**\n     * The **`replaceSync()`** method of the CSSStyleSheet interface synchronously replaces the content of the stylesheet with the content passed into it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleSheet/replaceSync)\n     */\n    replaceSync(text: string): void;\n}\n\ndeclare var CSSStyleSheet: {\n    prototype: CSSStyleSheet;\n    new(options?: CSSStyleSheetInit): CSSStyleSheet;\n};\n\n/**\n * The **`CSSStyleValue`** interface of the CSS Typed Object Model API is the base class of all CSS values accessible through the Typed OM API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue)\n */\ninterface CSSStyleValue {\n    toString(): string;\n}\n\ndeclare var CSSStyleValue: {\n    prototype: CSSStyleValue;\n    new(): CSSStyleValue;\n    /**\n     * The **`parse()`** static method of the CSSStyleValue interface sets a specific CSS property to the specified values and returns the first value as a CSSStyleValue object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue/parse_static)\n     */\n    parse(property: string, cssText: string): CSSStyleValue;\n    /**\n     * The **`parseAll()`** static method of the CSSStyleValue interface sets all occurrences of a specific CSS property to the specified value and returns an array of CSSStyleValue objects, each containing one of the supplied values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue/parseAll_static)\n     */\n    parseAll(property: string, cssText: string): CSSStyleValue[];\n};\n\n/**\n * The **`CSSSupportsRule`** interface represents a single CSS @supports at-rule.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSupportsRule)\n */\ninterface CSSSupportsRule extends CSSConditionRule {\n}\n\ndeclare var CSSSupportsRule: {\n    prototype: CSSSupportsRule;\n    new(): CSSSupportsRule;\n};\n\n/**\n * The **`CSSTransformComponent`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent)\n */\ninterface CSSTransformComponent {\n    /**\n     * The **`is2D`** read-only property of the CSSTransformComponent interface indicates where the transform is 2D or 3D.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/is2D)\n     */\n    is2D: boolean;\n    /**\n     * The **`toMatrix()`** method of the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)\n     */\n    toMatrix(): DOMMatrix;\n    toString(): string;\n}\n\ndeclare var CSSTransformComponent: {\n    prototype: CSSTransformComponent;\n    new(): CSSTransformComponent;\n};\n\n/**\n * The **`CSSTransformValue`** interface of the CSS Typed Object Model API represents `transform-list` values as used by the CSS transform property.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue)\n */\ninterface CSSTransformValue extends CSSStyleValue {\n    /**\n     * The read-only **`is2D`** property of the In the case of the `CSSTransformValue` this property returns true unless any of the individual functions return false for `Is2D`, in which case it returns false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)\n     */\n    readonly is2D: boolean;\n    /**\n     * The read-only **`length`** property of the the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)\n     */\n    readonly length: number;\n    /**\n     * The **`toMatrix()`** method of the ```js-nolint toMatrix() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)\n     */\n    toMatrix(): DOMMatrix;\n    forEach(callbackfn: (value: CSSTransformComponent, key: number, parent: CSSTransformValue) => void, thisArg?: any): void;\n    [index: number]: CSSTransformComponent;\n}\n\ndeclare var CSSTransformValue: {\n    prototype: CSSTransformValue;\n    new(transforms: CSSTransformComponent[]): CSSTransformValue;\n};\n\n/**\n * The **`CSSTransition`** interface of the Web Animations API represents an Animation object used for a CSS Transition.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition)\n */\ninterface CSSTransition extends Animation {\n    /**\n     * The **`transitionProperty`** property of the name** of the transition.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition/transitionProperty)\n     */\n    readonly transitionProperty: string;\n    addEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: CSSTransition, ev: AnimationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var CSSTransition: {\n    prototype: CSSTransition;\n    new(): CSSTransition;\n};\n\n/**\n * The **`CSSTranslate`** interface of the CSS Typed Object Model API represents the translate() value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate)\n */\ninterface CSSTranslate extends CSSTransformComponent {\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)\n     */\n    x: CSSNumericValue;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)\n     */\n    y: CSSNumericValue;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)\n     */\n    z: CSSNumericValue;\n}\n\ndeclare var CSSTranslate: {\n    prototype: CSSTranslate;\n    new(x: CSSNumericValue, y: CSSNumericValue, z?: CSSNumericValue): CSSTranslate;\n};\n\n/**\n * The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue)\n */\ninterface CSSUnitValue extends CSSNumericValue {\n    /**\n     * The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the type of unit.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/unit)\n     */\n    readonly unit: string;\n    /**\n     * The **`CSSUnitValue.value`** property of the A double.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)\n     */\n    value: number;\n}\n\ndeclare var CSSUnitValue: {\n    prototype: CSSUnitValue;\n    new(value: number, unit: string): CSSUnitValue;\n};\n\n/**\n * The **`CSSUnparsedValue`** interface of the CSS Typed Object Model API represents property values that reference custom properties.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue)\n */\ninterface CSSUnparsedValue extends CSSStyleValue {\n    /**\n     * The **`length`** read-only property of the An integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)\n     */\n    readonly length: number;\n    forEach(callbackfn: (value: CSSUnparsedSegment, key: number, parent: CSSUnparsedValue) => void, thisArg?: any): void;\n    [index: number]: CSSUnparsedSegment;\n}\n\ndeclare var CSSUnparsedValue: {\n    prototype: CSSUnparsedValue;\n    new(members: CSSUnparsedSegment[]): CSSUnparsedValue;\n};\n\n/**\n * The **`CSSVariableReferenceValue`** interface of the CSS Typed Object Model API allows you to create a custom name for a built-in CSS value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue)\n */\ninterface CSSVariableReferenceValue {\n    /**\n     * The **`fallback`** read-only property of the A CSSUnparsedValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)\n     */\n    readonly fallback: CSSUnparsedValue | null;\n    /**\n     * The **`variable`** property of the A string beginning with `--` (that is, a custom property name).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)\n     */\n    variable: string;\n}\n\ndeclare var CSSVariableReferenceValue: {\n    prototype: CSSVariableReferenceValue;\n    new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;\n};\n\ninterface CSSViewTransitionRule extends CSSRule {\n    readonly navigation: string;\n    readonly types: ReadonlyArray<string>;\n}\n\ndeclare var CSSViewTransitionRule: {\n    prototype: CSSViewTransitionRule;\n    new(): CSSViewTransitionRule;\n};\n\n/**\n * The **`Cache`** interface provides a persistent storage mechanism for Request / Response object pairs that are cached in long lived memory.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache)\n */\ninterface Cache {\n    /**\n     * The **`add()`** method of the Cache interface takes a URL, retrieves it, and adds the resulting response object to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/add)\n     */\n    add(request: RequestInfo | URL): Promise<void>;\n    /**\n     * The **`addAll()`** method of the Cache interface takes an array of URLs, retrieves them, and adds the resulting response objects to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/addAll)\n     */\n    addAll(requests: RequestInfo[]): Promise<void>;\n    /**\n     * The **`delete()`** method of the Cache interface finds the Cache entry whose key is the request, and if found, deletes the Cache entry and returns a Promise that resolves to `true`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/delete)\n     */\n    delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;\n    /**\n     * The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)\n     */\n    keys(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Request>>;\n    /**\n     * The **`match()`** method of the Cache interface returns a Promise that resolves to the Response associated with the first matching request in the Cache object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/match)\n     */\n    match(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<Response | undefined>;\n    /**\n     * The **`matchAll()`** method of the Cache interface returns a Promise that resolves to an array of all matching responses in the Cache object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/matchAll)\n     */\n    matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;\n    /**\n     * The **`put()`** method of the Often, you will just want to Window/fetch one or more requests, then add the result straight to your cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)\n     */\n    put(request: RequestInfo | URL, response: Response): Promise<void>;\n}\n\ndeclare var Cache: {\n    prototype: Cache;\n    new(): Cache;\n};\n\n/**\n * The **`CacheStorage`** interface represents the storage for Cache objects.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage)\n */\ninterface CacheStorage {\n    /**\n     * The **`delete()`** method of the CacheStorage interface finds the Cache object matching the `cacheName`, and if found, deletes the Cache object and returns a Promise that resolves to `true`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/delete)\n     */\n    delete(cacheName: string): Promise<boolean>;\n    /**\n     * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a You can access `CacheStorage` through the Window.caches property in windows or through the WorkerGlobalScope.caches property in workers.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)\n     */\n    has(cacheName: string): Promise<boolean>;\n    /**\n     * The **`keys()`** method of the CacheStorage interface returns a Promise that will resolve with an array containing strings corresponding to all of the named Cache objects tracked by the CacheStorage object in the order they were created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/keys)\n     */\n    keys(): Promise<string[]>;\n    /**\n     * The **`match()`** method of the CacheStorage interface checks if a given Request or URL string is a key for a stored Response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/match)\n     */\n    match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;\n    /**\n     * The **`open()`** method of the the Cache object matching the `cacheName`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)\n     */\n    open(cacheName: string): Promise<Cache>;\n}\n\ndeclare var CacheStorage: {\n    prototype: CacheStorage;\n    new(): CacheStorage;\n};\n\n/**\n * The **`CanvasCaptureMediaStreamTrack`** interface of the Media Capture and Streams API represents the video track contained in a MediaStream being generated from a canvas following a call to HTMLCanvasElement.captureStream().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasCaptureMediaStreamTrack)\n */\ninterface CanvasCaptureMediaStreamTrack extends MediaStreamTrack {\n    /**\n     * The **`canvas`** read-only property of the CanvasCaptureMediaStreamTrack interface returns the HTMLCanvasElement from which frames are being captured.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasCaptureMediaStreamTrack/canvas)\n     */\n    readonly canvas: HTMLCanvasElement;\n    /**\n     * The **`requestFrame()`** method of the CanvasCaptureMediaStreamTrack interface requests that a frame be captured from the canvas and sent to the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasCaptureMediaStreamTrack/requestFrame)\n     */\n    requestFrame(): void;\n    addEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: CanvasCaptureMediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: CanvasCaptureMediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var CanvasCaptureMediaStreamTrack: {\n    prototype: CanvasCaptureMediaStreamTrack;\n    new(): CanvasCaptureMediaStreamTrack;\n};\n\ninterface CanvasCompositing {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/globalAlpha) */\n    globalAlpha: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation) */\n    globalCompositeOperation: GlobalCompositeOperation;\n}\n\ninterface CanvasDrawImage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/drawImage) */\n    drawImage(image: CanvasImageSource, dx: number, dy: number): void;\n    drawImage(image: CanvasImageSource, dx: number, dy: number, dw: number, dh: number): void;\n    drawImage(image: CanvasImageSource, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void;\n}\n\ninterface CanvasDrawPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/beginPath) */\n    beginPath(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/clip) */\n    clip(fillRule?: CanvasFillRule): void;\n    clip(path: Path2D, fillRule?: CanvasFillRule): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fill) */\n    fill(fillRule?: CanvasFillRule): void;\n    fill(path: Path2D, fillRule?: CanvasFillRule): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isPointInPath) */\n    isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean;\n    isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isPointInStroke) */\n    isPointInStroke(x: number, y: number): boolean;\n    isPointInStroke(path: Path2D, x: number, y: number): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/stroke) */\n    stroke(): void;\n    stroke(path: Path2D): void;\n}\n\ninterface CanvasFillStrokeStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillStyle) */\n    fillStyle: string | CanvasGradient | CanvasPattern;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeStyle) */\n    strokeStyle: string | CanvasGradient | CanvasPattern;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createConicGradient) */\n    createConicGradient(startAngle: number, x: number, y: number): CanvasGradient;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createLinearGradient) */\n    createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createPattern) */\n    createPattern(image: CanvasImageSource, repetition: string | null): CanvasPattern | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createRadialGradient) */\n    createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;\n}\n\ninterface CanvasFilters {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/filter) */\n    filter: string;\n}\n\n/**\n * The **`CanvasGradient`** interface represents an opaque object describing a gradient.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasGradient)\n */\ninterface CanvasGradient {\n    /**\n     * The **`CanvasGradient.addColorStop()`** method adds a new color stop, defined by an `offset` and a `color`, to a given canvas gradient.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasGradient/addColorStop)\n     */\n    addColorStop(offset: number, color: string): void;\n}\n\ndeclare var CanvasGradient: {\n    prototype: CanvasGradient;\n    new(): CanvasGradient;\n};\n\ninterface CanvasImageData {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createImageData) */\n    createImageData(sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    createImageData(imageData: ImageData): ImageData;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getImageData) */\n    getImageData(sx: number, sy: number, sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/putImageData) */\n    putImageData(imageData: ImageData, dx: number, dy: number): void;\n    putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void;\n}\n\ninterface CanvasImageSmoothing {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/imageSmoothingEnabled) */\n    imageSmoothingEnabled: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/imageSmoothingQuality) */\n    imageSmoothingQuality: ImageSmoothingQuality;\n}\n\ninterface CanvasPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/arc) */\n    arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/arcTo) */\n    arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/bezierCurveTo) */\n    bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/closePath) */\n    closePath(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/ellipse) */\n    ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineTo) */\n    lineTo(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/moveTo) */\n    moveTo(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/quadraticCurveTo) */\n    quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/rect) */\n    rect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/roundRect) */\n    roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;\n}\n\ninterface CanvasPathDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineCap) */\n    lineCap: CanvasLineCap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineDashOffset) */\n    lineDashOffset: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineJoin) */\n    lineJoin: CanvasLineJoin;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineWidth) */\n    lineWidth: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/miterLimit) */\n    miterLimit: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getLineDash) */\n    getLineDash(): number[];\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash) */\n    setLineDash(segments: number[]): void;\n}\n\n/**\n * The **`CanvasPattern`** interface represents an opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasPattern)\n */\ninterface CanvasPattern {\n    /**\n     * The **`CanvasPattern.setTransform()`** method uses a DOMMatrix object as the pattern's transformation matrix and invokes it on the pattern.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasPattern/setTransform)\n     */\n    setTransform(transform?: DOMMatrix2DInit): void;\n}\n\ndeclare var CanvasPattern: {\n    prototype: CanvasPattern;\n    new(): CanvasPattern;\n};\n\ninterface CanvasRect {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/clearRect) */\n    clearRect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillRect) */\n    fillRect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeRect) */\n    strokeRect(x: number, y: number, w: number, h: number): void;\n}\n\n/**\n * The **`CanvasRenderingContext2D`** interface, part of the Canvas API, provides the 2D rendering context for the drawing surface of a canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D)\n */\ninterface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {\n    /**\n     * The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the might be `null` if there is no associated canvas element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)\n     */\n    readonly canvas: HTMLCanvasElement;\n}\n\ndeclare var CanvasRenderingContext2D: {\n    prototype: CanvasRenderingContext2D;\n    new(): CanvasRenderingContext2D;\n};\n\ninterface CanvasSettings {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getContextAttributes) */\n    getContextAttributes(): CanvasRenderingContext2DSettings;\n}\n\ninterface CanvasShadowStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowBlur) */\n    shadowBlur: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowColor) */\n    shadowColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowOffsetX) */\n    shadowOffsetX: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowOffsetY) */\n    shadowOffsetY: number;\n}\n\ninterface CanvasState {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isContextLost) */\n    isContextLost(): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/reset) */\n    reset(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/restore) */\n    restore(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/save) */\n    save(): void;\n}\n\ninterface CanvasText {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillText) */\n    fillText(text: string, x: number, y: number, maxWidth?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/measureText) */\n    measureText(text: string): TextMetrics;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeText) */\n    strokeText(text: string, x: number, y: number, maxWidth?: number): void;\n}\n\ninterface CanvasTextDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/direction) */\n    direction: CanvasDirection;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/font) */\n    font: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */\n    fontKerning: CanvasFontKerning;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontStretch) */\n    fontStretch: CanvasFontStretch;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontVariantCaps) */\n    fontVariantCaps: CanvasFontVariantCaps;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */\n    letterSpacing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */\n    textAlign: CanvasTextAlign;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */\n    textBaseline: CanvasTextBaseline;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textRendering) */\n    textRendering: CanvasTextRendering;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */\n    wordSpacing: string;\n}\n\ninterface CanvasTransform {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getTransform) */\n    getTransform(): DOMMatrix;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/resetTransform) */\n    resetTransform(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/rotate) */\n    rotate(angle: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/scale) */\n    scale(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setTransform) */\n    setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;\n    setTransform(transform?: DOMMatrix2DInit): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/transform) */\n    transform(a: number, b: number, c: number, d: number, e: number, f: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/translate) */\n    translate(x: number, y: number): void;\n}\n\ninterface CanvasUserInterface {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/drawFocusIfNeeded) */\n    drawFocusIfNeeded(element: Element): void;\n    drawFocusIfNeeded(path: Path2D, element: Element): void;\n}\n\n/**\n * The `CaretPosition` interface represents the caret position, an indicator for the text insertion point.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition)\n */\ninterface CaretPosition {\n    readonly offset: number;\n    readonly offsetNode: Node;\n    getClientRect(): DOMRect | null;\n}\n\ndeclare var CaretPosition: {\n    prototype: CaretPosition;\n    new(): CaretPosition;\n};\n\n/**\n * The `ChannelMergerNode` interface, often used in conjunction with its opposite, ChannelSplitterNode, reunites different mono inputs into a single output.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ChannelMergerNode)\n */\ninterface ChannelMergerNode extends AudioNode {\n}\n\ndeclare var ChannelMergerNode: {\n    prototype: ChannelMergerNode;\n    new(context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode;\n};\n\n/**\n * The `ChannelSplitterNode` interface, often used in conjunction with its opposite, ChannelMergerNode, separates the different channels of an audio source into a set of mono outputs.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ChannelSplitterNode)\n */\ninterface ChannelSplitterNode extends AudioNode {\n}\n\ndeclare var ChannelSplitterNode: {\n    prototype: ChannelSplitterNode;\n    new(context: BaseAudioContext, options?: ChannelSplitterOptions): ChannelSplitterNode;\n};\n\n/**\n * The **`CharacterData`** abstract interface represents a Node object that contains characters.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData)\n */\ninterface CharacterData extends Node, ChildNode, NonDocumentTypeChildNode {\n    /**\n     * The **`data`** property of the CharacterData interface represent the value of the current object's data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/data)\n     */\n    data: string;\n    /**\n     * The read-only **`CharacterData.length`** property returns the number of characters in the contained data, as a positive integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/length)\n     */\n    readonly length: number;\n    readonly ownerDocument: Document;\n    /**\n     * The **`appendData()`** method of the CharacterData interface adds the provided data to the end of the node's current data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/appendData)\n     */\n    appendData(data: string): void;\n    /**\n     * The **`deleteData()`** method of the CharacterData interface removes all or part of the data from this `CharacterData` node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/deleteData)\n     */\n    deleteData(offset: number, count: number): void;\n    /**\n     * The **`insertData()`** method of the CharacterData interface inserts the provided data into this `CharacterData` node's current data, at the provided offset from the start of the existing data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/insertData)\n     */\n    insertData(offset: number, data: string): void;\n    /**\n     * The **`replaceData()`** method of the CharacterData interface removes a certain number of characters of the existing text in a given `CharacterData` node and replaces those characters with the text provided.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/replaceData)\n     */\n    replaceData(offset: number, count: number, data: string): void;\n    /**\n     * The **`substringData()`** method of the CharacterData interface returns a portion of the existing data, starting at the specified index and extending for a given number of characters afterwards.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/substringData)\n     */\n    substringData(offset: number, count: number): string;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): string;\n    set textContent(value: string | null);\n}\n\ndeclare var CharacterData: {\n    prototype: CharacterData;\n    new(): CharacterData;\n};\n\ninterface ChildNode extends Node {\n    /**\n     * Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/after)\n     */\n    after(...nodes: (Node | string)[]): void;\n    /**\n     * Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/before)\n     */\n    before(...nodes: (Node | string)[]): void;\n    /**\n     * Removes node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/remove)\n     */\n    remove(): void;\n    /**\n     * Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/replaceWith)\n     */\n    replaceWith(...nodes: (Node | string)[]): void;\n}\n\n/** @deprecated */\ninterface ClientRect extends DOMRect {\n}\n\n/**\n * The **`Clipboard`** interface of the Clipboard API provides read and write access to the contents of the system clipboard.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clipboard)\n */\ninterface Clipboard extends EventTarget {\n    /**\n     * The **`read()`** method of the Clipboard interface requests a copy of the clipboard's contents, fulfilling the returned Promise with the data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clipboard/read)\n     */\n    read(): Promise<ClipboardItems>;\n    /**\n     * The **`readText()`** method of the Clipboard interface returns a Promise which fulfills with a copy of the textual contents of the system clipboard.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clipboard/readText)\n     */\n    readText(): Promise<string>;\n    /**\n     * The **`write()`** method of the Clipboard interface writes arbitrary ClipboardItem data such as images and text to the clipboard, fulfilling the returned Promise on completion.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clipboard/write)\n     */\n    write(data: ClipboardItems): Promise<void>;\n    /**\n     * The **`writeText()`** method of the Clipboard interface writes the specified text to the system clipboard, returning a Promise that is resolved once the system clipboard has been updated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clipboard/writeText)\n     */\n    writeText(data: string): Promise<void>;\n}\n\ndeclare var Clipboard: {\n    prototype: Clipboard;\n    new(): Clipboard;\n};\n\n/**\n * The **`ClipboardEvent`** interface of the Clipboard API represents events providing information related to modification of the clipboard, that is Element/cut_event, Element/copy_event, and Element/paste_event events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent)\n */\ninterface ClipboardEvent extends Event {\n    /**\n     * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to: - specify what data should be put into the clipboard from the Element/cut_event and Element/copy_event event handlers, typically with a DataTransfer.setData call; - obtain the data to be pasted from the Element/paste_event event handler, typically with a DataTransfer.getData call.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent/clipboardData)\n     */\n    readonly clipboardData: DataTransfer | null;\n}\n\ndeclare var ClipboardEvent: {\n    prototype: ClipboardEvent;\n    new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent;\n};\n\n/**\n * The **`ClipboardItem`** interface of the Clipboard API represents a single item format, used when reading or writing clipboard data using Clipboard.read() and Clipboard.write() respectively.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem)\n */\ninterface ClipboardItem {\n    /**\n     * The read-only **`presentationStyle`** property of the ClipboardItem interface returns a string indicating how an item should be presented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/presentationStyle)\n     */\n    readonly presentationStyle: PresentationStyle;\n    /**\n     * The read-only **`types`** property of the ClipboardItem interface returns an Array of MIME type available within the ClipboardItem.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/types)\n     */\n    readonly types: ReadonlyArray<string>;\n    /**\n     * The **`getType()`** method of the ClipboardItem interface returns a Promise that resolves with a Blob of the requested MIME type or an error if the MIME type is not found.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/getType)\n     */\n    getType(type: string): Promise<Blob>;\n}\n\ndeclare var ClipboardItem: {\n    prototype: ClipboardItem;\n    new(items: Record<string, string | Blob | PromiseLike<string | Blob>>, options?: ClipboardItemOptions): ClipboardItem;\n    /**\n     * The **`supports()`** static method of the ClipboardItem interface returns `true` if the given MIME type is supported by the clipboard, and `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/supports_static)\n     */\n    supports(type: string): boolean;\n};\n\n/**\n * A `CloseEvent` is sent to clients using WebSockets when the connection is closed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent)\n */\ninterface CloseEvent extends Event {\n    /**\n     * The **`code`** read-only property of the CloseEvent interface returns a WebSocket connection close code indicating the reason the connection was closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/code)\n     */\n    readonly code: number;\n    /**\n     * The **`reason`** read-only property of the CloseEvent interface returns the WebSocket connection close reason the server gave for closing the connection; that is, a concise human-readable prose explanation for the closure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/reason)\n     */\n    readonly reason: string;\n    /**\n     * The **`wasClean`** read-only property of the CloseEvent interface returns `true` if the connection closed cleanly.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/wasClean)\n     */\n    readonly wasClean: boolean;\n}\n\ndeclare var CloseEvent: {\n    prototype: CloseEvent;\n    new(type: string, eventInitDict?: CloseEventInit): CloseEvent;\n};\n\n/**\n * The **`Comment`** interface represents textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Comment)\n */\ninterface Comment extends CharacterData {\n}\n\ndeclare var Comment: {\n    prototype: Comment;\n    new(data?: string): Comment;\n};\n\n/**\n * The DOM **`CompositionEvent`** represents events that occur due to the user indirectly entering text.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent)\n */\ninterface CompositionEvent extends UIEvent {\n    /**\n     * The **`data`** read-only property of the method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data)\n     */\n    readonly data: string;\n    /**\n     * The **`initCompositionEvent()`** method of the CompositionEvent interface initializes the attributes of a `CompositionEvent` object instance.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/initCompositionEvent)\n     */\n    initCompositionEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: WindowProxy | null, dataArg?: string): void;\n}\n\ndeclare var CompositionEvent: {\n    prototype: CompositionEvent;\n    new(type: string, eventInitDict?: CompositionEventInit): CompositionEvent;\n};\n\n/**\n * The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)\n */\ninterface CompressionStream extends GenericTransformStream {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var CompressionStream: {\n    prototype: CompressionStream;\n    new(format: CompressionFormat): CompressionStream;\n};\n\n/**\n * The `ConstantSourceNode` interface—part of the Web Audio API—represents an audio source (based upon AudioScheduledSourceNode) whose output is single unchanging value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ConstantSourceNode)\n */\ninterface ConstantSourceNode extends AudioScheduledSourceNode {\n    /**\n     * The read-only `offset` property of the ConstantSourceNode interface returns a AudioParam object indicating the numeric a-rate value which is always returned by the source when asked for the next sample.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ConstantSourceNode/offset)\n     */\n    readonly offset: AudioParam;\n    addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ConstantSourceNode: {\n    prototype: ConstantSourceNode;\n    new(context: BaseAudioContext, options?: ConstantSourceOptions): ConstantSourceNode;\n};\n\n/**\n * The **`ContentVisibilityAutoStateChangeEvent`** interface is the event object for the element/contentvisibilityautostatechange_event event, which fires on any element with content-visibility set on it when it starts or stops being relevant to the user and skipping its contents.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent)\n */\ninterface ContentVisibilityAutoStateChangeEvent extends Event {\n    /**\n     * The `skipped` read-only property of the ContentVisibilityAutoStateChangeEvent interface returns `true` if the user agent skips the element's contents, or `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContentVisibilityAutoStateChangeEvent/skipped)\n     */\n    readonly skipped: boolean;\n}\n\ndeclare var ContentVisibilityAutoStateChangeEvent: {\n    prototype: ContentVisibilityAutoStateChangeEvent;\n    new(type: string, eventInitDict?: ContentVisibilityAutoStateChangeEventInit): ContentVisibilityAutoStateChangeEvent;\n};\n\n/**\n * The `ConvolverNode` interface is an AudioNode that performs a Linear Convolution on a given AudioBuffer, often used to achieve a reverb effect.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ConvolverNode)\n */\ninterface ConvolverNode extends AudioNode {\n    /**\n     * The **`buffer`** property of the ConvolverNode interface represents a mono, stereo, or 4-channel AudioBuffer containing the (possibly multichannel) impulse response used by the `ConvolverNode` to create the reverb effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ConvolverNode/buffer)\n     */\n    buffer: AudioBuffer | null;\n    /**\n     * The `normalize` property of the ConvolverNode interface is a boolean that controls whether the impulse response from the buffer will be scaled by an equal-power normalization when the `buffer` attribute is set, or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ConvolverNode/normalize)\n     */\n    normalize: boolean;\n}\n\ndeclare var ConvolverNode: {\n    prototype: ConvolverNode;\n    new(context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;\n};\n\n/**\n * The **`CookieChangeEvent`** interface of the Cookie Store API is the event type of the CookieStore/change_event event fired at a CookieStore when any cookies are created or deleted.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent)\n */\ninterface CookieChangeEvent extends Event {\n    /**\n     * The **`changed`** read-only property of the CookieChangeEvent interface returns an array of the cookies that have been changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/changed)\n     */\n    readonly changed: ReadonlyArray<CookieListItem>;\n    /**\n     * The **`deleted`** read-only property of the CookieChangeEvent interface returns an array of the cookies that have been deleted by the given `CookieChangeEvent` instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieChangeEvent/deleted)\n     */\n    readonly deleted: ReadonlyArray<CookieListItem>;\n}\n\ndeclare var CookieChangeEvent: {\n    prototype: CookieChangeEvent;\n    new(type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;\n};\n\ninterface CookieStoreEventMap {\n    \"change\": CookieChangeEvent;\n}\n\n/**\n * The **`CookieStore`** interface of the Cookie Store API provides methods for getting and setting cookies asynchronously from either a page or a service worker.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore)\n */\ninterface CookieStore extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/change_event) */\n    onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;\n    /**\n     * The **`delete()`** method of the CookieStore interface deletes a cookie that matches the given `name` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/delete)\n     */\n    delete(name: string): Promise<void>;\n    delete(options: CookieStoreDeleteOptions): Promise<void>;\n    /**\n     * The **`get()`** method of the CookieStore interface returns a Promise that resolves to a single cookie matching the given `name` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/get)\n     */\n    get(name: string): Promise<CookieListItem | null>;\n    get(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;\n    /**\n     * The **`getAll()`** method of the CookieStore interface returns a Promise that resolves as an array of cookies that match the `name` or `options` passed to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/getAll)\n     */\n    getAll(name: string): Promise<CookieList>;\n    getAll(options?: CookieStoreGetOptions): Promise<CookieList>;\n    /**\n     * The **`set()`** method of the CookieStore interface sets a cookie with the given `name` and `value` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/set)\n     */\n    set(name: string, value: string): Promise<void>;\n    set(options: CookieInit): Promise<void>;\n    addEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var CookieStore: {\n    prototype: CookieStore;\n    new(): CookieStore;\n};\n\n/**\n * The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)\n */\ninterface CookieStoreManager {\n    /**\n     * The **`getSubscriptions()`** method of the CookieStoreManager interface returns a list of all the cookie change subscriptions for this ServiceWorkerRegistration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions)\n     */\n    getSubscriptions(): Promise<CookieStoreGetOptions[]>;\n    /**\n     * The **`subscribe()`** method of the CookieStoreManager interface subscribes a ServiceWorkerRegistration to cookie change events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe)\n     */\n    subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;\n    /**\n     * The **`unsubscribe()`** method of the CookieStoreManager interface stops the ServiceWorkerRegistration from receiving previously subscribed events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe)\n     */\n    unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;\n}\n\ndeclare var CookieStoreManager: {\n    prototype: CookieStoreManager;\n    new(): CookieStoreManager;\n};\n\n/**\n * The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy)\n */\ninterface CountQueuingStrategy extends QueuingStrategy {\n    /**\n     * The read-only **`CountQueuingStrategy.highWaterMark`** property returns the total number of chunks that can be contained in the internal queue before backpressure is applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/highWaterMark)\n     */\n    readonly highWaterMark: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/size) */\n    readonly size: QueuingStrategySize;\n}\n\ndeclare var CountQueuingStrategy: {\n    prototype: CountQueuingStrategy;\n    new(init: QueuingStrategyInit): CountQueuingStrategy;\n};\n\n/**\n * The **`Credential`** interface of the Credential Management API provides information about an entity (usually a user) normally as a prerequisite to a trust decision.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Credential)\n */\ninterface Credential {\n    /**\n     * The **`id`** read-only property of the Credential interface returns a string containing the credential's identifier.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Credential/id)\n     */\n    readonly id: string;\n    /**\n     * The **`type`** read-only property of the Credential interface returns a string containing the credential's type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Credential/type)\n     */\n    readonly type: string;\n}\n\ndeclare var Credential: {\n    prototype: Credential;\n    new(): Credential;\n};\n\n/**\n * The **`CredentialsContainer`** interface of the Credential Management API exposes methods to request credentials and notify the user agent when events such as successful sign in or sign out happen.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer)\n */\ninterface CredentialsContainer {\n    /**\n     * The **`create()`** method of the CredentialsContainer interface creates a new credential, which can then be stored and later retrieved using the CredentialsContainer.get method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/create)\n     */\n    create(options?: CredentialCreationOptions): Promise<Credential | null>;\n    /**\n     * The **`get()`** method of the CredentialsContainer interface returns a Promise that fulfills with a single credential, which can then be used to authenticate a user to a website.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/get)\n     */\n    get(options?: CredentialRequestOptions): Promise<Credential | null>;\n    /**\n     * The **`preventSilentAccess()`** method of the CredentialsContainer interface sets a flag that specifies whether automatic log in is allowed for future visits to the current origin, then returns a Promise that resolves to `undefined`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/preventSilentAccess)\n     */\n    preventSilentAccess(): Promise<void>;\n    /**\n     * The **`store()`** method of the ```js-nolint store(credentials) ``` - `credentials` - : A valid Credential instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/store)\n     */\n    store(credential: Credential): Promise<void>;\n}\n\ndeclare var CredentialsContainer: {\n    prototype: CredentialsContainer;\n    new(): CredentialsContainer;\n};\n\n/**\n * The **`Crypto`** interface represents basic cryptography features available in the current context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto)\n */\ninterface Crypto {\n    /**\n     * The **`Crypto.subtle`** read-only property returns a cryptographic operations.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)\n     */\n    readonly subtle: SubtleCrypto;\n    /**\n     * The **`Crypto.getRandomValues()`** method lets you get cryptographically strong random values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/getRandomValues)\n     */\n    getRandomValues<T extends ArrayBufferView>(array: T): T;\n    /**\n     * The **`randomUUID()`** method of the Crypto interface is used to generate a v4 UUID using a cryptographically secure random number generator.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/randomUUID)\n     */\n    randomUUID(): `${string}-${string}-${string}-${string}-${string}`;\n}\n\ndeclare var Crypto: {\n    prototype: Crypto;\n    new(): Crypto;\n};\n\n/**\n * The **`CryptoKey`** interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods SubtleCrypto.generateKey, SubtleCrypto.deriveKey, SubtleCrypto.importKey, or SubtleCrypto.unwrapKey.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey)\n */\ninterface CryptoKey {\n    /**\n     * The read-only **`algorithm`** property of the CryptoKey interface returns an object describing the algorithm for which this key can be used, and any associated extra parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/algorithm)\n     */\n    readonly algorithm: KeyAlgorithm;\n    /**\n     * The read-only **`extractable`** property of the CryptoKey interface indicates whether or not the key may be extracted using `SubtleCrypto.exportKey()` or `SubtleCrypto.wrapKey()`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/extractable)\n     */\n    readonly extractable: boolean;\n    /**\n     * The read-only **`type`** property of the CryptoKey interface indicates which kind of key is represented by the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/type)\n     */\n    readonly type: KeyType;\n    /**\n     * The read-only **`usages`** property of the CryptoKey interface indicates what can be done with the key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/usages)\n     */\n    readonly usages: KeyUsage[];\n}\n\ndeclare var CryptoKey: {\n    prototype: CryptoKey;\n    new(): CryptoKey;\n};\n\n/**\n * The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)\n */\ninterface CustomElementRegistry {\n    /**\n     * The **`define()`** method of the CustomElementRegistry interface adds a definition for a custom element to the custom element registry, mapping its name to the constructor which will be used to create it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/define)\n     */\n    define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;\n    /**\n     * The **`get()`** method of the previously-defined custom element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/get)\n     */\n    get(name: string): CustomElementConstructor | undefined;\n    /**\n     * The **`getName()`** method of the previously-defined custom element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)\n     */\n    getName(constructor: CustomElementConstructor): string | null;\n    /**\n     * The **`upgrade()`** method of the elements in a Node subtree, even before they are connected to the main document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)\n     */\n    upgrade(root: Node): void;\n    /**\n     * The **`whenDefined()`** method of the resolves when the named element is defined.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)\n     */\n    whenDefined(name: string): Promise<CustomElementConstructor>;\n}\n\ndeclare var CustomElementRegistry: {\n    prototype: CustomElementRegistry;\n    new(): CustomElementRegistry;\n};\n\n/**\n * The **`CustomEvent`** interface represents events initialized by an application for any purpose.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)\n */\ninterface CustomEvent<T = any> extends Event {\n    /**\n     * The read-only **`detail`** property of the CustomEvent interface returns any data passed when initializing the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent/detail)\n     */\n    readonly detail: T;\n    /**\n     * The **`CustomEvent.initCustomEvent()`** method initializes a CustomEvent object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent/initCustomEvent)\n     */\n    initCustomEvent(type: string, bubbles?: boolean, cancelable?: boolean, detail?: T): void;\n}\n\ndeclare var CustomEvent: {\n    prototype: CustomEvent;\n    new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;\n};\n\n/**\n * The **`CustomStateSet`** interface of the Document Object Model stores a list of states for an autonomous custom element, and allows states to be added and removed from the set.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomStateSet)\n */\ninterface CustomStateSet {\n    forEach(callbackfn: (value: string, key: string, parent: CustomStateSet) => void, thisArg?: any): void;\n}\n\ndeclare var CustomStateSet: {\n    prototype: CustomStateSet;\n    new(): CustomStateSet;\n};\n\n/**\n * The **`DOMException`** interface represents an abnormal event (called an **exception**) that occurs as a result of calling a method or accessing a property of a web API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException)\n */\ninterface DOMException extends Error {\n    /**\n     * The **`code`** read-only property of the DOMException interface returns one of the legacy error code constants, or `0` if none match.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/code)\n     */\n    readonly code: number;\n    /**\n     * The **`message`** read-only property of the a message or description associated with the given error name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)\n     */\n    readonly message: string;\n    /**\n     * The **`name`** read-only property of the one of the strings associated with an error name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)\n     */\n    readonly name: string;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n}\n\ndeclare var DOMException: {\n    prototype: DOMException;\n    new(message?: string, name?: string): DOMException;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n};\n\n/**\n * The **`DOMImplementation`** interface represents an object providing methods which are not dependent on any particular document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation)\n */\ninterface DOMImplementation {\n    /**\n     * The **`DOMImplementation.createDocument()`** method creates and returns an XMLDocument.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocument)\n     */\n    createDocument(namespace: string | null, qualifiedName: string | null, doctype?: DocumentType | null): XMLDocument;\n    /**\n     * The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with into the document via methods like Node.insertBefore() or ```js-nolint createDocumentType(qualifiedNameStr, publicId, systemId) ``` - `qualifiedNameStr` - : A string containing the qualified name, like `svg:svg`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)\n     */\n    createDocumentType(name: string, publicId: string, systemId: string): DocumentType;\n    /**\n     * The **`DOMImplementation.createHTMLDocument()`** method creates a new HTML Document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createHTMLDocument)\n     */\n    createHTMLDocument(title?: string): Document;\n    /**\n     * The **`DOMImplementation.hasFeature()`** method returns a boolean flag indicating if a given feature is supported.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/hasFeature)\n     */\n    hasFeature(...args: any[]): true;\n}\n\ndeclare var DOMImplementation: {\n    prototype: DOMImplementation;\n    new(): DOMImplementation;\n};\n\n/**\n * The **`DOMMatrix`** interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix)\n */\ninterface DOMMatrix extends DOMMatrixReadOnly {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    a: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    b: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    c: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    d: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    e: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    f: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m11: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m12: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m13: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m14: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m21: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m22: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m23: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m24: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m31: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m32: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m33: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m34: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m41: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m42: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m43: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m44: number;\n    /**\n     * The **`invertSelf()`** method of the DOMMatrix interface inverts the original matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf)\n     */\n    invertSelf(): DOMMatrix;\n    /**\n     * The **`multiplySelf()`** method of the DOMMatrix interface multiplies a matrix by the `otherMatrix` parameter, computing the dot product of the original matrix and the specified matrix: `A⋅B`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf)\n     */\n    multiplySelf(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The **`preMultiplySelf()`** method of the DOMMatrix interface modifies the matrix by pre-multiplying it with the specified `DOMMatrix`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf)\n     */\n    preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The `rotateAxisAngleSelf()` method of the DOMMatrix interface is a transformation method that rotates the source matrix by the given vector and angle, returning the altered matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf)\n     */\n    rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;\n    /**\n     * The `rotateFromVectorSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by rotating the matrix by the angle between the specified vector and `(1, 0)`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf)\n     */\n    rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;\n    /**\n     * The `rotateSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf)\n     */\n    rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;\n    /**\n     * The **`scale3dSelf()`** method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by applying a specified scaling factor to all three axes, centered on the given origin, with a default origin of `(0, 0, 0)`, returning the 3D-scaled matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf)\n     */\n    scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The **`scaleSelf()`** method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by applying a specified scaling factor, centered on the given origin, with a default origin of `(0, 0)`, returning the scaled matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scaleSelf)\n     */\n    scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The **`setMatrixValue()`** method of the DOMMatrix interface replaces the contents of the matrix with the matrix described by the specified transform or transforms, returning itself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue)\n     */\n    setMatrixValue(transformList: string): DOMMatrix;\n    /**\n     * The `skewXSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf)\n     */\n    skewXSelf(sx?: number): DOMMatrix;\n    /**\n     * The `skewYSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf)\n     */\n    skewYSelf(sy?: number): DOMMatrix;\n    /**\n     * The `translateSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf)\n     */\n    translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;\n}\n\ndeclare var DOMMatrix: {\n    prototype: DOMMatrix;\n    new(init?: string | number[]): DOMMatrix;\n    fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;\n    fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;\n    fromMatrix(other?: DOMMatrixInit): DOMMatrix;\n};\n\ntype SVGMatrix = DOMMatrix;\ndeclare var SVGMatrix: typeof DOMMatrix;\n\ntype WebKitCSSMatrix = DOMMatrix;\ndeclare var WebKitCSSMatrix: typeof DOMMatrix;\n\n/**\n * The **`DOMMatrixReadOnly`** interface represents a read-only 4×4 matrix, suitable for 2D and 3D operations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)\n */\ninterface DOMMatrixReadOnly {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly a: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly b: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly c: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly d: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly e: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly f: number;\n    /**\n     * The readonly **`is2D`** property of the DOMMatrixReadOnly interface is a Boolean flag that is `true` when the matrix is 2D.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D)\n     */\n    readonly is2D: boolean;\n    /**\n     * The readonly **`isIdentity`** property of the DOMMatrixReadOnly interface is a Boolean whose value is `true` if the matrix is the identity matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity)\n     */\n    readonly isIdentity: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m11: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m12: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m13: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m14: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m21: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m22: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m23: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m24: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m31: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m32: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m33: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m34: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m41: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m42: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m43: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m44: number;\n    /**\n     * The **`flipX()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the x-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX)\n     */\n    flipX(): DOMMatrix;\n    /**\n     * The **`flipY()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the y-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY)\n     */\n    flipY(): DOMMatrix;\n    /**\n     * The **`inverse()`** method of the DOMMatrixReadOnly interface creates a new matrix which is the inverse of the original matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse)\n     */\n    inverse(): DOMMatrix;\n    /**\n     * The **`multiply()`** method of the DOMMatrixReadOnly interface creates and returns a new matrix which is the dot product of the matrix and the `otherMatrix` parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply)\n     */\n    multiply(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The `rotate()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by rotating the source matrix around each of its axes by the specified number of degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate)\n     */\n    rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;\n    /**\n     * The `rotateAxisAngle()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by rotating the source matrix by the given vector and angle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle)\n     */\n    rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;\n    /**\n     * The `rotateFromVector()` method of the DOMMatrixReadOnly interface is returns a new DOMMatrix created by rotating the source matrix by the angle between the specified vector and `(1, 0)`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector)\n     */\n    rotateFromVector(x?: number, y?: number): DOMMatrix;\n    /**\n     * The **`scale()`** method of the original matrix with a scale transform applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)\n     */\n    scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The **`scale3d()`** method of the DOMMatrixReadOnly interface creates a new matrix which is the result of a 3D scale transform being applied to the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d)\n     */\n    scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /** @deprecated */\n    scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;\n    /**\n     * The `skewX()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its x-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX)\n     */\n    skewX(sx?: number): DOMMatrix;\n    /**\n     * The `skewY()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its y-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY)\n     */\n    skewY(sy?: number): DOMMatrix;\n    /**\n     * The **`toFloat32Array()`** method of the DOMMatrixReadOnly interface returns a new Float32Array containing all 16 elements (`m11`, `m12`, `m13`, `m14`, `m21`, `m22`, `m23`, `m24`, `m31`, `m32`, `m33`, `m34`, `m41`, `m42`, `m43`, `m44`) which comprise the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array)\n     */\n    toFloat32Array(): Float32Array<ArrayBuffer>;\n    /**\n     * The **`toFloat64Array()`** method of the DOMMatrixReadOnly interface returns a new Float64Array containing all 16 elements (`m11`, `m12`, `m13`, `m14`, `m21`, `m22`, `m23`, `m24`, `m31`, `m32`, `m33`, `m34`, `m41`, `m42`, `m43`, `m44`) which comprise the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array)\n     */\n    toFloat64Array(): Float64Array<ArrayBuffer>;\n    /**\n     * The **`toJSON()`** method of the DOMMatrixReadOnly interface creates and returns a JSON object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON)\n     */\n    toJSON(): any;\n    /**\n     * The **`transformPoint`** method of the You can also create a new `DOMPoint` by applying a matrix to a point with the DOMPointReadOnly.matrixTransform() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)\n     */\n    transformPoint(point?: DOMPointInit): DOMPoint;\n    /**\n     * The `translate()` method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a translation applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate)\n     */\n    translate(tx?: number, ty?: number, tz?: number): DOMMatrix;\n    toString(): string;\n}\n\ndeclare var DOMMatrixReadOnly: {\n    prototype: DOMMatrixReadOnly;\n    new(init?: string | number[]): DOMMatrixReadOnly;\n    fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;\n    fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;\n    fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;\n};\n\n/**\n * The **`DOMParser`** interface provides the ability to parse XML or HTML source code from a string into a DOM Document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser)\n */\ninterface DOMParser {\n    /**\n     * The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMParser/parseFromString)\n     */\n    parseFromString(string: string, type: DOMParserSupportedType): Document;\n}\n\ndeclare var DOMParser: {\n    prototype: DOMParser;\n    new(): DOMParser;\n};\n\n/**\n * A **`DOMPoint`** object represents a 2D or 3D point in a coordinate system; it includes values for the coordinates in up to three dimensions, as well as an optional perspective value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint)\n */\ninterface DOMPoint extends DOMPointReadOnly {\n    /**\n     * The **`DOMPoint`** interface's **`w`** property holds the point's perspective value, w, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/w)\n     */\n    w: number;\n    /**\n     * The **`DOMPoint`** interface's **`x`** property holds the horizontal coordinate, x, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/x)\n     */\n    x: number;\n    /**\n     * The **`DOMPoint`** interface's **`y`** property holds the vertical coordinate, _y_, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/y)\n     */\n    y: number;\n    /**\n     * The **`DOMPoint`** interface's **`z`** property specifies the depth coordinate of a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/z)\n     */\n    z: number;\n}\n\ndeclare var DOMPoint: {\n    prototype: DOMPoint;\n    new(x?: number, y?: number, z?: number, w?: number): DOMPoint;\n    /**\n     * The **`fromPoint()`** static method of the DOMPoint interface creates and returns a new mutable `DOMPoint` object given a source point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/fromPoint_static)\n     */\n    fromPoint(other?: DOMPointInit): DOMPoint;\n};\n\ntype SVGPoint = DOMPoint;\ndeclare var SVGPoint: typeof DOMPoint;\n\n/**\n * The **`DOMPointReadOnly`** interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly)\n */\ninterface DOMPointReadOnly {\n    /**\n     * The **`DOMPointReadOnly`** interface's **`w`** property holds the point's perspective value, `w`, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/w)\n     */\n    readonly w: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`x`** property holds the horizontal coordinate, x, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/x)\n     */\n    readonly x: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`y`** property holds the vertical coordinate, y, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/y)\n     */\n    readonly y: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`z`** property holds the depth coordinate, z, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z)\n     */\n    readonly z: number;\n    /**\n     * The **`matrixTransform()`** method of the DOMPointReadOnly interface applies a matrix transform specified as an object to the DOMPointReadOnly object, creating and returning a new `DOMPointReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform)\n     */\n    matrixTransform(matrix?: DOMMatrixInit): DOMPoint;\n    /**\n     * The DOMPointReadOnly method `toJSON()` returns an object giving the ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMPointReadOnly: {\n    prototype: DOMPointReadOnly;\n    new(x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly;\n    /**\n     * The static **DOMPointReadOnly** method `fromPoint()` creates and returns a new `DOMPointReadOnly` object given a source point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/fromPoint_static)\n     */\n    fromPoint(other?: DOMPointInit): DOMPointReadOnly;\n};\n\n/**\n * A `DOMQuad` is a collection of four `DOMPoint`s defining the corners of an arbitrary quadrilateral.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad)\n */\ninterface DOMQuad {\n    /**\n     * The **`DOMQuad`** interface's **`p1`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1)\n     */\n    readonly p1: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p2`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2)\n     */\n    readonly p2: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p3`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3)\n     */\n    readonly p3: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p4`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4)\n     */\n    readonly p4: DOMPoint;\n    /**\n     * The DOMQuad method `getBounds()` returns a DOMRect object representing the smallest rectangle that fully contains the `DOMQuad` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds)\n     */\n    getBounds(): DOMRect;\n    /**\n     * The DOMQuad method `toJSON()` returns a ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMQuad: {\n    prototype: DOMQuad;\n    new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;\n    fromQuad(other?: DOMQuadInit): DOMQuad;\n    fromRect(other?: DOMRectInit): DOMQuad;\n};\n\n/**\n * A **`DOMRect`** describes the size and position of a rectangle.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect)\n */\ninterface DOMRect extends DOMRectReadOnly {\n    /**\n     * The **`height`** property of the DOMRect interface represents the height of the rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/height)\n     */\n    height: number;\n    /**\n     * The **`width`** property of the DOMRect interface represents the width of the rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/width)\n     */\n    width: number;\n    /**\n     * The **`x`** property of the DOMRect interface represents the x-coordinate of the rectangle, which is the horizontal distance between the viewport's left edge and the rectangle's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/x)\n     */\n    x: number;\n    /**\n     * The **`y`** property of the DOMRect interface represents the y-coordinate of the rectangle, which is the vertical distance between the viewport's top edge and the rectangle's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/y)\n     */\n    y: number;\n}\n\ndeclare var DOMRect: {\n    prototype: DOMRect;\n    new(x?: number, y?: number, width?: number, height?: number): DOMRect;\n    /**\n     * The **`fromRect()`** static method of the object with a given location and dimensions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)\n     */\n    fromRect(other?: DOMRectInit): DOMRect;\n};\n\ntype SVGRect = DOMRect;\ndeclare var SVGRect: typeof DOMRect;\n\n/**\n * The **`DOMRectList`** interface represents a collection of DOMRect objects, typically used to hold the rectangles associated with a particular element, like bounding boxes returned by methods such as Element.getClientRects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList)\n */\ninterface DOMRectList {\n    /**\n     * The read-only **`length`** property of the DOMRectList interface returns the number of DOMRect objects in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList/length)\n     */\n    readonly length: number;\n    /**\n     * The DOMRectList method `item()` returns the DOMRect at the specified index within the list, or `null` if the index is out of range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList/item)\n     */\n    item(index: number): DOMRect | null;\n    [index: number]: DOMRect;\n}\n\ndeclare var DOMRectList: {\n    prototype: DOMRectList;\n    new(): DOMRectList;\n};\n\n/**\n * The **`DOMRectReadOnly`** interface specifies the standard properties (also used by DOMRect) to define a rectangle whose properties are immutable.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly)\n */\ninterface DOMRectReadOnly {\n    /**\n     * The **`bottom`** read-only property of the **`DOMRectReadOnly`** interface returns the bottom coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/bottom)\n     */\n    readonly bottom: number;\n    /**\n     * The **`height`** read-only property of the **`DOMRectReadOnly`** interface represents the height of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/height)\n     */\n    readonly height: number;\n    /**\n     * The **`left`** read-only property of the **`DOMRectReadOnly`** interface returns the left coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/left)\n     */\n    readonly left: number;\n    /**\n     * The **`right`** read-only property of the **`DOMRectReadOnly`** interface returns the right coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/right)\n     */\n    readonly right: number;\n    /**\n     * The **`top`** read-only property of the **`DOMRectReadOnly`** interface returns the top coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/top)\n     */\n    readonly top: number;\n    /**\n     * The **`width`** read-only property of the **`DOMRectReadOnly`** interface represents the width of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/width)\n     */\n    readonly width: number;\n    /**\n     * The **`x`** read-only property of the **`DOMRectReadOnly`** interface represents the x coordinate of the `DOMRect`'s origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/x)\n     */\n    readonly x: number;\n    /**\n     * The **`y`** read-only property of the **`DOMRectReadOnly`** interface represents the y coordinate of the `DOMRect`'s origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/y)\n     */\n    readonly y: number;\n    /**\n     * The DOMRectReadOnly method `toJSON()` returns a JSON representation of the `DOMRectReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMRectReadOnly: {\n    prototype: DOMRectReadOnly;\n    new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;\n    /**\n     * The **`fromRect()`** static method of the object with a given location and dimensions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)\n     */\n    fromRect(other?: DOMRectInit): DOMRectReadOnly;\n};\n\n/**\n * The **`DOMStringList`** interface is a legacy type returned by some APIs and represents a non-modifiable list of strings (`DOMString`).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList)\n */\ninterface DOMStringList {\n    /**\n     * The read-only **`length`** property indicates the number of strings in the DOMStringList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`contains()`** method returns a boolean indicating whether the given string is in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/contains)\n     */\n    contains(string: string): boolean;\n    /**\n     * The **`item()`** method returns a string from a `DOMStringList` by index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/item)\n     */\n    item(index: number): string | null;\n    [index: number]: string;\n}\n\ndeclare var DOMStringList: {\n    prototype: DOMStringList;\n    new(): DOMStringList;\n};\n\n/**\n * The **`DOMStringMap`** interface is used for the HTMLElement.dataset attribute, to represent data for custom attributes added to elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringMap)\n */\ninterface DOMStringMap {\n    [name: string]: string | undefined;\n}\n\ndeclare var DOMStringMap: {\n    prototype: DOMStringMap;\n    new(): DOMStringMap;\n};\n\n/**\n * The **`DOMTokenList`** interface represents a set of space-separated tokens.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList)\n */\ninterface DOMTokenList {\n    /**\n     * The read-only **`length`** property of the DOMTokenList interface is an `integer` representing the number of objects stored in the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`value`** property of the DOMTokenList interface is a stringifier that returns the value of the list serialized as a string, or clears and sets the list to the given value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/value)\n     */\n    value: string;\n    toString(): string;\n    /**\n     * The **`add()`** method of the DOMTokenList interface adds the given tokens to the list, omitting any that are already present.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/add)\n     */\n    add(...tokens: string[]): void;\n    /**\n     * The **`contains()`** method of the DOMTokenList interface returns a boolean value — `true` if the underlying list contains the given token, otherwise `false`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/contains)\n     */\n    contains(token: string): boolean;\n    /**\n     * The **`item()`** method of the DOMTokenList interface returns an item in the list, determined by its position in the list, its index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/item)\n     */\n    item(index: number): string | null;\n    /**\n     * The **`remove()`** method of the DOMTokenList interface removes the specified _tokens_ from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/remove)\n     */\n    remove(...tokens: string[]): void;\n    /**\n     * The **`replace()`** method of the DOMTokenList interface replaces an existing token with a new token.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/replace)\n     */\n    replace(token: string, newToken: string): boolean;\n    /**\n     * The **`supports()`** method of the DOMTokenList interface returns `true` if a given `token` is in the associated attribute's supported tokens.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/supports)\n     */\n    supports(token: string): boolean;\n    /**\n     * The **`toggle()`** method of the DOMTokenList interface removes an existing token from the list and returns `false`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMTokenList/toggle)\n     */\n    toggle(token: string, force?: boolean): boolean;\n    forEach(callbackfn: (value: string, key: number, parent: DOMTokenList) => void, thisArg?: any): void;\n    [index: number]: string;\n}\n\ndeclare var DOMTokenList: {\n    prototype: DOMTokenList;\n    new(): DOMTokenList;\n};\n\n/**\n * The **`DataTransfer`** object is used to hold any data transferred between contexts, such as a drag and drop operation, or clipboard read/write.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer)\n */\ninterface DataTransfer {\n    /**\n     * The **`DataTransfer.dropEffect`** property controls the feedback (typically visual) the user is given during a drag and drop operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/dropEffect)\n     */\n    dropEffect: \"none\" | \"copy\" | \"link\" | \"move\";\n    /**\n     * The **`DataTransfer.effectAllowed`** property specifies the effect that is allowed for a drag operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/effectAllowed)\n     */\n    effectAllowed: \"none\" | \"copy\" | \"copyLink\" | \"copyMove\" | \"link\" | \"linkMove\" | \"move\" | \"all\" | \"uninitialized\";\n    /**\n     * The **`files`** read-only property of `DataTransfer` objects is a list of the files in the drag operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/files)\n     */\n    readonly files: FileList;\n    /**\n     * The read-only `items` property of the DataTransfer interface is a A DataTransferItemList object containing DataTransferItem objects representing the items being dragged in a drag operation, one list item for each object being dragged.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/items)\n     */\n    readonly items: DataTransferItemList;\n    /**\n     * The **`DataTransfer.types`** read-only property returns the available types that exist in the DataTransfer.items.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/types)\n     */\n    readonly types: ReadonlyArray<string>;\n    /**\n     * The **`DataTransfer.clearData()`** method removes the drag operation's drag data for the given type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/clearData)\n     */\n    clearData(format?: string): void;\n    /**\n     * The **`DataTransfer.getData()`** method retrieves drag data (as a string) for the specified type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/getData)\n     */\n    getData(format: string): string;\n    /**\n     * The **`DataTransfer.setData()`** method sets the drag operation's drag data to the specified data and type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/setData)\n     */\n    setData(format: string, data: string): void;\n    /**\n     * When a drag occurs, a translucent image is generated from the drag target (the element the HTMLElement/dragstart_event event is fired at), and follows the mouse pointer during the drag.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/setDragImage)\n     */\n    setDragImage(image: Element, x: number, y: number): void;\n}\n\ndeclare var DataTransfer: {\n    prototype: DataTransfer;\n    new(): DataTransfer;\n};\n\n/**\n * The **`DataTransferItem`** object represents one drag data item.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem)\n */\ninterface DataTransferItem {\n    /**\n     * The read-only **`DataTransferItem.kind`** property returns the kind–a string or a file–of the DataTransferItem object representing the _drag data item_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem/kind)\n     */\n    readonly kind: string;\n    /**\n     * The read-only **`DataTransferItem.type`** property returns the type (format) of the DataTransferItem object representing the drag data item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem/type)\n     */\n    readonly type: string;\n    /**\n     * If the item is a file, the **`DataTransferItem.getAsFile()`** method returns the drag data item's File object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem/getAsFile)\n     */\n    getAsFile(): File | null;\n    /**\n     * The **`DataTransferItem.getAsString()`** method invokes the given callback with the drag data item's string data as the argument if the item's DataTransferItem.kind is a _Plain unicode string_ (i.e., `kind` is `string`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem/getAsString)\n     */\n    getAsString(callback: FunctionStringCallback | null): void;\n    /**\n     * If the item described by the DataTransferItem is a file, `webkitGetAsEntry()` returns a FileSystemFileEntry or FileSystemDirectoryEntry representing it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItem/webkitGetAsEntry)\n     */\n    webkitGetAsEntry(): FileSystemEntry | null;\n}\n\ndeclare var DataTransferItem: {\n    prototype: DataTransferItem;\n    new(): DataTransferItem;\n};\n\n/**\n * The **`DataTransferItemList`** object is a list of DataTransferItem objects representing items being dragged.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList)\n */\ninterface DataTransferItemList {\n    /**\n     * The read-only **`length`** property of the the drag item list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`DataTransferItemList.add()`** method creates a new list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/add)\n     */\n    add(data: string, type: string): DataTransferItem | null;\n    add(data: File): DataTransferItem | null;\n    /**\n     * The DataTransferItemList method **`clear()`** removes all DataTransferItem objects from the drag data items list, leaving the list empty.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/clear)\n     */\n    clear(): void;\n    /**\n     * The **`DataTransferItemList.remove()`** method removes the less than zero or greater than one less than the length of the list, the list will not be changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/remove)\n     */\n    remove(index: number): void;\n    [index: number]: DataTransferItem;\n}\n\ndeclare var DataTransferItemList: {\n    prototype: DataTransferItemList;\n    new(): DataTransferItemList;\n};\n\n/**\n * The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)\n */\ninterface DecompressionStream extends GenericTransformStream {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var DecompressionStream: {\n    prototype: DecompressionStream;\n    new(format: CompressionFormat): DecompressionStream;\n};\n\n/**\n * The **`DelayNode`** interface represents a delay-line; an AudioNode audio-processing module that causes a delay between the arrival of an input data and its propagation to the output.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DelayNode)\n */\ninterface DelayNode extends AudioNode {\n    /**\n     * The `delayTime` property of the DelayNode interface is an a-rate AudioParam representing the amount of delay to apply.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DelayNode/delayTime)\n     */\n    readonly delayTime: AudioParam;\n}\n\ndeclare var DelayNode: {\n    prototype: DelayNode;\n    new(context: BaseAudioContext, options?: DelayOptions): DelayNode;\n};\n\n/**\n * The **`DeviceMotionEvent`** interface of the Device Orientation Events provides web developers with information about the speed of changes for the device's position and orientation.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEvent)\n */\ninterface DeviceMotionEvent extends Event {\n    /**\n     * The **`acceleration`** read-only property of the DeviceMotionEvent interface returns the acceleration recorded by the device, in meters per second squared (m/s²).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEvent/acceleration)\n     */\n    readonly acceleration: DeviceMotionEventAcceleration | null;\n    /**\n     * The **`accelerationIncludingGravity`** read-only property of the DeviceMotionEvent interface returns the amount of acceleration recorded by the device, in meters per second squared (m/s²).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEvent/accelerationIncludingGravity)\n     */\n    readonly accelerationIncludingGravity: DeviceMotionEventAcceleration | null;\n    /**\n     * The **`interval`** read-only property of the DeviceMotionEvent interface returns the interval, in milliseconds, at which data is obtained from the underlying hardware.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEvent/interval)\n     */\n    readonly interval: number;\n    /**\n     * The **`rotationRate`** read-only property of the DeviceMotionEvent interface returns the rate at which the device is rotating around each of its axes in degrees per second.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEvent/rotationRate)\n     */\n    readonly rotationRate: DeviceMotionEventRotationRate | null;\n}\n\ndeclare var DeviceMotionEvent: {\n    prototype: DeviceMotionEvent;\n    new(type: string, eventInitDict?: DeviceMotionEventInit): DeviceMotionEvent;\n};\n\n/**\n * The **`DeviceMotionEventAcceleration`** interface of the Device Orientation Events provides information about the amount of acceleration the device is experiencing along all three axes.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventAcceleration)\n */\ninterface DeviceMotionEventAcceleration {\n    /**\n     * The **`x`** read-only property of the DeviceMotionEventAcceleration interface indicates the amount of acceleration that occurred along the X axis in a `DeviceMotionEventAcceleration` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventAcceleration/x)\n     */\n    readonly x: number | null;\n    /**\n     * The **`y`** read-only property of the DeviceMotionEventAcceleration interface indicates the amount of acceleration that occurred along the Y axis in a `DeviceMotionEventAcceleration` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventAcceleration/y)\n     */\n    readonly y: number | null;\n    /**\n     * The **`z`** read-only property of the DeviceMotionEventAcceleration interface indicates the amount of acceleration that occurred along the Z axis in a `DeviceMotionEventAcceleration` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventAcceleration/z)\n     */\n    readonly z: number | null;\n}\n\n/**\n * A **`DeviceMotionEventRotationRate`** interface of the Device Orientation Events provides information about the rate at which the device is rotating around all three axes.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventRotationRate)\n */\ninterface DeviceMotionEventRotationRate {\n    /**\n     * The **`alpha`** read-only property of the DeviceMotionEventRotationRate interface indicates the rate of rotation around the Z axis, in degrees per second.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventRotationRate/alpha)\n     */\n    readonly alpha: number | null;\n    /**\n     * The **`beta`** read-only property of the DeviceMotionEventRotationRate interface indicates the rate of rotation around the X axis, in degrees per second.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventRotationRate/beta)\n     */\n    readonly beta: number | null;\n    /**\n     * The **`gamma`** read-only property of the DeviceMotionEventRotationRate interface indicates the rate of rotation around the Y axis, in degrees per second.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceMotionEventRotationRate/gamma)\n     */\n    readonly gamma: number | null;\n}\n\n/**\n * The **`DeviceOrientationEvent`** interface of the Device Orientation Events provides web developers with information from the physical orientation of the device running the web page.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceOrientationEvent)\n */\ninterface DeviceOrientationEvent extends Event {\n    /**\n     * The **`absolute`** read-only property of the DeviceOrientationEvent interface indicates whether or not the device is providing orientation data absolutely (that is, in reference to the Earth's coordinate frame) or using some arbitrary frame determined by the device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceOrientationEvent/absolute)\n     */\n    readonly absolute: boolean;\n    /**\n     * The **`alpha`** read-only property of the DeviceOrientationEvent interface returns the rotation of the device around the Z axis; that is, the number of degrees by which the device is being twisted around the center of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceOrientationEvent/alpha)\n     */\n    readonly alpha: number | null;\n    /**\n     * The **`beta`** read-only property of the DeviceOrientationEvent interface returns the rotation of the device around the X axis; that is, the number of degrees, ranged between -180 and 180, by which the device is tipped forward or backward.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceOrientationEvent/beta)\n     */\n    readonly beta: number | null;\n    /**\n     * The **`gamma`** read-only property of the DeviceOrientationEvent interface returns the rotation of the device around the Y axis; that is, the number of degrees, ranged between `-90` and `90`, by which the device is tilted left or right.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DeviceOrientationEvent/gamma)\n     */\n    readonly gamma: number | null;\n}\n\ndeclare var DeviceOrientationEvent: {\n    prototype: DeviceOrientationEvent;\n    new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;\n};\n\ninterface DocumentEventMap extends GlobalEventHandlersEventMap {\n    \"DOMContentLoaded\": Event;\n    \"fullscreenchange\": Event;\n    \"fullscreenerror\": Event;\n    \"pointerlockchange\": Event;\n    \"pointerlockerror\": Event;\n    \"readystatechange\": Event;\n    \"visibilitychange\": Event;\n}\n\n/**\n * The **`Document`** interface represents any web page loaded in the browser and serves as an entry point into the web page's content, which is the DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document)\n */\ninterface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEventHandlers, NonElementParentNode, ParentNode, XPathEvaluatorBase {\n    /**\n     * The **`URL`** read-only property of the Document interface returns the document location as a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/URL)\n     */\n    readonly URL: string;\n    /**\n     * Returns or sets the color of an active link in the document body.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/alinkColor)\n     */\n    alinkColor: string;\n    /**\n     * The Document interface's read-only **`all`** property returns an HTMLAllCollection rooted at the document node.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/all)\n     */\n    readonly all: HTMLAllCollection;\n    /**\n     * The **`anchors`** read-only property of the An HTMLCollection.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/anchors)\n     */\n    readonly anchors: HTMLCollectionOf<HTMLAnchorElement>;\n    /**\n     * The **`applets`** property of the Document returns an empty HTMLCollection.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/applets)\n     */\n    readonly applets: HTMLCollection;\n    /**\n     * The deprecated `bgColor` property gets or sets the background color of the current document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/bgColor)\n     */\n    bgColor: string;\n    /**\n     * The **`Document.body`** property represents the `null` if no such element exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/body)\n     */\n    body: HTMLElement;\n    /**\n     * The **`Document.characterSet`** read-only property returns the character encoding of the document that it's currently rendered with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/characterSet)\n     */\n    readonly characterSet: string;\n    /**\n     * @deprecated This is a legacy alias of `characterSet`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/characterSet)\n     */\n    readonly charset: string;\n    /**\n     * The **`Document.compatMode`** read-only property indicates whether the document is rendered in Quirks mode or Standards mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/compatMode)\n     */\n    readonly compatMode: string;\n    /**\n     * The **`Document.contentType`** read-only property returns the MIME type that the document is being rendered as.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/contentType)\n     */\n    readonly contentType: string;\n    /**\n     * The Document property `cookie` lets you read and write cookies associated with the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/cookie)\n     */\n    cookie: string;\n    /**\n     * The **`Document.currentScript`** property returns the script element whose script is currently being processed and isn't a JavaScript module.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/currentScript)\n     */\n    readonly currentScript: HTMLOrSVGScriptElement | null;\n    /**\n     * In browsers, **`document.defaultView`** returns the This property is read-only.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/defaultView)\n     */\n    readonly defaultView: (WindowProxy & typeof globalThis) | null;\n    /**\n     * **`document.designMode`** controls whether the entire document is editable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/designMode)\n     */\n    designMode: string;\n    /**\n     * The **`Document.dir`** property is a string representing the directionality of the text of the document, whether left to right (default) or right to left.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/dir)\n     */\n    dir: string;\n    /**\n     * The **`doctype`** read-only property of the Document interface is a DocumentType object representing the Doctype associated with the current document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/doctype)\n     */\n    readonly doctype: DocumentType | null;\n    /**\n     * The **`documentElement`** read-only property of the Document interface returns the example, the html element for HTML documents).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentElement)\n     */\n    readonly documentElement: HTMLElement;\n    /**\n     * The **`documentURI`** read-only property of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentURI)\n     */\n    readonly documentURI: string;\n    /**\n     * The **`domain`** property of the Document interface gets/sets the domain portion of the origin of the current document, as used by the same-origin policy.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/domain)\n     */\n    domain: string;\n    /**\n     * The **`embeds`** read-only property of the An HTMLCollection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/embeds)\n     */\n    readonly embeds: HTMLCollectionOf<HTMLEmbedElement>;\n    /**\n     * **`fgColor`** gets/sets the foreground color, or text color, of the current document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fgColor)\n     */\n    fgColor: string;\n    /**\n     * The **`forms`** read-only property of the Document interface returns an HTMLCollection listing all the form elements contained in the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/forms)\n     */\n    readonly forms: HTMLCollectionOf<HTMLFormElement>;\n    /**\n     * The **`fragmentDirective`** read-only property of the Document interface returns the FragmentDirective for the current document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fragmentDirective)\n     */\n    readonly fragmentDirective: FragmentDirective;\n    /**\n     * The obsolete Document interface's **`fullscreen`** read-only property reports whether or not the document is currently displaying content in fullscreen mode.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreen)\n     */\n    readonly fullscreen: boolean;\n    /**\n     * The read-only **`fullscreenEnabled`** property on the Document interface indicates whether or not fullscreen mode is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenEnabled)\n     */\n    readonly fullscreenEnabled: boolean;\n    /**\n     * The **`head`** read-only property of the Document interface returns the head element of the current document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/head)\n     */\n    readonly head: HTMLHeadElement;\n    /**\n     * The **`Document.hidden`** read-only property returns a Boolean value indicating if the page is considered hidden or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/hidden)\n     */\n    readonly hidden: boolean;\n    /**\n     * The **`images`** read-only property of the Document interface returns a collection of the images in the current HTML document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/images)\n     */\n    readonly images: HTMLCollectionOf<HTMLImageElement>;\n    /**\n     * The **`Document.implementation`** property returns a A DOMImplementation object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/implementation)\n     */\n    readonly implementation: DOMImplementation;\n    /**\n     * @deprecated This is a legacy alias of `characterSet`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/characterSet)\n     */\n    readonly inputEncoding: string;\n    /**\n     * The **`lastModified`** property of the Document interface returns a string containing the date and local time on which the current document was last modified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lastModified)\n     */\n    readonly lastModified: string;\n    /**\n     * The **`Document.linkColor`** property gets/sets the color of links within the document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/linkColor)\n     */\n    linkColor: string;\n    /**\n     * The **`links`** read-only property of the Document interface returns a collection of all area elements and a elements in a document with a value for the href attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/links)\n     */\n    readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;\n    /**\n     * The **`Document.location`** read-only property returns a and provides methods for changing that URL and loading another URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)\n     */\n    get location(): Location;\n    set location(href: string);\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenchange_event) */\n    onfullscreenchange: ((this: Document, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenerror_event) */\n    onfullscreenerror: ((this: Document, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pointerlockchange_event) */\n    onpointerlockchange: ((this: Document, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pointerlockerror_event) */\n    onpointerlockerror: ((this: Document, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/readystatechange_event) */\n    onreadystatechange: ((this: Document, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/visibilitychange_event) */\n    onvisibilitychange: ((this: Document, ev: Event) => any) | null;\n    readonly ownerDocument: null;\n    /**\n     * The read-only **`pictureInPictureEnabled`** property of the available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureEnabled)\n     */\n    readonly pictureInPictureEnabled: boolean;\n    /**\n     * The **`plugins`** read-only property of the containing one or more HTMLEmbedElements representing the An HTMLCollection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/plugins)\n     */\n    readonly plugins: HTMLCollectionOf<HTMLEmbedElement>;\n    /**\n     * The **`Document.readyState`** property describes the loading state of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/readyState)\n     */\n    readonly readyState: DocumentReadyState;\n    /**\n     * The **`Document.referrer`** property returns the URI of the page that linked to this page.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/referrer)\n     */\n    readonly referrer: string;\n    /**\n     * **`Document.rootElement`** returns the Element that is the root element of the document if it is an documents.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)\n     */\n    readonly rootElement: SVGSVGElement | null;\n    /**\n     * The **`scripts`** property of the Document interface returns a list of the script elements in the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scripts)\n     */\n    readonly scripts: HTMLCollectionOf<HTMLScriptElement>;\n    /**\n     * The **`scrollingElement`** read-only property of the scrolls the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollingElement)\n     */\n    readonly scrollingElement: Element | null;\n    /**\n     * The `timeline` readonly property of the Document interface represents the default timeline of the current document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/timeline)\n     */\n    readonly timeline: DocumentTimeline;\n    /**\n     * The **`document.title`** property gets or sets the current title of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/title)\n     */\n    title: string;\n    /**\n     * The **`Document.visibilityState`** read-only property returns the visibility of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/visibilityState)\n     */\n    readonly visibilityState: DocumentVisibilityState;\n    /**\n     * The **`Document.vlinkColor`** property gets/sets the color of links that the user has visited in the document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/vlinkColor)\n     */\n    vlinkColor: string;\n    /**\n     * **`Document.adoptNode()`** transfers a node/dom from another Document into the method's document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptNode)\n     */\n    adoptNode<T extends Node>(node: T): T;\n    /** @deprecated */\n    captureEvents(): void;\n    /**\n     * The **`caretPositionFromPoint()`** method of the Document interface returns a CaretPosition object, containing the DOM node, along with the caret and caret's character offset within that node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/caretPositionFromPoint)\n     */\n    caretPositionFromPoint(x: number, y: number, options?: CaretPositionFromPointOptions): CaretPosition | null;\n    /** @deprecated */\n    caretRangeFromPoint(x: number, y: number): Range | null;\n    /**\n     * The **`Document.clear()`** method does nothing, but doesn't raise any error.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/clear)\n     */\n    clear(): void;\n    /**\n     * The **`Document.close()`** method finishes writing to a document, opened with Document.open().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/close)\n     */\n    close(): void;\n    /**\n     * The **`Document.createAttribute()`** method creates a new attribute node, and returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttribute)\n     */\n    createAttribute(localName: string): Attr;\n    /**\n     * The **`Document.createAttributeNS()`** method creates a new attribute node with the specified namespace URI and qualified name, and returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createAttributeNS)\n     */\n    createAttributeNS(namespace: string | null, qualifiedName: string): Attr;\n    /**\n     * **`createCDATASection()`** creates a new CDATA section node, and returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createCDATASection)\n     */\n    createCDATASection(data: string): CDATASection;\n    /**\n     * **`createComment()`** creates a new comment node, and returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createComment)\n     */\n    createComment(data: string): Comment;\n    /**\n     * Creates a new empty DocumentFragment into which DOM nodes can be added to build an offscreen DOM tree.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createDocumentFragment)\n     */\n    createDocumentFragment(): DocumentFragment;\n    /**\n     * In an HTML document, the **`document.createElement()`** method creates the HTML element specified by `localName`, or an HTMLUnknownElement if `localName` isn't recognized.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElement)\n     */\n    createElement<K extends keyof HTMLElementTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementTagNameMap[K];\n    /** @deprecated */\n    createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];\n    createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;\n    /**\n     * Creates an element with the specified namespace URI and qualified name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createElementNS)\n     */\n    createElementNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", qualifiedName: string): HTMLElement;\n    createElementNS<K extends keyof SVGElementTagNameMap>(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: K): SVGElementTagNameMap[K];\n    createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: string): SVGElement;\n    createElementNS<K extends keyof MathMLElementTagNameMap>(namespaceURI: \"http://www.w3.org/1998/Math/MathML\", qualifiedName: K): MathMLElementTagNameMap[K];\n    createElementNS(namespaceURI: \"http://www.w3.org/1998/Math/MathML\", qualifiedName: string): MathMLElement;\n    createElementNS(namespaceURI: string | null, qualifiedName: string, options?: ElementCreationOptions): Element;\n    createElementNS(namespace: string | null, qualifiedName: string, options?: string | ElementCreationOptions): Element;\n    /**\n     * Creates an event of the type specified.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createEvent)\n     */\n    createEvent(eventInterface: \"AnimationEvent\"): AnimationEvent;\n    createEvent(eventInterface: \"AnimationPlaybackEvent\"): AnimationPlaybackEvent;\n    createEvent(eventInterface: \"AudioProcessingEvent\"): AudioProcessingEvent;\n    createEvent(eventInterface: \"BeforeUnloadEvent\"): BeforeUnloadEvent;\n    createEvent(eventInterface: \"BlobEvent\"): BlobEvent;\n    createEvent(eventInterface: \"ClipboardEvent\"): ClipboardEvent;\n    createEvent(eventInterface: \"CloseEvent\"): CloseEvent;\n    createEvent(eventInterface: \"CompositionEvent\"): CompositionEvent;\n    createEvent(eventInterface: \"ContentVisibilityAutoStateChangeEvent\"): ContentVisibilityAutoStateChangeEvent;\n    createEvent(eventInterface: \"CookieChangeEvent\"): CookieChangeEvent;\n    createEvent(eventInterface: \"CustomEvent\"): CustomEvent;\n    createEvent(eventInterface: \"DeviceMotionEvent\"): DeviceMotionEvent;\n    createEvent(eventInterface: \"DeviceOrientationEvent\"): DeviceOrientationEvent;\n    createEvent(eventInterface: \"DragEvent\"): DragEvent;\n    createEvent(eventInterface: \"ErrorEvent\"): ErrorEvent;\n    createEvent(eventInterface: \"Event\"): Event;\n    createEvent(eventInterface: \"Events\"): Event;\n    createEvent(eventInterface: \"FocusEvent\"): FocusEvent;\n    createEvent(eventInterface: \"FontFaceSetLoadEvent\"): FontFaceSetLoadEvent;\n    createEvent(eventInterface: \"FormDataEvent\"): FormDataEvent;\n    createEvent(eventInterface: \"GamepadEvent\"): GamepadEvent;\n    createEvent(eventInterface: \"HashChangeEvent\"): HashChangeEvent;\n    createEvent(eventInterface: \"IDBVersionChangeEvent\"): IDBVersionChangeEvent;\n    createEvent(eventInterface: \"InputEvent\"): InputEvent;\n    createEvent(eventInterface: \"KeyboardEvent\"): KeyboardEvent;\n    createEvent(eventInterface: \"MIDIConnectionEvent\"): MIDIConnectionEvent;\n    createEvent(eventInterface: \"MIDIMessageEvent\"): MIDIMessageEvent;\n    createEvent(eventInterface: \"MediaEncryptedEvent\"): MediaEncryptedEvent;\n    createEvent(eventInterface: \"MediaKeyMessageEvent\"): MediaKeyMessageEvent;\n    createEvent(eventInterface: \"MediaQueryListEvent\"): MediaQueryListEvent;\n    createEvent(eventInterface: \"MediaStreamTrackEvent\"): MediaStreamTrackEvent;\n    createEvent(eventInterface: \"MessageEvent\"): MessageEvent;\n    createEvent(eventInterface: \"MouseEvent\"): MouseEvent;\n    createEvent(eventInterface: \"MouseEvents\"): MouseEvent;\n    createEvent(eventInterface: \"OfflineAudioCompletionEvent\"): OfflineAudioCompletionEvent;\n    createEvent(eventInterface: \"PageRevealEvent\"): PageRevealEvent;\n    createEvent(eventInterface: \"PageSwapEvent\"): PageSwapEvent;\n    createEvent(eventInterface: \"PageTransitionEvent\"): PageTransitionEvent;\n    createEvent(eventInterface: \"PaymentMethodChangeEvent\"): PaymentMethodChangeEvent;\n    createEvent(eventInterface: \"PaymentRequestUpdateEvent\"): PaymentRequestUpdateEvent;\n    createEvent(eventInterface: \"PictureInPictureEvent\"): PictureInPictureEvent;\n    createEvent(eventInterface: \"PointerEvent\"): PointerEvent;\n    createEvent(eventInterface: \"PopStateEvent\"): PopStateEvent;\n    createEvent(eventInterface: \"ProgressEvent\"): ProgressEvent;\n    createEvent(eventInterface: \"PromiseRejectionEvent\"): PromiseRejectionEvent;\n    createEvent(eventInterface: \"RTCDTMFToneChangeEvent\"): RTCDTMFToneChangeEvent;\n    createEvent(eventInterface: \"RTCDataChannelEvent\"): RTCDataChannelEvent;\n    createEvent(eventInterface: \"RTCErrorEvent\"): RTCErrorEvent;\n    createEvent(eventInterface: \"RTCPeerConnectionIceErrorEvent\"): RTCPeerConnectionIceErrorEvent;\n    createEvent(eventInterface: \"RTCPeerConnectionIceEvent\"): RTCPeerConnectionIceEvent;\n    createEvent(eventInterface: \"RTCTrackEvent\"): RTCTrackEvent;\n    createEvent(eventInterface: \"SecurityPolicyViolationEvent\"): SecurityPolicyViolationEvent;\n    createEvent(eventInterface: \"SpeechSynthesisErrorEvent\"): SpeechSynthesisErrorEvent;\n    createEvent(eventInterface: \"SpeechSynthesisEvent\"): SpeechSynthesisEvent;\n    createEvent(eventInterface: \"StorageEvent\"): StorageEvent;\n    createEvent(eventInterface: \"SubmitEvent\"): SubmitEvent;\n    createEvent(eventInterface: \"TextEvent\"): TextEvent;\n    createEvent(eventInterface: \"ToggleEvent\"): ToggleEvent;\n    createEvent(eventInterface: \"TouchEvent\"): TouchEvent;\n    createEvent(eventInterface: \"TrackEvent\"): TrackEvent;\n    createEvent(eventInterface: \"TransitionEvent\"): TransitionEvent;\n    createEvent(eventInterface: \"UIEvent\"): UIEvent;\n    createEvent(eventInterface: \"UIEvents\"): UIEvent;\n    createEvent(eventInterface: \"WebGLContextEvent\"): WebGLContextEvent;\n    createEvent(eventInterface: \"WheelEvent\"): WheelEvent;\n    createEvent(eventInterface: string): Event;\n    /**\n     * The **`Document.createNodeIterator()`** method returns a new `NodeIterator` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNodeIterator)\n     */\n    createNodeIterator(root: Node, whatToShow?: number, filter?: NodeFilter | null): NodeIterator;\n    /**\n     * `createProcessingInstruction()` generates a new processing instruction node and returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createProcessingInstruction)\n     */\n    createProcessingInstruction(target: string, data: string): ProcessingInstruction;\n    /**\n     * The **`Document.createRange()`** method returns a new ```js-nolint createRange() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createRange)\n     */\n    createRange(): Range;\n    /**\n     * Creates a new Text node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createTextNode)\n     */\n    createTextNode(data: string): Text;\n    /**\n     * The **`Document.createTreeWalker()`** creator method returns a newly created TreeWalker object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createTreeWalker)\n     */\n    createTreeWalker(root: Node, whatToShow?: number, filter?: NodeFilter | null): TreeWalker;\n    /**\n     * The **`execCommand`** method implements multiple different commands.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/execCommand)\n     */\n    execCommand(commandId: string, showUI?: boolean, value?: string): boolean;\n    /**\n     * The Document method **`exitFullscreen()`** requests that the element on this document which is currently being presented in fullscreen mode be taken out of fullscreen mode, restoring the previous state of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitFullscreen)\n     */\n    exitFullscreen(): Promise<void>;\n    /**\n     * The **`exitPictureInPicture()`** method of the Document interface requests that a video contained in this document, which is currently floating, be taken out of picture-in-picture mode, restoring the previous state of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPictureInPicture)\n     */\n    exitPictureInPicture(): Promise<void>;\n    /**\n     * The **`exitPointerLock()`** method of the Document interface asynchronously releases a pointer lock previously requested through Element.requestPointerLock.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/exitPointerLock)\n     */\n    exitPointerLock(): void;\n    getElementById(elementId: string): HTMLElement | null;\n    /**\n     * The **`getElementsByClassName`** method of of all child elements which have all of the given class name(s).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByClassName)\n     */\n    getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;\n    /**\n     * The **`getElementsByName()`** method of the Document object returns a NodeList Collection of elements with a given `name` attribute in the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByName)\n     */\n    getElementsByName(elementName: string): NodeListOf<HTMLElement>;\n    /**\n     * The **`getElementsByTagName`** method of The complete document is searched, including the root node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagName)\n     */\n    getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;\n    getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;\n    getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;\n    /** @deprecated */\n    getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;\n    getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;\n    /**\n     * Returns a list of elements with the given tag name belonging to the given namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagNameNS)\n     */\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): HTMLCollectionOf<HTMLElement>;\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): HTMLCollectionOf<SVGElement>;\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1998/Math/MathML\", localName: string): HTMLCollectionOf<MathMLElement>;\n    getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;\n    /**\n     * The **`getSelection()`** method of the Document interface returns the Selection object associated with this document, representing the range of text selected by the user, or the current position of the caret.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getSelection)\n     */\n    getSelection(): Selection | null;\n    /**\n     * The **`hasFocus()`** method of the Document interface returns a boolean value indicating whether the document or any element inside the document has focus.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/hasFocus)\n     */\n    hasFocus(): boolean;\n    /**\n     * The **`hasStorageAccess()`** method of the Document interface returns a Promise that resolves with a boolean value indicating whether the document has access to third-party, unpartitioned cookies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/hasStorageAccess)\n     */\n    hasStorageAccess(): Promise<boolean>;\n    /**\n     * The Document object's **`importNode()`** method creates a copy of a inserted into the current document later.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)\n     */\n    importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;\n    /**\n     * The **`Document.open()`** method opens a document for This does come with some side effects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)\n     */\n    open(unused1?: string, unused2?: string): Document;\n    open(url: string | URL, name: string, features: string): WindowProxy | null;\n    /**\n     * The **`Document.queryCommandEnabled()`** method reports whether or not the specified editor command is enabled by the browser.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandEnabled)\n     */\n    queryCommandEnabled(commandId: string): boolean;\n    /** @deprecated */\n    queryCommandIndeterm(commandId: string): boolean;\n    /**\n     * The **`queryCommandState()`** method will tell you if the current selection has a certain Document.execCommand() command applied.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandState)\n     */\n    queryCommandState(commandId: string): boolean;\n    /**\n     * The **`Document.queryCommandSupported()`** method reports whether or not the specified editor command is supported by the browser.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandSupported)\n     */\n    queryCommandSupported(commandId: string): boolean;\n    /** @deprecated */\n    queryCommandValue(commandId: string): string;\n    /** @deprecated */\n    releaseEvents(): void;\n    /**\n     * The **`requestStorageAccess()`** method of the Document interface allows content loaded in a third-party context (i.e., embedded in an iframe) to request access to third-party cookies and unpartitioned state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess)\n     */\n    requestStorageAccess(): Promise<void>;\n    /**\n     * The **`startViewTransition()`** method of the Document interface starts a new same-document (SPA) view transition and returns a ViewTransition object to represent it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/startViewTransition)\n     */\n    startViewTransition(callbackOptions?: ViewTransitionUpdateCallback | StartViewTransitionOptions): ViewTransition;\n    /**\n     * The **`write()`** method of the Document interface writes text in one or more TrustedHTML or string parameters to a document stream opened by document.open().\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)\n     */\n    write(...text: string[]): void;\n    /**\n     * The **`writeln()`** method of the Document interface writes text in one or more TrustedHTML or string parameters to a document stream opened by document.open(), followed by a newline character.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/writeln)\n     */\n    writeln(...text: string[]): void;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): null;\n    addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Document: {\n    prototype: Document;\n    new(): Document;\n    /**\n     * The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)\n     */\n    parseHTMLUnsafe(html: string): Document;\n};\n\n/**\n * The **`DocumentFragment`** interface represents a minimal document object that has no parent.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentFragment)\n */\ninterface DocumentFragment extends Node, NonElementParentNode, ParentNode {\n    readonly ownerDocument: Document;\n    getElementById(elementId: string): HTMLElement | null;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): string;\n    set textContent(value: string | null);\n}\n\ndeclare var DocumentFragment: {\n    prototype: DocumentFragment;\n    new(): DocumentFragment;\n};\n\ninterface DocumentOrShadowRoot {\n    /**\n     * Returns the deepest element in the document through which or to which key events are being routed. This is, roughly speaking, the focused element in the document.\n     *\n     * For the purposes of this API, when a child browsing context is focused, its container is focused in the parent browsing context. For example, if the user moves the focus to a text control in an iframe, the iframe is the element returned by the activeElement API in the iframe's node document.\n     *\n     * Similarly, when the focused element is in a different node tree than documentOrShadowRoot, the element returned will be the host that's located in the same node tree as documentOrShadowRoot if documentOrShadowRoot is a shadow-including inclusive ancestor of the focused element, and null if not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/activeElement)\n     */\n    readonly activeElement: Element | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */\n    adoptedStyleSheets: CSSStyleSheet[];\n    /**\n     * Returns document's fullscreen element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenElement)\n     */\n    readonly fullscreenElement: Element | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureElement) */\n    readonly pictureInPictureElement: Element | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pointerLockElement) */\n    readonly pointerLockElement: Element | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/styleSheets) */\n    readonly styleSheets: StyleSheetList;\n    elementFromPoint(x: number, y: number): Element | null;\n    elementsFromPoint(x: number, y: number): Element[];\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getAnimations) */\n    getAnimations(): Animation[];\n}\n\n/**\n * The **`DocumentTimeline`** interface of the Web Animations API represents animation timelines, including the default document timeline (accessed via Document.timeline).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentTimeline)\n */\ninterface DocumentTimeline extends AnimationTimeline {\n}\n\ndeclare var DocumentTimeline: {\n    prototype: DocumentTimeline;\n    new(options?: DocumentTimelineOptions): DocumentTimeline;\n};\n\n/**\n * The **`DocumentType`** interface represents a Node containing a doctype.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentType)\n */\ninterface DocumentType extends Node, ChildNode {\n    /**\n     * The read-only **`name`** property of the DocumentType returns the type of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentType/name)\n     */\n    readonly name: string;\n    readonly ownerDocument: Document;\n    /**\n     * The read-only **`publicId`** property of the DocumentType returns a formal identifier of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentType/publicId)\n     */\n    readonly publicId: string;\n    /**\n     * The read-only **`systemId`** property of the DocumentType returns the URL of the associated DTD.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DocumentType/systemId)\n     */\n    readonly systemId: string;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): null;\n}\n\ndeclare var DocumentType: {\n    prototype: DocumentType;\n    new(): DocumentType;\n};\n\n/**\n * The **`DragEvent`** interface is a DOM event that represents a drag and drop interaction.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DragEvent)\n */\ninterface DragEvent extends MouseEvent {\n    /**\n     * The **`DragEvent.dataTransfer`** read-only property holds the drag operation's data (as a DataTransfer object).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DragEvent/dataTransfer)\n     */\n    readonly dataTransfer: DataTransfer | null;\n}\n\ndeclare var DragEvent: {\n    prototype: DragEvent;\n    new(type: string, eventInitDict?: DragEventInit): DragEvent;\n};\n\n/**\n * The `DynamicsCompressorNode` interface provides a compression effect, which lowers the volume of the loudest parts of the signal in order to help prevent clipping and distortion that can occur when multiple sounds are played and multiplexed together at once.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode)\n */\ninterface DynamicsCompressorNode extends AudioNode {\n    /**\n     * The `attack` property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the amount of time, in seconds, required to reduce the gain by 10 dB.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/attack)\n     */\n    readonly attack: AudioParam;\n    /**\n     * The `knee` property of the DynamicsCompressorNode interface is a k-rate AudioParam containing a decibel value representing the range above the threshold where the curve smoothly transitions to the compressed portion.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/knee)\n     */\n    readonly knee: AudioParam;\n    /**\n     * The `ratio` property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of change, in dB, needed in the input for a 1 dB change in the output.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/ratio)\n     */\n    readonly ratio: AudioParam;\n    /**\n     * The **`reduction`** read-only property of the DynamicsCompressorNode interface is a float representing the amount of gain reduction currently applied by the compressor to the signal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/reduction)\n     */\n    readonly reduction: number;\n    /**\n     * The `release` property of the DynamicsCompressorNode interface Is a k-rate AudioParam representing the amount of time, in seconds, required to increase the gain by 10 dB.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/release)\n     */\n    readonly release: AudioParam;\n    /**\n     * The `threshold` property of the DynamicsCompressorNode interface is a k-rate AudioParam representing the decibel value above which the compression will start taking effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DynamicsCompressorNode/threshold)\n     */\n    readonly threshold: AudioParam;\n}\n\ndeclare var DynamicsCompressorNode: {\n    prototype: DynamicsCompressorNode;\n    new(context: BaseAudioContext, options?: DynamicsCompressorOptions): DynamicsCompressorNode;\n};\n\n/**\n * The **`EXT_blend_minmax`** extension is part of the WebGL API and extends blending capabilities by adding two new blend equations: the minimum or maximum color components of the source and destination colors.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_blend_minmax)\n */\ninterface EXT_blend_minmax {\n    readonly MIN_EXT: 0x8007;\n    readonly MAX_EXT: 0x8008;\n}\n\n/**\n * The **`EXT_color_buffer_float`** extension is part of WebGL and adds the ability to render a variety of floating point formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_float)\n */\ninterface EXT_color_buffer_float {\n}\n\n/**\n * The **`EXT_color_buffer_half_float`** extension is part of the WebGL API and adds the ability to render to 16-bit floating-point color buffers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_half_float)\n */\ninterface EXT_color_buffer_half_float {\n    readonly RGBA16F_EXT: 0x881A;\n    readonly RGB16F_EXT: 0x881B;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: 0x8211;\n    readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;\n}\n\n/**\n * The WebGL API's `EXT_float_blend` extension allows blending and draw buffers with 32-bit floating-point components.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_float_blend)\n */\ninterface EXT_float_blend {\n}\n\n/**\n * The **`EXT_frag_depth`** extension is part of the WebGL API and enables to set a depth value of a fragment from within the fragment shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_frag_depth)\n */\ninterface EXT_frag_depth {\n}\n\n/**\n * The **`EXT_sRGB`** extension is part of the WebGL API and adds sRGB support to textures and framebuffer objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_sRGB)\n */\ninterface EXT_sRGB {\n    readonly SRGB_EXT: 0x8C40;\n    readonly SRGB_ALPHA_EXT: 0x8C42;\n    readonly SRGB8_ALPHA8_EXT: 0x8C43;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT: 0x8210;\n}\n\n/**\n * The **`EXT_shader_texture_lod`** extension is part of the WebGL API and adds additional texture functions to the OpenGL ES Shading Language which provide the shader writer with explicit control of LOD (Level of detail).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_shader_texture_lod)\n */\ninterface EXT_shader_texture_lod {\n}\n\n/**\n * The `EXT_texture_compression_bptc` extension is part of the WebGL API and exposes 4 BPTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_bptc)\n */\ninterface EXT_texture_compression_bptc {\n    readonly COMPRESSED_RGBA_BPTC_UNORM_EXT: 0x8E8C;\n    readonly COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT: 0x8E8D;\n    readonly COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT: 0x8E8E;\n    readonly COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT: 0x8E8F;\n}\n\n/**\n * The `EXT_texture_compression_rgtc` extension is part of the WebGL API and exposes 4 RGTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_rgtc)\n */\ninterface EXT_texture_compression_rgtc {\n    readonly COMPRESSED_RED_RGTC1_EXT: 0x8DBB;\n    readonly COMPRESSED_SIGNED_RED_RGTC1_EXT: 0x8DBC;\n    readonly COMPRESSED_RED_GREEN_RGTC2_EXT: 0x8DBD;\n    readonly COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT: 0x8DBE;\n}\n\n/**\n * The **`EXT_texture_filter_anisotropic`** extension is part of the WebGL API and exposes two constants for anisotropic filtering (AF).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_filter_anisotropic)\n */\ninterface EXT_texture_filter_anisotropic {\n    readonly TEXTURE_MAX_ANISOTROPY_EXT: 0x84FE;\n    readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: 0x84FF;\n}\n\n/**\n * The **`EXT_texture_norm16`** extension is part of the WebGL API and provides a set of new 16-bit signed normalized and unsigned normalized formats (fixed-point texture, renderbuffer and texture buffer).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_norm16)\n */\ninterface EXT_texture_norm16 {\n    readonly R16_EXT: 0x822A;\n    readonly RG16_EXT: 0x822C;\n    readonly RGB16_EXT: 0x8054;\n    readonly RGBA16_EXT: 0x805B;\n    readonly R16_SNORM_EXT: 0x8F98;\n    readonly RG16_SNORM_EXT: 0x8F99;\n    readonly RGB16_SNORM_EXT: 0x8F9A;\n    readonly RGBA16_SNORM_EXT: 0x8F9B;\n}\n\ninterface ElementEventMap {\n    \"fullscreenchange\": Event;\n    \"fullscreenerror\": Event;\n}\n\n/**\n * **`Element`** is the most general base class from which all element objects (i.e., objects that represent elements) in a Document inherit.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element)\n */\ninterface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTypeChildNode, ParentNode, Slottable {\n    /**\n     * The **`Element.attributes`** property returns a live collection of all attribute nodes registered to the specified node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attributes)\n     */\n    readonly attributes: NamedNodeMap;\n    /**\n     * The **`Element.classList`** is a read-only property that returns a live DOMTokenList collection of the `class` attributes of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/classList)\n     */\n    get classList(): DOMTokenList;\n    set classList(value: string);\n    /**\n     * The **`className`** property of the of the specified element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className)\n     */\n    className: string;\n    /**\n     * The **`clientHeight`** read-only property of the Element interface is zero for elements with no CSS or inline layout boxes; otherwise, it's the inner height of an element in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientHeight)\n     */\n    readonly clientHeight: number;\n    /**\n     * The **`clientLeft`** read-only property of the Element interface returns the width of the left border of an element in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientLeft)\n     */\n    readonly clientLeft: number;\n    /**\n     * The **`clientTop`** read-only property of the Element interface returns the width of the top border of an element in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientTop)\n     */\n    readonly clientTop: number;\n    /**\n     * The **`clientWidth`** read-only property of the Element interface is zero for inline elements and elements with no CSS; otherwise, it's the inner width of an element in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientWidth)\n     */\n    readonly clientWidth: number;\n    /**\n     * The **`currentCSSZoom`** read-only property of the Element interface provides the 'effective' CSS `zoom` of an element, taking into account the zoom applied to the element and all its parent elements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)\n     */\n    readonly currentCSSZoom: number;\n    /**\n     * The **`id`** property of the Element interface represents the element's identifier, reflecting the **`id`** global attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/id)\n     */\n    id: string;\n    /**\n     * The **`innerHTML`** property of the Element interface gets or sets the HTML or XML markup contained within the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/innerHTML)\n     */\n    innerHTML: string;\n    /**\n     * The **`Element.localName`** read-only property returns the local part of the qualified name of an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/localName)\n     */\n    readonly localName: string;\n    /**\n     * The **`Element.namespaceURI`** read-only property returns the namespace URI of the element, or `null` if the element is not in a namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/namespaceURI)\n     */\n    readonly namespaceURI: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenchange_event) */\n    onfullscreenchange: ((this: Element, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenerror_event) */\n    onfullscreenerror: ((this: Element, ev: Event) => any) | null;\n    /**\n     * The **`outerHTML`** attribute of the Element DOM interface gets the serialized HTML fragment describing the element including its descendants.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/outerHTML)\n     */\n    outerHTML: string;\n    readonly ownerDocument: Document;\n    /**\n     * The **`part`** property of the Element interface represents the part identifier(s) of the element (i.e., set using the `part` attribute), returned as a DOMTokenList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part)\n     */\n    get part(): DOMTokenList;\n    set part(value: string);\n    /**\n     * The **`Element.prefix`** read-only property returns the namespace prefix of the specified element, or `null` if no prefix is specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/prefix)\n     */\n    readonly prefix: string | null;\n    /**\n     * The **`scrollHeight`** read-only property of the Element interface is a measurement of the height of an element's content, including content not visible on the screen due to overflow.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollHeight)\n     */\n    readonly scrollHeight: number;\n    /**\n     * The **`scrollLeft`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its left edge.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollLeft)\n     */\n    scrollLeft: number;\n    /**\n     * The **`scrollTop`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its top edge.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTop)\n     */\n    scrollTop: number;\n    /**\n     * The **`scrollWidth`** read-only property of the Element interface is a measurement of the width of an element's content, including content not visible on the screen due to overflow.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollWidth)\n     */\n    readonly scrollWidth: number;\n    /**\n     * The `Element.shadowRoot` read-only property represents the shadow root hosted by the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/shadowRoot)\n     */\n    readonly shadowRoot: ShadowRoot | null;\n    /**\n     * The **`slot`** property of the Element interface returns the name of the shadow DOM slot the element is inserted in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/slot)\n     */\n    slot: string;\n    /**\n     * The **`tagName`** read-only property of the Element interface returns the tag name of the element on which it's called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/tagName)\n     */\n    readonly tagName: string;\n    /**\n     * The **`Element.attachShadow()`** method attaches a shadow DOM tree to the specified element and returns a reference to its ShadowRoot.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attachShadow)\n     */\n    attachShadow(init: ShadowRootInit): ShadowRoot;\n    /**\n     * The **`checkVisibility()`** method of the Element interface checks whether the element is visible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/checkVisibility)\n     */\n    checkVisibility(options?: CheckVisibilityOptions): boolean;\n    /**\n     * The **`closest()`** method of the Element interface traverses the element and its parents (heading toward the document root) until it finds a node that matches the specified CSS selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/closest)\n     */\n    closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;\n    closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;\n    closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;\n    closest<E extends Element = Element>(selectors: string): E | null;\n    /**\n     * The **`computedStyleMap()`** method of the Element interface returns a StylePropertyMapReadOnly interface which provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/computedStyleMap)\n     */\n    computedStyleMap(): StylePropertyMapReadOnly;\n    /**\n     * The **`getAttribute()`** method of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)\n     */\n    getAttribute(qualifiedName: string): string | null;\n    /**\n     * The **`getAttributeNS()`** method of the Element interface returns the string value of the attribute with the specified namespace and name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNS)\n     */\n    getAttributeNS(namespace: string | null, localName: string): string | null;\n    /**\n     * The **`getAttributeNames()`** method of the array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)\n     */\n    getAttributeNames(): string[];\n    /**\n     * Returns the specified attribute of the specified element, as an Attr node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNode)\n     */\n    getAttributeNode(qualifiedName: string): Attr | null;\n    /**\n     * The **`getAttributeNodeNS()`** method of the Element interface returns the namespaced Attr node of an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNodeNS)\n     */\n    getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;\n    /**\n     * The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)\n     */\n    getBoundingClientRect(): DOMRect;\n    /**\n     * The **`getClientRects()`** method of the Element interface returns a collection of DOMRect objects that indicate the bounding rectangles for each CSS border box in a client.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getClientRects)\n     */\n    getClientRects(): DOMRectList;\n    /**\n     * The Element method **`getElementsByClassName()`** returns a live specified class name or names.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)\n     */\n    getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;\n    /**\n     * The **`Element.getElementsByTagName()`** method returns a live All descendants of the specified element are searched, but not the element itself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)\n     */\n    getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;\n    getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;\n    getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;\n    /** @deprecated */\n    getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;\n    getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;\n    /**\n     * The **`Element.getElementsByTagNameNS()`** method returns a live HTMLCollection of elements with the given tag name belonging to the given namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagNameNS)\n     */\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): HTMLCollectionOf<HTMLElement>;\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): HTMLCollectionOf<SVGElement>;\n    getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1998/Math/MathML\", localName: string): HTMLCollectionOf<MathMLElement>;\n    getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;\n    /**\n     * The **`getHTML()`** method of the Element interface is used to serialize an element's DOM to an HTML string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML)\n     */\n    getHTML(options?: GetHTMLOptions): string;\n    /**\n     * The **`Element.hasAttribute()`** method returns a **Boolean** value indicating whether the specified element has the specified attribute or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttribute)\n     */\n    hasAttribute(qualifiedName: string): boolean;\n    /**\n     * The **`hasAttributeNS()`** method of the Element interface returns a boolean value indicating whether the current element has the specified attribute with the specified namespace.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributeNS)\n     */\n    hasAttributeNS(namespace: string | null, localName: string): boolean;\n    /**\n     * The **`hasAttributes()`** method of the Element interface returns a boolean value indicating whether the current element has any attributes or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributes)\n     */\n    hasAttributes(): boolean;\n    /**\n     * The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)\n     */\n    hasPointerCapture(pointerId: number): boolean;\n    /**\n     * The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)\n     */\n    insertAdjacentElement(where: InsertPosition, element: Element): Element | null;\n    /**\n     * The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)\n     */\n    insertAdjacentHTML(position: InsertPosition, string: string): void;\n    /**\n     * The **`insertAdjacentText()`** method of the Element interface, given a relative position and a string, inserts a new text node at the given position relative to the element it is called from.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentText)\n     */\n    insertAdjacentText(where: InsertPosition, data: string): void;\n    /**\n     * The **`matches()`** method of the Element interface tests whether the element would be selected by the specified CSS selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches)\n     */\n    matches(selectors: string): boolean;\n    /**\n     * The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)\n     */\n    releasePointerCapture(pointerId: number): void;\n    /**\n     * The Element method **`removeAttribute()`** removes the attribute with the specified name from the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttribute)\n     */\n    removeAttribute(qualifiedName: string): void;\n    /**\n     * The **`removeAttributeNS()`** method of the If you are working with HTML and you don't need to specify the requested attribute as being part of a specific namespace, use the Element.removeAttribute() method instead.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)\n     */\n    removeAttributeNS(namespace: string | null, localName: string): void;\n    /**\n     * The **`removeAttributeNode()`** method of the Element interface removes the specified Attr node from the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNode)\n     */\n    removeAttributeNode(attr: Attr): Attr;\n    /**\n     * The **`Element.requestFullscreen()`** method issues an asynchronous request to make the element be displayed in fullscreen mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestFullscreen)\n     */\n    requestFullscreen(options?: FullscreenOptions): Promise<void>;\n    /**\n     * The **`requestPointerLock()`** method of the Element interface lets you asynchronously ask for the pointer to be locked on the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock)\n     */\n    requestPointerLock(options?: PointerLockOptions): Promise<void>;\n    /**\n     * The **`scroll()`** method of the Element interface scrolls the element to a particular set of coordinates inside a given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll)\n     */\n    scroll(options?: ScrollToOptions): void;\n    scroll(x: number, y: number): void;\n    /**\n     * The **`scrollBy()`** method of the Element interface scrolls an element by the given amount.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollBy)\n     */\n    scrollBy(options?: ScrollToOptions): void;\n    scrollBy(x: number, y: number): void;\n    /**\n     * The Element interface's **`scrollIntoView()`** method scrolls the element's ancestor containers such that the element on which `scrollIntoView()` is called is visible to the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollIntoView)\n     */\n    scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;\n    /**\n     * The **`scrollTo()`** method of the Element interface scrolls to a particular set of coordinates inside a given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTo)\n     */\n    scrollTo(options?: ScrollToOptions): void;\n    scrollTo(x: number, y: number): void;\n    /**\n     * The **`setAttribute()`** method of the Element interface sets the value of an attribute on the specified element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttribute)\n     */\n    setAttribute(qualifiedName: string, value: string): void;\n    /**\n     * `setAttributeNS` adds a new attribute or changes the value of an attribute with the given namespace and name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)\n     */\n    setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;\n    /**\n     * The **`setAttributeNode()`** method of the Element interface adds a new Attr node to the specified element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNode)\n     */\n    setAttributeNode(attr: Attr): Attr | null;\n    /**\n     * The **`setAttributeNodeNS()`** method of the Element interface adds a new namespaced Attr node to an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS)\n     */\n    setAttributeNodeNS(attr: Attr): Attr | null;\n    /**\n     * The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)\n     */\n    setHTMLUnsafe(html: string): void;\n    /**\n     * The **`setPointerCapture()`** method of the _capture target_ of future pointer events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)\n     */\n    setPointerCapture(pointerId: number): void;\n    /**\n     * The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)\n     */\n    toggleAttribute(qualifiedName: string, force?: boolean): boolean;\n    /**\n     * @deprecated This is a legacy alias of `matches`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches)\n     */\n    webkitMatchesSelector(selectors: string): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent) */\n    get textContent(): string;\n    set textContent(value: string | null);\n    addEventListener<K extends keyof ElementEventMap>(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ElementEventMap>(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Element: {\n    prototype: Element;\n    new(): Element;\n};\n\ninterface ElementCSSInlineStyle {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */\n    readonly attributeStyleMap: StylePropertyMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */\n    get style(): CSSStyleDeclaration;\n    set style(cssText: string);\n}\n\ninterface ElementContentEditable {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/contentEditable) */\n    contentEditable: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/enterKeyHint) */\n    enterKeyHint: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inputMode) */\n    inputMode: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/isContentEditable) */\n    readonly isContentEditable: boolean;\n}\n\n/**\n * The **`ElementInternals`** interface of the Document Object Model gives web developers a way to allow custom elements to fully participate in HTML forms.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals)\n */\ninterface ElementInternals extends ARIAMixin {\n    /**\n     * The **`form`** read-only property of the ElementInternals interface returns the HTMLFormElement associated with this element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`labels`** read-only property of the ElementInternals interface returns the labels associated with the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/labels)\n     */\n    readonly labels: NodeList;\n    /**\n     * The **`shadowRoot`** read-only property of the ElementInternals interface returns the ShadowRoot for this element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/shadowRoot)\n     */\n    readonly shadowRoot: ShadowRoot | null;\n    /**\n     * The **`states`** read-only property of the ElementInternals interface returns a CustomStateSet representing the possible states of the custom element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/states)\n     */\n    readonly states: CustomStateSet;\n    /**\n     * The **`validationMessage`** read-only property of the ElementInternals interface returns the validation message for the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the ElementInternals interface returns a ValidityState object which represents the different validity states the element can be in, with respect to constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`willValidate`** read-only property of the ElementInternals interface returns `true` if the element is a submittable element that is a candidate for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the ElementInternals interface checks if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the ElementInternals interface checks if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`setFormValue()`** method of the ElementInternals interface sets the element's submission value and state, communicating these to the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/setFormValue)\n     */\n    setFormValue(value: File | string | FormData | null, state?: File | string | FormData | null): void;\n    /**\n     * The **`setValidity()`** method of the ElementInternals interface sets the validity of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ElementInternals/setValidity)\n     */\n    setValidity(flags?: ValidityStateFlags, message?: string, anchor?: HTMLElement): void;\n}\n\ndeclare var ElementInternals: {\n    prototype: ElementInternals;\n    new(): ElementInternals;\n};\n\n/**\n * The **`EncodedAudioChunk`** interface of the WebCodecs API represents a chunk of encoded audio data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk)\n */\ninterface EncodedAudioChunk {\n    /**\n     * The **`byteLength`** read-only property of the EncodedAudioChunk interface returns the length in bytes of the encoded audio data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/byteLength)\n     */\n    readonly byteLength: number;\n    /**\n     * The **`duration`** read-only property of the EncodedAudioChunk interface returns an integer indicating the duration of the audio in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`timestamp`** read-only property of the EncodedAudioChunk interface returns an integer indicating the timestamp of the audio in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the EncodedAudioChunk interface returns a value indicating whether the audio chunk is a key chunk, which does not relying on other frames for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/type)\n     */\n    readonly type: EncodedAudioChunkType;\n    /**\n     * The **`copyTo()`** method of the EncodedAudioChunk interface copies the encoded chunk of audio data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource): void;\n}\n\ndeclare var EncodedAudioChunk: {\n    prototype: EncodedAudioChunk;\n    new(init: EncodedAudioChunkInit): EncodedAudioChunk;\n};\n\n/**\n * The **`EncodedVideoChunk`** interface of the WebCodecs API represents a chunk of encoded video data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk)\n */\ninterface EncodedVideoChunk {\n    /**\n     * The **`byteLength`** read-only property of the EncodedVideoChunk interface returns the length in bytes of the encoded video data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/byteLength)\n     */\n    readonly byteLength: number;\n    /**\n     * The **`duration`** read-only property of the EncodedVideoChunk interface returns an integer indicating the duration of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`timestamp`** read-only property of the EncodedVideoChunk interface returns an integer indicating the timestamp of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the EncodedVideoChunk interface returns a value indicating whether the video chunk is a key chunk, which does not rely on other frames for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/type)\n     */\n    readonly type: EncodedVideoChunkType;\n    /**\n     * The **`copyTo()`** method of the EncodedVideoChunk interface copies the encoded chunk of video data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource): void;\n}\n\ndeclare var EncodedVideoChunk: {\n    prototype: EncodedVideoChunk;\n    new(init: EncodedVideoChunkInit): EncodedVideoChunk;\n};\n\n/**\n * The **`ErrorEvent`** interface represents events providing information related to errors in scripts or in files.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)\n */\ninterface ErrorEvent extends Event {\n    /**\n     * The **`colno`** read-only property of the ErrorEvent interface returns an integer containing the column number of the script file on which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno)\n     */\n    readonly colno: number;\n    /**\n     * The **`error`** read-only property of the ErrorEvent interface returns a JavaScript value, such as an Error or DOMException, representing the error associated with this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error)\n     */\n    readonly error: any;\n    /**\n     * The **`filename`** read-only property of the ErrorEvent interface returns a string containing the name of the script file in which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename)\n     */\n    readonly filename: string;\n    /**\n     * The **`lineno`** read-only property of the ErrorEvent interface returns an integer containing the line number of the script file on which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno)\n     */\n    readonly lineno: number;\n    /**\n     * The **`message`** read-only property of the ErrorEvent interface returns a string containing a human-readable error message describing the problem.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message)\n     */\n    readonly message: string;\n}\n\ndeclare var ErrorEvent: {\n    prototype: ErrorEvent;\n    new(type: string, eventInitDict?: ErrorEventInit): ErrorEvent;\n};\n\n/**\n * The **`Event`** interface represents an event which takes place on an `EventTarget`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event)\n */\ninterface Event {\n    /**\n     * The **`bubbles`** read-only property of the Event interface indicates whether the event bubbles up through the DOM tree or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/bubbles)\n     */\n    readonly bubbles: boolean;\n    /**\n     * The **`cancelBubble`** property of the Event interface is deprecated.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelBubble)\n     */\n    cancelBubble: boolean;\n    /**\n     * The **`cancelable`** read-only property of the Event interface indicates whether the event can be canceled, and therefore prevented as if the event never happened.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelable)\n     */\n    readonly cancelable: boolean;\n    /**\n     * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)\n     */\n    readonly composed: boolean;\n    /**\n     * The **`currentTarget`** read-only property of the Event interface identifies the element to which the event handler has been attached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/currentTarget)\n     */\n    readonly currentTarget: EventTarget | null;\n    /**\n     * The **`defaultPrevented`** read-only property of the Event interface returns a boolean value indicating whether or not the call to Event.preventDefault() canceled the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/defaultPrevented)\n     */\n    readonly defaultPrevented: boolean;\n    /**\n     * The **`eventPhase`** read-only property of the being evaluated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)\n     */\n    readonly eventPhase: number;\n    /**\n     * The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)\n     */\n    readonly isTrusted: boolean;\n    /**\n     * The Event property **`returnValue`** indicates whether the default action for this event has been prevented or not.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/returnValue)\n     */\n    returnValue: boolean;\n    /**\n     * The deprecated **`Event.srcElement`** is an alias for the Event.target property.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/srcElement)\n     */\n    readonly srcElement: EventTarget | null;\n    /**\n     * The read-only **`target`** property of the dispatched.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)\n     */\n    readonly target: EventTarget | null;\n    /**\n     * The **`timeStamp`** read-only property of the Event interface returns the time (in milliseconds) at which the event was created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/timeStamp)\n     */\n    readonly timeStamp: DOMHighResTimeStamp;\n    /**\n     * The **`type`** read-only property of the Event interface returns a string containing the event's type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/type)\n     */\n    readonly type: string;\n    /**\n     * The **`composedPath()`** method of the Event interface returns the event's path which is an array of the objects on which listeners will be invoked.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composedPath)\n     */\n    composedPath(): EventTarget[];\n    /**\n     * The **`Event.initEvent()`** method is used to initialize the value of an event created using Document.createEvent().\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/initEvent)\n     */\n    initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;\n    /**\n     * The **`preventDefault()`** method of the Event interface tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)\n     */\n    preventDefault(): void;\n    /**\n     * The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)\n     */\n    stopImmediatePropagation(): void;\n    /**\n     * The **`stopPropagation()`** method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopPropagation)\n     */\n    stopPropagation(): void;\n    readonly NONE: 0;\n    readonly CAPTURING_PHASE: 1;\n    readonly AT_TARGET: 2;\n    readonly BUBBLING_PHASE: 3;\n}\n\ndeclare var Event: {\n    prototype: Event;\n    new(type: string, eventInitDict?: EventInit): Event;\n    readonly NONE: 0;\n    readonly CAPTURING_PHASE: 1;\n    readonly AT_TARGET: 2;\n    readonly BUBBLING_PHASE: 3;\n};\n\n/**\n * The **`EventCounts`** interface of the Performance API provides the number of events that have been dispatched for each event type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventCounts)\n */\ninterface EventCounts {\n    forEach(callbackfn: (value: number, key: string, parent: EventCounts) => void, thisArg?: any): void;\n}\n\ndeclare var EventCounts: {\n    prototype: EventCounts;\n    new(): EventCounts;\n};\n\ninterface EventListener {\n    (evt: Event): void;\n}\n\ninterface EventListenerObject {\n    handleEvent(object: Event): void;\n}\n\ninterface EventSourceEventMap {\n    \"error\": Event;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The **`EventSource`** interface is web content's interface to server-sent events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource)\n */\ninterface EventSource extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/error_event) */\n    onerror: ((this: EventSource, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/message_event) */\n    onmessage: ((this: EventSource, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */\n    onopen: ((this: EventSource, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`url`** read-only property of the URL of the source.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)\n     */\n    readonly url: string;\n    /**\n     * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)\n     */\n    readonly withCredentials: boolean;\n    /**\n     * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)\n     */\n    close(): void;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSED: 2;\n    addEventListener<K extends keyof EventSourceEventMap>(type: K, listener: (this: EventSource, ev: EventSourceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: (this: EventSource, event: MessageEvent) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof EventSourceEventMap>(type: K, listener: (this: EventSource, ev: EventSourceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: (this: EventSource, event: MessageEvent) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var EventSource: {\n    prototype: EventSource;\n    new(url: string | URL, eventSourceInitDict?: EventSourceInit): EventSource;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSED: 2;\n};\n\n/**\n * The **`EventTarget`** interface is implemented by objects that can receive events and may have listeners for them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget)\n */\ninterface EventTarget {\n    /**\n     * The **`addEventListener()`** method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)\n     */\n    addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;\n    /**\n     * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)\n     */\n    dispatchEvent(event: Event): boolean;\n    /**\n     * The **`removeEventListener()`** method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/removeEventListener)\n     */\n    removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void;\n}\n\ndeclare var EventTarget: {\n    prototype: EventTarget;\n    new(): EventTarget;\n};\n\n/** @deprecated */\ninterface External {\n    /** @deprecated */\n    AddSearchProvider(): void;\n    /** @deprecated */\n    IsSearchProviderInstalled(): void;\n}\n\n/** @deprecated */\ndeclare var External: {\n    prototype: External;\n    new(): External;\n};\n\n/**\n * The **`File`** interface provides information about files and allows JavaScript in a web page to access their content.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File)\n */\ninterface File extends Blob {\n    /**\n     * The **`lastModified`** read-only property of the File interface provides the last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified)\n     */\n    readonly lastModified: number;\n    /**\n     * The **`name`** read-only property of the File interface returns the name of the file represented by a File object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name)\n     */\n    readonly name: string;\n    /**\n     * The **`webkitRelativePath`** read-only property of the File interface contains a string which specifies the file's path relative to the directory selected by the user in an input element with its `webkitdirectory` attribute set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/webkitRelativePath)\n     */\n    readonly webkitRelativePath: string;\n}\n\ndeclare var File: {\n    prototype: File;\n    new(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File;\n};\n\n/**\n * The **`FileList`** interface represents an object of this type returned by the `files` property of the HTML input element; this lets you access the list of files selected with the `<input type='file'>` element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList)\n */\ninterface FileList {\n    /**\n     * The **`length`** read-only property of the FileList interface returns the number of files in the `FileList`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method of the FileList interface returns a File object representing the file at the specified index in the file list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList/item)\n     */\n    item(index: number): File | null;\n    [index: number]: File;\n}\n\ndeclare var FileList: {\n    prototype: FileList;\n    new(): FileList;\n};\n\ninterface FileReaderEventMap {\n    \"abort\": ProgressEvent<FileReader>;\n    \"error\": ProgressEvent<FileReader>;\n    \"load\": ProgressEvent<FileReader>;\n    \"loadend\": ProgressEvent<FileReader>;\n    \"loadstart\": ProgressEvent<FileReader>;\n    \"progress\": ProgressEvent<FileReader>;\n}\n\n/**\n * The **`FileReader`** interface lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader)\n */\ninterface FileReader extends EventTarget {\n    /**\n     * The **`error`** read-only property of the FileReader interface returns the error that occurred while reading the file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/error)\n     */\n    readonly error: DOMException | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/abort_event) */\n    onabort: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/error_event) */\n    onerror: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/load_event) */\n    onload: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/loadend_event) */\n    onloadend: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/loadstart_event) */\n    onloadstart: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/progress_event) */\n    onprogress: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the FileReader interface provides the current state of the reading operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)\n     */\n    readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;\n    /**\n     * The **`result`** read-only property of the FileReader interface returns the file's contents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/result)\n     */\n    readonly result: string | ArrayBuffer | null;\n    /**\n     * The **`abort()`** method of the FileReader interface aborts the read operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/abort)\n     */\n    abort(): void;\n    /**\n     * The **`readAsArrayBuffer()`** method of the FileReader interface is used to start reading the contents of a specified Blob or File.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsArrayBuffer)\n     */\n    readAsArrayBuffer(blob: Blob): void;\n    /**\n     * The **`readAsBinaryString()`** method of the FileReader interface is used to start reading the contents of the specified Blob or File.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsBinaryString)\n     */\n    readAsBinaryString(blob: Blob): void;\n    /**\n     * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified file's data as a base64 encoded string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)\n     */\n    readAsDataURL(blob: Blob): void;\n    /**\n     * The **`readAsText()`** method of the FileReader interface is used to read the contents of the specified Blob or File.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsText)\n     */\n    readAsText(blob: Blob, encoding?: string): void;\n    readonly EMPTY: 0;\n    readonly LOADING: 1;\n    readonly DONE: 2;\n    addEventListener<K extends keyof FileReaderEventMap>(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof FileReaderEventMap>(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var FileReader: {\n    prototype: FileReader;\n    new(): FileReader;\n    readonly EMPTY: 0;\n    readonly LOADING: 1;\n    readonly DONE: 2;\n};\n\n/**\n * The File and Directory Entries API interface **`FileSystem`** is used to represent a file system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem)\n */\ninterface FileSystem {\n    /**\n     * The read-only **`name`** property of the string is unique among all file systems currently exposed by the File and Directory Entries API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`root`** property of the object representing the root directory of the file system, for use with the File and Directory Entries API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/root)\n     */\n    readonly root: FileSystemDirectoryEntry;\n}\n\ndeclare var FileSystem: {\n    prototype: FileSystem;\n    new(): FileSystem;\n};\n\n/**\n * The **`FileSystemDirectoryEntry`** interface of the File and Directory Entries API represents a directory in a file system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry)\n */\ninterface FileSystemDirectoryEntry extends FileSystemEntry {\n    /**\n     * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a the directory.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/createReader)\n     */\n    createReader(): FileSystemDirectoryReader;\n    /**\n     * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a somewhere within the directory subtree rooted at the directory on which it's called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getDirectory)\n     */\n    getDirectory(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;\n    /**\n     * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a within the directory subtree rooted at the directory on which it's called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getFile)\n     */\n    getFile(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;\n}\n\ndeclare var FileSystemDirectoryEntry: {\n    prototype: FileSystemDirectoryEntry;\n    new(): FileSystemDirectoryEntry;\n};\n\n/**\n * The **`FileSystemDirectoryHandle`** interface of the File System API provides a handle to a file system directory.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle)\n */\ninterface FileSystemDirectoryHandle extends FileSystemHandle {\n    readonly kind: \"directory\";\n    /**\n     * The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)\n     */\n    getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;\n    /**\n     * The **`getFileHandle()`** method of the directory the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)\n     */\n    getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;\n    /**\n     * The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)\n     */\n    removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;\n    /**\n     * The **`resolve()`** method of the directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)\n     */\n    resolve(possibleDescendant: FileSystemHandle): Promise<string[] | null>;\n}\n\ndeclare var FileSystemDirectoryHandle: {\n    prototype: FileSystemDirectoryHandle;\n    new(): FileSystemDirectoryHandle;\n};\n\n/**\n * The `FileSystemDirectoryReader` interface of the File and Directory Entries API lets you access the FileSystemFileEntry-based objects (generally FileSystemFileEntry or FileSystemDirectoryEntry) representing each entry in a directory.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryReader)\n */\ninterface FileSystemDirectoryReader {\n    /**\n     * The FileSystemDirectoryReader interface's **`readEntries()`** method retrieves the directory entries within the directory being read and delivers them in an array to a provided callback function.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryReader/readEntries)\n     */\n    readEntries(successCallback: FileSystemEntriesCallback, errorCallback?: ErrorCallback): void;\n}\n\ndeclare var FileSystemDirectoryReader: {\n    prototype: FileSystemDirectoryReader;\n    new(): FileSystemDirectoryReader;\n};\n\n/**\n * The **`FileSystemEntry`** interface of the File and Directory Entries API represents a single entry in a file system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry)\n */\ninterface FileSystemEntry {\n    /**\n     * The read-only **`filesystem`** property of the FileSystemEntry interface contains a resides.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/filesystem)\n     */\n    readonly filesystem: FileSystem;\n    /**\n     * The read-only **`fullPath`** property of the FileSystemEntry interface returns a string specifying the full, absolute path from the file system's root to the file represented by the entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/fullPath)\n     */\n    readonly fullPath: string;\n    /**\n     * The read-only **`isDirectory`** property of the FileSystemEntry interface is `true` if the entry represents a directory (meaning it's a FileSystemDirectoryEntry) and `false` if it's not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/isDirectory)\n     */\n    readonly isDirectory: boolean;\n    /**\n     * The read-only **`isFile`** property of the FileSystemEntry interface is `true` if the entry represents a file (meaning it's a FileSystemFileEntry) and `false` if it's not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/isFile)\n     */\n    readonly isFile: boolean;\n    /**\n     * The read-only **`name`** property of the FileSystemEntry interface returns a string specifying the entry's name; this is the entry within its parent directory (the last component of the path as indicated by the FileSystemEntry.fullPath property).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/name)\n     */\n    readonly name: string;\n    /**\n     * The FileSystemEntry interface's method **`getParent()`** obtains a ```js-nolint getParent(successCallback, errorCallback) getParent(successCallback) ``` - `successCallback` - : A function which is called when the parent directory entry has been retrieved.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/getParent)\n     */\n    getParent(successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;\n}\n\ndeclare var FileSystemEntry: {\n    prototype: FileSystemEntry;\n    new(): FileSystemEntry;\n};\n\n/**\n * The **`FileSystemFileEntry`** interface of the File and Directory Entries API represents a file in a file system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry)\n */\ninterface FileSystemFileEntry extends FileSystemEntry {\n    /**\n     * The FileSystemFileEntry interface's method **`file()`** returns a the directory entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry/file)\n     */\n    file(successCallback: FileCallback, errorCallback?: ErrorCallback): void;\n}\n\ndeclare var FileSystemFileEntry: {\n    prototype: FileSystemFileEntry;\n    new(): FileSystemFileEntry;\n};\n\n/**\n * The **`FileSystemFileHandle`** interface of the File System API represents a handle to a file system entry.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle)\n */\ninterface FileSystemFileHandle extends FileSystemHandle {\n    readonly kind: \"file\";\n    /**\n     * The **`createWritable()`** method of the FileSystemFileHandle interface creates a FileSystemWritableFileStream that can be used to write to a file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createWritable)\n     */\n    createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;\n    /**\n     * The **`getFile()`** method of the If the file on disk changes or is removed after this method is called, the returned ```js-nolint getFile() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)\n     */\n    getFile(): Promise<File>;\n}\n\ndeclare var FileSystemFileHandle: {\n    prototype: FileSystemFileHandle;\n    new(): FileSystemFileHandle;\n};\n\n/**\n * The **`FileSystemHandle`** interface of the File System API is an object which represents a file or directory entry.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle)\n */\ninterface FileSystemHandle {\n    /**\n     * The **`kind`** read-only property of the `'file'` if the associated entry is a file or `'directory'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)\n     */\n    readonly kind: FileSystemHandleKind;\n    /**\n     * The **`name`** read-only property of the handle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)\n     */\n    readonly name: string;\n    /**\n     * The **`isSameEntry()`** method of the ```js-nolint isSameEntry(fileSystemHandle) ``` - FileSystemHandle - : The `FileSystemHandle` to match against the handle on which the method is invoked.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)\n     */\n    isSameEntry(other: FileSystemHandle): Promise<boolean>;\n}\n\ndeclare var FileSystemHandle: {\n    prototype: FileSystemHandle;\n    new(): FileSystemHandle;\n};\n\n/**\n * The **`FileSystemWritableFileStream`** interface of the File System API is a WritableStream object with additional convenience methods, which operates on a single file on disk.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream)\n */\ninterface FileSystemWritableFileStream extends WritableStream {\n    /**\n     * The **`seek()`** method of the FileSystemWritableFileStream interface updates the current file cursor offset to the position (in bytes) specified when calling the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/seek)\n     */\n    seek(position: number): Promise<void>;\n    /**\n     * The **`truncate()`** method of the FileSystemWritableFileStream interface resizes the file associated with the stream to the specified size in bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/truncate)\n     */\n    truncate(size: number): Promise<void>;\n    /**\n     * The **`write()`** method of the FileSystemWritableFileStream interface writes content into the file the method is called on, at the current file cursor offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/write)\n     */\n    write(data: FileSystemWriteChunkType): Promise<void>;\n}\n\ndeclare var FileSystemWritableFileStream: {\n    prototype: FileSystemWritableFileStream;\n    new(): FileSystemWritableFileStream;\n};\n\n/**\n * The **`FocusEvent`** interface represents focus-related events, including Element/focus_event, Element/blur_event, Element/focusin_event, and Element/focusout_event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent)\n */\ninterface FocusEvent extends UIEvent {\n    /**\n     * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event: <table class='no-markdown'> <thead> <tr> <th scope='col'>Event name</th> <th scope='col'><code>target</code></th> <th scope='col'><code>relatedTarget</code></th> </tr> </thead> <tbody> <tr> <td>Element/blur_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any).</td> </tr> <tr> <td>Element/focus_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusin_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusout_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any)</td> </tr> </tbody> </table> Note that many elements can't have focus, which is a common reason for `relatedTarget` to be `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget)\n     */\n    readonly relatedTarget: EventTarget | null;\n}\n\ndeclare var FocusEvent: {\n    prototype: FocusEvent;\n    new(type: string, eventInitDict?: FocusEventInit): FocusEvent;\n};\n\n/**\n * The **`FontFace`** interface of the CSS Font Loading API represents a single usable font face.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace)\n */\ninterface FontFace {\n    /**\n     * The **`ascentOverride`** property of the FontFace interface returns and sets the ascent metric for the font, the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/ascentOverride)\n     */\n    ascentOverride: string;\n    /**\n     * The **`descentOverride`** property of the FontFace interface returns and sets the value of the @font-face/descent-override descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/descentOverride)\n     */\n    descentOverride: string;\n    /**\n     * The **`display`** property of the FontFace interface determines how a font face is displayed based on whether and when it is downloaded and ready to use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/display)\n     */\n    display: FontDisplay;\n    /**\n     * The **`FontFace.family`** property allows the author to get or set the font family of a FontFace object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/family)\n     */\n    family: string;\n    /**\n     * The **`featureSettings`** property of the FontFace interface retrieves or sets infrequently used font features that are not available from a font's variant properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/featureSettings)\n     */\n    featureSettings: string;\n    /**\n     * The **`lineGapOverride`** property of the FontFace interface returns and sets the value of the @font-face/line-gap-override descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/lineGapOverride)\n     */\n    lineGapOverride: string;\n    /**\n     * The **`loaded`** read-only property of the FontFace interface returns a Promise that resolves with the current `FontFace` object when the font specified in the object's constructor is done loading or rejects with a `SyntaxError`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/loaded)\n     */\n    readonly loaded: Promise<FontFace>;\n    /**\n     * The **`status`** read-only property of the FontFace interface returns an enumerated value indicating the status of the font, one of `'unloaded'`, `'loading'`, `'loaded'`, or `'error'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/status)\n     */\n    readonly status: FontFaceLoadStatus;\n    /**\n     * The **`stretch`** property of the FontFace interface retrieves or sets how the font stretches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/stretch)\n     */\n    stretch: string;\n    /**\n     * The **`style`** property of the FontFace interface retrieves or sets the font's style.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/style)\n     */\n    style: string;\n    /**\n     * The **`unicodeRange`** property of the FontFace interface retrieves or sets the range of unicode code points encompassing the font.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)\n     */\n    unicodeRange: string;\n    /**\n     * The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/weight)\n     */\n    weight: string;\n    /**\n     * The **`load()`** method of the FontFace interface requests and loads a font whose `source` was specified as a URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/load)\n     */\n    load(): Promise<FontFace>;\n}\n\ndeclare var FontFace: {\n    prototype: FontFace;\n    new(family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;\n};\n\ninterface FontFaceSetEventMap {\n    \"loading\": FontFaceSetLoadEvent;\n    \"loadingdone\": FontFaceSetLoadEvent;\n    \"loadingerror\": FontFaceSetLoadEvent;\n}\n\n/**\n * The **`FontFaceSet`** interface of the CSS Font Loading API manages the loading of font-faces and querying of their download status.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet)\n */\ninterface FontFaceSet extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loading_event) */\n    onloading: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loadingdone_event) */\n    onloadingdone: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loadingerror_event) */\n    onloadingerror: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /**\n     * The `ready` read-only property of the FontFaceSet interface returns a Promise that resolves to the given FontFaceSet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/ready)\n     */\n    readonly ready: Promise<FontFaceSet>;\n    /**\n     * The **`status`** read-only property of the FontFaceSet interface returns the loading state of the fonts in the set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/status)\n     */\n    readonly status: FontFaceSetLoadStatus;\n    /**\n     * The `check()` method of the FontFaceSet returns `true` if you can render some text using the given font specification without attempting to use any fonts in this `FontFaceSet` that are not yet fully loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/check)\n     */\n    check(font: string, text?: string): boolean;\n    /**\n     * The `load()` method of the FontFaceSet forces all the fonts given in parameters to be loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/load)\n     */\n    load(font: string, text?: string): Promise<FontFace[]>;\n    forEach(callbackfn: (value: FontFace, key: FontFace, parent: FontFaceSet) => void, thisArg?: any): void;\n    addEventListener<K extends keyof FontFaceSetEventMap>(type: K, listener: (this: FontFaceSet, ev: FontFaceSetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof FontFaceSetEventMap>(type: K, listener: (this: FontFaceSet, ev: FontFaceSetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var FontFaceSet: {\n    prototype: FontFaceSet;\n    new(): FontFaceSet;\n};\n\n/**\n * The **`FontFaceSetLoadEvent`** interface of the CSS Font Loading API represents events fired at a FontFaceSet after it starts loading font faces.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent)\n */\ninterface FontFaceSetLoadEvent extends Event {\n    /**\n     * The **`fontfaces`** read-only property of the An array of FontFace instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)\n     */\n    readonly fontfaces: ReadonlyArray<FontFace>;\n}\n\ndeclare var FontFaceSetLoadEvent: {\n    prototype: FontFaceSetLoadEvent;\n    new(type: string, eventInitDict?: FontFaceSetLoadEventInit): FontFaceSetLoadEvent;\n};\n\ninterface FontFaceSource {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fonts) */\n    readonly fonts: FontFaceSet;\n}\n\n/**\n * The **`FormData`** interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the Window/fetch, XMLHttpRequest.send() or navigator.sendBeacon() methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData)\n */\ninterface FormData {\n    /**\n     * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append)\n     */\n    append(name: string, value: string | Blob): void;\n    append(name: string, value: string): void;\n    append(name: string, blobValue: Blob, filename?: string): void;\n    /**\n     * The **`delete()`** method of the FormData interface deletes a key and its value(s) from a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/delete)\n     */\n    delete(name: string): void;\n    /**\n     * The **`get()`** method of the FormData interface returns the first value associated with a given key from within a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/get)\n     */\n    get(name: string): FormDataEntryValue | null;\n    /**\n     * The **`getAll()`** method of the FormData interface returns all the values associated with a given key from within a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/getAll)\n     */\n    getAll(name: string): FormDataEntryValue[];\n    /**\n     * The **`has()`** method of the FormData interface returns whether a `FormData` object contains a certain key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has)\n     */\n    has(name: string): boolean;\n    /**\n     * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set)\n     */\n    set(name: string, value: string | Blob): void;\n    set(name: string, value: string): void;\n    set(name: string, blobValue: Blob, filename?: string): void;\n    forEach(callbackfn: (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg?: any): void;\n}\n\ndeclare var FormData: {\n    prototype: FormData;\n    new(form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;\n};\n\n/**\n * The **`FormDataEvent`** interface represents a `formdata` event — such an event is fired on an HTMLFormElement object after the entry list representing the form's data is constructed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormDataEvent)\n */\ninterface FormDataEvent extends Event {\n    /**\n     * The `formData` read-only property of the FormDataEvent interface contains the FormData object representing the data contained in the form when the event was fired.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormDataEvent/formData)\n     */\n    readonly formData: FormData;\n}\n\ndeclare var FormDataEvent: {\n    prototype: FormDataEvent;\n    new(type: string, eventInitDict: FormDataEventInit): FormDataEvent;\n};\n\n/**\n * The **`FragmentDirective`** interface is an object exposed to allow code to check whether or not a browser supports text fragments.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FragmentDirective)\n */\ninterface FragmentDirective {\n}\n\ndeclare var FragmentDirective: {\n    prototype: FragmentDirective;\n    new(): FragmentDirective;\n};\n\n/**\n * The **`GPUError`** interface of the WebGPU API is the base interface for errors surfaced by GPUDevice.popErrorScope and the GPUDevice.uncapturederror_event event.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError)\n */\ninterface GPUError {\n    /**\n     * The **`message`** read-only property of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)\n     */\n    readonly message: string;\n}\n\n/**\n * The `GainNode` interface represents a change in volume.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GainNode)\n */\ninterface GainNode extends AudioNode {\n    /**\n     * The `gain` property of the GainNode interface is an a-rate AudioParam representing the amount of gain to apply.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GainNode/gain)\n     */\n    readonly gain: AudioParam;\n}\n\ndeclare var GainNode: {\n    prototype: GainNode;\n    new(context: BaseAudioContext, options?: GainOptions): GainNode;\n};\n\n/**\n * The **`Gamepad`** interface of the Gamepad API defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad)\n */\ninterface Gamepad {\n    /**\n     * The **`Gamepad.axes`** property of the Gamepad interface returns an array representing the controls with axes present on the device (e.g., analog thumb sticks).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/axes)\n     */\n    readonly axes: ReadonlyArray<number>;\n    /**\n     * The **`buttons`** property of the Gamepad interface returns an array of GamepadButton objects representing the buttons present on the device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/buttons)\n     */\n    readonly buttons: ReadonlyArray<GamepadButton>;\n    /**\n     * The **`Gamepad.connected`** property of the still connected to the system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected)\n     */\n    readonly connected: boolean;\n    /**\n     * The **`Gamepad.id`** property of the Gamepad interface returns a string containing some information about the controller.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/id)\n     */\n    readonly id: string;\n    /**\n     * The **`Gamepad.index`** property of the Gamepad interface returns an integer that is auto-incremented to be unique for each device currently connected to the system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/index)\n     */\n    readonly index: number;\n    /**\n     * The **`Gamepad.mapping`** property of the remapped the controls on the device to a known layout.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/mapping)\n     */\n    readonly mapping: GamepadMappingType;\n    /**\n     * The **`Gamepad.timestamp`** property of the representing the last time the data for this gamepad was updated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp)\n     */\n    readonly timestamp: DOMHighResTimeStamp;\n    /**\n     * The **`vibrationActuator`** read-only property of the Gamepad interface returns a GamepadHapticActuator object, which represents haptic feedback hardware available on the controller.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/vibrationActuator)\n     */\n    readonly vibrationActuator: GamepadHapticActuator;\n}\n\ndeclare var Gamepad: {\n    prototype: Gamepad;\n    new(): Gamepad;\n};\n\n/**\n * The **`GamepadButton`** interface defines an individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton)\n */\ninterface GamepadButton {\n    /**\n     * The **`GamepadButton.pressed`** property of the the button is currently pressed (`true`) or unpressed (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/pressed)\n     */\n    readonly pressed: boolean;\n    /**\n     * The **`touched`** property of the a button capable of detecting touch is currently touched (`true`) or not touched (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/touched)\n     */\n    readonly touched: boolean;\n    /**\n     * The **`GamepadButton.value`** property of the current state of analog buttons on many modern gamepads, such as the triggers.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/value)\n     */\n    readonly value: number;\n}\n\ndeclare var GamepadButton: {\n    prototype: GamepadButton;\n    new(): GamepadButton;\n};\n\n/**\n * The GamepadEvent interface of the Gamepad API contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected_event and Window.gamepaddisconnected_event are fired in response to.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent)\n */\ninterface GamepadEvent extends Event {\n    /**\n     * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired A Gamepad object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent/gamepad)\n     */\n    readonly gamepad: Gamepad;\n}\n\ndeclare var GamepadEvent: {\n    prototype: GamepadEvent;\n    new(type: string, eventInitDict: GamepadEventInit): GamepadEvent;\n};\n\n/**\n * The **`GamepadHapticActuator`** interface of the Gamepad API represents hardware in the controller designed to provide haptic feedback to the user (if available), most commonly vibration hardware.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)\n */\ninterface GamepadHapticActuator {\n    /**\n     * The **`playEffect()`** method of the GamepadHapticActuator interface causes the hardware to play a specific vibration effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/playEffect)\n     */\n    playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;\n    /**\n     * The **`reset()`** method of the GamepadHapticActuator interface stops the hardware from playing an active vibration effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/reset)\n     */\n    reset(): Promise<GamepadHapticsResult>;\n}\n\ndeclare var GamepadHapticActuator: {\n    prototype: GamepadHapticActuator;\n    new(): GamepadHapticActuator;\n};\n\ninterface GenericTransformStream {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream/readable) */\n    readonly readable: ReadableStream;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream/writable) */\n    readonly writable: WritableStream;\n}\n\n/**\n * The **`Geolocation`** interface represents an object able to obtain the position of the device programmatically.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Geolocation)\n */\ninterface Geolocation {\n    /**\n     * The **`clearWatch()`** method of the Geolocation interface is used to unregister location/error monitoring handlers previously installed using Geolocation.watchPosition().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Geolocation/clearWatch)\n     */\n    clearWatch(watchId: number): void;\n    /**\n     * The **`getCurrentPosition()`** method of the Geolocation interface is used to get the current position of the device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Geolocation/getCurrentPosition)\n     */\n    getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions): void;\n    /**\n     * The **`watchPosition()`** method of the Geolocation interface is used to register a handler function that will be called automatically each time the position of the device changes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Geolocation/watchPosition)\n     */\n    watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions): number;\n}\n\ndeclare var Geolocation: {\n    prototype: Geolocation;\n    new(): Geolocation;\n};\n\n/**\n * The **`GeolocationCoordinates`** interface represents the position and altitude of the device on Earth, as well as the accuracy with which these properties are calculated.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates)\n */\ninterface GeolocationCoordinates {\n    /**\n     * The **`accuracy`** read-only property of the GeolocationCoordinates interface is a strictly positive `double` representing the accuracy, with a 95% confidence level, of the GeolocationCoordinates.latitude and GeolocationCoordinates.longitude properties expressed in meters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/accuracy)\n     */\n    readonly accuracy: number;\n    /**\n     * The **`altitude`** read-only property of the GeolocationCoordinates interface is a `double` representing the altitude of the position in meters above the WGS84 ellipsoid (which defines the nominal sea level surface).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/altitude)\n     */\n    readonly altitude: number | null;\n    /**\n     * The **`altitudeAccuracy`** read-only property of the GeolocationCoordinates interface is a strictly positive `double` representing the accuracy, with a 95% confidence level, of the `altitude` expressed in meters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/altitudeAccuracy)\n     */\n    readonly altitudeAccuracy: number | null;\n    /**\n     * The **`heading`** read-only property of the GeolocationCoordinates interface is a `double` representing the direction in which the device is traveling.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/heading)\n     */\n    readonly heading: number | null;\n    /**\n     * The **`latitude`** read-only property of the GeolocationCoordinates interface is a `double` representing the latitude of the position in decimal degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/latitude)\n     */\n    readonly latitude: number;\n    /**\n     * The **`longitude`** read-only property of the GeolocationCoordinates interface is a number which represents the longitude of a geographical position, specified in decimal degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/longitude)\n     */\n    readonly longitude: number;\n    /**\n     * The **`speed`** read-only property of the GeolocationCoordinates interface is a `double` representing the velocity of the device in meters per second.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/speed)\n     */\n    readonly speed: number | null;\n    /**\n     * The **`toJSON()`** method of the GeolocationCoordinates interface is a Serialization; it returns a JSON representation of the GeolocationCoordinates object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var GeolocationCoordinates: {\n    prototype: GeolocationCoordinates;\n    new(): GeolocationCoordinates;\n};\n\n/**\n * The **`GeolocationPosition`** interface represents the position of the concerned device at a given time.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition)\n */\ninterface GeolocationPosition {\n    /**\n     * The **`coords`** read-only property of the GeolocationPosition interface returns a GeolocationCoordinates object representing a geographic position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/coords)\n     */\n    readonly coords: GeolocationCoordinates;\n    /**\n     * The **`timestamp`** read-only property of the GeolocationPosition interface represents the date and time that the position was acquired by the device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/timestamp)\n     */\n    readonly timestamp: EpochTimeStamp;\n    /**\n     * The **`toJSON()`** method of the GeolocationPosition interface is a Serialization; it returns a JSON representation of the GeolocationPosition object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var GeolocationPosition: {\n    prototype: GeolocationPosition;\n    new(): GeolocationPosition;\n};\n\n/**\n * The **`GeolocationPositionError`** interface represents the reason of an error occurring when using the geolocating device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPositionError)\n */\ninterface GeolocationPositionError {\n    /**\n     * The **`code`** read-only property of the GeolocationPositionError interface is an `unsigned short` representing the error code.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPositionError/code)\n     */\n    readonly code: number;\n    /**\n     * The **`message`** read-only property of the GeolocationPositionError interface returns a human-readable string describing the details of the error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPositionError/message)\n     */\n    readonly message: string;\n    readonly PERMISSION_DENIED: 1;\n    readonly POSITION_UNAVAILABLE: 2;\n    readonly TIMEOUT: 3;\n}\n\ndeclare var GeolocationPositionError: {\n    prototype: GeolocationPositionError;\n    new(): GeolocationPositionError;\n    readonly PERMISSION_DENIED: 1;\n    readonly POSITION_UNAVAILABLE: 2;\n    readonly TIMEOUT: 3;\n};\n\ninterface GlobalEventHandlersEventMap {\n    \"abort\": UIEvent;\n    \"animationcancel\": AnimationEvent;\n    \"animationend\": AnimationEvent;\n    \"animationiteration\": AnimationEvent;\n    \"animationstart\": AnimationEvent;\n    \"auxclick\": PointerEvent;\n    \"beforeinput\": InputEvent;\n    \"beforematch\": Event;\n    \"beforetoggle\": ToggleEvent;\n    \"blur\": FocusEvent;\n    \"cancel\": Event;\n    \"canplay\": Event;\n    \"canplaythrough\": Event;\n    \"change\": Event;\n    \"click\": PointerEvent;\n    \"close\": Event;\n    \"compositionend\": CompositionEvent;\n    \"compositionstart\": CompositionEvent;\n    \"compositionupdate\": CompositionEvent;\n    \"contextlost\": Event;\n    \"contextmenu\": PointerEvent;\n    \"contextrestored\": Event;\n    \"copy\": ClipboardEvent;\n    \"cuechange\": Event;\n    \"cut\": ClipboardEvent;\n    \"dblclick\": MouseEvent;\n    \"drag\": DragEvent;\n    \"dragend\": DragEvent;\n    \"dragenter\": DragEvent;\n    \"dragleave\": DragEvent;\n    \"dragover\": DragEvent;\n    \"dragstart\": DragEvent;\n    \"drop\": DragEvent;\n    \"durationchange\": Event;\n    \"emptied\": Event;\n    \"ended\": Event;\n    \"error\": ErrorEvent;\n    \"focus\": FocusEvent;\n    \"focusin\": FocusEvent;\n    \"focusout\": FocusEvent;\n    \"formdata\": FormDataEvent;\n    \"gotpointercapture\": PointerEvent;\n    \"input\": Event;\n    \"invalid\": Event;\n    \"keydown\": KeyboardEvent;\n    \"keypress\": KeyboardEvent;\n    \"keyup\": KeyboardEvent;\n    \"load\": Event;\n    \"loadeddata\": Event;\n    \"loadedmetadata\": Event;\n    \"loadstart\": Event;\n    \"lostpointercapture\": PointerEvent;\n    \"mousedown\": MouseEvent;\n    \"mouseenter\": MouseEvent;\n    \"mouseleave\": MouseEvent;\n    \"mousemove\": MouseEvent;\n    \"mouseout\": MouseEvent;\n    \"mouseover\": MouseEvent;\n    \"mouseup\": MouseEvent;\n    \"paste\": ClipboardEvent;\n    \"pause\": Event;\n    \"play\": Event;\n    \"playing\": Event;\n    \"pointercancel\": PointerEvent;\n    \"pointerdown\": PointerEvent;\n    \"pointerenter\": PointerEvent;\n    \"pointerleave\": PointerEvent;\n    \"pointermove\": PointerEvent;\n    \"pointerout\": PointerEvent;\n    \"pointerover\": PointerEvent;\n    \"pointerrawupdate\": Event;\n    \"pointerup\": PointerEvent;\n    \"progress\": ProgressEvent;\n    \"ratechange\": Event;\n    \"reset\": Event;\n    \"resize\": UIEvent;\n    \"scroll\": Event;\n    \"scrollend\": Event;\n    \"securitypolicyviolation\": SecurityPolicyViolationEvent;\n    \"seeked\": Event;\n    \"seeking\": Event;\n    \"select\": Event;\n    \"selectionchange\": Event;\n    \"selectstart\": Event;\n    \"slotchange\": Event;\n    \"stalled\": Event;\n    \"submit\": SubmitEvent;\n    \"suspend\": Event;\n    \"timeupdate\": Event;\n    \"toggle\": ToggleEvent;\n    \"touchcancel\": TouchEvent;\n    \"touchend\": TouchEvent;\n    \"touchmove\": TouchEvent;\n    \"touchstart\": TouchEvent;\n    \"transitioncancel\": TransitionEvent;\n    \"transitionend\": TransitionEvent;\n    \"transitionrun\": TransitionEvent;\n    \"transitionstart\": TransitionEvent;\n    \"volumechange\": Event;\n    \"waiting\": Event;\n    \"webkitanimationend\": Event;\n    \"webkitanimationiteration\": Event;\n    \"webkitanimationstart\": Event;\n    \"webkittransitionend\": Event;\n    \"wheel\": WheelEvent;\n}\n\ninterface GlobalEventHandlers {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/abort_event) */\n    onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationcancel_event) */\n    onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) */\n    onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) */\n    onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) */\n    onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */\n    onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */\n    onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */\n    onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */\n    onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event) */\n    onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */\n    oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplay_event) */\n    oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplaythrough_event) */\n    oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/change_event) */\n    onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/click_event) */\n    onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */\n    onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) */\n    oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event) */\n    oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) */\n    oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) */\n    oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) */\n    oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/cut_event) */\n    oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/dblclick_event) */\n    ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drag_event) */\n    ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragend_event) */\n    ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragenter_event) */\n    ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragleave_event) */\n    ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragover_event) */\n    ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragstart_event) */\n    ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drop_event) */\n    ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/durationchange_event) */\n    ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/emptied_event) */\n    onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ended_event) */\n    onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/error_event) */\n    onerror: OnErrorEventHandler;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/focus_event) */\n    onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/formdata_event) */\n    onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */\n    ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */\n    oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */\n    oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */\n    onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keypress_event)\n     */\n    onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keyup_event) */\n    onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event) */\n    onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadeddata_event) */\n    onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadedmetadata_event) */\n    onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event) */\n    onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */\n    onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousedown_event) */\n    onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseenter_event) */\n    onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseleave_event) */\n    onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousemove_event) */\n    onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseout_event) */\n    onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseover_event) */\n    onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseup_event) */\n    onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/paste_event) */\n    onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause_event) */\n    onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/play_event) */\n    onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playing_event) */\n    onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointercancel_event) */\n    onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerdown_event) */\n    onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerenter_event) */\n    onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerleave_event) */\n    onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointermove_event) */\n    onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerout_event) */\n    onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */\n    onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)\n     */\n    onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */\n    onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/progress_event) */\n    onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ratechange_event) */\n    onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reset_event) */\n    onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/resize_event) */\n    onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event) */\n    onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */\n    onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */\n    onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeked_event) */\n    onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking_event) */\n    onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/select_event) */\n    onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/selectionchange_event) */\n    onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/selectstart_event) */\n    onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/slotchange_event) */\n    onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/stalled_event) */\n    onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit_event) */\n    onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/suspend_event) */\n    onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event) */\n    ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) */\n    ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) */\n    ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchend_event) */\n    ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchmove_event) */\n    ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchstart_event) */\n    ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitioncancel_event) */\n    ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) */\n    ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionrun_event) */\n    ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionstart_event) */\n    ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volumechange_event) */\n    onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waiting_event) */\n    onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /**\n     * @deprecated This is a legacy alias of `onanimationend`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event)\n     */\n    onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /**\n     * @deprecated This is a legacy alias of `onanimationiteration`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event)\n     */\n    onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /**\n     * @deprecated This is a legacy alias of `onanimationstart`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event)\n     */\n    onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /**\n     * @deprecated This is a legacy alias of `ontransitionend`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event)\n     */\n    onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/wheel_event) */\n    onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;\n    addEventListener<K extends keyof GlobalEventHandlersEventMap>(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof GlobalEventHandlersEventMap>(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/**\n * The **`HTMLAllCollection`** interface represents a collection of _all_ of the document's elements, accessible by index (like an array) and by the element's `id`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAllCollection)\n */\ninterface HTMLAllCollection {\n    /**\n     * The **`HTMLAllCollection.length`** property returns the number of items in this HTMLAllCollection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAllCollection/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method of the HTMLAllCollection interface returns the element located at the specified offset into the collection, or the element with the specified value for its `id` or `name` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAllCollection/item)\n     */\n    item(nameOrIndex?: string): HTMLCollection | Element | null;\n    /**\n     * The **`namedItem()`** method of the HTMLAllCollection interface returns the first Element in the collection whose `id` or `name` attribute matches the specified name, or `null` if no element matches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAllCollection/namedItem)\n     */\n    namedItem(name: string): HTMLCollection | Element | null;\n    [index: number]: Element;\n}\n\ndeclare var HTMLAllCollection: {\n    prototype: HTMLAllCollection;\n    new(): HTMLAllCollection;\n};\n\n/**\n * The **`HTMLAnchorElement`** interface represents hyperlink elements and provides special properties and methods (beyond those of the regular HTMLElement object interface that they inherit from) for manipulating the layout and presentation of such elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement)\n */\ninterface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {\n    /** @deprecated */\n    charset: string;\n    /** @deprecated */\n    coords: string;\n    /**\n     * The **`HTMLAnchorElement.download`** property is a string indicating that the linked resource is intended to be downloaded rather than displayed in the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/download)\n     */\n    download: string;\n    /**\n     * The **`hreflang`** property of the HTMLAnchorElement interface is a string that is the language of the linked resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hreflang)\n     */\n    hreflang: string;\n    /** @deprecated */\n    name: string;\n    /**\n     * The **`ping`** property of the HTMLAnchorElement interface is a space-separated list of URLs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping)\n     */\n    ping: string;\n    /**\n     * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the A string; one of the following: - `no-referrer` - : The Referer header will be omitted entirely.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy)\n     */\n    referrerPolicy: string;\n    /**\n     * The **`HTMLAnchorElement.rel`** property reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/rel)\n     */\n    rel: string;\n    /**\n     * The **`HTMLAnchorElement.relList`** read-only property reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/relList)\n     */\n    get relList(): DOMTokenList;\n    set relList(value: string);\n    /** @deprecated */\n    rev: string;\n    /** @deprecated */\n    shape: string;\n    /**\n     * The **`target`** property of the HTMLAnchorElement interface is a string that indicates where to display the linked resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/target)\n     */\n    target: string;\n    /**\n     * The **`text`** property of the HTMLAnchorElement represents the text inside the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/text)\n     */\n    text: string;\n    /**\n     * The **`type`** property of the HTMLAnchorElement interface is a string that indicates the MIME type of the linked resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLAnchorElement: {\n    prototype: HTMLAnchorElement;\n    new(): HTMLAnchorElement;\n};\n\n/**\n * The **`HTMLAreaElement`** interface provides special properties and methods (beyond those of the regular object HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of area elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)\n */\ninterface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {\n    /**\n     * The **`alt`** property of the HTMLAreaElement interface specifies the text of the hyperlink, defining the textual label for an image map's link.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)\n     */\n    alt: string;\n    /**\n     * The **`coords`** property of the HTMLAreaElement interface specifies the coordinates of the element's shape as a list of floating-point numbers.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)\n     */\n    coords: string;\n    /**\n     * The **`download`** property of the HTMLAreaElement interface is a string indicating that the linked resource is intended to be downloaded rather than displayed in the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download)\n     */\n    download: string;\n    /** @deprecated */\n    noHref: boolean;\n    /**\n     * The **`ping`** property of the HTMLAreaElement interface is a space-separated list of URLs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping)\n     */\n    ping: string;\n    /**\n     * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy)\n     */\n    referrerPolicy: string;\n    /**\n     * The **`HTMLAreaElement.rel`** property reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/rel)\n     */\n    rel: string;\n    /**\n     * The **`HTMLAreaElement.relList`** read-only property reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList)\n     */\n    get relList(): DOMTokenList;\n    set relList(value: string);\n    /**\n     * The **`shape`** property of the HTMLAreaElement interface specifies the shape of an image map area.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)\n     */\n    shape: string;\n    /**\n     * The **`target`** property of the HTMLAreaElement interface is a string that indicates where to display the linked resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/target)\n     */\n    target: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLAreaElement: {\n    prototype: HTMLAreaElement;\n    new(): HTMLAreaElement;\n};\n\n/**\n * The **`HTMLAudioElement`** interface provides access to the properties of audio elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAudioElement)\n */\ninterface HTMLAudioElement extends HTMLMediaElement {\n    addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLAudioElement, ev: HTMLMediaElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLAudioElement, ev: HTMLMediaElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLAudioElement: {\n    prototype: HTMLAudioElement;\n    new(): HTMLAudioElement;\n};\n\n/**\n * The **`HTMLBRElement`** interface represents an HTML line break element (br).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBRElement)\n */\ninterface HTMLBRElement extends HTMLElement {\n    /** @deprecated */\n    clear: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLBRElement: {\n    prototype: HTMLBRElement;\n    new(): HTMLBRElement;\n};\n\n/**\n * The **`HTMLBaseElement`** interface contains the base URI for a document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement)\n */\ninterface HTMLBaseElement extends HTMLElement {\n    /**\n     * The **`href`** property of the HTMLBaseElement interface contains a string that is the URL to use as the base for relative URLs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement/href)\n     */\n    href: string;\n    /**\n     * The `target` property of the HTMLBaseElement interface is a string that represents the default target tab to show the resulting output for hyperlinks and form elements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement/target)\n     */\n    target: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLBaseElement: {\n    prototype: HTMLBaseElement;\n    new(): HTMLBaseElement;\n};\n\ninterface HTMLBodyElementEventMap extends HTMLElementEventMap, WindowEventHandlersEventMap {\n}\n\n/**\n * The **`HTMLBodyElement`** interface provides special properties (beyond those inherited from the regular HTMLElement interface) for manipulating body elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement)\n */\ninterface HTMLBodyElement extends HTMLElement, WindowEventHandlers {\n    /** @deprecated */\n    aLink: string;\n    /** @deprecated */\n    background: string;\n    /** @deprecated */\n    bgColor: string;\n    /** @deprecated */\n    link: string;\n    /** @deprecated */\n    text: string;\n    /** @deprecated */\n    vLink: string;\n    addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLBodyElement: {\n    prototype: HTMLBodyElement;\n    new(): HTMLBodyElement;\n};\n\n/**\n * The **`HTMLButtonElement`** interface provides properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating button elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement)\n */\ninterface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {\n    /**\n     * The **`HTMLButtonElement.disabled`** property indicates whether the control is disabled, meaning that it does not accept any clicks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`form`** read-only property of the HTMLButtonElement interface returns an HTMLFormElement object that owns this button, or `null` if this button is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`formAction`** property of the HTMLButtonElement interface is the URL of the program that is executed on the server when the form that owns this control is submitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)\n     */\n    formAction: string;\n    /**\n     * The **`formEnctype`** property of the HTMLButtonElement interface is the MIME_type of the content sent to the server when the form is submitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)\n     */\n    formEnctype: string;\n    /**\n     * The **`formMethod`** property of the HTMLButtonElement interface is the HTTP method used to submit the form if the button element is the control that submits the form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)\n     */\n    formMethod: string;\n    /**\n     * The **`formNoValidate`** property of the HTMLButtonElement interface is a boolean value indicating if the form will bypass constraint validation when submitted via the button.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formNoValidate)\n     */\n    formNoValidate: boolean;\n    /**\n     * The **`formTarget`** property of the HTMLButtonElement interface is the tab, window, or iframe where the response of the submitted form is to be displayed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formTarget)\n     */\n    formTarget: string;\n    /**\n     * The **`HTMLButtonElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<button>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`name`** property of the HTMLButtonElement interface indicates the name of the button element or the empty string if the element has no name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/name)\n     */\n    name: string;\n    /**\n     * The **`type`** property of the HTMLButtonElement interface is a string that indicates the behavior type of the button element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/type)\n     */\n    type: \"submit\" | \"reset\" | \"button\";\n    /**\n     * The **`validationMessage`** read-only property of the HTMLButtonElement interface returns a string representing a localized message that describes the validation constraints that the button control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLButtonElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`value`** property of the HTMLButtonElement interface represents the value of the button element as a string, or the empty string if no value is set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/value)\n     */\n    value: string;\n    /**\n     * The **`willValidate`** read-only property of the HTMLButtonElement interface indicates whether the button element is a candidate for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the HTMLButtonElement interface returns a boolean value which indicates if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLButtonElement interface performs the same validity checking steps as the HTMLButtonElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`setCustomValidity()`** method of the HTMLButtonElement interface sets the custom validity message for the button element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLButtonElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLButtonElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLButtonElement: {\n    prototype: HTMLButtonElement;\n    new(): HTMLButtonElement;\n};\n\n/**\n * The **`HTMLCanvasElement`** interface provides properties and methods for manipulating the layout and presentation of canvas elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement)\n */\ninterface HTMLCanvasElement extends HTMLElement {\n    /**\n     * The **`HTMLCanvasElement.height`** property is a positive `integer` reflecting the `height` HTML attribute of the canvas element interpreted in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/height)\n     */\n    height: number;\n    /**\n     * The **`HTMLCanvasElement.width`** property is a positive `integer` reflecting the `width` HTML attribute of the canvas element interpreted in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/width)\n     */\n    width: number;\n    /**\n     * The **`captureStream()`** method of the HTMLCanvasElement interface returns a MediaStream which includes a CanvasCaptureMediaStreamTrack containing a real-time video capture of the canvas's contents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/captureStream)\n     */\n    captureStream(frameRequestRate?: number): MediaStream;\n    /**\n     * The **`HTMLCanvasElement.getContext()`** method returns a drawing context on the canvas, or `null` if the context identifier is not supported, or the canvas has already been set to a different context mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/getContext)\n     */\n    getContext(contextId: \"2d\", options?: CanvasRenderingContext2DSettings): CanvasRenderingContext2D | null;\n    getContext(contextId: \"bitmaprenderer\", options?: ImageBitmapRenderingContextSettings): ImageBitmapRenderingContext | null;\n    getContext(contextId: \"webgl\", options?: WebGLContextAttributes): WebGLRenderingContext | null;\n    getContext(contextId: \"webgl2\", options?: WebGLContextAttributes): WebGL2RenderingContext | null;\n    getContext(contextId: string, options?: any): RenderingContext | null;\n    /**\n     * The **`HTMLCanvasElement.toBlob()`** method creates a Blob object representing the image contained in the canvas.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/toBlob)\n     */\n    toBlob(callback: BlobCallback, type?: string, quality?: number): void;\n    /**\n     * The **`HTMLCanvasElement.toDataURL()`** method returns a data URL containing a representation of the image in the format specified by the `type` parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/toDataURL)\n     */\n    toDataURL(type?: string, quality?: number): string;\n    /**\n     * The **`HTMLCanvasElement.transferControlToOffscreen()`** method transfers control to an OffscreenCanvas object, either on the main thread or on a worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/transferControlToOffscreen)\n     */\n    transferControlToOffscreen(): OffscreenCanvas;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLCanvasElement: {\n    prototype: HTMLCanvasElement;\n    new(): HTMLCanvasElement;\n};\n\n/**\n * The **`HTMLCollection`** interface represents a generic collection (array-like object similar to Functions/arguments) of elements (in document order) and offers methods and properties for selecting from the list.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCollection)\n */\ninterface HTMLCollectionBase {\n    /**\n     * The **`HTMLCollection.length`** property returns the number of items in a HTMLCollection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCollection/length)\n     */\n    readonly length: number;\n    /**\n     * The HTMLCollection method `item()` returns the element located at the specified offset into the collection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCollection/item)\n     */\n    item(index: number): Element | null;\n    [index: number]: Element;\n}\n\ninterface HTMLCollection extends HTMLCollectionBase {\n    /**\n     * The **`namedItem()`** method of the HTMLCollection interface returns the first Element in the collection whose `id` or `name` attribute match the specified name, or `null` if no element matches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCollection/namedItem)\n     */\n    namedItem(name: string): Element | null;\n}\n\ndeclare var HTMLCollection: {\n    prototype: HTMLCollection;\n    new(): HTMLCollection;\n};\n\ninterface HTMLCollectionOf<T extends Element> extends HTMLCollectionBase {\n    item(index: number): T | null;\n    namedItem(name: string): T | null;\n    [index: number]: T;\n}\n\n/**\n * The **`HTMLDListElement`** interface provides special properties (beyond those of the regular HTMLElement interface it also has available to it by inheritance) for manipulating definition list (dl) elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement)\n */\ninterface HTMLDListElement extends HTMLElement {\n    /** @deprecated */\n    compact: boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDListElement: {\n    prototype: HTMLDListElement;\n    new(): HTMLDListElement;\n};\n\n/**\n * The **`HTMLDataElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating data elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataElement)\n */\ninterface HTMLDataElement extends HTMLElement {\n    /**\n     * The **`value`** property of the HTMLDataElement interface returns a string reflecting the `value` HTML attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataElement/value)\n     */\n    value: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDataElement: {\n    prototype: HTMLDataElement;\n    new(): HTMLDataElement;\n};\n\n/**\n * The **`HTMLDataListElement`** interface provides special properties (beyond the HTMLElement object interface it also has available to it by inheritance) to manipulate datalist elements and their content.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement)\n */\ninterface HTMLDataListElement extends HTMLElement {\n    /**\n     * The **`options`** read-only property of the HTMLDataListElement interface returns an HTMLCollection of HTMLOptionElement elements contained in a datalist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement/options)\n     */\n    readonly options: HTMLCollectionOf<HTMLOptionElement>;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDataListElement: {\n    prototype: HTMLDataListElement;\n    new(): HTMLDataListElement;\n};\n\n/**\n * The **`HTMLDetailsElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating details elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement)\n */\ninterface HTMLDetailsElement extends HTMLElement {\n    /**\n     * The **`name`** property of the HTMLDetailsElement interface reflects the `name` attribute of details elements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/name)\n     */\n    name: string;\n    /**\n     * The **`open`** property of the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)\n     */\n    open: boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDetailsElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDetailsElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDetailsElement: {\n    prototype: HTMLDetailsElement;\n    new(): HTMLDetailsElement;\n};\n\n/**\n * The **`HTMLDialogElement`** interface provides methods to manipulate dialog elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement)\n */\ninterface HTMLDialogElement extends HTMLElement {\n    /**\n     * The **`open`** property of the `open` HTML attribute, indicating whether the dialog is available for interaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/open)\n     */\n    open: boolean;\n    /**\n     * The **`returnValue`** property of the HTMLDialogElement interface is a string representing the return value for a dialog element when it's closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/returnValue)\n     */\n    returnValue: string;\n    /**\n     * The **`close()`** method of the HTMLDialogElement interface closes the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close)\n     */\n    close(returnValue?: string): void;\n    /**\n     * The **`requestClose()`** method of the HTMLDialogElement interface requests to close the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/requestClose)\n     */\n    requestClose(returnValue?: string): void;\n    /**\n     * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)\n     */\n    show(): void;\n    /**\n     * The **`showModal()`** method of the of any other dialogs that might be present.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)\n     */\n    showModal(): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDialogElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDialogElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDialogElement: {\n    prototype: HTMLDialogElement;\n    new(): HTMLDialogElement;\n};\n\n/** @deprecated */\ninterface HTMLDirectoryElement extends HTMLElement {\n    /** @deprecated */\n    compact: boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDirectoryElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDirectoryElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLDirectoryElement: {\n    prototype: HTMLDirectoryElement;\n    new(): HTMLDirectoryElement;\n};\n\n/**\n * The **`HTMLDivElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating div elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDivElement)\n */\ninterface HTMLDivElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDivElement: {\n    prototype: HTMLDivElement;\n    new(): HTMLDivElement;\n};\n\ninterface HTMLDocument extends Document {\n    addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: HTMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: HTMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLDocument: {\n    prototype: HTMLDocument;\n    new(): HTMLDocument;\n};\n\ninterface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventMap {\n}\n\n/**\n * The **`HTMLElement`** interface represents any HTML element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement)\n */\ninterface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {\n    /**\n     * The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKey)\n     */\n    accessKey: string;\n    /**\n     * The **`HTMLElement.accessKeyLabel`** read-only property returns a string containing the element's browser-assigned access key (if any); otherwise it returns an empty string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKeyLabel)\n     */\n    readonly accessKeyLabel: string;\n    /**\n     * The **`autocapitalize`** property of the HTMLElement interface represents the element's capitalization behavior for user input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize)\n     */\n    autocapitalize: string;\n    /**\n     * The **`autocorrect`** property of the HTMLElement interface controls whether or not autocorrection of editable text is enabled for spelling and/or punctuation errors.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocorrect)\n     */\n    autocorrect: boolean;\n    /**\n     * The **`HTMLElement.dir`** property indicates the text writing directionality of the content of the current element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir)\n     */\n    dir: string;\n    /**\n     * The **`draggable`** property of the HTMLElement interface gets and sets a Boolean primitive indicating if the element is draggable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable)\n     */\n    draggable: boolean;\n    /**\n     * The HTMLElement property **`hidden`** reflects the value of the element's `hidden` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden)\n     */\n    hidden: boolean;\n    /**\n     * The HTMLElement property **`inert`** reflects the value of the element's `inert` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inert)\n     */\n    inert: boolean;\n    /**\n     * The **`innerText`** property of the HTMLElement interface represents the rendered text content of a node and its descendants.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/innerText)\n     */\n    innerText: string;\n    /**\n     * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)\n     */\n    lang: string;\n    /**\n     * The **`offsetHeight`** read-only property of the HTMLElement interface returns the height of an element, including vertical padding and borders, as an integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetHeight)\n     */\n    readonly offsetHeight: number;\n    /**\n     * The **`offsetLeft`** read-only property of the HTMLElement interface returns the number of pixels that the _upper left corner_ of the current element is offset to the left within the HTMLElement.offsetParent node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetLeft)\n     */\n    readonly offsetLeft: number;\n    /**\n     * The **`HTMLElement.offsetParent`** read-only property returns a reference to the element which is the closest (nearest in the containment hierarchy) positioned ancestor element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetParent)\n     */\n    readonly offsetParent: Element | null;\n    /**\n     * The **`offsetTop`** read-only property of the HTMLElement interface returns the distance from the outer border of the current element (including its margin) to the top padding edge of the HTMLelement.offsetParent, the _closest positioned_ ancestor element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetTop)\n     */\n    readonly offsetTop: number;\n    /**\n     * The **`offsetWidth`** read-only property of the HTMLElement interface returns the layout width of an element as an integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetWidth)\n     */\n    readonly offsetWidth: number;\n    /**\n     * The **`outerText`** property of the HTMLElement interface returns the same value as HTMLElement.innerText.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/outerText)\n     */\n    outerText: string;\n    /**\n     * The **`popover`** property of the HTMLElement interface gets and sets an element's popover state via JavaScript (`'auto'`, `'hint'`, or `'manual'`), and can be used for feature detection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/popover)\n     */\n    popover: string | null;\n    /**\n     * The **`spellcheck`** property of the HTMLElement interface represents a boolean value that controls the spell-checking hint.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/spellcheck)\n     */\n    spellcheck: boolean;\n    /**\n     * The **`HTMLElement.title`** property represents the title of the element: the text usually displayed in a 'tooltip' popup when the mouse is over the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/title)\n     */\n    title: string;\n    /**\n     * The **`translate`** property of the HTMLElement interface indicates whether an element's attribute values and the values of its Text node children are to be translated when the page is localized, or whether to leave them unchanged.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate)\n     */\n    translate: boolean;\n    /**\n     * The **`writingSuggestions`** property of the HTMLElement interface is a string indicating if browser-provided writing suggestions should be enabled under the scope of the element or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions)\n     */\n    writingSuggestions: string;\n    /**\n     * The **`HTMLElement.attachInternals()`** method returns an ElementInternals object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals)\n     */\n    attachInternals(): ElementInternals;\n    /**\n     * The **`HTMLElement.click()`** method simulates a mouse click on an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/click)\n     */\n    click(): void;\n    /**\n     * The **`hidePopover()`** method of the HTMLElement interface hides a popover element (i.e., one that has a valid `popover` attribute) by removing it from the top layer and styling it with `display: none`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidePopover)\n     */\n    hidePopover(): void;\n    /**\n     * The **`showPopover()`** method of the HTMLElement interface shows a Popover_API element (i.e., one that has a valid `popover` attribute) by adding it to the top layer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover)\n     */\n    showPopover(): void;\n    /**\n     * The **`togglePopover()`** method of the HTMLElement interface toggles a Popover_API element (i.e., one that has a valid `popover` attribute) between the hidden and showing states.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover)\n     */\n    togglePopover(options?: boolean): boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLElement: {\n    prototype: HTMLElement;\n    new(): HTMLElement;\n};\n\n/**\n * The **`HTMLEmbedElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating embed elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement)\n */\ninterface HTMLEmbedElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    /**\n     * The **`height`** property of the HTMLEmbedElement interface returns a string that reflects the `height` attribute of the embed element, indicating the displayed height of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/height)\n     */\n    height: string;\n    /** @deprecated */\n    name: string;\n    /**\n     * The **`src`** property of the HTMLEmbedElement interface returns a string that indicates the URL of the resource being embedded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)\n     */\n    src: string;\n    /**\n     * The **`type`** property of the HTMLEmbedElement interface returns a string that reflects the `type` attribute of the embed element, indicating the MIME type of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/type)\n     */\n    type: string;\n    /**\n     * The **`width`** property of the HTMLEmbedElement interface returns a string that reflects the `width` attribute of the embed element, indicating the displayed width of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)\n     */\n    width: string;\n    /**\n     * The **`getSVGDocument()`** method of the HTMLEmbedElement interface returns the Document object of the embedded SVG.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/getSVGDocument)\n     */\n    getSVGDocument(): Document | null;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLEmbedElement: {\n    prototype: HTMLEmbedElement;\n    new(): HTMLEmbedElement;\n};\n\n/**\n * The **`HTMLFieldSetElement`** interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of fieldset elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement)\n */\ninterface HTMLFieldSetElement extends HTMLElement {\n    /**\n     * The **`disabled`** property of the HTMLFieldSetElement interface is a boolean value that reflects the fieldset element's `disabled` attribute, which indicates whether the control is disabled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`elements`** read-only property of the HTMLFieldSetElement interface returns an HTMLCollection object containing all form control elements (button, fieldset, input, object, output, select, and textarea) that are descendants of this field set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/elements)\n     */\n    readonly elements: HTMLCollection;\n    /**\n     * The **`form`** read-only property of the HTMLFieldSetElement interface returns an HTMLFormElement object that owns this fieldset, or `null` if this fieldset is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`name`** property of the HTMLFieldSetElement interface indicates the name of the fieldset element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/name)\n     */\n    name: string;\n    /**\n     * The **`type`** read-only property of the HTMLFieldSetElement interface returns the string `'fieldset'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/type)\n     */\n    readonly type: string;\n    /**\n     * The **`validationMessage`** read-only property of the HTMLFieldSetElement interface returns a string representing a localized message that describes the validation constraints that the fieldset control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLFieldSetElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`willValidate`** read-only property of the HTMLFieldSetElement interface returns `false`, because fieldset elements are not candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the HTMLFieldSetElement interface checks if the element is valid, but always returns true because fieldset elements are never candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLFieldSetElement interface performs the same validity checking steps as the HTMLFieldSetElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`setCustomValidity()`** method of the HTMLFieldSetElement interface sets the custom validity message for the fieldset element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFieldSetElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFieldSetElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLFieldSetElement: {\n    prototype: HTMLFieldSetElement;\n    new(): HTMLFieldSetElement;\n};\n\n/**\n * Implements the document object model (DOM) representation of the font element.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFontElement)\n */\ninterface HTMLFontElement extends HTMLElement {\n    /**\n     * The obsolete **`HTMLFontElement.color`** property is a string that reflects the `color` HTML attribute, containing either a named color or a color specified in the hexadecimal #RRGGBB format.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFontElement/color)\n     */\n    color: string;\n    /**\n     * The obsolete **`HTMLFontElement.face`** property is a string that reflects the `face` HTML attribute, containing a comma-separated list of one or more font names.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFontElement/face)\n     */\n    face: string;\n    /**\n     * The obsolete **`HTMLFontElement.size`** property is a string that reflects the `size` HTML attribute.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFontElement/size)\n     */\n    size: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFontElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFontElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLFontElement: {\n    prototype: HTMLFontElement;\n    new(): HTMLFontElement;\n};\n\n/**\n * The **`HTMLFormControlsCollection`** interface represents a _collection_ of HTML _form control elements_, returned by the HTMLFormElement interface's HTMLFormElement.elements property.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormControlsCollection)\n */\ninterface HTMLFormControlsCollection extends HTMLCollectionBase {\n    /**\n     * The **`HTMLFormControlsCollection.namedItem()`** method returns the RadioNodeList or the Element in the collection whose `name` or `id` match the specified name, or `null` if no node matches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormControlsCollection/namedItem)\n     */\n    namedItem(name: string): RadioNodeList | Element | null;\n}\n\ndeclare var HTMLFormControlsCollection: {\n    prototype: HTMLFormControlsCollection;\n    new(): HTMLFormControlsCollection;\n};\n\n/**\n * The **`HTMLFormElement`** interface represents a form element in the DOM.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement)\n */\ninterface HTMLFormElement extends HTMLElement {\n    /**\n     * The **`HTMLFormElement.acceptCharset`** property represents the character encoding for the given form element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/acceptCharset)\n     */\n    acceptCharset: string;\n    /**\n     * The **`HTMLFormElement.action`** property represents the action of the form element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)\n     */\n    action: string;\n    /**\n     * The **`autocomplete`** property of the HTMLFormElement interface indicates whether the value of the form's controls can be automatically completed by the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)\n     */\n    autocomplete: AutoFillBase;\n    /**\n     * The HTMLFormElement property **`elements`** returns an the form element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)\n     */\n    readonly elements: HTMLFormControlsCollection;\n    /**\n     * The **`HTMLFormElement.encoding`** property is an alternative name for the HTMLFormElement.enctype element on the DOM HTMLFormElement object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/encoding)\n     */\n    encoding: string;\n    /**\n     * The **`HTMLFormElement.enctype`** property is the MIME_type of content that is used to submit the form to the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/enctype)\n     */\n    enctype: string;\n    /**\n     * The **`HTMLFormElement.length`** read-only property returns the number of controls in the form element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/length)\n     */\n    readonly length: number;\n    /**\n     * The **`HTMLFormElement.method`** property represents the Unless explicitly specified, the default method is 'get'.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/method)\n     */\n    method: string;\n    /**\n     * The **`HTMLFormElement.name`** property represents the name of the current form element as a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/name)\n     */\n    name: string;\n    /**\n     * The **`noValidate`** property of the HTMLFormElement interface is a boolean value indicating if the form will bypass constraint validation when submitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/noValidate)\n     */\n    noValidate: boolean;\n    /**\n     * The **`rel`** property of the HTMLFormElement interface reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/rel)\n     */\n    rel: string;\n    /**\n     * The **`relList`** read-only property of the HTMLFormElement interface reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/relList)\n     */\n    get relList(): DOMTokenList;\n    set relList(value: string);\n    /**\n     * The **`target`** property of the HTMLFormElement interface represents the target of the form's action (i.e., the frame in which to render its output).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/target)\n     */\n    target: string;\n    /**\n     * The **`checkValidity()`** method of the HTMLFormElement interface returns a boolean value which indicates if all associated controls meet any constraint validation rules applied to them.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLFormElement interface performs the same validity checking steps as the HTMLFormElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The HTMLFormElement method **`requestSubmit()`** requests that the form be submitted using a specific submit button.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/requestSubmit)\n     */\n    requestSubmit(submitter?: HTMLElement | null): void;\n    /**\n     * The **`HTMLFormElement.reset()`** method restores a form element's default values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reset)\n     */\n    reset(): void;\n    /**\n     * The **`HTMLFormElement.submit()`** method submits a given This method is similar, but not identical to, activating a form's submit - No HTMLFormElement/submit_event event is raised.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit)\n     */\n    submit(): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n    [index: number]: Element;\n    [name: string]: any;\n}\n\ndeclare var HTMLFormElement: {\n    prototype: HTMLFormElement;\n    new(): HTMLFormElement;\n};\n\n/** @deprecated */\ninterface HTMLFrameElement extends HTMLElement {\n    /** @deprecated */\n    readonly contentDocument: Document | null;\n    /** @deprecated */\n    readonly contentWindow: WindowProxy | null;\n    /** @deprecated */\n    frameBorder: string;\n    /** @deprecated */\n    longDesc: string;\n    /** @deprecated */\n    marginHeight: string;\n    /** @deprecated */\n    marginWidth: string;\n    /** @deprecated */\n    name: string;\n    /** @deprecated */\n    noResize: boolean;\n    /** @deprecated */\n    scrolling: string;\n    /** @deprecated */\n    src: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLFrameElement: {\n    prototype: HTMLFrameElement;\n    new(): HTMLFrameElement;\n};\n\ninterface HTMLFrameSetElementEventMap extends HTMLElementEventMap, WindowEventHandlersEventMap {\n}\n\n/**\n * The **`HTMLFrameSetElement`** interface provides special properties (beyond those of the regular HTMLElement interface they also inherit) for manipulating frameset elements.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameSetElement)\n */\ninterface HTMLFrameSetElement extends HTMLElement, WindowEventHandlers {\n    /** @deprecated */\n    cols: string;\n    /** @deprecated */\n    rows: string;\n    addEventListener<K extends keyof HTMLFrameSetElementEventMap>(type: K, listener: (this: HTMLFrameSetElement, ev: HTMLFrameSetElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLFrameSetElementEventMap>(type: K, listener: (this: HTMLFrameSetElement, ev: HTMLFrameSetElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLFrameSetElement: {\n    prototype: HTMLFrameSetElement;\n    new(): HTMLFrameSetElement;\n};\n\n/**\n * The **`HTMLHRElement`** interface provides special properties (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating hr elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHRElement)\n */\ninterface HTMLHRElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    /** @deprecated */\n    color: string;\n    /** @deprecated */\n    noShade: boolean;\n    /** @deprecated */\n    size: string;\n    /** @deprecated */\n    width: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLHRElement: {\n    prototype: HTMLHRElement;\n    new(): HTMLHRElement;\n};\n\n/**\n * The **`HTMLHeadElement`** interface contains the descriptive information, or metadata, for a document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHeadElement)\n */\ninterface HTMLHeadElement extends HTMLElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLHeadElement: {\n    prototype: HTMLHeadElement;\n    new(): HTMLHeadElement;\n};\n\n/**\n * The **`HTMLHeadingElement`** interface represents the different heading elements, `<h1>` through `<h6>`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHeadingElement)\n */\ninterface HTMLHeadingElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLHeadingElement: {\n    prototype: HTMLHeadingElement;\n    new(): HTMLHeadingElement;\n};\n\n/**\n * The **`HTMLHtmlElement`** interface serves as the root node for a given HTML document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHtmlElement)\n */\ninterface HTMLHtmlElement extends HTMLElement {\n    /**\n     * Returns version information about the document type definition (DTD) of a document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHtmlElement/version)\n     */\n    version: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHtmlElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHtmlElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLHtmlElement: {\n    prototype: HTMLHtmlElement;\n    new(): HTMLHtmlElement;\n};\n\ninterface HTMLHyperlinkElementUtils {\n    /**\n     * Returns the hyperlink's URL's fragment (includes leading \"#\" if non-empty).\n     *\n     * Can be set, to change the URL's fragment (ignores leading \"#\").\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hash)\n     */\n    hash: string;\n    /**\n     * Returns the hyperlink's URL's host and port (if different from the default port for the scheme).\n     *\n     * Can be set, to change the URL's host and port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/host)\n     */\n    host: string;\n    /**\n     * Returns the hyperlink's URL's host.\n     *\n     * Can be set, to change the URL's host.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/hostname)\n     */\n    hostname: string;\n    /**\n     * Returns the hyperlink's URL.\n     *\n     * Can be set, to change the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/href)\n     */\n    href: string;\n    toString(): string;\n    /**\n     * Returns the hyperlink's URL's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/origin)\n     */\n    readonly origin: string;\n    /**\n     * Returns the hyperlink's URL's password.\n     *\n     * Can be set, to change the URL's password.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/password)\n     */\n    password: string;\n    /**\n     * Returns the hyperlink's URL's path.\n     *\n     * Can be set, to change the URL's path.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/pathname)\n     */\n    pathname: string;\n    /**\n     * Returns the hyperlink's URL's port.\n     *\n     * Can be set, to change the URL's port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/port)\n     */\n    port: string;\n    /**\n     * Returns the hyperlink's URL's scheme.\n     *\n     * Can be set, to change the URL's scheme.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/protocol)\n     */\n    protocol: string;\n    /**\n     * Returns the hyperlink's URL's query (includes leading \"?\" if non-empty).\n     *\n     * Can be set, to change the URL's query (ignores leading \"?\").\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/search)\n     */\n    search: string;\n    /**\n     * Returns the hyperlink's URL's username.\n     *\n     * Can be set, to change the URL's username.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/username)\n     */\n    username: string;\n}\n\n/**\n * The **`HTMLIFrameElement`** interface provides special properties and methods (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of inline frame elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement)\n */\ninterface HTMLIFrameElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    /**\n     * The **`allow`** property of the HTMLIFrameElement interface indicates the Permissions Policy specified for this `<iframe>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allow)\n     */\n    allow: string;\n    /**\n     * The **`allowFullscreen`** property of the HTMLIFrameElement interface is a boolean value that reflects the `allowfullscreen` attribute of the iframe element, indicating whether to allow the iframe's contents to use Element.requestFullscreen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen)\n     */\n    allowFullscreen: boolean;\n    /**\n     * If the iframe and the iframe's parent document are Same Origin, returns a `Document` (that is, the active document in the inline frame's nested browsing context), else returns `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/contentDocument)\n     */\n    readonly contentDocument: Document | null;\n    /**\n     * The **`contentWindow`** property returns the Window object of an HTMLIFrameElement.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/contentWindow)\n     */\n    readonly contentWindow: WindowProxy | null;\n    /** @deprecated */\n    frameBorder: string;\n    /**\n     * The **`height`** property of the HTMLIFrameElement interface returns a string that reflects the `height` attribute of the iframe element, indicating the height of the frame in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)\n     */\n    height: string;\n    /**\n     * The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the user agent indicating whether the iframe should be loaded immediately on page load, or only when it is needed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)\n     */\n    loading: \"eager\" | \"lazy\";\n    /** @deprecated */\n    longDesc: string;\n    /** @deprecated */\n    marginHeight: string;\n    /** @deprecated */\n    marginWidth: string;\n    /**\n     * The **`name`** property of the HTMLIFrameElement interface is a string value that reflects the `name` attribute of the iframe element, indicating the specific name of the `<iframe>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/name)\n     */\n    name: string;\n    /**\n     * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy)\n     */\n    referrerPolicy: ReferrerPolicy;\n    /**\n     * The **`sandbox`** read-only property of the HTMLIFrameElement interface returns a DOMTokenList indicating extra restrictions on the behavior of the nested content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/sandbox)\n     */\n    get sandbox(): DOMTokenList;\n    set sandbox(value: string);\n    /** @deprecated */\n    scrolling: string;\n    /**\n     * The **`HTMLIFrameElement.src`** A string that reflects the `src` HTML attribute, containing the address of the content to be embedded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/src)\n     */\n    src: string;\n    /**\n     * The **`srcdoc`** property of the HTMLIFrameElement specifies the content of the page.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/srcdoc)\n     */\n    srcdoc: string;\n    /**\n     * The **`width`** property of the HTMLIFrameElement interface returns a string that reflects the `width` attribute of the iframe element, indicating the width of the frame in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/width)\n     */\n    width: string;\n    /**\n     * The **`getSVGDocument()`** method of the HTMLIFrameElement interface returns the Document object of the embedded SVG.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/getSVGDocument)\n     */\n    getSVGDocument(): Document | null;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLIFrameElement: {\n    prototype: HTMLIFrameElement;\n    new(): HTMLIFrameElement;\n};\n\n/**\n * The **`HTMLImageElement`** interface represents an HTML img element, providing the properties and methods used to manipulate image elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement)\n */\ninterface HTMLImageElement extends HTMLElement {\n    /**\n     * The _obsolete_ **`align`** property of the HTMLImageElement interface is a string which indicates how to position the image relative to its container.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/align)\n     */\n    align: string;\n    /**\n     * The HTMLImageElement property **`alt`** provides fallback (alternate) text to display when the image specified by the img element is not loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/alt)\n     */\n    alt: string;\n    /**\n     * The obsolete HTMLImageElement property **`border`** specifies the number of pixels thick the border surrounding the image should be.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/border)\n     */\n    border: string;\n    /**\n     * The read-only HTMLImageElement interface's **`complete`** attribute is a Boolean value which indicates whether or not the image has completely loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/complete)\n     */\n    readonly complete: boolean;\n    /**\n     * The HTMLImageElement interface's **`crossOrigin`** attribute is a string which specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)\n     */\n    crossOrigin: string | null;\n    /**\n     * The read-only HTMLImageElement property **`currentSrc`** indicates the URL of the image which is currently presented in the img element it represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/currentSrc)\n     */\n    readonly currentSrc: string;\n    /**\n     * The **`decoding`** property of the HTMLImageElement interface provides a hint to the browser as to how it should decode the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decoding)\n     */\n    decoding: \"async\" | \"sync\" | \"auto\";\n    /**\n     * The **`fetchPriority`** property of the HTMLImageElement interface represents a hint to the browser indicating how it should prioritize fetching a particular image relative to other images.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/fetchPriority)\n     */\n    fetchPriority: \"high\" | \"low\" | \"auto\";\n    /**\n     * The **`height`** property of the drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)\n     */\n    height: number;\n    /**\n     * The _obsolete_ **`hspace`** property of the space to leave empty on the left and right sides of the img element when laying out the page.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)\n     */\n    hspace: number;\n    /**\n     * The HTMLImageElement property **`isMap`** is a Boolean value which indicates that the image is to be used by a server-side image map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/isMap)\n     */\n    isMap: boolean;\n    /**\n     * The HTMLImageElement property **`loading`** is a string whose value provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)\n     */\n    loading: \"eager\" | \"lazy\";\n    /**\n     * The _deprecated_ property **`longDesc`** on the HTMLImageElement interface specifies the URL of a text or HTML file which contains a long-form description of the image.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/longDesc)\n     */\n    longDesc: string;\n    /** @deprecated */\n    lowsrc: string;\n    /**\n     * The HTMLImageElement interface's _deprecated_ **`name`** property specifies a name for the element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/name)\n     */\n    name: string;\n    /**\n     * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in This is the height the image is if drawn with nothing constraining its height; if you don't specify a height for the image, or place the image inside a container that either limits or expressly specifies the image height, it will be rendered this tall.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)\n     */\n    readonly naturalHeight: number;\n    /**\n     * The HTMLImageElement interface's read-only **`naturalWidth`** property returns the intrinsic (natural), density-corrected width of the image in CSS pixel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalWidth)\n     */\n    readonly naturalWidth: number;\n    /**\n     * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)\n     */\n    referrerPolicy: string;\n    /**\n     * The HTMLImageElement property **`sizes`** allows you to specify the layout width of the image for each of a list of media conditions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/sizes)\n     */\n    sizes: string;\n    /**\n     * The HTMLImageElement property **`src`**, which reflects the HTML `src` attribute, specifies the image to display in the img element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/src)\n     */\n    src: string;\n    /**\n     * The HTMLImageElement property **`srcset`** is a string which identifies one or more **image candidate strings**, separated using commas (`,`) each specifying image resources to use under given circumstances.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/srcset)\n     */\n    srcset: string;\n    /**\n     * The **`useMap`** property on the providing the name of the client-side image map to apply to the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)\n     */\n    useMap: string;\n    /**\n     * The _obsolete_ **`vspace`** property of the to leave empty on the top and bottom of the img element when laying out the page.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)\n     */\n    vspace: number;\n    /**\n     * The **`width`** property of the drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)\n     */\n    width: number;\n    /**\n     * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)\n     */\n    readonly x: number;\n    /**\n     * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)\n     */\n    readonly y: number;\n    /**\n     * The **`decode()`** method of the HTMLImageElement interface returns a it to the DOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)\n     */\n    decode(): Promise<void>;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLImageElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLImageElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLImageElement: {\n    prototype: HTMLImageElement;\n    new(): HTMLImageElement;\n};\n\n/**\n * The **`HTMLInputElement`** interface provides special properties and methods for manipulating the options, layout, and presentation of input elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)\n */\ninterface HTMLInputElement extends HTMLElement, PopoverInvokerElement {\n    /**\n     * The **`accept`** property of the HTMLInputElement interface reflects the input element's `accept` attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an `<input>` of type `file`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/accept)\n     */\n    accept: string;\n    /** @deprecated */\n    align: string;\n    /**\n     * The **`alt`** property of the HTMLInputElement interface defines the textual label for the button for users and user agents who cannot use the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/alt)\n     */\n    alt: string;\n    /**\n     * The **`autocomplete`** property of the HTMLInputElement interface indicates whether the value of the control can be automatically completed by the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/autocomplete)\n     */\n    autocomplete: AutoFill;\n    /**\n     * The **`capture`** property of the HTMLInputElement interface reflects the input element's `capture` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture)\n     */\n    capture: string;\n    /**\n     * The **`checked`** property of the HTMLInputElement interface specifies the current checkedness of the element; that is, whether the form control is checked or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)\n     */\n    checked: boolean;\n    /**\n     * The **`defaultChecked`** property of the HTMLInputElement interface specifies the default checkedness state of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)\n     */\n    defaultChecked: boolean;\n    /**\n     * The **`defaultValue`** property of the HTMLInputElement interface indicates the original (or default) value of the input element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)\n     */\n    defaultValue: string;\n    /**\n     * The **`dirName`** property of the HTMLInputElement interface is the directionality of the element and enables the submission of that value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/dirName)\n     */\n    dirName: string;\n    /**\n     * The **`HTMLInputElement.disabled`** property is a boolean value that reflects the `disabled` HTML attribute, which indicates whether the control is disabled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`HTMLInputElement.files`** property allows you to access the FileList selected with the `<input type='file'>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/files)\n     */\n    files: FileList | null;\n    /**\n     * The **`form`** read-only property of the HTMLInputElement interface returns an HTMLFormElement object that owns this input, or `null` if this input is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`formAction`** property of the HTMLInputElement interface is the URL of the program that is executed on the server when the form that owns this control is submitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)\n     */\n    formAction: string;\n    /**\n     * The **`formEnctype`** property of the HTMLInputElement interface is the MIME_type of the content sent to the server when the `<input>` with the `formEnctype` is the method of form submission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)\n     */\n    formEnctype: string;\n    /**\n     * The **`formMethod`** property of the HTMLInputElement interface is the HTTP method used to submit the form if the input element is the control that submits the form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)\n     */\n    formMethod: string;\n    /**\n     * The **`formNoValidate`** property of the HTMLInputElement interface is a boolean value indicating if the form will bypass constraint validation when submitted via the input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formNoValidate)\n     */\n    formNoValidate: boolean;\n    /**\n     * The **`formTarget`** property of the HTMLInputElement interface is the tab, window, or iframe where the response of the submitted form is to be displayed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formTarget)\n     */\n    formTarget: string;\n    /**\n     * The **`height`** property of the HTMLInputElement interface specifies the height of a control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)\n     */\n    height: number;\n    /**\n     * The **`indeterminate`** property of the HTMLInputElement interface returns a boolean value that indicates whether the checkbox is in the _indeterminate_ state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/indeterminate)\n     */\n    indeterminate: boolean;\n    /**\n     * The **`HTMLInputElement.labels`** read-only property returns a type `hidden`, the property returns `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement> | null;\n    /**\n     * The **`list`** read-only property of the HTMLInputElement interface returns the HTMLDataListElement pointed to by the `list` attribute of the element, or `null` if the `list` attribute is not defined or the `list` attribute's value is not associated with any `<datalist>` in the same tree.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)\n     */\n    readonly list: HTMLDataListElement | null;\n    /**\n     * The **`max`** property of the HTMLInputElement interface reflects the input element's `max` attribute, which generally defines the maximum valid value for a numeric or date-time input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)\n     */\n    max: string;\n    /**\n     * The **`maxLength`** property of the HTMLInputElement interface indicates the maximum number of characters (in UTF-16 code units) allowed to be entered for the value of the input element, and the maximum number of characters allowed for the value to be valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)\n     */\n    maxLength: number;\n    /**\n     * The **`min`** property of the HTMLInputElement interface reflects the input element's `min` attribute, which generally defines the minimum valid value for a numeric or date-time input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)\n     */\n    min: string;\n    /**\n     * The **`minLength`** property of the HTMLInputElement interface indicates the minimum number of characters (in UTF-16 code units) required for the value of the input element to be valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength)\n     */\n    minLength: number;\n    /**\n     * The **`HTMLInputElement.multiple`** property indicates if an input can have more than one value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/multiple)\n     */\n    multiple: boolean;\n    /**\n     * The **`name`** property of the HTMLInputElement interface indicates the name of the input element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/name)\n     */\n    name: string;\n    /**\n     * The **`pattern`** property of the HTMLInputElement interface represents a regular expression a non-null input value should match.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/pattern)\n     */\n    pattern: string;\n    /**\n     * The **`placeholder`** property of the HTMLInputElement interface represents a hint to the user of what can be entered in the control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/placeholder)\n     */\n    placeholder: string;\n    /**\n     * The **`readOnly`** property of the HTMLInputElement interface indicates that the user cannot modify the value of the input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/readOnly)\n     */\n    readOnly: boolean;\n    /**\n     * The **`required`** property of the HTMLInputElement interface specifies that the user must fill in a value before submitting a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/required)\n     */\n    required: boolean;\n    /**\n     * The **`selectionDirection`** property of the HTMLInputElement interface is a string that indicates the direction in which the user is selecting the text.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection)\n     */\n    selectionDirection: \"forward\" | \"backward\" | \"none\" | null;\n    /**\n     * The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionEnd)\n     */\n    selectionEnd: number | null;\n    /**\n     * The **`selectionStart`** property of the HTMLInputElement interface is a number that represents the beginning index of the selected text.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionStart)\n     */\n    selectionStart: number | null;\n    /**\n     * The **`size`** property of the HTMLInputElement interface defines the number of visible characters displayed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/size)\n     */\n    size: number;\n    /**\n     * The **`src`** property of the HTMLInputElement interface specifies the source of an image to display as the graphical submit button.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/src)\n     */\n    src: string;\n    /**\n     * The **`step`** property of the HTMLInputElement interface indicates the step by which numeric or date-time input elements can change.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/step)\n     */\n    step: string;\n    /**\n     * The **`type`** property of the HTMLInputElement interface indicates the kind of data allowed in the input element, for example a number, a date, or an email.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/type)\n     */\n    type: string;\n    /** @deprecated */\n    useMap: string;\n    /**\n     * The **`validationMessage`** read-only property of the HTMLInputElement interface returns a string representing a localized message that describes the validation constraints that the input control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLInputElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`value`** property of the HTMLInputElement interface represents the current value of the input element as a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)\n     */\n    value: string;\n    /**\n     * The **`valueAsDate`** property of the HTMLInputElement interface represents the current value of the input element as a Date, or `null` if conversion is not possible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/valueAsDate)\n     */\n    valueAsDate: Date | null;\n    /**\n     * The **`valueAsNumber`** property of the HTMLInputElement interface represents the current value of the input element as a number or `NaN` if converting to a numeric value is not possible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/valueAsNumber)\n     */\n    valueAsNumber: number;\n    /**\n     * The read-only **`webkitEntries`** property of the HTMLInputElement interface contains an array of file system entries (as objects based on FileSystemEntry) representing files and/or directories selected by the user using an input element of type `file`, but only if that selection was made using drag-and-drop: selecting a file in the dialog will leave the property empty.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitEntries)\n     */\n    readonly webkitEntries: ReadonlyArray<FileSystemEntry>;\n    /**\n     * The **`HTMLInputElement.webkitdirectory`** is a property that reflects the `webkitdirectory` HTML attribute and indicates that the input element should let the user select directories instead of files.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)\n     */\n    webkitdirectory: boolean;\n    /**\n     * The **`width`** property of the HTMLInputElement interface specifies the width of a control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/width)\n     */\n    width: number;\n    /**\n     * The **`willValidate`** read-only property of the HTMLInputElement interface indicates whether the input element is a candidate for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the HTMLInputElement interface returns a boolean value which indicates if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLInputElement interface performs the same validity checking steps as the HTMLInputElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`HTMLInputElement.select()`** method selects all the text in a textarea element or in an input element that includes a text field.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/select)\n     */\n    select(): void;\n    /**\n     * The **`HTMLInputElement.setCustomValidity()`** method sets a custom validity message for the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    /**\n     * The **`HTMLInputElement.setRangeText()`** method replaces a range of text in an input or textarea element with a new string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/setRangeText)\n     */\n    setRangeText(replacement: string): void;\n    setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;\n    /**\n     * The **`HTMLInputElement.setSelectionRange()`** method sets the start and end positions of the current text selection in an input or textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/setSelectionRange)\n     */\n    setSelectionRange(start: number | null, end: number | null, direction?: \"forward\" | \"backward\" | \"none\"): void;\n    /**\n     * The **`HTMLInputElement.showPicker()`** method displays the browser picker for an `input` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/showPicker)\n     */\n    showPicker(): void;\n    /**\n     * The **`HTMLInputElement.stepDown()`** method decrements the value of a numeric type of input element by the value of the `step` attribute or up to `n` multiples of the step attribute if a number is passed as the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/stepDown)\n     */\n    stepDown(n?: number): void;\n    /**\n     * The **`HTMLInputElement.stepUp()`** method increments the value of a numeric type of input element by the value of the `step` attribute, or the default `step` value if the step attribute is not explicitly set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/stepUp)\n     */\n    stepUp(n?: number): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLInputElement: {\n    prototype: HTMLInputElement;\n    new(): HTMLInputElement;\n};\n\n/**\n * The **`HTMLLIElement`** interface exposes specific properties and methods (beyond those defined by regular HTMLElement interface it also has available to it by inheritance) for manipulating list elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLIElement)\n */\ninterface HTMLLIElement extends HTMLElement {\n    /** @deprecated */\n    type: string;\n    /**\n     * The **`value`** property of the HTMLLIElement interface indicates the ordinal position of the _list element_ inside a given ol.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLIElement/value)\n     */\n    value: number;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLIElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLIElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLLIElement: {\n    prototype: HTMLLIElement;\n    new(): HTMLLIElement;\n};\n\n/**\n * The **`HTMLLabelElement`** interface gives access to properties specific to label elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement)\n */\ninterface HTMLLabelElement extends HTMLElement {\n    /**\n     * The read-only **`HTMLLabelElement.control`** property returns a reference to the control (in the form of an object of type HTMLElement or one of its derivatives) with which the label element is associated, or `null` if the label isn't associated with a control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/control)\n     */\n    readonly control: HTMLElement | null;\n    /**\n     * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`HTMLLabelElement.htmlFor`** property reflects the value of the `for` content property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/htmlFor)\n     */\n    htmlFor: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLLabelElement: {\n    prototype: HTMLLabelElement;\n    new(): HTMLLabelElement;\n};\n\n/**\n * The **`HTMLLegendElement`** is an interface allowing to access properties of the legend elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLegendElement)\n */\ninterface HTMLLegendElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    /**\n     * The **`form`** read-only property of the HTMLLegendElement interface returns an HTMLFormElement object that owns the HTMLFieldSetElement associated with this legend, or `null` if this legend is not associated with a fieldset owned by a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLegendElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLegendElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLegendElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLLegendElement: {\n    prototype: HTMLLegendElement;\n    new(): HTMLLegendElement;\n};\n\n/**\n * The **`HTMLLinkElement`** interface represents reference information for external resources and the relationship of those resources to a document and vice versa (corresponds to `<link>` element; not to be confused with `<a>`, which is represented by `HTMLAnchorElement`).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement)\n */\ninterface HTMLLinkElement extends HTMLElement, LinkStyle {\n    /**\n     * The **`as`** property of the HTMLLinkElement interface returns a string representing the type of content to be preloaded by a link element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/as)\n     */\n    as: string;\n    /**\n     * The **`blocking`** property of the HTMLLinkElement interface is a string indicating that certain operations should be blocked on the fetching of an external resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/blocking)\n     */\n    get blocking(): DOMTokenList;\n    set blocking(value: string);\n    /** @deprecated */\n    charset: string;\n    /**\n     * The **`crossOrigin`** property of the HTMLLinkElement interface specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/crossOrigin)\n     */\n    crossOrigin: string | null;\n    /**\n     * The **`disabled`** property of the HTMLLinkElement interface is a boolean value that represents whether the link is disabled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`fetchPriority`** property of the HTMLLinkElement interface represents a hint to the browser indicating how it should prioritize fetching a particular resource relative to other resources of the same type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority)\n     */\n    fetchPriority: \"high\" | \"low\" | \"auto\";\n    /**\n     * The **`href`** property of the HTMLLinkElement interface contains a string that is the URL associated with the link.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)\n     */\n    href: string;\n    /**\n     * The **`hreflang`** property of the HTMLLinkElement interface is used to indicate the language and the geographical targeting of a page.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)\n     */\n    hreflang: string;\n    /**\n     * The **`imageSizes`** property of the HTMLLinkElement interface indicates the size and conditions for the preloaded images defined by the HTMLLinkElement.imageSrcset property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes)\n     */\n    imageSizes: string;\n    /**\n     * The **`imageSrcset`** property of the HTMLLinkElement interface is a string which identifies one or more comma-separated **image candidate strings**.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset)\n     */\n    imageSrcset: string;\n    /**\n     * The **`integrity`** property of the HTMLLinkElement interface is a string containing inline metadata that a browser can use to verify that a fetched resource has been delivered without unexpected manipulation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity)\n     */\n    integrity: string;\n    /**\n     * The **`media`** property of the HTMLLinkElement interface is a string representing a list of one or more media formats to which the resource applies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/media)\n     */\n    media: string;\n    /**\n     * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy)\n     */\n    referrerPolicy: string;\n    /**\n     * The **`rel`** property of the HTMLLinkElement interface reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/rel)\n     */\n    rel: string;\n    /**\n     * The **`relList`** read-only property of the HTMLLinkElement interface reflects the `rel` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/relList)\n     */\n    get relList(): DOMTokenList;\n    set relList(value: string);\n    /** @deprecated */\n    rev: string;\n    /**\n     * The **`sizes`** read-only property of the HTMLLinkElement interfaces defines the sizes of the icons for visual media contained in the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes)\n     */\n    get sizes(): DOMTokenList;\n    set sizes(value: string);\n    /** @deprecated */\n    target: string;\n    /**\n     * The **`type`** property of the HTMLLinkElement interface is a string that reflects the MIME type of the linked resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLLinkElement: {\n    prototype: HTMLLinkElement;\n    new(): HTMLLinkElement;\n};\n\n/**\n * The **`HTMLMapElement`** interface provides special properties and methods (beyond those of the regular object HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of map elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement)\n */\ninterface HTMLMapElement extends HTMLElement {\n    /**\n     * The **`areas`** read-only property of the HTMLMapElement interface returns a collection of area elements associated with the map element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement/areas)\n     */\n    readonly areas: HTMLCollection;\n    /**\n     * The **`name`** property of the HTMLMapElement represents the unique name `<map>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement/name)\n     */\n    name: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLMapElement: {\n    prototype: HTMLMapElement;\n    new(): HTMLMapElement;\n};\n\n/**\n * The **`HTMLMarqueeElement`** interface provides methods to manipulate marquee elements.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMarqueeElement)\n */\ninterface HTMLMarqueeElement extends HTMLElement {\n    /** @deprecated */\n    behavior: string;\n    /** @deprecated */\n    bgColor: string;\n    /** @deprecated */\n    direction: string;\n    /** @deprecated */\n    height: string;\n    /** @deprecated */\n    hspace: number;\n    /** @deprecated */\n    loop: number;\n    /** @deprecated */\n    scrollAmount: number;\n    /** @deprecated */\n    scrollDelay: number;\n    /** @deprecated */\n    trueSpeed: boolean;\n    /** @deprecated */\n    vspace: number;\n    /** @deprecated */\n    width: string;\n    /** @deprecated */\n    start(): void;\n    /** @deprecated */\n    stop(): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMarqueeElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMarqueeElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLMarqueeElement: {\n    prototype: HTMLMarqueeElement;\n    new(): HTMLMarqueeElement;\n};\n\ninterface HTMLMediaElementEventMap extends HTMLElementEventMap {\n    \"encrypted\": MediaEncryptedEvent;\n    \"waitingforkey\": Event;\n}\n\n/**\n * The **`HTMLMediaElement`** interface adds to HTMLElement the properties and methods needed to support basic media-related capabilities that are common to audio and video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement)\n */\ninterface HTMLMediaElement extends HTMLElement {\n    /**\n     * The **`HTMLMediaElement.autoplay`** property reflects the `autoplay` HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/autoplay)\n     */\n    autoplay: boolean;\n    /**\n     * The **`buffered`** read-only property of HTMLMediaElement objects returns a new static normalized `TimeRanges` object that represents the ranges of the media resource, if any, that the user agent has buffered at the moment the `buffered` property is accessed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/buffered)\n     */\n    readonly buffered: TimeRanges;\n    /**\n     * The **`HTMLMediaElement.controls`** property reflects the `controls` HTML attribute, which controls whether user interface controls for playing the media item will be displayed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/controls)\n     */\n    controls: boolean;\n    /**\n     * The **`HTMLMediaElement.crossOrigin`** property is the CORS setting for this media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/crossOrigin)\n     */\n    crossOrigin: string | null;\n    /**\n     * The **`HTMLMediaElement.currentSrc`** property contains the absolute URL of the chosen media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/currentSrc)\n     */\n    readonly currentSrc: string;\n    /**\n     * The HTMLMediaElement interface's **`currentTime`** property specifies the current playback time in seconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/currentTime)\n     */\n    currentTime: number;\n    /**\n     * The **`HTMLMediaElement.defaultMuted`** property reflects the `muted` HTML attribute, which indicates whether the media element's audio output should be muted by default.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/defaultMuted)\n     */\n    defaultMuted: boolean;\n    /**\n     * The **`HTMLMediaElement.defaultPlaybackRate`** property indicates the default playback rate for the media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/defaultPlaybackRate)\n     */\n    defaultPlaybackRate: number;\n    /**\n     * The **`disableRemotePlayback`** property of the HTMLMediaElement interface determines whether the media element is allowed to have a remote playback UI.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/disableRemotePlayback)\n     */\n    disableRemotePlayback: boolean;\n    /**\n     * The _read-only_ HTMLMediaElement property **`duration`** indicates the length of the element's media in seconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/duration)\n     */\n    readonly duration: number;\n    /**\n     * The **`HTMLMediaElement.ended`** property indicates whether the media element has ended playback.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ended)\n     */\n    readonly ended: boolean;\n    /**\n     * The **`HTMLMediaElement.error`** property is the there has not been an error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/error)\n     */\n    readonly error: MediaError | null;\n    /**\n     * The **`HTMLMediaElement.loop`** property reflects the `loop` HTML attribute, which controls whether the media element should start over when it reaches the end.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loop)\n     */\n    loop: boolean;\n    /**\n     * The read-only **`HTMLMediaElement.mediaKeys`** property returns a MediaKeys object, that is a set of keys that the element can use for decryption of media data during playback.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/mediaKeys)\n     */\n    readonly mediaKeys: MediaKeys | null;\n    /**\n     * The **`HTMLMediaElement.muted`** property indicates whether the media element is muted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/muted)\n     */\n    muted: boolean;\n    /**\n     * The **`HTMLMediaElement.networkState`** property indicates the current state of the fetching of media over the network.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/networkState)\n     */\n    readonly networkState: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/encrypted_event) */\n    onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waitingforkey_event) */\n    onwaitingforkey: ((this: HTMLMediaElement, ev: Event) => any) | null;\n    /**\n     * The read-only **`HTMLMediaElement.paused`** property tells whether the media element is paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/paused)\n     */\n    readonly paused: boolean;\n    /**\n     * The **`HTMLMediaElement.playbackRate`** property sets the rate at which the media is being played back.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playbackRate)\n     */\n    playbackRate: number;\n    /**\n     * The **`played`** read-only property of the HTMLMediaElement interface indicates the time ranges the resource, an audio or video media file, has played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/played)\n     */\n    readonly played: TimeRanges;\n    /**\n     * The **`preload`** property of the HTMLMediaElement interface is a string that provides a hint to the browser about what the author thinks will lead to the best user experience.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/preload)\n     */\n    preload: \"none\" | \"metadata\" | \"auto\" | \"\";\n    /**\n     * The **`HTMLMediaElement.preservesPitch`** property determines whether or not the browser should adjust the pitch of the audio to compensate for changes to the playback rate made by setting HTMLMediaElement.playbackRate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/preservesPitch)\n     */\n    preservesPitch: boolean;\n    /**\n     * The **`HTMLMediaElement.readyState`** property indicates the readiness state of the media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`remote`** read-only property of the HTMLMediaElement interface returns the RemotePlayback object associated with the media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/remote)\n     */\n    readonly remote: RemotePlayback;\n    /**\n     * The **`seekable`** read-only property of HTMLMediaElement objects returns a new static normalized `TimeRanges` object that represents the ranges of the media resource, if any, that the user agent is able to seek to at the time `seekable` property is accessed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seekable)\n     */\n    readonly seekable: TimeRanges;\n    /**\n     * The **`seeking`** read-only property of the HTMLMediaElement interface is a Boolean indicating whether the resource, the audio or video, is in the process of seeking to a new position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking)\n     */\n    readonly seeking: boolean;\n    /**\n     * The **`sinkId`** read-only property of the HTMLMediaElement interface returns a string that is the unique ID of the device to be used for playing audio output.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/sinkId)\n     */\n    readonly sinkId: string;\n    /**\n     * The **`HTMLMediaElement.src`** property reflects the value of the HTML media element's `src` attribute, which indicates the URL of a media resource to use in the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/src)\n     */\n    src: string;\n    /**\n     * The **`srcObject`** property of the the source of the media associated with the HTMLMediaElement, or `null` if not assigned.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/srcObject)\n     */\n    srcObject: MediaProvider | null;\n    /**\n     * The read-only **`textTracks`** property on HTMLMediaElement objects returns a objects representing the media element's text tracks, in the same order as in the list of text tracks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/textTracks)\n     */\n    readonly textTracks: TextTrackList;\n    /**\n     * The **`HTMLMediaElement.volume`** property sets the volume at which the media will be played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volume)\n     */\n    volume: number;\n    /**\n     * The **`addTextTrack()`** method of the HTMLMediaElement interface creates a new TextTrack object and adds it to the media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/addTextTrack)\n     */\n    addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack;\n    /**\n     * The HTMLMediaElement method **`canPlayType()`** reports how likely it is that the current browser will be able to play media of a given MIME type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canPlayType)\n     */\n    canPlayType(type: string): CanPlayTypeResult;\n    /**\n     * The **`HTMLMediaElement.fastSeek()`** method quickly seeks the media to the new time with precision tradeoff.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/fastSeek)\n     */\n    fastSeek(time: number): void;\n    /**\n     * The HTMLMediaElement method **`load()`** resets the media element to its initial state and begins the process of selecting a media source and loading the media in preparation for playback to begin at the beginning.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/load)\n     */\n    load(): void;\n    /**\n     * The **`HTMLMediaElement.pause()`** method will pause playback of the media, if the media is already in a paused state this method will have no effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause)\n     */\n    pause(): void;\n    /**\n     * The HTMLMediaElement **`play()`** method attempts to begin playback of the media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/play)\n     */\n    play(): Promise<void>;\n    /**\n     * The **`setMediaKeys()`** method of the HTMLMediaElement interface sets the MediaKeys that will be used to decrypt media during playback.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/setMediaKeys)\n     */\n    setMediaKeys(mediaKeys: MediaKeys | null): Promise<void>;\n    /**\n     * The **`setSinkId()`** method of the HTMLMediaElement interface sets the ID of the audio device to use for output and returns a Promise.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/setSinkId)\n     */\n    setSinkId(sinkId: string): Promise<void>;\n    readonly NETWORK_EMPTY: 0;\n    readonly NETWORK_IDLE: 1;\n    readonly NETWORK_LOADING: 2;\n    readonly NETWORK_NO_SOURCE: 3;\n    readonly HAVE_NOTHING: 0;\n    readonly HAVE_METADATA: 1;\n    readonly HAVE_CURRENT_DATA: 2;\n    readonly HAVE_FUTURE_DATA: 3;\n    readonly HAVE_ENOUGH_DATA: 4;\n    addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLMediaElement, ev: HTMLMediaElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLMediaElement, ev: HTMLMediaElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLMediaElement: {\n    prototype: HTMLMediaElement;\n    new(): HTMLMediaElement;\n    readonly NETWORK_EMPTY: 0;\n    readonly NETWORK_IDLE: 1;\n    readonly NETWORK_LOADING: 2;\n    readonly NETWORK_NO_SOURCE: 3;\n    readonly HAVE_NOTHING: 0;\n    readonly HAVE_METADATA: 1;\n    readonly HAVE_CURRENT_DATA: 2;\n    readonly HAVE_FUTURE_DATA: 3;\n    readonly HAVE_ENOUGH_DATA: 4;\n};\n\n/**\n * The **`HTMLMenuElement`** interface provides additional properties (beyond those inherited from the HTMLElement interface) for manipulating a menu element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement)\n */\ninterface HTMLMenuElement extends HTMLElement {\n    /** @deprecated */\n    compact: boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLMenuElement: {\n    prototype: HTMLMenuElement;\n    new(): HTMLMenuElement;\n};\n\n/**\n * The **`HTMLMetaElement`** interface contains descriptive metadata about a document provided in HTML as `<meta>` elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)\n */\ninterface HTMLMetaElement extends HTMLElement {\n    /**\n     * The **`HTMLMetaElement.content`** property gets or sets the `content` attribute of pragma directives and named meta data in conjunction with HTMLMetaElement.name or HTMLMetaElement.httpEquiv.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/content)\n     */\n    content: string;\n    /**\n     * The **`HTMLMetaElement.httpEquiv`** property gets or sets the pragma directive or an HTTP response header name for the HTMLMetaElement.content attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/httpEquiv)\n     */\n    httpEquiv: string;\n    /**\n     * The **`HTMLMetaElement.media`** property enables specifying the media for `theme-color` metadata.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media)\n     */\n    media: string;\n    /**\n     * The **`HTMLMetaElement.name`** property is used in combination with HTMLMetaElement.content to define the name-value pairs for the metadata of a document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/name)\n     */\n    name: string;\n    /**\n     * The **`HTMLMetaElement.scheme`** property defines the scheme of the value in the HTMLMetaElement.content attribute.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)\n     */\n    scheme: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLMetaElement: {\n    prototype: HTMLMetaElement;\n    new(): HTMLMetaElement;\n};\n\n/**\n * The HTML meter elements expose the **`HTMLMeterElement`** interface, which provides special properties and methods (beyond the HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of meter elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement)\n */\ninterface HTMLMeterElement extends HTMLElement {\n    /**\n     * The **`high`** property of the HTMLMeterElement interface represents the high boundary of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/high)\n     */\n    high: number;\n    /**\n     * The **`HTMLMeterElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<meter>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`low`** property of the HTMLMeterElement interface represents the low boundary of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/low)\n     */\n    low: number;\n    /**\n     * The **`max`** property of the HTMLMeterElement interface represents the maximum value of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/max)\n     */\n    max: number;\n    /**\n     * The **`min`** property of the HTMLMeterElement interface represents the minimum value of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/min)\n     */\n    min: number;\n    /**\n     * The **`optimum`** property of the HTMLMeterElement interface represents the optimum boundary of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/optimum)\n     */\n    optimum: number;\n    /**\n     * The **`value`** property of the HTMLMeterElement interface represents the current value of the meter element as a floating-point number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/value)\n     */\n    value: number;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLMeterElement: {\n    prototype: HTMLMeterElement;\n    new(): HTMLMeterElement;\n};\n\n/**\n * The **`HTMLModElement`** interface provides special properties (beyond the regular methods and properties available through the HTMLElement interface they also have available to them by inheritance) for manipulating modification elements, that is del and ins.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)\n */\ninterface HTMLModElement extends HTMLElement {\n    /**\n     * The **`cite`** property of the HTMLModElement interface indicates the URL of the resource explaining the modification.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)\n     */\n    cite: string;\n    /**\n     * The **`dateTime`** property of the HTMLModElement interface is a string containing a machine-readable date with an optional time value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)\n     */\n    dateTime: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLModElement: {\n    prototype: HTMLModElement;\n    new(): HTMLModElement;\n};\n\n/**\n * The **`HTMLOListElement`** interface provides special properties (beyond those defined on the regular HTMLElement interface it also has available to it by inheritance) for manipulating ordered list elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement)\n */\ninterface HTMLOListElement extends HTMLElement {\n    /** @deprecated */\n    compact: boolean;\n    /**\n     * The **`reversed`** property of the HTMLOListElement interface indicates order of a list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/reversed)\n     */\n    reversed: boolean;\n    /**\n     * The **`start`** property of the HTMLOListElement interface indicates starting value of the ordered list, with default value of 1.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/start)\n     */\n    start: number;\n    /**\n     * The **`type`** property of the HTMLOListElement interface indicates the kind of marker to be used to display ordered list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLOListElement: {\n    prototype: HTMLOListElement;\n    new(): HTMLOListElement;\n};\n\n/**\n * The **`HTMLObjectElement`** interface provides special properties and methods (beyond those on the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of object element, representing external resources.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement)\n */\ninterface HTMLObjectElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    /** @deprecated */\n    archive: string;\n    /** @deprecated */\n    border: string;\n    /** @deprecated */\n    code: string;\n    /** @deprecated */\n    codeBase: string;\n    /** @deprecated */\n    codeType: string;\n    /**\n     * The **`contentDocument`** read-only property of the HTMLObjectElement interface Returns a Document representing the active document of the object element's nested browsing context, if any; otherwise null.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/contentDocument)\n     */\n    readonly contentDocument: Document | null;\n    /**\n     * The **`contentWindow`** read-only property of the HTMLObjectElement interface returns a WindowProxy representing the window proxy of the object element's nested browsing context, if any; otherwise null.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/contentWindow)\n     */\n    readonly contentWindow: WindowProxy | null;\n    /**\n     * The **`data`** property of the reflects the `data` HTML attribute, specifying the address of a resource's data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)\n     */\n    data: string;\n    /** @deprecated */\n    declare: boolean;\n    /**\n     * The **`form`** read-only property of the HTMLObjectElement interface returns an HTMLFormElement object that owns this object, or `null` if this object element is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`height`** property of the reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)\n     */\n    height: string;\n    /** @deprecated */\n    hspace: number;\n    /**\n     * The **`name`** property of the reflects the `name` HTML attribute, specifying the name of the browsing context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/name)\n     */\n    name: string;\n    /** @deprecated */\n    standby: string;\n    /**\n     * The **`type`** property of the reflects the `type` HTML attribute, specifying the MIME type of the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/type)\n     */\n    type: string;\n    /**\n     * The **`useMap`** property of the reflects the `usemap` HTML attribute, specifying a A string.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)\n     */\n    useMap: string;\n    /**\n     * The **`validationMessage`** read-only property of the HTMLObjectElement interface returns a string representing a localized message that describes the validation constraints that the control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLObjectElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/validity)\n     */\n    readonly validity: ValidityState;\n    /** @deprecated */\n    vspace: number;\n    /**\n     * The **`width`** property of the reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/width)\n     */\n    width: string;\n    /**\n     * The **`willValidate`** read-only property of the HTMLObjectElement interface returns `false`, because object elements are not candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the HTMLObjectElement interface checks if the element is valid, but always returns true because object elements are never candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`getSVGDocument()`** method of the HTMLObjectElement interface returns the Document object of the embedded SVG.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument)\n     */\n    getSVGDocument(): Document | null;\n    /**\n     * The **`reportValidity()`** method of the HTMLObjectElement interface performs the same validity checking steps as the HTMLObjectElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`setCustomValidity()`** method of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLObjectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLObjectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLObjectElement: {\n    prototype: HTMLObjectElement;\n    new(): HTMLObjectElement;\n};\n\n/**\n * The **`HTMLOptGroupElement`** interface provides special properties and methods (beyond the regular HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of optgroup elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement)\n */\ninterface HTMLOptGroupElement extends HTMLElement {\n    /**\n     * The **`disabled`** property of the HTMLOptGroupElement interface is a boolean value that reflects the optgroup element's `disabled` attribute, which indicates whether the control is disabled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`label`** property of the HTMLOptGroupElement interface is a string value that reflects the optgroup element's `label` attribute, which provides a textual label to the group of options.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/label)\n     */\n    label: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLOptGroupElement: {\n    prototype: HTMLOptGroupElement;\n    new(): HTMLOptGroupElement;\n};\n\n/**\n * The **`HTMLOptionElement`** interface represents option elements and inherits all properties and methods of the HTMLElement interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement)\n */\ninterface HTMLOptionElement extends HTMLElement {\n    /**\n     * The **`defaultSelected`** property of the HTMLOptionElement interface specifies the default selected state of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/defaultSelected)\n     */\n    defaultSelected: boolean;\n    /**\n     * The **`disabled`** property of the HTMLOptionElement is a boolean value that indicates whether the option element is unavailable to be selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`form`** read-only property of the HTMLOptionElement interface returns an HTMLFormElement object that owns the HTMLSelectElement associated with this option, or `null` if this option is not associated with a select owned by a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The read-only **`index`** property of the HTMLOptionElement interface specifies the 0-based index of the element; that is, the position of the option within the list of options it belongs to, in tree-order, as an integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/index)\n     */\n    readonly index: number;\n    /**\n     * The **`label`** property of the HTMLOptionElement represents the text displayed for an option in a select element or as part of a list of suggestions in a datalist element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/label)\n     */\n    label: string;\n    /**\n     * The **`selected`** property of the HTMLOptionElement interface specifies the current selectedness of the element; that is, whether the option is selected or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/selected)\n     */\n    selected: boolean;\n    /**\n     * The **`text`** property of the HTMLOptionElement represents the text inside the option element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/text)\n     */\n    text: string;\n    /**\n     * The **`value`** property of the HTMLOptionElement interface represents the value of the option element as a string, or the empty string if no value is set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/value)\n     */\n    value: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLOptionElement: {\n    prototype: HTMLOptionElement;\n    new(): HTMLOptionElement;\n};\n\n/**\n * The **`HTMLOptionsCollection`** interface represents a collection of `<option>` HTML elements (in document order) and offers methods and properties for selecting from the list as well as optionally altering its items.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection)\n */\ninterface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {\n    /**\n     * The **`length`** property of the HTMLOptionsCollection interface returns the number of option elements in the collection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/length)\n     */\n    length: number;\n    /**\n     * The **`selectedIndex`** property of the HTMLOptionsCollection interface is the numeric index of the first selected option element, if any, or `−1` if no `<option>` is selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/selectedIndex)\n     */\n    selectedIndex: number;\n    /**\n     * The **`add()`** method of the HTMLOptionsCollection interface adds an HTMLOptionElement or HTMLOptGroupElement to this `HTMLOptionsCollection`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/add)\n     */\n    add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;\n    /**\n     * The **`remove()`** method of the HTMLOptionsCollection interface removes the option element specified by the index from this collection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/remove)\n     */\n    remove(index: number): void;\n}\n\ndeclare var HTMLOptionsCollection: {\n    prototype: HTMLOptionsCollection;\n    new(): HTMLOptionsCollection;\n};\n\ninterface HTMLOrSVGElement {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */\n    autofocus: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */\n    readonly dataset: DOMStringMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */\n    nonce?: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */\n    tabIndex: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) */\n    blur(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/focus) */\n    focus(options?: FocusOptions): void;\n}\n\n/**\n * The **`HTMLOutputElement`** interface provides properties and methods (beyond those inherited from HTMLElement) for manipulating the layout and presentation of output elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement)\n */\ninterface HTMLOutputElement extends HTMLElement {\n    /**\n     * The **`defaultValue`** property of the HTMLOutputElement interface represents the default text content of this output element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/defaultValue)\n     */\n    defaultValue: string;\n    /**\n     * The **`form`** read-only property of the HTMLOutputElement interface returns an HTMLFormElement object that owns this output, or `null` if this output is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`htmlFor`** property of the HTMLOutputElement interface is a string containing a space-separated list of other elements' `id`s, indicating that those elements contributed input values to (or otherwise affected) the calculation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor)\n     */\n    get htmlFor(): DOMTokenList;\n    set htmlFor(value: string);\n    /**\n     * The **`HTMLOutputElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<output>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`name`** property of the HTMLOutputElement interface indicates the name of the output element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/name)\n     */\n    name: string;\n    /**\n     * The **`type`** read-only property of the HTMLOutputElement interface returns the string `'output'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/type)\n     */\n    readonly type: string;\n    /**\n     * The **`validationMessage`** read-only property of the HTMLOutputElement interface returns a string representing a localized message that describes the validation constraints that the output control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLOutputElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`value`** property of the HTMLOutputElement interface represents the value of the output element as a string, or the empty string if no value is set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/value)\n     */\n    value: string;\n    /**\n     * The **`willValidate`** read-only property of the HTMLOutputElement interface returns `false`, because output elements are not candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`checkValidity()`** method of the HTMLOutputElement interface checks if the element is valid, but always returns true because output elements are never candidates for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLOutputElement interface performs the same validity checking steps as the HTMLOutputElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`setCustomValidity()`** method of the HTMLOutputElement interface sets the custom validity message for the output element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLOutputElement: {\n    prototype: HTMLOutputElement;\n    new(): HTMLOutputElement;\n};\n\n/**\n * The **`HTMLParagraphElement`** interface provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating p elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParagraphElement)\n */\ninterface HTMLParagraphElement extends HTMLElement {\n    /** @deprecated */\n    align: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLParagraphElement: {\n    prototype: HTMLParagraphElement;\n    new(): HTMLParagraphElement;\n};\n\n/**\n * The **`HTMLParamElement`** interface provides special properties (beyond those of the regular HTMLElement object interface it inherits) for manipulating param elements, representing a pair of a key and a value that acts as a parameter for an object element.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement)\n */\ninterface HTMLParamElement extends HTMLElement {\n    /** @deprecated */\n    name: string;\n    /** @deprecated */\n    type: string;\n    /** @deprecated */\n    value: string;\n    /** @deprecated */\n    valueType: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var HTMLParamElement: {\n    prototype: HTMLParamElement;\n    new(): HTMLParamElement;\n};\n\n/**\n * The **`HTMLPictureElement`** interface represents a picture HTML element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLPictureElement)\n */\ninterface HTMLPictureElement extends HTMLElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPictureElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPictureElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLPictureElement: {\n    prototype: HTMLPictureElement;\n    new(): HTMLPictureElement;\n};\n\n/**\n * The **`HTMLPreElement`** interface exposes specific properties and methods (beyond those of the HTMLElement interface it also has available to it by inheritance) for manipulating a block of preformatted text (pre).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLPreElement)\n */\ninterface HTMLPreElement extends HTMLElement {\n    /** @deprecated */\n    width: number;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLPreElement: {\n    prototype: HTMLPreElement;\n    new(): HTMLPreElement;\n};\n\n/**\n * The **`HTMLProgressElement`** interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of progress elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement)\n */\ninterface HTMLProgressElement extends HTMLElement {\n    /**\n     * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<progress>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`max`** property of the HTMLProgressElement interface represents the upper bound of the progress element's range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/max)\n     */\n    max: number;\n    /**\n     * The **`position`** read-only property of the HTMLProgressElement interface returns current progress of the progress element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/position)\n     */\n    readonly position: number;\n    /**\n     * The **`value`** property of the HTMLProgressElement interface represents the current progress of the progress element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/value)\n     */\n    value: number;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLProgressElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLProgressElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLProgressElement: {\n    prototype: HTMLProgressElement;\n    new(): HTMLProgressElement;\n};\n\n/**\n * The **`HTMLQuoteElement`** interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating quoting elements, like blockquote and q, but not the cite element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)\n */\ninterface HTMLQuoteElement extends HTMLElement {\n    /**\n     * The **`cite`** property of the HTMLQuoteElement interface indicates the URL for the source of the quotation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)\n     */\n    cite: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLQuoteElement: {\n    prototype: HTMLQuoteElement;\n    new(): HTMLQuoteElement;\n};\n\n/**\n * HTML script elements expose the **`HTMLScriptElement`** interface, which provides special properties and methods for manipulating the behavior and execution of `<script>` elements (beyond the inherited HTMLElement interface).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement)\n */\ninterface HTMLScriptElement extends HTMLElement {\n    /**\n     * The **`async`** property of the HTMLScriptElement interface is a boolean value that controls how the script should be executed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/async)\n     */\n    async: boolean;\n    /**\n     * The **`blocking`** property of the HTMLScriptElement interface is a string indicating that certain operations should be blocked on the fetching of the script.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/blocking)\n     */\n    get blocking(): DOMTokenList;\n    set blocking(value: string);\n    /** @deprecated */\n    charset: string;\n    /**\n     * The **`crossOrigin`** property of the HTMLScriptElement interface reflects the CORS settings for the script element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/crossOrigin)\n     */\n    crossOrigin: string | null;\n    /**\n     * The **`defer`** property of the HTMLScriptElement interface is a boolean value that controls how the script should be executed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/defer)\n     */\n    defer: boolean;\n    /** @deprecated */\n    event: string;\n    /**\n     * The **`fetchPriority`** property of the HTMLScriptElement interface represents a hint to the browser indicating how it should prioritize fetching an external script relative to other external scripts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/fetchPriority)\n     */\n    fetchPriority: \"high\" | \"low\" | \"auto\";\n    /** @deprecated */\n    htmlFor: string;\n    /**\n     * The **`integrity`** property of the HTMLScriptElement interface is a string that contains inline metadata that a browser can use to verify that a fetched resource has been delivered without unexpected manipulation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/integrity)\n     */\n    integrity: string;\n    /**\n     * The **`noModule`** property of the HTMLScriptElement interface is a boolean value that indicates whether the script should be executed in browsers that support ES modules.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/noModule)\n     */\n    noModule: boolean;\n    /**\n     * The **`referrerPolicy`** property of the `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy)\n     */\n    referrerPolicy: string;\n    /**\n     * The **`src`** property of the HTMLScriptElement interface is a string representing the URL of an external script; this can be used as an alternative to embedding a script directly within a document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/src)\n     */\n    src: string;\n    /**\n     * The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)\n     */\n    text: string;\n    /**\n     * The **`type`** property of the HTMLScriptElement interface is a string that reflects the type of the script.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLScriptElement: {\n    prototype: HTMLScriptElement;\n    new(): HTMLScriptElement;\n    /**\n     * The **`supports()`** static method of the HTMLScriptElement interface provides a simple and consistent method to feature-detect what types of scripts are supported by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/supports_static)\n     */\n    supports(type: string): boolean;\n};\n\n/**\n * The **`HTMLSelectElement`** interface represents a select HTML Element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)\n */\ninterface HTMLSelectElement extends HTMLElement {\n    /**\n     * The **`autocomplete`** property of the HTMLSelectElement interface indicates whether the value of the control can be automatically completed by the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete)\n     */\n    autocomplete: AutoFill;\n    /**\n     * The **`HTMLSelectElement.disabled`** property is a boolean value that reflects the `disabled` HTML attribute, which indicates whether the control is disabled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`form`** read-only property of the HTMLSelectElement interface returns an HTMLFormElement object that owns this select, or `null` if this select is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`HTMLSelectElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<select>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`length`** property of the HTMLSelectElement interface specifies the number of option elements in the select element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/length)\n     */\n    length: number;\n    /**\n     * The **`multiple`** property of the HTMLSelectElement interface specifies that the user may select more than one option from the list of options.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/multiple)\n     */\n    multiple: boolean;\n    /**\n     * The **`name`** property of the HTMLSelectElement interface indicates the name of the select element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/name)\n     */\n    name: string;\n    /**\n     * The **`HTMLSelectElement.options`** read-only property returns a HTMLOptionsCollection of the option elements contained by the select element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/options)\n     */\n    readonly options: HTMLOptionsCollection;\n    /**\n     * The **`required`** property of the HTMLSelectElement interface specifies that the user must select an option with a non-empty string value before submitting a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/required)\n     */\n    required: boolean;\n    /**\n     * The **`selectedIndex`** property of the HTMLSelectElement interface is the numeric index of the first selected option element in a select element, if any, or `−1` if no `<option>` is selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedIndex)\n     */\n    selectedIndex: number;\n    /**\n     * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the element that are currently selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions)\n     */\n    readonly selectedOptions: HTMLCollectionOf<HTMLOptionElement>;\n    /**\n     * The **`size`** property of the HTMLSelectElement interface specifies the number of options, or rows, that should be visible at one time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/size)\n     */\n    size: number;\n    /**\n     * The **`HTMLSelectElement.type`** read-only property returns the form control's `type`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)\n     */\n    readonly type: \"select-one\" | \"select-multiple\";\n    /**\n     * The **`validationMessage`** read-only property of the HTMLSelectElement interface returns a string representing a localized message that describes the validation constraints that the select control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLSelectElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`HTMLSelectElement.value`** property contains the value of the first selected option element associated with this select element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/value)\n     */\n    value: string;\n    /**\n     * The **`willValidate`** read-only property of the HTMLSelectElement interface indicates whether the select element is a candidate for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`HTMLSelectElement.add()`** method adds an element to the collection of `option` elements for this `select` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/add)\n     */\n    add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;\n    /**\n     * The **`checkValidity()`** method of the HTMLSelectElement interface returns a boolean value which indicates if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`HTMLSelectElement.item()`** method returns the position in the options list corresponds to the index given in the parameter, or `null` if there are none.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/item)\n     */\n    item(index: number): HTMLOptionElement | null;\n    /**\n     * The **`HTMLSelectElement.namedItem()`** method returns the whose `name` or `id` match the specified name, or `null` if no option matches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/namedItem)\n     */\n    namedItem(name: string): HTMLOptionElement | null;\n    /**\n     * The **`HTMLSelectElement.remove()`** method removes the element at the specified index from the options collection for this select element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/remove)\n     */\n    remove(): void;\n    remove(index: number): void;\n    /**\n     * The **`reportValidity()`** method of the HTMLSelectElement interface performs the same validity checking steps as the HTMLSelectElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`HTMLSelectElement.setCustomValidity()`** method sets the custom validity message for the selection element to the specified message.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    /**\n     * The **`HTMLSelectElement.showPicker()`** method displays the browser picker for a `select` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/showPicker)\n     */\n    showPicker(): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n    [name: number]: HTMLOptionElement | HTMLOptGroupElement;\n}\n\ndeclare var HTMLSelectElement: {\n    prototype: HTMLSelectElement;\n    new(): HTMLSelectElement;\n};\n\n/**\n * The **`HTMLSlotElement`** interface of the Shadow DOM API enables access to the name and assigned nodes of an HTML slot element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement)\n */\ninterface HTMLSlotElement extends HTMLElement {\n    /**\n     * The **`name`** property of the HTMLSlotElement interface returns or sets the slot name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/name)\n     */\n    name: string;\n    /**\n     * The **`assign()`** method of the HTMLSlotElement interface sets the slot's _manually assigned nodes_ to an ordered set of slottables.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/assign)\n     */\n    assign(...nodes: (Element | Text)[]): void;\n    /**\n     * The **`assignedElements()`** method of the HTMLSlotElement interface returns a sequence of the elements assigned to this slot (and no other nodes).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/assignedElements)\n     */\n    assignedElements(options?: AssignedNodesOptions): Element[];\n    /**\n     * The **`assignedNodes()`** method of the HTMLSlotElement interface returns a sequence of the nodes assigned to this slot.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/assignedNodes)\n     */\n    assignedNodes(options?: AssignedNodesOptions): Node[];\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSlotElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSlotElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLSlotElement: {\n    prototype: HTMLSlotElement;\n    new(): HTMLSlotElement;\n};\n\n/**\n * The **`HTMLSourceElement`** interface provides special properties (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating source elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement)\n */\ninterface HTMLSourceElement extends HTMLElement {\n    /**\n     * The **`height`** property of the HTMLSourceElement interface is a non-negative number indicating the height of the image resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height)\n     */\n    height: number;\n    /**\n     * The **`media`** property of the HTMLSourceElement interface is a string representing the intended destination medium for the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)\n     */\n    media: string;\n    /**\n     * The **`sizes`** property of the HTMLSourceElement interface is a string representing a list of one or more sizes, representing sizes between breakpoints, to which the resource applies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes)\n     */\n    sizes: string;\n    /**\n     * The **`src`** property of the HTMLSourceElement interface is a string indicating the URL of a media resource to use as the source for the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)\n     */\n    src: string;\n    /**\n     * The **`srcset`** property of the HTMLSourceElement interface is a string containing a comma-separated list of candidate images.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset)\n     */\n    srcset: string;\n    /**\n     * The **`type`** property of the HTMLSourceElement interface is a string representing the MIME type of the media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)\n     */\n    type: string;\n    /**\n     * The **`width`** property of the HTMLSourceElement interface is a non-negative number indicating the width of the image resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width)\n     */\n    width: number;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLSourceElement: {\n    prototype: HTMLSourceElement;\n    new(): HTMLSourceElement;\n};\n\n/**\n * The **`HTMLSpanElement`** interface represents a span element and derives from the HTMLElement interface, but without implementing any additional properties or methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSpanElement)\n */\ninterface HTMLSpanElement extends HTMLElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSpanElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSpanElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLSpanElement: {\n    prototype: HTMLSpanElement;\n    new(): HTMLSpanElement;\n};\n\n/**\n * The **`HTMLStyleElement`** interface represents a style element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement)\n */\ninterface HTMLStyleElement extends HTMLElement, LinkStyle {\n    /**\n     * The **`blocking`** property of the HTMLStyleElement interface is a string indicating that certain operations should be blocked on the fetching of critical subresources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/blocking)\n     */\n    get blocking(): DOMTokenList;\n    set blocking(value: string);\n    /**\n     * The **`HTMLStyleElement.disabled`** property can be used to get and set whether the stylesheet is disabled (`true`) or not (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`HTMLStyleElement.media`** property specifies the intended destination medium for style information.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/media)\n     */\n    media: string;\n    /**\n     * The **`HTMLStyleElement.type`** property returns the type of the current style.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLStyleElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLStyleElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLStyleElement: {\n    prototype: HTMLStyleElement;\n    new(): HTMLStyleElement;\n};\n\n/**\n * The **`HTMLTableCaptionElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating table caption elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCaptionElement)\n */\ninterface HTMLTableCaptionElement extends HTMLElement {\n    /**\n     * The **`align`** property of the HTMLTableCaptionElement interface is a string indicating how to horizontally align text in the caption table element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCaptionElement/align)\n     */\n    align: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableCaptionElement: {\n    prototype: HTMLTableCaptionElement;\n    new(): HTMLTableCaptionElement;\n};\n\n/**\n * The **`HTMLTableCellElement`** interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of table cells, either header cells (th) or data cells (td), in an HTML document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement)\n */\ninterface HTMLTableCellElement extends HTMLElement {\n    /**\n     * The **`abbr`** property of the HTMLTableCellElement interface indicates an abbreviation associated with the cell.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/abbr)\n     */\n    abbr: string;\n    /**\n     * The **`align`** property of the HTMLTableCellElement interface is a string indicating how to horizontally align text in the th or td table cell.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/align)\n     */\n    align: string;\n    /** @deprecated */\n    axis: string;\n    /**\n     * The **`HTMLTableCellElement.bgColor`** property is used to set the background color of a cell or get the value of the obsolete `bgColor` attribute, if present.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/bgColor)\n     */\n    bgColor: string;\n    /**\n     * The **`cellIndex`** read-only property of the HTMLTableCellElement interface represents the position of a cell within its row (tr).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/cellIndex)\n     */\n    readonly cellIndex: number;\n    /**\n     * The **`ch`** property of the HTMLTableCellElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/ch)\n     */\n    ch: string;\n    /**\n     * The **`chOff`** property of the HTMLTableCellElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/chOff)\n     */\n    chOff: string;\n    /**\n     * The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)\n     */\n    colSpan: number;\n    /**\n     * The **`headers`** property of the HTMLTableCellElement interface contains a list of IDs of th elements that are _headers_ for this specific cell.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/headers)\n     */\n    headers: string;\n    /** @deprecated */\n    height: string;\n    /**\n     * The **`noWrap`** property of the HTMLTableCellElement interface returns a Boolean value indicating if the text of the cell may be wrapped on several lines or not.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/noWrap)\n     */\n    noWrap: boolean;\n    /**\n     * The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)\n     */\n    rowSpan: number;\n    /**\n     * The **`scope`** property of the HTMLTableCellElement interface indicates the scope of a th cell.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/scope)\n     */\n    scope: string;\n    /**\n     * The **`vAlign`** property of the HTMLTableCellElement interface is a string indicating how to vertically align text in a th or td table cell.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/vAlign)\n     */\n    vAlign: string;\n    /** @deprecated */\n    width: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableCellElement: {\n    prototype: HTMLTableCellElement;\n    new(): HTMLTableCellElement;\n};\n\n/**\n * The **`HTMLTableColElement`** interface provides properties for manipulating single or grouped table column elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement)\n */\ninterface HTMLTableColElement extends HTMLElement {\n    /**\n     * The **`align`** property of the HTMLTableColElement interface is a string indicating how to horizontally align text in a table col column element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/align)\n     */\n    align: string;\n    /**\n     * The **`ch`** property of the HTMLTableColElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/ch)\n     */\n    ch: string;\n    /**\n     * The **`chOff`** property of the HTMLTableColElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/chOff)\n     */\n    chOff: string;\n    /**\n     * The **`span`** read-only property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)\n     */\n    span: number;\n    /**\n     * The **`vAlign`** property of the HTMLTableColElement interface is a string indicating how to vertically align text in a table col column element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/vAlign)\n     */\n    vAlign: string;\n    /** @deprecated */\n    width: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableColElement: {\n    prototype: HTMLTableColElement;\n    new(): HTMLTableColElement;\n};\n\n/** @deprecated prefer HTMLTableCellElement */\ninterface HTMLTableDataCellElement extends HTMLTableCellElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableDataCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableDataCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/**\n * The **`HTMLTableElement`** interface provides special properties and methods (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating the layout and presentation of tables in an HTML document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement)\n */\ninterface HTMLTableElement extends HTMLElement {\n    /**\n     * The **`HTMLTableElement.align`** property represents the alignment of the table.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/align)\n     */\n    align: string;\n    /**\n     * The **`bgcolor`** property of the HTMLTableElement represents the background color of the table.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/bgColor)\n     */\n    bgColor: string;\n    /**\n     * The **`HTMLTableElement.border`** property represents the border width of the table element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/border)\n     */\n    border: string;\n    /**\n     * The **`HTMLTableElement.caption`** property represents the table caption.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/caption)\n     */\n    caption: HTMLTableCaptionElement | null;\n    /**\n     * The **`HTMLTableElement.cellPadding`** property represents the padding around the individual cells of the table.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellPadding)\n     */\n    cellPadding: string;\n    /**\n     * While you should instead use the CSS interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellSpacing)\n     */\n    cellSpacing: string;\n    /**\n     * The HTMLTableElement interface's **`frame`** property is a string that indicates which of the table's exterior borders should be drawn.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/frame)\n     */\n    frame: string;\n    /**\n     * The read-only HTMLTableElement property **`rows`** returns a live contained within any thead, tfoot, and Although the property itself is read-only, the returned object is live and allows the modification of its content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rows)\n     */\n    readonly rows: HTMLCollectionOf<HTMLTableRowElement>;\n    /**\n     * The **`HTMLTableElement.rules`** property indicates which cell borders to render in the table.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rules)\n     */\n    rules: string;\n    /**\n     * The **`HTMLTableElement.summary`** property represents the table description.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/summary)\n     */\n    summary: string;\n    /**\n     * The **`HTMLTableElement.tBodies`** read-only property returns a live HTMLCollection of the bodies in a table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tBodies)\n     */\n    readonly tBodies: HTMLCollectionOf<HTMLTableSectionElement>;\n    /**\n     * The **`HTMLTableElement.tFoot`** property represents the `null` if there is no such element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tFoot)\n     */\n    tFoot: HTMLTableSectionElement | null;\n    /**\n     * The **`HTMLTableElement.tHead`** represents the `null` if there is no such element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tHead)\n     */\n    tHead: HTMLTableSectionElement | null;\n    /**\n     * The **`HTMLTableElement.width`** property represents the desired width of the table.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/width)\n     */\n    width: string;\n    /**\n     * The **`HTMLTableElement.createCaption()`** method returns the If no `<caption>` element exists on the table, this method creates it, and then returns it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createCaption)\n     */\n    createCaption(): HTMLTableCaptionElement;\n    /**\n     * The **`createTBody()`** method of ```js-nolint createTBody() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody)\n     */\n    createTBody(): HTMLTableSectionElement;\n    /**\n     * The **`createTFoot()`** method of associated with a given table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTFoot)\n     */\n    createTFoot(): HTMLTableSectionElement;\n    /**\n     * The **`createTHead()`** method of associated with a given table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTHead)\n     */\n    createTHead(): HTMLTableSectionElement;\n    /**\n     * The **`HTMLTableElement.deleteCaption()`** method removes the `<caption>` element associated with the table, this method does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteCaption)\n     */\n    deleteCaption(): void;\n    /**\n     * The **`HTMLTableElement.deleteRow()`** method removes a specific row (tr) from a given table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteRow)\n     */\n    deleteRow(index: number): void;\n    /**\n     * The **`HTMLTableElement.deleteTFoot()`** method removes the ```js-nolint deleteTFoot() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTFoot)\n     */\n    deleteTFoot(): void;\n    /**\n     * The **`HTMLTableElement.deleteTHead()`** removes the ```js-nolint deleteTHead() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTHead)\n     */\n    deleteTHead(): void;\n    /**\n     * The **`insertRow()`** method of the HTMLTableElement interface inserts a new row (tr) in a given table, and returns a reference to the new row.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/insertRow)\n     */\n    insertRow(index?: number): HTMLTableRowElement;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableElement: {\n    prototype: HTMLTableElement;\n    new(): HTMLTableElement;\n};\n\n/** @deprecated prefer HTMLTableCellElement */\ninterface HTMLTableHeaderCellElement extends HTMLTableCellElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableHeaderCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableHeaderCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/**\n * The **`HTMLTableRowElement`** interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement)\n */\ninterface HTMLTableRowElement extends HTMLElement {\n    /**\n     * The **`align`** property of the HTMLTableRowElement interface is a string indicating how to horizontally align text in the tr table row.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/align)\n     */\n    align: string;\n    /**\n     * The **`HTMLTableRowElement.bgColor`** property is used to set the background color of a row or retrieve the value of the obsolete `bgColor` attribute, if present.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/bgColor)\n     */\n    bgColor: string;\n    /**\n     * The **`cells`** read-only property of the HTMLTableRowElement interface returns a live HTMLCollection containing the cells in the row.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/cells)\n     */\n    readonly cells: HTMLCollectionOf<HTMLTableCellElement>;\n    /**\n     * The **`ch`** property of the HTMLTableRowElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/ch)\n     */\n    ch: string;\n    /**\n     * The **`chOff`** property of the HTMLTableRowElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/chOff)\n     */\n    chOff: string;\n    /**\n     * The **`rowIndex`** read-only property of the HTMLTableRowElement interface represents the position of a row within the whole table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/rowIndex)\n     */\n    readonly rowIndex: number;\n    /**\n     * The **`sectionRowIndex`** read-only property of the HTMLTableRowElement interface represents the position of a row within the current section (thead, tbody, or tfoot).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/sectionRowIndex)\n     */\n    readonly sectionRowIndex: number;\n    /**\n     * The **`vAlign`** property of the HTMLTableRowElement interface is a string indicating how to vertically align text in a tr table row.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/vAlign)\n     */\n    vAlign: string;\n    /**\n     * The **`deleteCell()`** method of the HTMLTableRowElement interface removes a specific row cell from a given tr.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/deleteCell)\n     */\n    deleteCell(index: number): void;\n    /**\n     * The **`insertCell()`** method of the HTMLTableRowElement interface inserts a new cell (td) into a table row (tr) and returns a reference to the cell.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/insertCell)\n     */\n    insertCell(index?: number): HTMLTableCellElement;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableRowElement: {\n    prototype: HTMLTableRowElement;\n    new(): HTMLTableRowElement;\n};\n\n/**\n * The **`HTMLTableSectionElement`** interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies (thead, tfoot, and tbody, respectively) in an HTML table.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement)\n */\ninterface HTMLTableSectionElement extends HTMLElement {\n    /**\n     * The **`align`** property of the HTMLTableSectionElement interface is a string indicating how to horizontally align text in a thead, tbody or tfoot table section.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/align)\n     */\n    align: string;\n    /**\n     * The **`ch`** property of the HTMLTableSectionElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/ch)\n     */\n    ch: string;\n    /**\n     * The **`chOff`** property of the HTMLTableSectionElement interface does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/chOff)\n     */\n    chOff: string;\n    /**\n     * The **`rows`** read-only property of the HTMLTableSectionElement interface returns a live HTMLCollection containing the rows in the section.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/rows)\n     */\n    readonly rows: HTMLCollectionOf<HTMLTableRowElement>;\n    /**\n     * The **`vAlign`** property of the HTMLTableSectionElement interface is a string indicating how to vertically align text in a thead, tbody or tfoot table section.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/vAlign)\n     */\n    vAlign: string;\n    /**\n     * The **`deleteRow()`** method of the HTMLTableSectionElement interface removes a specific row (tr) from a given section.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/deleteRow)\n     */\n    deleteRow(index: number): void;\n    /**\n     * The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or ```js-nolint insertRow() insertRow(index) ``` - `index` [MISSING: optional_inline] - : The row index of the new row.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/insertRow)\n     */\n    insertRow(index?: number): HTMLTableRowElement;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTableSectionElement: {\n    prototype: HTMLTableSectionElement;\n    new(): HTMLTableSectionElement;\n};\n\n/**\n * The **`HTMLTemplateElement`** interface enables access to the contents of an HTML template element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement)\n */\ninterface HTMLTemplateElement extends HTMLElement {\n    /**\n     * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a A DocumentFragment.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)\n     */\n    readonly content: DocumentFragment;\n    /**\n     * The **`shadowRootClonable`** property reflects the value of the `shadowrootclonable` attribute of the associated `<template>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)\n     */\n    shadowRootClonable: boolean;\n    /**\n     * The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the `shadowrootdelegatesfocus` attribute of the associated `<template>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootDelegatesFocus)\n     */\n    shadowRootDelegatesFocus: boolean;\n    /**\n     * The **`shadowRootMode`** property of the HTMLTemplateElement interface reflects the value of the `shadowrootmode` attribute of the associated `<template>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootMode)\n     */\n    shadowRootMode: string;\n    /**\n     * The **`shadowRootSerializable`** property reflects the value of the `shadowrootserializable` attribute of the associated `<template>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootSerializable)\n     */\n    shadowRootSerializable: boolean;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTemplateElement: {\n    prototype: HTMLTemplateElement;\n    new(): HTMLTemplateElement;\n};\n\n/**\n * The **`HTMLTextAreaElement`** interface provides properties and methods for manipulating the layout and presentation of textarea elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement)\n */\ninterface HTMLTextAreaElement extends HTMLElement {\n    /**\n     * The **`autocomplete`** property of the HTMLTextAreaElement interface indicates whether the value of the control can be automatically completed by the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/autocomplete)\n     */\n    autocomplete: AutoFill;\n    /**\n     * The **`cols`** property of the HTMLTextAreaElement interface is a positive integer representing the visible width of the multi-line text control, in average character widths.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/cols)\n     */\n    cols: number;\n    /**\n     * The **`defaultValue`** property of the HTMLTextAreaElement interface represents the default text content of this text area.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/defaultValue)\n     */\n    defaultValue: string;\n    /**\n     * The **`dirName`** property of the HTMLTextAreaElement interface is the directionality of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/dirName)\n     */\n    dirName: string;\n    /**\n     * The **`disabled`** property of the HTMLTextAreaElement interface indicates whether this multi-line text control is disabled and cannot be interacted with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`form`** read-only property of the HTMLTextAreaElement interface returns an HTMLFormElement object that owns this textarea, or `null` if this textarea is not owned by any form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/form)\n     */\n    readonly form: HTMLFormElement | null;\n    /**\n     * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<textArea>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)\n     */\n    readonly labels: NodeListOf<HTMLLabelElement>;\n    /**\n     * The **`maxLength`** property of the HTMLTextAreaElement interface indicates the maximum number of characters (in UTF-16 code units) allowed to be entered for the value of the textarea element, and the maximum number of characters allowed for the value to be valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/maxLength)\n     */\n    maxLength: number;\n    /**\n     * The **`minLength`** property of the HTMLTextAreaElement interface indicates the minimum number of characters (in UTF-16 code units) required for the value of the textarea element to be valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/minLength)\n     */\n    minLength: number;\n    /**\n     * The **`name`** property of the HTMLTextAreaElement interface indicates the name of the textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/name)\n     */\n    name: string;\n    /**\n     * The **`placeholder`** property of the HTMLTextAreaElement interface represents a hint to the user of what can be entered in the control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/placeholder)\n     */\n    placeholder: string;\n    /**\n     * The **`readOnly`** property of the HTMLTextAreaElement interface indicates that the user cannot modify the value of the control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/readOnly)\n     */\n    readOnly: boolean;\n    /**\n     * The **`required`** property of the HTMLTextAreaElement interface specifies that the user must fill in a value before submitting a form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/required)\n     */\n    required: boolean;\n    /**\n     * The **`rows`** property of the HTMLTextAreaElement interface is a positive integer representing the visible text lines of the text control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)\n     */\n    rows: number;\n    /**\n     * <!-- --> The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection)\n     */\n    selectionDirection: \"forward\" | \"backward\" | \"none\";\n    /**\n     * The **`selectionEnd`** property of the HTMLTextAreaElement interface specifies the end position of the current text selection in a textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)\n     */\n    selectionEnd: number;\n    /**\n     * The **`selectionStart`** property of the HTMLTextAreaElement interface specifies the start position of the current text selection in a textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)\n     */\n    selectionStart: number;\n    /**\n     * The **`textLength`** read-only property of the HTMLTextAreaElement interface is a non-negative integer representing the number of characters, in UTF-16 code units, of the textarea element's value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength)\n     */\n    readonly textLength: number;\n    /**\n     * The **`type`** read-only property of the HTMLTextAreaElement interface returns the string `'textarea'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/type)\n     */\n    readonly type: string;\n    /**\n     * The **`validationMessage`** read-only property of the HTMLTextAreaElement interface returns a string representing a localized message that describes the validation constraints that the textarea control does not satisfy (if any).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/validationMessage)\n     */\n    readonly validationMessage: string;\n    /**\n     * The **`validity`** read-only property of the HTMLTextAreaElement interface returns a ValidityState object that represents the validity states this element is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/validity)\n     */\n    readonly validity: ValidityState;\n    /**\n     * The **`value`** property of the HTMLTextAreaElement interface represents the value of the textarea element as a string, which is an empty string if the widget contains no content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/value)\n     */\n    value: string;\n    /**\n     * The **`willValidate`** read-only property of the HTMLTextAreaElement interface indicates whether the textarea element is a candidate for constraint validation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/willValidate)\n     */\n    readonly willValidate: boolean;\n    /**\n     * The **`wrap`** property of the HTMLTextAreaElement interface indicates how the control should wrap the value for form submission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/wrap)\n     */\n    wrap: string;\n    /**\n     * The **`checkValidity()`** method of the HTMLTextAreaElement interface returns a boolean value which indicates if the element meets any constraint validation rules applied to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/checkValidity)\n     */\n    checkValidity(): boolean;\n    /**\n     * The **`reportValidity()`** method of the HTMLTextAreaElement interface performs the same validity checking steps as the HTMLTextAreaElement.checkValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity)\n     */\n    reportValidity(): boolean;\n    /**\n     * The **`select()`** method of the HTMLTextAreaElement interface selects the entire contents of the textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)\n     */\n    select(): void;\n    /**\n     * The **`setCustomValidity()`** method of the HTMLTextAreaElement interface sets the custom validity message for the textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setCustomValidity)\n     */\n    setCustomValidity(error: string): void;\n    /**\n     * The **`setRangeText()`** method of the HTMLTextAreaElement interface replaces a range of text in a textarea element with new text passed as the argument.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText)\n     */\n    setRangeText(replacement: string): void;\n    setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;\n    /**\n     * The **`setSelectionRange()`** method of the HTMLTextAreaElement interface sets the start and end positions of the current text selection, and optionally the direction, in a textarea element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)\n     */\n    setSelectionRange(start: number | null, end: number | null, direction?: \"forward\" | \"backward\" | \"none\"): void;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTextAreaElement: {\n    prototype: HTMLTextAreaElement;\n    new(): HTMLTextAreaElement;\n};\n\n/**\n * The **`HTMLTimeElement`** interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating time elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTimeElement)\n */\ninterface HTMLTimeElement extends HTMLElement {\n    /**\n     * The **`dateTime`** property of the HTMLTimeElement interface is a string that reflects the `datetime` HTML attribute, containing a machine-readable form of the element's date and time value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTimeElement/dateTime)\n     */\n    dateTime: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTimeElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTimeElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTimeElement: {\n    prototype: HTMLTimeElement;\n    new(): HTMLTimeElement;\n};\n\n/**\n * The **`HTMLTitleElement`** interface is implemented by a document's title.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTitleElement)\n */\ninterface HTMLTitleElement extends HTMLElement {\n    /**\n     * The **`text`** property of the HTMLTitleElement interface represents the child text content of the document's title as a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTitleElement/text)\n     */\n    text: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTitleElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTitleElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTitleElement: {\n    prototype: HTMLTitleElement;\n    new(): HTMLTitleElement;\n};\n\n/**\n * The **`HTMLTrackElement`** interface represents an HTML track element within the DOM.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)\n */\ninterface HTMLTrackElement extends HTMLElement {\n    /**\n     * The **`default`** property of the HTMLTrackElement interface represents whether the track will be enabled if the user's preferences do not indicate that another track would be more appropriate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default)\n     */\n    default: boolean;\n    /**\n     * The **`kind`** property of the HTMLTrackElement interface represents the type of track, or how the text track is meant to be used.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind)\n     */\n    kind: string;\n    /**\n     * The **`label`** property of the HTMLTrackElement represents the user-readable title displayed when listing subtitle, caption, and audio descriptions for a track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label)\n     */\n    label: string;\n    /**\n     * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state: 0.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`src`** property of the HTMLTrackElement interface reflects the value of the track element's `src` attribute, which indicates the URL of the text track's data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src)\n     */\n    src: string;\n    /**\n     * The **`srclang`** property of the HTMLTrackElement interface reflects the value of the track element's `srclang` attribute or the empty string if not defined.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang)\n     */\n    srclang: string;\n    /**\n     * The **`track`** read-only property of the HTMLTrackElement interface returns a TextTrack object corresponding to the text track of the track element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)\n     */\n    readonly track: TextTrack;\n    readonly NONE: 0;\n    readonly LOADING: 1;\n    readonly LOADED: 2;\n    readonly ERROR: 3;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTrackElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTrackElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLTrackElement: {\n    prototype: HTMLTrackElement;\n    new(): HTMLTrackElement;\n    readonly NONE: 0;\n    readonly LOADING: 1;\n    readonly LOADED: 2;\n    readonly ERROR: 3;\n};\n\n/**\n * The **`HTMLUListElement`** interface provides special properties (beyond those defined on the regular HTMLElement interface it also has available to it by inheritance) for manipulating unordered list (ul) elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement)\n */\ninterface HTMLUListElement extends HTMLElement {\n    /** @deprecated */\n    compact: boolean;\n    /** @deprecated */\n    type: string;\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLUListElement: {\n    prototype: HTMLUListElement;\n    new(): HTMLUListElement;\n};\n\n/**\n * The **`HTMLUnknownElement`** interface represents an invalid HTML element and derives from the HTMLElement interface, but without implementing any additional properties or methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUnknownElement)\n */\ninterface HTMLUnknownElement extends HTMLElement {\n    addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUnknownElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUnknownElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLUnknownElement: {\n    prototype: HTMLUnknownElement;\n    new(): HTMLUnknownElement;\n};\n\ninterface HTMLVideoElementEventMap extends HTMLMediaElementEventMap {\n    \"enterpictureinpicture\": PictureInPictureEvent;\n    \"leavepictureinpicture\": PictureInPictureEvent;\n}\n\n/**\n * Implemented by the video element, the **`HTMLVideoElement`** interface provides special properties and methods for manipulating video objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement)\n */\ninterface HTMLVideoElement extends HTMLMediaElement {\n    /**\n     * The HTMLVideoElement **`disablePictureInPicture`** property reflects the HTML attribute indicating whether the picture-in-picture feature is disabled for the current element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/disablePictureInPicture)\n     */\n    disablePictureInPicture: boolean;\n    /**\n     * The **`height`** property of the HTMLVideoElement interface returns an integer that reflects the `height` attribute of the video element, specifying the displayed height of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/height)\n     */\n    height: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/enterpictureinpicture_event) */\n    onenterpictureinpicture: ((this: HTMLVideoElement, ev: PictureInPictureEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/leavepictureinpicture_event) */\n    onleavepictureinpicture: ((this: HTMLVideoElement, ev: PictureInPictureEvent) => any) | null;\n    playsInline: boolean;\n    /**\n     * The **`poster`** property of the HTMLVideoElement interface is a string that reflects the URL for an image to be shown while no video data is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/poster)\n     */\n    poster: string;\n    /**\n     * The HTMLVideoElement interface's read-only **`videoHeight`** property indicates the intrinsic height of the video, expressed in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/videoHeight)\n     */\n    readonly videoHeight: number;\n    /**\n     * The HTMLVideoElement interface's read-only **`videoWidth`** property indicates the intrinsic width of the video, expressed in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/videoWidth)\n     */\n    readonly videoWidth: number;\n    /**\n     * The **`width`** property of the HTMLVideoElement interface returns an integer that reflects the `width` attribute of the video element, specifying the displayed width of the resource in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/width)\n     */\n    width: number;\n    /**\n     * The **`cancelVideoFrameCallback()`** method of the HTMLVideoElement interface cancels a previously-registered video frame callback.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/cancelVideoFrameCallback)\n     */\n    cancelVideoFrameCallback(handle: number): void;\n    /**\n     * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a frames have been lost.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality)\n     */\n    getVideoPlaybackQuality(): VideoPlaybackQuality;\n    /**\n     * The **HTMLVideoElement** method **`requestPictureInPicture()`** issues an asynchronous request to display the video in picture-in-picture mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestPictureInPicture)\n     */\n    requestPictureInPicture(): Promise<PictureInPictureWindow>;\n    /**\n     * The **`requestVideoFrameCallback()`** method of the HTMLVideoElement interface registers a callback function that runs when a new video frame is sent to the compositor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/requestVideoFrameCallback)\n     */\n    requestVideoFrameCallback(callback: VideoFrameRequestCallback): number;\n    addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var HTMLVideoElement: {\n    prototype: HTMLVideoElement;\n    new(): HTMLVideoElement;\n};\n\n/**\n * The **`HashChangeEvent`** interface represents events that fire when the fragment identifier of the URL has changed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent)\n */\ninterface HashChangeEvent extends Event {\n    /**\n     * The **`newURL`** read-only property of the navigating.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/newURL)\n     */\n    readonly newURL: string;\n    /**\n     * The **`oldURL`** read-only property of the was navigated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/oldURL)\n     */\n    readonly oldURL: string;\n}\n\ndeclare var HashChangeEvent: {\n    prototype: HashChangeEvent;\n    new(type: string, eventInitDict?: HashChangeEventInit): HashChangeEvent;\n};\n\n/**\n * The **`Headers`** interface of the Fetch API allows you to perform various actions on HTTP request and response headers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers)\n */\ninterface Headers {\n    /**\n     * The **`append()`** method of the Headers interface appends a new value onto an existing header inside a `Headers` object, or adds the header if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/append)\n     */\n    append(name: string, value: string): void;\n    /**\n     * The **`delete()`** method of the Headers interface deletes a header from the current `Headers` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/delete)\n     */\n    delete(name: string): void;\n    /**\n     * The **`get()`** method of the Headers interface returns a byte string of all the values of a header within a `Headers` object with a given name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/get)\n     */\n    get(name: string): string | null;\n    /**\n     * The **`getSetCookie()`** method of the Headers interface returns an array containing the values of all Set-Cookie headers associated with a response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/getSetCookie)\n     */\n    getSetCookie(): string[];\n    /**\n     * The **`has()`** method of the Headers interface returns a boolean stating whether a `Headers` object contains a certain header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/has)\n     */\n    has(name: string): boolean;\n    /**\n     * The **`set()`** method of the Headers interface sets a new value for an existing header inside a `Headers` object, or adds the header if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/set)\n     */\n    set(name: string, value: string): void;\n    forEach(callbackfn: (value: string, key: string, parent: Headers) => void, thisArg?: any): void;\n}\n\ndeclare var Headers: {\n    prototype: Headers;\n    new(init?: HeadersInit): Headers;\n};\n\n/**\n * The **`Highlight`** interface of the CSS Custom Highlight API is used to represent a collection of Range instances to be styled using the API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight)\n */\ninterface Highlight {\n    /**\n     * It is possible to create Range objects that overlap in a document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)\n     */\n    priority: number;\n    /**\n     * The `type` property of the Highlight interface is an enumerated String used to specify the meaning of the highlight.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/type)\n     */\n    type: HighlightType;\n    forEach(callbackfn: (value: AbstractRange, key: AbstractRange, parent: Highlight) => void, thisArg?: any): void;\n}\n\ndeclare var Highlight: {\n    prototype: Highlight;\n    new(...initialRanges: AbstractRange[]): Highlight;\n};\n\n/**\n * The **`HighlightRegistry`** interface of the CSS Custom Highlight API is used to register Highlight objects to be styled using the API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HighlightRegistry)\n */\ninterface HighlightRegistry {\n    forEach(callbackfn: (value: Highlight, key: string, parent: HighlightRegistry) => void, thisArg?: any): void;\n}\n\ndeclare var HighlightRegistry: {\n    prototype: HighlightRegistry;\n    new(): HighlightRegistry;\n};\n\n/**\n * The **`History`** interface of the History API allows manipulation of the browser _session history_, that is the pages visited in the tab or frame that the current page is loaded in.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History)\n */\ninterface History {\n    /**\n     * The **`length`** read-only property of the History interface returns an integer representing the number of entries in the session history, including the currently loaded page.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/length)\n     */\n    readonly length: number;\n    /**\n     * The **`scrollRestoration`** property of the History interface allows web applications to explicitly set default scroll restoration behavior on history navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/scrollRestoration)\n     */\n    scrollRestoration: ScrollRestoration;\n    /**\n     * The **`state`** read-only property of the History interface returns a value representing the state at the top of the history stack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/state)\n     */\n    readonly state: any;\n    /**\n     * The **`back()`** method of the History interface causes the browser to move back one page in the session history.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/back)\n     */\n    back(): void;\n    /**\n     * The **`forward()`** method of the History interface causes the browser to move forward one page in the session history.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/forward)\n     */\n    forward(): void;\n    /**\n     * The **`go()`** method of the History interface loads a specific page from the session history.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/go)\n     */\n    go(delta?: number): void;\n    /**\n     * The **`pushState()`** method of the History interface adds an entry to the browser's session history stack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/pushState)\n     */\n    pushState(data: any, unused: string, url?: string | URL | null): void;\n    /**\n     * The **`replaceState()`** method of the History interface modifies the current history entry, replacing it with the state object and URL passed in the method parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/History/replaceState)\n     */\n    replaceState(data: any, unused: string, url?: string | URL | null): void;\n}\n\ndeclare var History: {\n    prototype: History;\n    new(): History;\n};\n\n/**\n * The **`IDBCursor`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor)\n */\ninterface IDBCursor {\n    /**\n     * The **`direction`** read-only property of the direction of traversal of the cursor (set using section below for possible values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)\n     */\n    readonly direction: IDBCursorDirection;\n    /**\n     * The **`key`** read-only property of the position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)\n     */\n    readonly key: IDBValidKey;\n    /**\n     * The **`primaryKey`** read-only property of the cursor is currently being iterated or has iterated outside its range, this is set to undefined.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)\n     */\n    readonly primaryKey: IDBValidKey;\n    /**\n     * The **`request`** read-only property of the IDBCursor interface returns the IDBRequest used to obtain the cursor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/request)\n     */\n    readonly request: IDBRequest;\n    /**\n     * The **`source`** read-only property of the null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)\n     */\n    readonly source: IDBObjectStore | IDBIndex;\n    /**\n     * The **`advance()`** method of the IDBCursor interface sets the number of times a cursor should move its position forward.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/advance)\n     */\n    advance(count: number): void;\n    /**\n     * The **`continue()`** method of the IDBCursor interface advances the cursor to the next position along its direction, to the item whose key matches the optional key parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continue)\n     */\n    continue(key?: IDBValidKey): void;\n    /**\n     * The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)\n     */\n    continuePrimaryKey(key: IDBValidKey, primaryKey: IDBValidKey): void;\n    /**\n     * The **`delete()`** method of the IDBCursor interface returns an IDBRequest object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/delete)\n     */\n    delete(): IDBRequest<undefined>;\n    /**\n     * The **`update()`** method of the IDBCursor interface returns an IDBRequest object, and, in a separate thread, updates the value at the current position of the cursor in the object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/update)\n     */\n    update(value: any): IDBRequest<IDBValidKey>;\n}\n\ndeclare var IDBCursor: {\n    prototype: IDBCursor;\n    new(): IDBCursor;\n};\n\n/**\n * The **`IDBCursorWithValue`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue)\n */\ninterface IDBCursorWithValue extends IDBCursor {\n    /**\n     * The **`value`** read-only property of the whatever that is.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)\n     */\n    readonly value: any;\n}\n\ndeclare var IDBCursorWithValue: {\n    prototype: IDBCursorWithValue;\n    new(): IDBCursorWithValue;\n};\n\ninterface IDBDatabaseEventMap {\n    \"abort\": Event;\n    \"close\": Event;\n    \"error\": Event;\n    \"versionchange\": IDBVersionChangeEvent;\n}\n\n/**\n * The **`IDBDatabase`** interface of the IndexedDB API provides a connection to a database; you can use an `IDBDatabase` object to open a transaction on your database then create, manipulate, and delete objects (data) in that database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase)\n */\ninterface IDBDatabase extends EventTarget {\n    /**\n     * The **`name`** read-only property of the `IDBDatabase` interface is a string that contains the name of the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/name)\n     */\n    readonly name: string;\n    /**\n     * The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)\n     */\n    readonly objectStoreNames: DOMStringList;\n    onabort: ((this: IDBDatabase, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */\n    onclose: ((this: IDBDatabase, ev: Event) => any) | null;\n    onerror: ((this: IDBDatabase, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/versionchange_event) */\n    onversionchange: ((this: IDBDatabase, ev: IDBVersionChangeEvent) => any) | null;\n    /**\n     * The **`version`** property of the IDBDatabase interface is a 64-bit integer that contains the version of the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/version)\n     */\n    readonly version: number;\n    /**\n     * The **`close()`** method of the IDBDatabase interface returns immediately and closes the connection in a separate thread.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close)\n     */\n    close(): void;\n    /**\n     * The **`createObjectStore()`** method of the The method takes the name of the store as well as a parameter object that lets you define important optional properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)\n     */\n    createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;\n    /**\n     * The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)\n     */\n    deleteObjectStore(name: string): void;\n    /**\n     * The **`transaction`** method of the IDBDatabase interface immediately returns a transaction object (IDBTransaction) containing the IDBTransaction.objectStore method, which you can use to access your object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/transaction)\n     */\n    transaction(storeNames: string | string[], mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction;\n    addEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBDatabase: {\n    prototype: IDBDatabase;\n    new(): IDBDatabase;\n};\n\n/**\n * The **`IDBFactory`** interface of the IndexedDB API lets applications asynchronously access the indexed databases.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory)\n */\ninterface IDBFactory {\n    /**\n     * The **`cmp()`** method of the IDBFactory interface compares two values as keys to determine equality and ordering for IndexedDB operations, such as storing and iterating.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/cmp)\n     */\n    cmp(first: any, second: any): number;\n    /**\n     * The **`databases`** method of the IDBFactory interface returns a Promise that fulfills with an array of objects containing the name and version of all the available databases.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/databases)\n     */\n    databases(): Promise<IDBDatabaseInfo[]>;\n    /**\n     * The **`deleteDatabase()`** method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)\n     */\n    deleteDatabase(name: string): IDBOpenDBRequest;\n    /**\n     * The **`open()`** method of the IDBFactory interface requests opening a connection to a database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/open)\n     */\n    open(name: string, version?: number): IDBOpenDBRequest;\n}\n\ndeclare var IDBFactory: {\n    prototype: IDBFactory;\n    new(): IDBFactory;\n};\n\n/**\n * `IDBIndex` interface of the IndexedDB API provides asynchronous access to an index in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex)\n */\ninterface IDBIndex {\n    /**\n     * The **`keyPath`** property of the IDBIndex interface returns the key path of the current index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/keyPath)\n     */\n    readonly keyPath: string | string[];\n    /**\n     * The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)\n     */\n    readonly multiEntry: boolean;\n    /**\n     * The **`name`** property of the IDBIndex interface contains a string which names the index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/name)\n     */\n    name: string;\n    /**\n     * The **`objectStore`** property of the IDBIndex interface returns the object store referenced by the current index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/objectStore)\n     */\n    readonly objectStore: IDBObjectStore;\n    /**\n     * The **`unique`** read-only property returns a boolean that states whether the index allows duplicate keys.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/unique)\n     */\n    readonly unique: boolean;\n    /**\n     * The **`count()`** method of the IDBIndex interface returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/count)\n     */\n    count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;\n    /**\n     * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an If a value is found, then a structured clone of it is created and set as the `result` of the request object: this returns the record the key is associated with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)\n     */\n    get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;\n    /**\n     * The **`getAll()`** method of the IDBIndex interface retrieves all objects that are inside the index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)\n     */\n    getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;\n    /**\n     * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)\n     */\n    getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;\n    /**\n     * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an If a primary key is found, it is set as the `result` of the request object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)\n     */\n    getKey(query: IDBValidKey | IDBKeyRange): IDBRequest<IDBValidKey | undefined>;\n    /**\n     * The **`openCursor()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openCursor)\n     */\n    openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;\n    /**\n     * The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)\n     */\n    openKeyCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursor | null>;\n}\n\ndeclare var IDBIndex: {\n    prototype: IDBIndex;\n    new(): IDBIndex;\n};\n\n/**\n * The **`IDBKeyRange`** interface of the IndexedDB API represents a continuous interval over some data type that is used for keys.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange)\n */\ninterface IDBKeyRange {\n    /**\n     * The **`lower`** read-only property of the The lower bound of the key range (can be any type.) The following example illustrates how you'd use a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)\n     */\n    readonly lower: any;\n    /**\n     * The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)\n     */\n    readonly lowerOpen: boolean;\n    /**\n     * The **`upper`** read-only property of the The upper bound of the key range (can be any type.) The following example illustrates how you'd use a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)\n     */\n    readonly upper: any;\n    /**\n     * The **`upperOpen`** read-only property of the upper-bound value is included in the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)\n     */\n    readonly upperOpen: boolean;\n    /**\n     * The `includes()` method of the IDBKeyRange interface returns a boolean indicating whether a specified key is inside the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/includes)\n     */\n    includes(key: any): boolean;\n}\n\ndeclare var IDBKeyRange: {\n    prototype: IDBKeyRange;\n    new(): IDBKeyRange;\n    /**\n     * The **`bound()`** static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)\n     */\n    bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;\n    /**\n     * The **`lowerBound()`** static method of the By default, it includes the lower endpoint value and is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)\n     */\n    lowerBound(lower: any, open?: boolean): IDBKeyRange;\n    /**\n     * The **`only()`** static method of the IDBKeyRange interface creates a new key range containing a single value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)\n     */\n    only(value: any): IDBKeyRange;\n    /**\n     * The **`upperBound()`** static method of the it includes the upper endpoint value and is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)\n     */\n    upperBound(upper: any, open?: boolean): IDBKeyRange;\n};\n\n/**\n * The **`IDBObjectStore`** interface of the IndexedDB API represents an object store in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore)\n */\ninterface IDBObjectStore {\n    /**\n     * The **`autoIncrement`** read-only property of the for this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)\n     */\n    readonly autoIncrement: boolean;\n    /**\n     * The **`indexNames`** read-only property of the in this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)\n     */\n    readonly indexNames: DOMStringList;\n    /**\n     * The **`keyPath`** read-only property of the If this property is null, the application must provide a key for each modification operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)\n     */\n    readonly keyPath: string | string[] | null;\n    /**\n     * The **`name`** property of the IDBObjectStore interface indicates the name of this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/name)\n     */\n    name: string;\n    /**\n     * The **`transaction`** read-only property of the object store belongs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)\n     */\n    readonly transaction: IDBTransaction;\n    /**\n     * The **`add()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, creates a structured clone of the value, and stores the cloned value in the object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/add)\n     */\n    add(value: any, key?: IDBValidKey): IDBRequest<IDBValidKey>;\n    /**\n     * The **`clear()`** method of the IDBObjectStore interface creates and immediately returns an IDBRequest object, and clears this object store in a separate thread.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/clear)\n     */\n    clear(): IDBRequest<undefined>;\n    /**\n     * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or of records in the store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)\n     */\n    count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;\n    /**\n     * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)\n     */\n    createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;\n    /**\n     * The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)\n     */\n    delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;\n    /**\n     * The **`deleteIndex()`** method of the the connected database, used during a version upgrade.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)\n     */\n    deleteIndex(name: string): void;\n    /**\n     * The **`get()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object selected by the specified key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/get)\n     */\n    get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;\n    /**\n     * The **`getAll()`** method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)\n     */\n    getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;\n    /**\n     * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)\n     */\n    getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;\n    /**\n     * The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)\n     */\n    getKey(query: IDBValidKey | IDBKeyRange): IDBRequest<IDBValidKey | undefined>;\n    /**\n     * The **`index()`** method of the IDBObjectStore interface opens a named index in the current object store, after which it can be used to, for example, return a series of records sorted by that index using a cursor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/index)\n     */\n    index(name: string): IDBIndex;\n    /**\n     * The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)\n     */\n    openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;\n    /**\n     * The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)\n     */\n    openKeyCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursor | null>;\n    /**\n     * The **`put()`** method of the IDBObjectStore interface updates a given record in a database, or inserts a new record if the given item does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/put)\n     */\n    put(value: any, key?: IDBValidKey): IDBRequest<IDBValidKey>;\n}\n\ndeclare var IDBObjectStore: {\n    prototype: IDBObjectStore;\n    new(): IDBObjectStore;\n};\n\ninterface IDBOpenDBRequestEventMap extends IDBRequestEventMap {\n    \"blocked\": IDBVersionChangeEvent;\n    \"upgradeneeded\": IDBVersionChangeEvent;\n}\n\n/**\n * The **`IDBOpenDBRequest`** interface of the IndexedDB API provides access to the results of requests to open or delete databases (performed using IDBFactory.open and IDBFactory.deleteDatabase), using specific event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest)\n */\ninterface IDBOpenDBRequest extends IDBRequest<IDBDatabase> {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest/blocked_event) */\n    onblocked: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest/upgradeneeded_event) */\n    onupgradeneeded: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;\n    addEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBOpenDBRequest: {\n    prototype: IDBOpenDBRequest;\n    new(): IDBOpenDBRequest;\n};\n\ninterface IDBRequestEventMap {\n    \"error\": Event;\n    \"success\": Event;\n}\n\n/**\n * The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)\n */\ninterface IDBRequest<T = any> extends EventTarget {\n    /**\n     * The **`error`** read-only property of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)\n     */\n    readonly error: DOMException | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error_event) */\n    onerror: ((this: IDBRequest<T>, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */\n    onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the Every request starts in the `pending` state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)\n     */\n    readonly readyState: IDBRequestReadyState;\n    /**\n     * The **`result`** read-only property of the any - `InvalidStateError` DOMException - : Thrown when attempting to access the property if the request is not completed, and therefore the result is not available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)\n     */\n    readonly result: T;\n    /**\n     * The **`source`** read-only property of the Index or an object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)\n     */\n    readonly source: IDBObjectStore | IDBIndex | IDBCursor;\n    /**\n     * The **`transaction`** read-only property of the IDBRequest interface returns the transaction for the request, that is, the transaction the request is being made inside.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/transaction)\n     */\n    readonly transaction: IDBTransaction | null;\n    addEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest<T>, ev: IDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest<T>, ev: IDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBRequest: {\n    prototype: IDBRequest;\n    new(): IDBRequest;\n};\n\ninterface IDBTransactionEventMap {\n    \"abort\": Event;\n    \"complete\": Event;\n    \"error\": Event;\n}\n\n/**\n * The **`IDBTransaction`** interface of the IndexedDB API provides a static, asynchronous transaction on a database using event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction)\n */\ninterface IDBTransaction extends EventTarget {\n    /**\n     * The **`db`** read-only property of the IDBTransaction interface returns the database connection with which this transaction is associated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/db)\n     */\n    readonly db: IDBDatabase;\n    /**\n     * The **`durability`** read-only property of the IDBTransaction interface returns the durability hint the transaction was created with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/durability)\n     */\n    readonly durability: IDBTransactionDurability;\n    /**\n     * The **`IDBTransaction.error`** property of the IDBTransaction interface returns the type of error when there is an unsuccessful transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/error)\n     */\n    readonly error: DOMException | null;\n    /**\n     * The **`mode`** read-only property of the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)\n     */\n    readonly mode: IDBTransactionMode;\n    /**\n     * The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)\n     */\n    readonly objectStoreNames: DOMStringList;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */\n    onabort: ((this: IDBTransaction, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/complete_event) */\n    oncomplete: ((this: IDBTransaction, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/error_event) */\n    onerror: ((this: IDBTransaction, ev: Event) => any) | null;\n    /**\n     * The **`abort()`** method of the IDBTransaction interface rolls back all the changes to objects in the database associated with this transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort)\n     */\n    abort(): void;\n    /**\n     * The **`commit()`** method of the IDBTransaction interface commits the transaction if it is called on an active transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/commit)\n     */\n    commit(): void;\n    /**\n     * The **`objectStore()`** method of the added to the scope of this transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)\n     */\n    objectStore(name: string): IDBObjectStore;\n    addEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBTransaction: {\n    prototype: IDBTransaction;\n    new(): IDBTransaction;\n};\n\n/**\n * The **`IDBVersionChangeEvent`** interface of the IndexedDB API indicates that the version of the database has changed, as the result of an IDBOpenDBRequest.upgradeneeded_event event handler function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent)\n */\ninterface IDBVersionChangeEvent extends Event {\n    /**\n     * The **`newVersion`** read-only property of the database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)\n     */\n    readonly newVersion: number | null;\n    /**\n     * The **`oldVersion`** read-only property of the database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)\n     */\n    readonly oldVersion: number;\n}\n\ndeclare var IDBVersionChangeEvent: {\n    prototype: IDBVersionChangeEvent;\n    new(type: string, eventInitDict?: IDBVersionChangeEventInit): IDBVersionChangeEvent;\n};\n\n/**\n * The **`IIRFilterNode`** interface of the Web Audio API is a AudioNode processor which implements a general **infinite impulse response** (IIR) filter; this type of filter can be used to implement tone control devices and graphic equalizers as well.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IIRFilterNode)\n */\ninterface IIRFilterNode extends AudioNode {\n    /**\n     * The `getFrequencyResponse()` method of the IIRFilterNode interface takes the current filtering algorithm's settings and calculates the frequency response for frequencies specified in a specified array of frequencies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IIRFilterNode/getFrequencyResponse)\n     */\n    getFrequencyResponse(frequencyHz: Float32Array<ArrayBuffer>, magResponse: Float32Array<ArrayBuffer>, phaseResponse: Float32Array<ArrayBuffer>): void;\n}\n\ndeclare var IIRFilterNode: {\n    prototype: IIRFilterNode;\n    new(context: BaseAudioContext, options: IIRFilterOptions): IIRFilterNode;\n};\n\n/**\n * The `IdleDeadline` interface is used as the data type of the input parameter to idle callbacks established by calling Window.requestIdleCallback().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IdleDeadline)\n */\ninterface IdleDeadline {\n    /**\n     * The read-only **`didTimeout`** property on the **IdleDeadline** interface is a Boolean value which indicates whether or not the idle callback is being invoked because the timeout interval specified when Window.requestIdleCallback() was called has expired.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IdleDeadline/didTimeout)\n     */\n    readonly didTimeout: boolean;\n    /**\n     * The **`timeRemaining()`** method on the IdleDeadline interface returns the estimated number of milliseconds remaining in the current idle period.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IdleDeadline/timeRemaining)\n     */\n    timeRemaining(): DOMHighResTimeStamp;\n}\n\ndeclare var IdleDeadline: {\n    prototype: IdleDeadline;\n    new(): IdleDeadline;\n};\n\n/**\n * The **`ImageBitmap`** interface represents a bitmap image which can be drawn to a canvas without undue latency.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap)\n */\ninterface ImageBitmap {\n    /**\n     * The **`ImageBitmap.height`** read-only property returns the ImageBitmap object's height in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/height)\n     */\n    readonly height: number;\n    /**\n     * The **`ImageBitmap.width`** read-only property returns the ImageBitmap object's width in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/width)\n     */\n    readonly width: number;\n    /**\n     * The **`ImageBitmap.close()`** method disposes of all graphical resources associated with an `ImageBitmap`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/close)\n     */\n    close(): void;\n}\n\ndeclare var ImageBitmap: {\n    prototype: ImageBitmap;\n    new(): ImageBitmap;\n};\n\n/**\n * The **`ImageBitmapRenderingContext`** interface is a canvas rendering context that provides the functionality to replace the canvas's contents with the given ImageBitmap.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext)\n */\ninterface ImageBitmapRenderingContext {\n    /**\n     * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the A HTMLCanvasElement or OffscreenCanvas object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/canvas)\n     */\n    readonly canvas: HTMLCanvasElement | OffscreenCanvas;\n    /**\n     * The **`ImageBitmapRenderingContext.transferFromImageBitmap()`** method displays the given ImageBitmap in the canvas associated with this rendering context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/transferFromImageBitmap)\n     */\n    transferFromImageBitmap(bitmap: ImageBitmap | null): void;\n}\n\ndeclare var ImageBitmapRenderingContext: {\n    prototype: ImageBitmapRenderingContext;\n    new(): ImageBitmapRenderingContext;\n};\n\n/**\n * The **`ImageCapture`** interface of the MediaStream Image Capture API provides methods to enable the capture of images or photos from a camera or other photographic device.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture)\n */\ninterface ImageCapture {\n    /**\n     * The **`track`** read-only property of the A MediaStreamTrack object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/track)\n     */\n    readonly track: MediaStreamTrack;\n    /**\n     * The **`getPhotoCapabilities()`** method of the ImageCapture interface returns a Promise that resolves with an object containing the ranges of available configuration options.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/getPhotoCapabilities)\n     */\n    getPhotoCapabilities(): Promise<PhotoCapabilities>;\n    /**\n     * The **`getPhotoSettings()`** method of the ImageCapture interface returns a Promise that resolves with an object containing the current photo configuration settings.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/getPhotoSettings)\n     */\n    getPhotoSettings(): Promise<PhotoSettings>;\n    /**\n     * The **`takePhoto()`** method of the device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/takePhoto)\n     */\n    takePhoto(photoSettings?: PhotoSettings): Promise<Blob>;\n}\n\ndeclare var ImageCapture: {\n    prototype: ImageCapture;\n    new(videoTrack: MediaStreamTrack): ImageCapture;\n};\n\n/**\n * The **`ImageData`** interface represents the underlying pixel data of an area of a canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData)\n */\ninterface ImageData {\n    /**\n     * The read-only **`ImageData.colorSpace`** property is a string indicating the color space of the image data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/colorSpace)\n     */\n    readonly colorSpace: PredefinedColorSpace;\n    /**\n     * The readonly **`ImageData.data`** property returns a pixel data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)\n     */\n    readonly data: ImageDataArray;\n    /**\n     * The readonly **`ImageData.height`** property returns the number of rows in the ImageData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/height)\n     */\n    readonly height: number;\n    /**\n     * The readonly **`ImageData.width`** property returns the number of pixels per row in the ImageData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/width)\n     */\n    readonly width: number;\n}\n\ndeclare var ImageData: {\n    prototype: ImageData;\n    new(sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    new(data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;\n};\n\n/**\n * The **`ImageDecoder`** interface of the WebCodecs API provides a way to unpack and decode encoded image data.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder)\n */\ninterface ImageDecoder {\n    /**\n     * The **`complete`** read-only property of the ImageDecoder interface returns true if encoded data has completed buffering.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/complete)\n     */\n    readonly complete: boolean;\n    /**\n     * The **`completed`** read-only property of the ImageDecoder interface returns a promise that resolves once encoded data has finished buffering.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/completed)\n     */\n    readonly completed: Promise<void>;\n    /**\n     * The **`tracks`** read-only property of the ImageDecoder interface returns a list of the tracks in the encoded image data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/tracks)\n     */\n    readonly tracks: ImageTrackList;\n    /**\n     * The **`type`** read-only property of the ImageDecoder interface reflects the MIME type configured during construction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/type)\n     */\n    readonly type: string;\n    /**\n     * The **`close()`** method of the ImageDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`decode()`** method of the ImageDecoder interface enqueues a control message to decode the frame of an image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/decode)\n     */\n    decode(options?: ImageDecodeOptions): Promise<ImageDecodeResult>;\n    /**\n     * The **`reset()`** method of the ImageDecoder interface aborts all pending `decode()` operations; rejecting all pending promises.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/reset)\n     */\n    reset(): void;\n}\n\ndeclare var ImageDecoder: {\n    prototype: ImageDecoder;\n    new(init: ImageDecoderInit): ImageDecoder;\n    /**\n     * The **`ImageDecoder.isTypeSupported()`** static method checks if a given MIME type can be decoded by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/isTypeSupported_static)\n     */\n    isTypeSupported(type: string): Promise<boolean>;\n};\n\n/**\n * The **`ImageTrack`** interface of the WebCodecs API represents an individual image track.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack)\n */\ninterface ImageTrack {\n    /**\n     * The **`animated`** property of the ImageTrack interface returns `true` if the track is animated and therefore has multiple frames.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/animated)\n     */\n    readonly animated: boolean;\n    /**\n     * The **`frameCount`** property of the ImageTrack interface returns the number of frames in the track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/frameCount)\n     */\n    readonly frameCount: number;\n    /**\n     * The **`repetitionCount`** property of the ImageTrack interface returns the number of repetitions of this track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/repetitionCount)\n     */\n    readonly repetitionCount: number;\n    /**\n     * The **`selected`** property of the ImageTrack interface returns `true` if the track is selected for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/selected)\n     */\n    selected: boolean;\n}\n\ndeclare var ImageTrack: {\n    prototype: ImageTrack;\n    new(): ImageTrack;\n};\n\n/**\n * The **`ImageTrackList`** interface of the WebCodecs API represents a list of image tracks.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList)\n */\ninterface ImageTrackList {\n    /**\n     * The **`length`** property of the ImageTrackList interface returns the length of the `ImageTrackList`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`ready`** property of the ImageTrackList interface returns a Promise that resolves when the `ImageTrackList` is populated with ImageTrack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`selectedIndex`** property of the ImageTrackList interface returns the `index` of the selected track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedIndex)\n     */\n    readonly selectedIndex: number;\n    /**\n     * The **`selectedTrack`** property of the ImageTrackList interface returns an ImageTrack object representing the currently selected track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedTrack)\n     */\n    readonly selectedTrack: ImageTrack | null;\n    [index: number]: ImageTrack;\n}\n\ndeclare var ImageTrackList: {\n    prototype: ImageTrackList;\n    new(): ImageTrackList;\n};\n\ninterface ImportMeta {\n    url: string;\n    resolve(specifier: string): string;\n}\n\n/**\n * The **`InputDeviceInfo`** interface of the Media Capture and Streams API gives access to the capabilities of the input device that it represents.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputDeviceInfo)\n */\ninterface InputDeviceInfo extends MediaDeviceInfo {\n    /**\n     * The **`getCapabilities()`** method of the InputDeviceInfo interface returns a `MediaTrackCapabilities` object describing the primary audio or video track of the device's MediaStream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputDeviceInfo/getCapabilities)\n     */\n    getCapabilities(): MediaTrackCapabilities;\n}\n\ndeclare var InputDeviceInfo: {\n    prototype: InputDeviceInfo;\n    new(): InputDeviceInfo;\n};\n\n/**\n * The **`InputEvent`** interface represents an event notifying the user of editable content changes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent)\n */\ninterface InputEvent extends UIEvent {\n    /**\n     * The **`data`** read-only property of the characters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data)\n     */\n    readonly data: string | null;\n    /**\n     * The **`dataTransfer`** read-only property of the containing information about richtext or plaintext data being added to or removed from editable content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer)\n     */\n    readonly dataTransfer: DataTransfer | null;\n    /**\n     * The **`inputType`** read-only property of the Possible changes include for example inserting, deleting, and formatting text.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/inputType)\n     */\n    readonly inputType: string;\n    /**\n     * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after A boolean.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/isComposing)\n     */\n    readonly isComposing: boolean;\n    /**\n     * The **`getTargetRanges()`** method of the InputEvent interface returns an array of StaticRange objects that will be affected by a change to the DOM if the input event is not canceled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/getTargetRanges)\n     */\n    getTargetRanges(): StaticRange[];\n}\n\ndeclare var InputEvent: {\n    prototype: InputEvent;\n    new(type: string, eventInitDict?: InputEventInit): InputEvent;\n};\n\n/**\n * The **`IntersectionObserver`** interface of the Intersection Observer API provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document's viewport.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver)\n */\ninterface IntersectionObserver {\n    /**\n     * The IntersectionObserver interface's read-only **`root`** property identifies the Element or of the viewport for the element which is the observer's target.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/root)\n     */\n    readonly root: Element | Document | null;\n    /**\n     * The IntersectionObserver interface's read-only **`rootMargin`** property is a string with syntax similar to that of the CSS margin property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/rootMargin)\n     */\n    readonly rootMargin: string;\n    /**\n     * The IntersectionObserver interface's read-only **`thresholds`** property returns the list of intersection thresholds that was specified when the observer was instantiated with only one threshold ratio was provided when instantiating the object, this will be an array containing that single value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/thresholds)\n     */\n    readonly thresholds: ReadonlyArray<number>;\n    /**\n     * The IntersectionObserver method **`disconnect()`** stops watching all of its target elements for visibility changes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The IntersectionObserver method **`observe()`** adds an element to the set of target elements being watched by the `IntersectionObserver`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/observe)\n     */\n    observe(target: Element): void;\n    /**\n     * The IntersectionObserver method **`takeRecords()`** returns an array of has experienced an intersection change since the last time the intersections were checked, either explicitly through a call to this method or implicitly by an automatic call to the observer's callback.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/takeRecords)\n     */\n    takeRecords(): IntersectionObserverEntry[];\n    /**\n     * The IntersectionObserver method **`unobserve()`** instructs the `IntersectionObserver` to stop observing the specified target element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserver/unobserve)\n     */\n    unobserve(target: Element): void;\n}\n\ndeclare var IntersectionObserver: {\n    prototype: IntersectionObserver;\n    new(callback: IntersectionObserverCallback, options?: IntersectionObserverInit): IntersectionObserver;\n};\n\n/**\n * The **`IntersectionObserverEntry`** interface of the Intersection Observer API describes the intersection between the target element and its root container at a specific moment of transition.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry)\n */\ninterface IntersectionObserverEntry {\n    /**\n     * The IntersectionObserverEntry interface's read-only **`boundingClientRect`** property returns a smallest rectangle that contains the entire target element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/boundingClientRect)\n     */\n    readonly boundingClientRect: DOMRectReadOnly;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`intersectionRatio`** property tells you how much of the target element is currently visible within the root's intersection ratio, as a value between 0.0 and 1.0.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/intersectionRatio)\n     */\n    readonly intersectionRatio: number;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`intersectionRect`** property is a contains the entire portion of the target element which is currently visible within the intersection root.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/intersectionRect)\n     */\n    readonly intersectionRect: DOMRectReadOnly;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`isIntersecting`** property is a Boolean value which is `true` if the target element intersects with the intersection observer's root.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/isIntersecting)\n     */\n    readonly isIntersecting: boolean;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`rootBounds`** property is a rectangle, offset by the IntersectionObserver.rootMargin if one is specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/rootBounds)\n     */\n    readonly rootBounds: DOMRectReadOnly | null;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`target`** property indicates which targeted root.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/target)\n     */\n    readonly target: Element;\n    /**\n     * The IntersectionObserverEntry interface's read-only **`time`** property is a change occurred relative to the time at which the document was created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IntersectionObserverEntry/time)\n     */\n    readonly time: DOMHighResTimeStamp;\n}\n\ndeclare var IntersectionObserverEntry: {\n    prototype: IntersectionObserverEntry;\n    new(): IntersectionObserverEntry;\n};\n\n/**\n * The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (`COMPLETION_STATUS_KHR`) can be queried without potentially incurring stalls.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile)\n */\ninterface KHR_parallel_shader_compile {\n    readonly COMPLETION_STATUS_KHR: 0x91B1;\n}\n\n/**\n * **`KeyboardEvent`** objects describe a user interaction with the keyboard; each event describes a single interaction between the user and a key (or combination of a key with modifier keys) on the keyboard.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent)\n */\ninterface KeyboardEvent extends UIEvent {\n    /**\n     * The **`KeyboardEvent.altKey`** read-only property is a boolean value that indicates if the <kbd>alt</kbd> key (<kbd>Option</kbd> or <kbd>⌥</kbd> on macOS) was pressed (`true`) or not (`false`) when the event occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/altKey)\n     */\n    readonly altKey: boolean;\n    /**\n     * The **`charCode`** read-only property of the pressed during a Element/keypress_event event.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/charCode)\n     */\n    readonly charCode: number;\n    /**\n     * The `KeyboardEvent.code` property represents a physical key on the keyboard (as opposed to the character generated by pressing the key).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/code)\n     */\n    readonly code: string;\n    /**\n     * The **`KeyboardEvent.ctrlKey`** read-only property returns a boolean value that indicates if the <kbd>control</kbd> key was pressed (`true`) or not (`false`) when the event occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/ctrlKey)\n     */\n    readonly ctrlKey: boolean;\n    /**\n     * The **`KeyboardEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired within a composition session, i.e., after Element/compositionstart_event and before Element/compositionend_event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/isComposing)\n     */\n    readonly isComposing: boolean;\n    /**\n     * The KeyboardEvent interface's **`key`** read-only property returns the value of the key pressed by the user, taking into consideration the state of modifier keys such as <kbd>Shift</kbd> as well as the keyboard locale and layout.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/key)\n     */\n    readonly key: string;\n    /**\n     * The deprecated **`KeyboardEvent.keyCode`** read-only property represents a system and implementation dependent numerical code identifying the unmodified value of the pressed key.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/keyCode)\n     */\n    readonly keyCode: number;\n    /**\n     * The **`KeyboardEvent.location`** read-only property returns an `unsigned long` representing the location of the key on the keyboard or other input device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/location)\n     */\n    readonly location: number;\n    /**\n     * The **`KeyboardEvent.metaKey`** read-only property returning a boolean value that indicates if the <kbd>Meta</kbd> key was pressed (`true`) or not (`false`) when the event occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/metaKey)\n     */\n    readonly metaKey: boolean;\n    /**\n     * The **`repeat`** read-only property of the `true` if the given key is being held down such that it is automatically repeating.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/repeat)\n     */\n    readonly repeat: boolean;\n    /**\n     * The **`KeyboardEvent.shiftKey`** read-only property is a boolean value that indicates if the <kbd>shift</kbd> key was pressed (`true`) or not (`false`) when the event occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/shiftKey)\n     */\n    readonly shiftKey: boolean;\n    /**\n     * The **`KeyboardEvent.getModifierState()`** method returns the current state of the specified modifier key: `true` if the modifier is active (that is the modifier key is pressed or locked), otherwise, `false`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/getModifierState)\n     */\n    getModifierState(keyArg: string): boolean;\n    /**\n     * The **`KeyboardEvent.initKeyboardEvent()`** method initializes the attributes of a keyboard event object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/initKeyboardEvent)\n     */\n    initKeyboardEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, keyArg?: string, locationArg?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean, metaKey?: boolean): void;\n    readonly DOM_KEY_LOCATION_STANDARD: 0x00;\n    readonly DOM_KEY_LOCATION_LEFT: 0x01;\n    readonly DOM_KEY_LOCATION_RIGHT: 0x02;\n    readonly DOM_KEY_LOCATION_NUMPAD: 0x03;\n}\n\ndeclare var KeyboardEvent: {\n    prototype: KeyboardEvent;\n    new(type: string, eventInitDict?: KeyboardEventInit): KeyboardEvent;\n    readonly DOM_KEY_LOCATION_STANDARD: 0x00;\n    readonly DOM_KEY_LOCATION_LEFT: 0x01;\n    readonly DOM_KEY_LOCATION_RIGHT: 0x02;\n    readonly DOM_KEY_LOCATION_NUMPAD: 0x03;\n};\n\n/**\n * The **`KeyframeEffect`** interface of the Web Animations API lets us create sets of animatable properties and values, called **keyframes.** These can then be played using the Animation.Animation constructor.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect)\n */\ninterface KeyframeEffect extends AnimationEffect {\n    /**\n     * The **`composite`** property of a KeyframeEffect resolves how an element's animation impacts its underlying property values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/composite)\n     */\n    composite: CompositeOperation;\n    /**\n     * The **`iterationComposite`** property of a KeyframeEffect resolves how the animation's property value changes accumulate or override each other upon each of the animation's iterations.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/iterationComposite)\n     */\n    iterationComposite: IterationCompositeOperation;\n    /**\n     * The **`pseudoElement`** property of a KeyframeEffect interface is a string representing the pseudo-element being animated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/pseudoElement)\n     */\n    pseudoElement: string | null;\n    /**\n     * The **`target`** property of a KeyframeEffect interface represents the element or pseudo-element being animated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/target)\n     */\n    target: Element | null;\n    /**\n     * The **`getKeyframes()`** method of a KeyframeEffect returns an Array of the computed keyframes that make up this animation along with their computed offsets.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/getKeyframes)\n     */\n    getKeyframes(): ComputedKeyframe[];\n    /**\n     * The **`setKeyframes()`** method of the KeyframeEffect interface replaces the keyframes that make up the affected `KeyframeEffect` with a new set of keyframes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyframeEffect/setKeyframes)\n     */\n    setKeyframes(keyframes: Keyframe[] | PropertyIndexedKeyframes | null): void;\n}\n\ndeclare var KeyframeEffect: {\n    prototype: KeyframeEffect;\n    new(target: Element | null, keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeEffectOptions): KeyframeEffect;\n    new(source: KeyframeEffect): KeyframeEffect;\n};\n\n/**\n * The `LargestContentfulPaint` interface provides timing information about the largest image or text paint before user input on a web page.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint)\n */\ninterface LargestContentfulPaint extends PerformanceEntry {\n    /**\n     * The **`element`** read-only property of the LargestContentfulPaint interface returns an object representing the Element that is the largest contentful paint.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/element)\n     */\n    readonly element: Element | null;\n    /**\n     * The **`id`** read-only property of the LargestContentfulPaint interface returns the ID of the element that is the largest contentful paint.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/id)\n     */\n    readonly id: string;\n    /**\n     * The **`loadTime`** read-only property of the LargestContentfulPaint interface returns the time that the element was loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/loadTime)\n     */\n    readonly loadTime: DOMHighResTimeStamp;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/renderTime) */\n    readonly renderTime: DOMHighResTimeStamp;\n    /**\n     * The **`size`** read-only property of the LargestContentfulPaint interface returns the intrinsic size of the element that is the largest contentful paint.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/size)\n     */\n    readonly size: number;\n    /**\n     * The **`url`** read-only property of the LargestContentfulPaint interface returns the request URL of the element, if the element is an image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/url)\n     */\n    readonly url: string;\n    /**\n     * The **`toJSON()`** method of the LargestContentfulPaint interface is a Serialization; it returns a JSON representation of the LargestContentfulPaint object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LargestContentfulPaint/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var LargestContentfulPaint: {\n    prototype: LargestContentfulPaint;\n    new(): LargestContentfulPaint;\n};\n\ninterface LinkStyle {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sheet) */\n    readonly sheet: CSSStyleSheet | null;\n}\n\n/**\n * The **`Location`** interface represents the location (URL) of the object it is linked to.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location)\n */\ninterface Location {\n    /**\n     * The **`ancestorOrigins`** read-only property of the Location interface is a static browsing contexts of the document associated with the given Location object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins)\n     */\n    readonly ancestorOrigins: DOMStringList;\n    /**\n     * The **`hash`** property of the Location interface is a string containing a `'#'` followed by the fragment identifier of the location URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/hash)\n     */\n    hash: string;\n    /**\n     * The **`host`** property of the Location interface is a string containing the host, which is the Location.hostname, and then, if the port of the URL is nonempty, a `':'`, followed by the Location.port of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/host)\n     */\n    host: string;\n    /**\n     * The **`hostname`** property of the Location interface is a string containing either the domain name or IP address of the location URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/hostname)\n     */\n    hostname: string;\n    /**\n     * The **`href`** property of the Location interface is a stringifier that returns a string containing the whole URL, and allows the href to be updated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/href)\n     */\n    href: string;\n    toString(): string;\n    /**\n     * The **`origin`** read-only property of the Location interface returns a string containing the Unicode serialization of the origin of the location's URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`pathname`** property of the Location interface is a string containing the path of the URL for the location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/pathname)\n     */\n    pathname: string;\n    /**\n     * The **`port`** property of the Location interface is a string containing the port number of the location's URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/port)\n     */\n    port: string;\n    /**\n     * The **`protocol`** property of the Location interface is a string containing the protocol or scheme of the location's URL, including the final `':'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/protocol)\n     */\n    protocol: string;\n    /**\n     * The **`search`** property of the Location interface is a search string, also called a _query string_, that is a string containing a `'?'` followed by the parameters of the location's URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/search)\n     */\n    search: string;\n    /**\n     * The **`assign()`** method of the Location interface causes the window to load and display the document at the URL specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/assign)\n     */\n    assign(url: string | URL): void;\n    /**\n     * The **`reload()`** method of the Location interface reloads the current URL, like the Refresh button.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/reload)\n     */\n    reload(): void;\n    /**\n     * The **`replace()`** method of the Location interface replaces the current resource with the one at the provided URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/replace)\n     */\n    replace(url: string | URL): void;\n}\n\ndeclare var Location: {\n    prototype: Location;\n    new(): Location;\n};\n\n/**\n * The **`Lock`** interface of the Web Locks API provides the name and mode of a lock.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock)\n */\ninterface Lock {\n    /**\n     * The **`mode`** read-only property of the Lock interface returns the access mode passed to LockManager.request() when the lock was requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/mode)\n     */\n    readonly mode: LockMode;\n    /**\n     * The **`name`** read-only property of the Lock interface returns the _name_ passed to The name of a lock is passed by script when the lock is requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)\n     */\n    readonly name: string;\n}\n\ndeclare var Lock: {\n    prototype: Lock;\n    new(): Lock;\n};\n\n/**\n * The **`LockManager`** interface of the Web Locks API provides methods for requesting a new Lock object and querying for an existing `Lock` object.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager)\n */\ninterface LockManager {\n    /**\n     * The **`query()`** method of the LockManager interface returns a Promise that resolves with an object containing information about held and pending locks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager/query)\n     */\n    query(): Promise<LockManagerSnapshot>;\n    /**\n     * The **`request()`** method of the LockManager interface requests a Lock object with parameters specifying its name and characteristics.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager/request)\n     */\n    request<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;\n    request<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;\n}\n\ndeclare var LockManager: {\n    prototype: LockManager;\n    new(): LockManager;\n};\n\ninterface MIDIAccessEventMap {\n    \"statechange\": MIDIConnectionEvent;\n}\n\n/**\n * The **`MIDIAccess`** interface of the Web MIDI API provides methods for listing MIDI input and output devices, and obtaining access to those devices.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIAccess)\n */\ninterface MIDIAccess extends EventTarget {\n    /**\n     * The **`inputs`** read-only property of the MIDIAccess interface provides access to any available MIDI input ports.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIAccess/inputs)\n     */\n    readonly inputs: MIDIInputMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIAccess/statechange_event) */\n    onstatechange: ((this: MIDIAccess, ev: MIDIConnectionEvent) => any) | null;\n    /**\n     * The **`outputs`** read-only property of the MIDIAccess interface provides access to any available MIDI output ports.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIAccess/outputs)\n     */\n    readonly outputs: MIDIOutputMap;\n    /**\n     * The **`sysexEnabled`** read-only property of the MIDIAccess interface indicates whether system exclusive support is enabled on the current MIDIAccess instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIAccess/sysexEnabled)\n     */\n    readonly sysexEnabled: boolean;\n    addEventListener<K extends keyof MIDIAccessEventMap>(type: K, listener: (this: MIDIAccess, ev: MIDIAccessEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MIDIAccessEventMap>(type: K, listener: (this: MIDIAccess, ev: MIDIAccessEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MIDIAccess: {\n    prototype: MIDIAccess;\n    new(): MIDIAccess;\n};\n\n/**\n * The **`MIDIConnectionEvent`** interface of the Web MIDI API is the event passed to the MIDIAccess.statechange_event event of the MIDIAccess interface and the MIDIPort.statechange_event event of the MIDIPort interface.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent)\n */\ninterface MIDIConnectionEvent extends Event {\n    /**\n     * The **`port`** read-only property of the MIDIConnectionEvent interface returns the port that has been disconnected or connected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port)\n     */\n    readonly port: MIDIPort | null;\n}\n\ndeclare var MIDIConnectionEvent: {\n    prototype: MIDIConnectionEvent;\n    new(type: string, eventInitDict?: MIDIConnectionEventInit): MIDIConnectionEvent;\n};\n\ninterface MIDIInputEventMap extends MIDIPortEventMap {\n    \"midimessage\": MIDIMessageEvent;\n}\n\n/**\n * The **`MIDIInput`** interface of the Web MIDI API receives messages from a MIDI input port.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIInput)\n */\ninterface MIDIInput extends MIDIPort {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIInput/midimessage_event) */\n    onmidimessage: ((this: MIDIInput, ev: MIDIMessageEvent) => any) | null;\n    addEventListener<K extends keyof MIDIInputEventMap>(type: K, listener: (this: MIDIInput, ev: MIDIInputEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MIDIInputEventMap>(type: K, listener: (this: MIDIInput, ev: MIDIInputEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MIDIInput: {\n    prototype: MIDIInput;\n    new(): MIDIInput;\n};\n\n/**\n * The **`MIDIInputMap`** read-only interface of the Web MIDI API provides the set of MIDI input ports that are currently available.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIInputMap)\n */\ninterface MIDIInputMap {\n    forEach(callbackfn: (value: MIDIInput, key: string, parent: MIDIInputMap) => void, thisArg?: any): void;\n}\n\ndeclare var MIDIInputMap: {\n    prototype: MIDIInputMap;\n    new(): MIDIInputMap;\n};\n\n/**\n * The **`MIDIMessageEvent`** interface of the Web MIDI API represents the event passed to the MIDIInput.midimessage_event event of the MIDIInput interface.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent)\n */\ninterface MIDIMessageEvent extends Event {\n    /**\n     * The **`data`** read-only property of the MIDIMessageEvent interface returns the MIDI data bytes of a single MIDI message.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data)\n     */\n    readonly data: Uint8Array<ArrayBuffer> | null;\n}\n\ndeclare var MIDIMessageEvent: {\n    prototype: MIDIMessageEvent;\n    new(type: string, eventInitDict?: MIDIMessageEventInit): MIDIMessageEvent;\n};\n\n/**\n * The **`MIDIOutput`** interface of the Web MIDI API provides methods to add messages to the queue of an output device, and to clear the queue of messages.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIOutput)\n */\ninterface MIDIOutput extends MIDIPort {\n    /**\n     * The **`send()`** method of the MIDIOutput interface queues messages for the corresponding MIDI port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIOutput/send)\n     */\n    send(data: number[], timestamp?: DOMHighResTimeStamp): void;\n    addEventListener<K extends keyof MIDIPortEventMap>(type: K, listener: (this: MIDIOutput, ev: MIDIPortEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MIDIPortEventMap>(type: K, listener: (this: MIDIOutput, ev: MIDIPortEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MIDIOutput: {\n    prototype: MIDIOutput;\n    new(): MIDIOutput;\n};\n\n/**\n * The **`MIDIOutputMap`** read-only interface of the Web MIDI API provides the set of MIDI output ports that are currently available.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIOutputMap)\n */\ninterface MIDIOutputMap {\n    forEach(callbackfn: (value: MIDIOutput, key: string, parent: MIDIOutputMap) => void, thisArg?: any): void;\n}\n\ndeclare var MIDIOutputMap: {\n    prototype: MIDIOutputMap;\n    new(): MIDIOutputMap;\n};\n\ninterface MIDIPortEventMap {\n    \"statechange\": MIDIConnectionEvent;\n}\n\n/**\n * The **`MIDIPort`** interface of the Web MIDI API represents a MIDI input or output port.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort)\n */\ninterface MIDIPort extends EventTarget {\n    /**\n     * The **`connection`** read-only property of the MIDIPort interface returns the connection state of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/connection)\n     */\n    readonly connection: MIDIPortConnectionState;\n    /**\n     * The **`id`** read-only property of the MIDIPort interface returns the unique ID of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/id)\n     */\n    readonly id: string;\n    /**\n     * The **`manufacturer`** read-only property of the MIDIPort interface returns the manufacturer of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/manufacturer)\n     */\n    readonly manufacturer: string | null;\n    /**\n     * The **`name`** read-only property of the MIDIPort interface returns the system name of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/name)\n     */\n    readonly name: string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/statechange_event) */\n    onstatechange: ((this: MIDIPort, ev: MIDIConnectionEvent) => any) | null;\n    /**\n     * The **`state`** read-only property of the MIDIPort interface returns the state of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/state)\n     */\n    readonly state: MIDIPortDeviceState;\n    /**\n     * The **`type`** read-only property of the MIDIPort interface returns the type of the port, indicating whether this is an input or output MIDI port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/type)\n     */\n    readonly type: MIDIPortType;\n    /**\n     * The **`version`** read-only property of the MIDIPort interface returns the version of the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/version)\n     */\n    readonly version: string | null;\n    /**\n     * The **`close()`** method of the MIDIPort interface makes the access to the MIDI device connected to this `MIDIPort` unavailable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/close)\n     */\n    close(): Promise<MIDIPort>;\n    /**\n     * The **`open()`** method of the MIDIPort interface makes the MIDI device connected to this `MIDIPort` explicitly available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIPort/open)\n     */\n    open(): Promise<MIDIPort>;\n    addEventListener<K extends keyof MIDIPortEventMap>(type: K, listener: (this: MIDIPort, ev: MIDIPortEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MIDIPortEventMap>(type: K, listener: (this: MIDIPort, ev: MIDIPortEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MIDIPort: {\n    prototype: MIDIPort;\n    new(): MIDIPort;\n};\n\ninterface MathMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventMap {\n}\n\n/**\n * The **`MathMLElement`** interface represents any MathML element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MathMLElement)\n */\ninterface MathMLElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {\n    addEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MathMLElementEventMap>(type: K, listener: (this: MathMLElement, ev: MathMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MathMLElement: {\n    prototype: MathMLElement;\n    new(): MathMLElement;\n};\n\n/**\n * The **`MediaCapabilities`** interface of the Media Capabilities API provides information about the decoding abilities of the device, system and browser.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities)\n */\ninterface MediaCapabilities {\n    /**\n     * The **`decodingInfo()`** method of the MediaCapabilities interface returns a promise that fulfils with information about how well the user agent can decode/display media with a given configuration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities/decodingInfo)\n     */\n    decodingInfo(configuration: MediaDecodingConfiguration): Promise<MediaCapabilitiesDecodingInfo>;\n    /**\n     * The **`encodingInfo()`** method of the MediaCapabilities interface returns a promise that fulfills with the tested media configuration's capabilities for encoding media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities/encodingInfo)\n     */\n    encodingInfo(configuration: MediaEncodingConfiguration): Promise<MediaCapabilitiesEncodingInfo>;\n}\n\ndeclare var MediaCapabilities: {\n    prototype: MediaCapabilities;\n    new(): MediaCapabilities;\n};\n\n/**\n * The **`MediaDeviceInfo`** interface of the Media Capture and Streams API contains information that describes a single media input or output device.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo)\n */\ninterface MediaDeviceInfo {\n    /**\n     * The **`deviceId`** read-only property of the MediaDeviceInfo interface returns a string that is an identifier for the represented device and is persisted across sessions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/deviceId)\n     */\n    readonly deviceId: string;\n    /**\n     * The **`groupId`** read-only property of the MediaDeviceInfo interface returns a string that is a group identifier.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/groupId)\n     */\n    readonly groupId: string;\n    /**\n     * The **`kind`** read-only property of the MediaDeviceInfo interface returns an enumerated value, that is either `'videoinput'`, `'audioinput'` or `'audiooutput'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/kind)\n     */\n    readonly kind: MediaDeviceKind;\n    /**\n     * The **`label`** read-only property of the MediaDeviceInfo interface returns a string describing this device (for example 'External USB Webcam').\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/label)\n     */\n    readonly label: string;\n    /**\n     * The **`toJSON()`** method of the MediaDeviceInfo interface is a Serialization; it returns a JSON representation of the MediaDeviceInfo object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var MediaDeviceInfo: {\n    prototype: MediaDeviceInfo;\n    new(): MediaDeviceInfo;\n};\n\ninterface MediaDevicesEventMap {\n    \"devicechange\": Event;\n}\n\n/**\n * The **`MediaDevices`** interface of the Media Capture and Streams API provides access to connected media input devices like cameras and microphones, as well as screen sharing.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices)\n */\ninterface MediaDevices extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices/devicechange_event) */\n    ondevicechange: ((this: MediaDevices, ev: Event) => any) | null;\n    /**\n     * The **`enumerateDevices()`** method of the MediaDevices interface requests a list of the currently available media input and output devices, such as microphones, cameras, headsets, and so forth.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices/enumerateDevices)\n     */\n    enumerateDevices(): Promise<MediaDeviceInfo[]>;\n    /**\n     * The **`getDisplayMedia()`** method of the MediaDevices interface prompts the user to select and grant permission to capture the contents of a display or portion thereof (such as a window) as a MediaStream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices/getDisplayMedia)\n     */\n    getDisplayMedia(options?: DisplayMediaStreamOptions): Promise<MediaStream>;\n    /**\n     * The **`getSupportedConstraints()`** method of the MediaDevices interface returns an object based on the MediaTrackSupportedConstraints dictionary, whose member fields each specify one of the constrainable properties the user agent understands.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices/getSupportedConstraints)\n     */\n    getSupportedConstraints(): MediaTrackSupportedConstraints;\n    /**\n     * The **`getUserMedia()`** method of the MediaDevices interface prompts the user for permission to use a media input which produces a MediaStream with tracks containing the requested types of media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDevices/getUserMedia)\n     */\n    getUserMedia(constraints?: MediaStreamConstraints): Promise<MediaStream>;\n    addEventListener<K extends keyof MediaDevicesEventMap>(type: K, listener: (this: MediaDevices, ev: MediaDevicesEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaDevicesEventMap>(type: K, listener: (this: MediaDevices, ev: MediaDevicesEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaDevices: {\n    prototype: MediaDevices;\n    new(): MediaDevices;\n};\n\n/**\n * The `MediaElementAudioSourceNode` interface represents an audio source consisting of an HTML audio or video element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode)\n */\ninterface MediaElementAudioSourceNode extends AudioNode {\n    /**\n     * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the receiving audio.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode/mediaElement)\n     */\n    readonly mediaElement: HTMLMediaElement;\n}\n\ndeclare var MediaElementAudioSourceNode: {\n    prototype: MediaElementAudioSourceNode;\n    new(context: AudioContext, options: MediaElementAudioSourceOptions): MediaElementAudioSourceNode;\n};\n\n/**\n * The **`MediaEncryptedEvent`** interface of the Encrypted Media Extensions API contains the information associated with an HTMLMediaElement/encrypted_event event sent to a HTMLMediaElement when some initialization data is encountered in the media.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaEncryptedEvent)\n */\ninterface MediaEncryptedEvent extends Event {\n    /**\n     * The read-only **`initData`** property of the MediaKeyMessageEvent returns the initialization data contained in this event, if any.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaEncryptedEvent/initData)\n     */\n    readonly initData: ArrayBuffer | null;\n    /**\n     * The read-only **`initDataType`** property of the MediaKeyMessageEvent returns a case-sensitive string describing the type of the initialization data associated with this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaEncryptedEvent/initDataType)\n     */\n    readonly initDataType: string;\n}\n\ndeclare var MediaEncryptedEvent: {\n    prototype: MediaEncryptedEvent;\n    new(type: string, eventInitDict?: MediaEncryptedEventInit): MediaEncryptedEvent;\n};\n\n/**\n * The **`MediaError`** interface represents an error which occurred while handling media in an HTML media element based on HTMLMediaElement, such as audio or video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaError)\n */\ninterface MediaError {\n    /**\n     * The read-only property **`MediaError.code`** returns a numeric value which represents the kind of error that occurred on a media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaError/code)\n     */\n    readonly code: number;\n    /**\n     * The read-only property **`MediaError.message`** returns a human-readable string offering specific diagnostic details related to the error described by the `MediaError` object, or an empty string (`''`) if no diagnostic information can be determined or provided.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaError/message)\n     */\n    readonly message: string;\n    readonly MEDIA_ERR_ABORTED: 1;\n    readonly MEDIA_ERR_NETWORK: 2;\n    readonly MEDIA_ERR_DECODE: 3;\n    readonly MEDIA_ERR_SRC_NOT_SUPPORTED: 4;\n}\n\ndeclare var MediaError: {\n    prototype: MediaError;\n    new(): MediaError;\n    readonly MEDIA_ERR_ABORTED: 1;\n    readonly MEDIA_ERR_NETWORK: 2;\n    readonly MEDIA_ERR_DECODE: 3;\n    readonly MEDIA_ERR_SRC_NOT_SUPPORTED: 4;\n};\n\n/**\n * The **`MediaKeyMessageEvent`** interface of the Encrypted Media Extensions API contains the content and related data when the content decryption module generates a message for the session.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyMessageEvent)\n */\ninterface MediaKeyMessageEvent extends Event {\n    /**\n     * The **`MediaKeyMessageEvent.message`** read-only property returns an ArrayBuffer with a message from the content decryption module.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyMessageEvent/message)\n     */\n    readonly message: ArrayBuffer;\n    /**\n     * The **`MediaKeyMessageEvent.messageType`** read-only property indicates the type of message.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyMessageEvent/messageType)\n     */\n    readonly messageType: MediaKeyMessageType;\n}\n\ndeclare var MediaKeyMessageEvent: {\n    prototype: MediaKeyMessageEvent;\n    new(type: string, eventInitDict: MediaKeyMessageEventInit): MediaKeyMessageEvent;\n};\n\ninterface MediaKeySessionEventMap {\n    \"keystatuseschange\": Event;\n    \"message\": MediaKeyMessageEvent;\n}\n\n/**\n * The **`MediaKeySession`** interface of the Encrypted Media Extensions API represents a context for message exchange with a content decryption module (CDM).\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession)\n */\ninterface MediaKeySession extends EventTarget {\n    /**\n     * The **`closed`** read-only property of the MediaKeySession interface returns a Promise signaling when a MediaKeySession closes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/closed)\n     */\n    readonly closed: Promise<MediaKeySessionClosedReason>;\n    /**\n     * The **`expiration`** read-only property of the MediaKeySession interface returns the time after which the keys in the current session can no longer be used to decrypt media data, or NaN if no such time exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/expiration)\n     */\n    readonly expiration: number;\n    /**\n     * The **`keyStatuses`** read-only property of the MediaKeySession interface returns a reference to a read-only MediaKeyStatusMap of the current session's keys and their statuses.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/keyStatuses)\n     */\n    readonly keyStatuses: MediaKeyStatusMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/keystatuseschange_event) */\n    onkeystatuseschange: ((this: MediaKeySession, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/message_event) */\n    onmessage: ((this: MediaKeySession, ev: MediaKeyMessageEvent) => any) | null;\n    /**\n     * The **`sessionId`** read-only property of the MediaKeySession interface contains a unique string generated by the content decryption module (CDM) for the current media object and its associated keys or licenses.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/sessionId)\n     */\n    readonly sessionId: string;\n    /**\n     * The `close()` method of the MediaKeySession interface notifies that the current media session is no longer needed, and that the content decryption module should release any resources associated with this object and close it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The `generateRequest()` method of the MediaKeySession interface returns a Promise after generating a license request based on initialization data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/generateRequest)\n     */\n    generateRequest(initDataType: string, initData: BufferSource): Promise<void>;\n    /**\n     * The `load()` method of the MediaKeySession interface returns a Promise that resolves to a boolean value after loading data for a specified session object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/load)\n     */\n    load(sessionId: string): Promise<boolean>;\n    /**\n     * The `remove()` method of the MediaKeySession interface returns a Promise after removing any session data associated with the current object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/remove)\n     */\n    remove(): Promise<void>;\n    /**\n     * The `update()` method of the MediaKeySession interface loads messages and licenses to the CDM, and then returns a Promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySession/update)\n     */\n    update(response: BufferSource): Promise<void>;\n    addEventListener<K extends keyof MediaKeySessionEventMap>(type: K, listener: (this: MediaKeySession, ev: MediaKeySessionEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaKeySessionEventMap>(type: K, listener: (this: MediaKeySession, ev: MediaKeySessionEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaKeySession: {\n    prototype: MediaKeySession;\n    new(): MediaKeySession;\n};\n\n/**\n * The **`MediaKeyStatusMap`** interface of the Encrypted Media Extensions API is a read-only map of media key statuses by key IDs.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap)\n */\ninterface MediaKeyStatusMap {\n    /**\n     * The **`size`** read-only property of the MediaKeyStatusMap interface returns the number of key/value paIrs in the status map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/size)\n     */\n    readonly size: number;\n    /**\n     * The **`get()`** method of the MediaKeyStatusMap interface returns the status value associated with the given key, or `undefined` if there is none.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/get)\n     */\n    get(keyId: BufferSource): MediaKeyStatus | undefined;\n    /**\n     * The **`has()`** method of the whether a value has been associated with the given key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/has)\n     */\n    has(keyId: BufferSource): boolean;\n    forEach(callbackfn: (value: MediaKeyStatus, key: BufferSource, parent: MediaKeyStatusMap) => void, thisArg?: any): void;\n}\n\ndeclare var MediaKeyStatusMap: {\n    prototype: MediaKeyStatusMap;\n    new(): MediaKeyStatusMap;\n};\n\n/**\n * The **`MediaKeySystemAccess`** interface of the Encrypted Media Extensions API provides access to a Key System for decryption and/or a content protection provider.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess)\n */\ninterface MediaKeySystemAccess {\n    /**\n     * The **`keySystem`** read-only property of the MediaKeySystemAccess interface returns a string identifying the key system being used.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/keySystem)\n     */\n    readonly keySystem: string;\n    /**\n     * The `MediaKeySystemAccess.createMediaKeys()` method returns a ```js-nolint createMediaKeys() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/createMediaKeys)\n     */\n    createMediaKeys(): Promise<MediaKeys>;\n    /**\n     * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options: - `initDataTypes` [MISSING: ReadOnlyInline] - : Returns a list of supported initialization data type names.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/getConfiguration)\n     */\n    getConfiguration(): MediaKeySystemConfiguration;\n}\n\ndeclare var MediaKeySystemAccess: {\n    prototype: MediaKeySystemAccess;\n    new(): MediaKeySystemAccess;\n};\n\n/**\n * The **`MediaKeys`** interface of Encrypted Media Extensions API represents a set of keys that an associated HTMLMediaElement can use for decryption of media data during playback.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys)\n */\ninterface MediaKeys {\n    /**\n     * The `createSession()` method of the MediaKeys interface returns a new MediaKeySession object, which represents a context for message exchange with a content decryption module (CDM).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/createSession)\n     */\n    createSession(sessionType?: MediaKeySessionType): MediaKeySession;\n    /**\n     * The `getStatusForPolicy()` method of the MediaKeys interface is used to check whether the Content Decryption Module (CDM) would allow the presentation of encrypted media data using the keys, based on the specified policy requirements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/getStatusForPolicy)\n     */\n    getStatusForPolicy(policy?: MediaKeysPolicy): Promise<MediaKeyStatus>;\n    /**\n     * The **`setServerCertificate()`** method of the MediaKeys interface provides a server certificate to be used to encrypt messages to the license server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/setServerCertificate)\n     */\n    setServerCertificate(serverCertificate: BufferSource): Promise<boolean>;\n}\n\ndeclare var MediaKeys: {\n    prototype: MediaKeys;\n    new(): MediaKeys;\n};\n\n/**\n * The **`MediaList`** interface represents the media queries of a stylesheet, e.g., those set using a link element's `media` attribute.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList)\n */\ninterface MediaList {\n    /**\n     * The read-only **`length`** property of the MediaList interface returns the number of media queries in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`mediaText`** property of the MediaList interface is a stringifier that returns a string representing the `MediaList` as text, and also allows you to set a new `MediaList`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList/mediaText)\n     */\n    mediaText: string;\n    toString(): string;\n    /**\n     * The `appendMedium()` method of the MediaList interface adds a media query to the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList/appendMedium)\n     */\n    appendMedium(medium: string): void;\n    /**\n     * The `deleteMedium()` method of the MediaList interface removes from this `MediaList` the given media query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList/deleteMedium)\n     */\n    deleteMedium(medium: string): void;\n    /**\n     * The **`item()`** method of the MediaList interface returns the media query at the specified `index`, or `null` if the specified `index` doesn't exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaList/item)\n     */\n    item(index: number): string | null;\n    [index: number]: string;\n}\n\ndeclare var MediaList: {\n    prototype: MediaList;\n    new(): MediaList;\n};\n\n/**\n * The **`MediaMetadata`** interface of the Media Session API allows a web page to provide rich media metadata for display in a platform UI.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata)\n */\ninterface MediaMetadata {\n    /**\n     * The **`album`** property of the collection containing the media to be played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/album)\n     */\n    album: string;\n    /**\n     * The **`artist`** property of the creator, etc., of the media to be played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artist)\n     */\n    artist: string;\n    /**\n     * The **`artwork`** property of the objects representing images associated with playing media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artwork)\n     */\n    artwork: ReadonlyArray<MediaImage>;\n    /**\n     * The **`title`** property of the played.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/title)\n     */\n    title: string;\n}\n\ndeclare var MediaMetadata: {\n    prototype: MediaMetadata;\n    new(init?: MediaMetadataInit): MediaMetadata;\n};\n\ninterface MediaQueryListEventMap {\n    \"change\": MediaQueryListEvent;\n}\n\n/**\n * A **`MediaQueryList`** object stores information on a media query applied to a document, with support for both immediate and event-driven matching against the state of the document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList)\n */\ninterface MediaQueryList extends EventTarget {\n    /**\n     * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/matches)\n     */\n    readonly matches: boolean;\n    /**\n     * The **`media`** read-only property of the serialized media query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/media)\n     */\n    readonly media: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/change_event) */\n    onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null;\n    /**\n     * The deprecated **`addListener()`** method of the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/addListener)\n     */\n    addListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;\n    /**\n     * The **`removeListener()`** method of the `MediaQueryListener`.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/removeListener)\n     */\n    removeListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;\n    addEventListener<K extends keyof MediaQueryListEventMap>(type: K, listener: (this: MediaQueryList, ev: MediaQueryListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaQueryListEventMap>(type: K, listener: (this: MediaQueryList, ev: MediaQueryListEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaQueryList: {\n    prototype: MediaQueryList;\n    new(): MediaQueryList;\n};\n\n/**\n * The `MediaQueryListEvent` object stores information on the changes that have happened to a MediaQueryList object — instances are available as the event object on a function referenced by a MediaQueryList.change_event event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent)\n */\ninterface MediaQueryListEvent extends Event {\n    /**\n     * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/matches)\n     */\n    readonly matches: boolean;\n    /**\n     * The **`media`** read-only property of the a serialized media query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/media)\n     */\n    readonly media: string;\n}\n\ndeclare var MediaQueryListEvent: {\n    prototype: MediaQueryListEvent;\n    new(type: string, eventInitDict?: MediaQueryListEventInit): MediaQueryListEvent;\n};\n\ninterface MediaRecorderEventMap {\n    \"dataavailable\": BlobEvent;\n    \"error\": ErrorEvent;\n    \"pause\": Event;\n    \"resume\": Event;\n    \"start\": Event;\n    \"stop\": Event;\n}\n\n/**\n * The **`MediaRecorder`** interface of the MediaStream Recording API provides functionality to easily record media.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder)\n */\ninterface MediaRecorder extends EventTarget {\n    /**\n     * The **`audioBitsPerSecond`** read-only property of the MediaRecorder interface returns the audio encoding bit rate in use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/audioBitsPerSecond)\n     */\n    readonly audioBitsPerSecond: number;\n    /**\n     * The **`mimeType`** read-only property of the MediaRecorder interface returns the MIME media type that was specified when creating the MediaRecorder object, or, if none was specified, which was chosen by the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/mimeType)\n     */\n    readonly mimeType: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/dataavailable_event) */\n    ondataavailable: ((this: MediaRecorder, ev: BlobEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/error_event) */\n    onerror: ((this: MediaRecorder, ev: ErrorEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/pause_event) */\n    onpause: ((this: MediaRecorder, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/resume_event) */\n    onresume: ((this: MediaRecorder, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/start_event) */\n    onstart: ((this: MediaRecorder, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/stop_event) */\n    onstop: ((this: MediaRecorder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the MediaRecorder interface returns the current state of the current `MediaRecorder` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/state)\n     */\n    readonly state: RecordingState;\n    /**\n     * The **`stream`** read-only property of the MediaRecorder interface returns the stream that was passed into the MediaRecorder.MediaRecorder constructor when the `MediaRecorder` was created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/stream)\n     */\n    readonly stream: MediaStream;\n    /**\n     * The **`videoBitsPerSecond`** read-only property of the MediaRecorder interface returns the video encoding bit rate in use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/videoBitsPerSecond)\n     */\n    readonly videoBitsPerSecond: number;\n    /**\n     * The **`pause()`** method of the MediaRecorder interface is used to pause recording of media streams.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/pause)\n     */\n    pause(): void;\n    /**\n     * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/requestData)\n     */\n    requestData(): void;\n    /**\n     * The **`resume()`** method of the MediaRecorder interface is used to resume media recording when it has been previously paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/resume)\n     */\n    resume(): void;\n    /**\n     * The **`start()`** method of the MediaRecorder interface begins recording media into one or more Blob objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/start)\n     */\n    start(timeslice?: number): void;\n    /**\n     * The **`stop()`** method of the MediaRecorder interface is used to stop media capture.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/stop)\n     */\n    stop(): void;\n    addEventListener<K extends keyof MediaRecorderEventMap>(type: K, listener: (this: MediaRecorder, ev: MediaRecorderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaRecorderEventMap>(type: K, listener: (this: MediaRecorder, ev: MediaRecorderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaRecorder: {\n    prototype: MediaRecorder;\n    new(stream: MediaStream, options?: MediaRecorderOptions): MediaRecorder;\n    /**\n     * The **`isTypeSupported()`** static method of the MediaRecorder interface returns a Boolean which is `true` if the MIME media type specified is one the user agent should be able to successfully record.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/isTypeSupported_static)\n     */\n    isTypeSupported(type: string): boolean;\n};\n\n/**\n * The **`MediaSession`** interface of the Media Session API allows a web page to provide custom behaviors for standard media playback interactions, and to report metadata that can be sent by the user agent to the device or operating system for presentation in standardized user interface elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession)\n */\ninterface MediaSession {\n    /**\n     * The **`metadata`** property of the MediaSession interface contains a MediaMetadata object providing descriptive information about the currently playing media, or `null` if the metadata has not been set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/metadata)\n     */\n    metadata: MediaMetadata | null;\n    /**\n     * The **`playbackState`** property of the playing or paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/playbackState)\n     */\n    playbackState: MediaSessionPlaybackState;\n    /**\n     * The **`setActionHandler()`** method of the MediaSession interface sets a handler for a media session action.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setActionHandler)\n     */\n    setActionHandler(action: MediaSessionAction, handler: MediaSessionActionHandler | null): void;\n    /**\n     * The **`setCameraActive()`** method of the MediaSession interface is used to indicate to the user agent whether the user's camera is considered to be active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setCameraActive)\n     */\n    setCameraActive(active: boolean): Promise<void>;\n    /**\n     * The **`setMicrophoneActive()`** method of the MediaSession interface is used to indicate to the user agent whether the user's microphone is considered to be currently muted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setMicrophoneActive)\n     */\n    setMicrophoneActive(active: boolean): Promise<void>;\n    /**\n     * The **`setPositionState()`** method of the document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setPositionState)\n     */\n    setPositionState(state?: MediaPositionState): void;\n}\n\ndeclare var MediaSession: {\n    prototype: MediaSession;\n    new(): MediaSession;\n};\n\ninterface MediaSourceEventMap {\n    \"sourceclose\": Event;\n    \"sourceended\": Event;\n    \"sourceopen\": Event;\n}\n\n/**\n * The **`MediaSource`** interface of the Media Source Extensions API represents a source of media data for an HTMLMediaElement object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource)\n */\ninterface MediaSource extends EventTarget {\n    /**\n     * The **`activeSourceBuffers`** read-only property of the containing a subset of the SourceBuffer objects contained within providing the selected video track, enabled audio tracks, and shown/hidden text tracks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/activeSourceBuffers)\n     */\n    readonly activeSourceBuffers: SourceBufferList;\n    /**\n     * The **`duration`** property of the MediaSource interface gets and sets the duration of the current media being presented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration)\n     */\n    duration: number;\n    onsourceclose: ((this: MediaSource, ev: Event) => any) | null;\n    onsourceended: ((this: MediaSource, ev: Event) => any) | null;\n    onsourceopen: ((this: MediaSource, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the current `MediaSource`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState)\n     */\n    readonly readyState: ReadyState;\n    /**\n     * The **`sourceBuffers`** read-only property of the containing the list of SourceBuffer objects associated with this `MediaSource`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceBuffers)\n     */\n    readonly sourceBuffers: SourceBufferList;\n    /**\n     * The **`addSourceBuffer()`** method of the given MIME type and adds it to the `MediaSource`'s `SourceBuffer` is also returned.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/addSourceBuffer)\n     */\n    addSourceBuffer(type: string): SourceBuffer;\n    /**\n     * The **`clearLiveSeekableRange()`** method of the to MediaSource.setLiveSeekableRange().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/clearLiveSeekableRange)\n     */\n    clearLiveSeekableRange(): void;\n    /**\n     * The **`endOfStream()`** method of the ```js-nolint endOfStream() endOfStream(endOfStreamError) ``` - `endOfStreamError` MISSING: optional_inline] - : A string representing an error to throw when the end of the stream is reached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/endOfStream)\n     */\n    endOfStream(error?: EndOfStreamError): void;\n    /**\n     * The **`removeSourceBuffer()`** method of the MediaSource interface removes the given SourceBuffer from the SourceBufferList associated with this `MediaSource` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/removeSourceBuffer)\n     */\n    removeSourceBuffer(sourceBuffer: SourceBuffer): void;\n    /**\n     * The **`setLiveSeekableRange()`** method of the media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/setLiveSeekableRange)\n     */\n    setLiveSeekableRange(start: number, end: number): void;\n    addEventListener<K extends keyof MediaSourceEventMap>(type: K, listener: (this: MediaSource, ev: MediaSourceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaSourceEventMap>(type: K, listener: (this: MediaSource, ev: MediaSourceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaSource: {\n    prototype: MediaSource;\n    new(): MediaSource;\n    /**\n     * The **`canConstructInDedicatedWorker`** static property of the MediaSource interface returns `true` if `MediaSource` worker support is implemented, providing a low-latency feature detection mechanism.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/canConstructInDedicatedWorker_static)\n     */\n    readonly canConstructInDedicatedWorker: boolean;\n    /**\n     * The **`MediaSource.isTypeSupported()`** static method returns a boolean value which is `true` if the given MIME type and (optional) codec are _likely_ to be supported by the current user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/isTypeSupported_static)\n     */\n    isTypeSupported(type: string): boolean;\n};\n\n/**\n * The **`MediaSourceHandle`** interface of the Media Source Extensions API is a proxy for a MediaSource that can be transferred from a dedicated worker back to the main thread and attached to a media element via its HTMLMediaElement.srcObject property.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSourceHandle)\n */\ninterface MediaSourceHandle {\n}\n\ndeclare var MediaSourceHandle: {\n    prototype: MediaSourceHandle;\n    new(): MediaSourceHandle;\n};\n\ninterface MediaStreamEventMap {\n    \"addtrack\": MediaStreamTrackEvent;\n    \"removetrack\": MediaStreamTrackEvent;\n}\n\n/**\n * The **`MediaStream`** interface of the Media Capture and Streams API represents a stream of media content.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream)\n */\ninterface MediaStream extends EventTarget {\n    /**\n     * The **`active`** read-only property of the `true` if the stream is currently active; otherwise, it returns `false`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/active)\n     */\n    readonly active: boolean;\n    /**\n     * The **`id`** read-only property of the MediaStream interface is a string containing 36 characters denoting a unique identifier (GUID) for the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/id)\n     */\n    readonly id: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/addtrack_event) */\n    onaddtrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removetrack_event) */\n    onremovetrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;\n    /**\n     * The **`addTrack()`** method of the MediaStream interface adds a new track to the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/addTrack)\n     */\n    addTrack(track: MediaStreamTrack): void;\n    /**\n     * The **`clone()`** method of the MediaStream interface creates a duplicate of the `MediaStream`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/clone)\n     */\n    clone(): MediaStream;\n    /**\n     * The **`getAudioTracks()`** method of the stream's track set where MediaStreamTrack.kind is `audio`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getAudioTracks)\n     */\n    getAudioTracks(): MediaStreamTrack[];\n    /**\n     * The **`getTrackById()`** method of the MediaStream interface returns a MediaStreamTrack object representing the track with the specified ID string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTrackById)\n     */\n    getTrackById(trackId: string): MediaStreamTrack | null;\n    /**\n     * The **`getTracks()`** method of the stream's track set, regardless of MediaStreamTrack.kind.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTracks)\n     */\n    getTracks(): MediaStreamTrack[];\n    /**\n     * The **`getVideoTracks()`** method of the ```js-nolint getVideoTracks() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getVideoTracks)\n     */\n    getVideoTracks(): MediaStreamTrack[];\n    /**\n     * The **`removeTrack()`** method of the MediaStream interface removes a ```js-nolint removeTrack(track) ``` - `track` - : A MediaStreamTrack that will be removed from the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removeTrack)\n     */\n    removeTrack(track: MediaStreamTrack): void;\n    addEventListener<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaStream: {\n    prototype: MediaStream;\n    new(): MediaStream;\n    new(stream: MediaStream): MediaStream;\n    new(tracks: MediaStreamTrack[]): MediaStream;\n};\n\n/**\n * The `MediaStreamAudioDestinationNode` interface represents an audio destination consisting of a WebRTC MediaStream with a single `AudioMediaStreamTrack`, which can be used in a similar way to a `MediaStream` obtained from MediaDevices.getUserMedia.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioDestinationNode)\n */\ninterface MediaStreamAudioDestinationNode extends AudioNode {\n    /**\n     * The `stream` property of the AudioContext interface represents a MediaStream containing a single audio MediaStreamTrack with the same number of channels as the node itself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioDestinationNode/stream)\n     */\n    readonly stream: MediaStream;\n}\n\ndeclare var MediaStreamAudioDestinationNode: {\n    prototype: MediaStreamAudioDestinationNode;\n    new(context: AudioContext, options?: AudioNodeOptions): MediaStreamAudioDestinationNode;\n};\n\n/**\n * The **`MediaStreamAudioSourceNode`** interface is a type of AudioNode which operates as an audio source whose media is received from a MediaStream obtained using the WebRTC or Media Capture and Streams APIs.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode)\n */\ninterface MediaStreamAudioSourceNode extends AudioNode {\n    /**\n     * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the receiving audio.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode/mediaStream)\n     */\n    readonly mediaStream: MediaStream;\n}\n\ndeclare var MediaStreamAudioSourceNode: {\n    prototype: MediaStreamAudioSourceNode;\n    new(context: AudioContext, options: MediaStreamAudioSourceOptions): MediaStreamAudioSourceNode;\n};\n\ninterface MediaStreamTrackEventMap {\n    \"ended\": Event;\n    \"mute\": Event;\n    \"unmute\": Event;\n}\n\n/**\n * The **`MediaStreamTrack`** interface of the Media Capture and Streams API represents a single media track within a stream; typically, these are audio or video tracks, but other track types may exist as well.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack)\n */\ninterface MediaStreamTrack extends EventTarget {\n    /**\n     * The **`contentHint`** property of the MediaStreamTrack interface is a string that hints at the type of content the track contains.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/contentHint)\n     */\n    contentHint: string;\n    /**\n     * The **`enabled`** property of the `true` if the track is allowed to render the source stream or `false` if it is not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/enabled)\n     */\n    enabled: boolean;\n    /**\n     * The **`id`** read-only property of the MediaStreamTrack interface returns a string containing a unique identifier (GUID) for the track, which is generated by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/id)\n     */\n    readonly id: string;\n    /**\n     * The **`kind`** read-only property of the MediaStreamTrack interface returns a string set to `'audio'` if the track is an audio track and to `'video'` if it is a video track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/kind)\n     */\n    readonly kind: string;\n    /**\n     * The **`label`** read-only property of the MediaStreamTrack interface returns a string containing a user agent-assigned label that identifies the track source, as in `'internal microphone'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/label)\n     */\n    readonly label: string;\n    /**\n     * The **`muted`** read-only property of the indicating whether or not the track is currently unable to provide media output.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/muted)\n     */\n    readonly muted: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/ended_event) */\n    onended: ((this: MediaStreamTrack, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/mute_event) */\n    onmute: ((this: MediaStreamTrack, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/unmute_event) */\n    onunmute: ((this: MediaStreamTrack, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the MediaStreamTrack interface returns an enumerated value giving the status of the track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/readyState)\n     */\n    readonly readyState: MediaStreamTrackState;\n    /**\n     * The **`applyConstraints()`** method of the MediaStreamTrack interface applies a set of constraints to the track; these constraints let the website or app establish ideal values and acceptable ranges of values for the constrainable properties of the track, such as frame rate, dimensions, echo cancellation, and so forth.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/applyConstraints)\n     */\n    applyConstraints(constraints?: MediaTrackConstraints): Promise<void>;\n    /**\n     * The **`clone()`** method of the MediaStreamTrack interface creates a duplicate of the `MediaStreamTrack`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/clone)\n     */\n    clone(): MediaStreamTrack;\n    /**\n     * The **`getCapabilities()`** method of the MediaStreamTrack interface returns an object detailing the accepted values or value range for each constrainable property of the associated `MediaStreamTrack`, based upon the platform and user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getCapabilities)\n     */\n    getCapabilities(): MediaTrackCapabilities;\n    /**\n     * The **`getConstraints()`** method of the MediaStreamTrack interface returns a recently established for the track using a prior call to constraints indicate values and ranges of values that the website or application has specified are required or acceptable for the included constrainable properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getConstraints)\n     */\n    getConstraints(): MediaTrackConstraints;\n    /**\n     * The **`getSettings()`** method of the object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getSettings)\n     */\n    getSettings(): MediaTrackSettings;\n    /**\n     * The **`stop()`** method of the MediaStreamTrack interface stops the track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/stop)\n     */\n    stop(): void;\n    addEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: MediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: MediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MediaStreamTrack: {\n    prototype: MediaStreamTrack;\n    new(): MediaStreamTrack;\n};\n\n/**\n * The **`MediaStreamTrackEvent`** interface of the Media Capture and Streams API represents events which indicate that a MediaStream has had tracks added to or removed from the stream through calls to Media Capture and Streams API methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackEvent)\n */\ninterface MediaStreamTrackEvent extends Event {\n    /**\n     * The **`track`** read-only property of the MediaStreamTrackEvent interface returns the MediaStreamTrack associated with this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackEvent/track)\n     */\n    readonly track: MediaStreamTrack;\n}\n\ndeclare var MediaStreamTrackEvent: {\n    prototype: MediaStreamTrackEvent;\n    new(type: string, eventInitDict: MediaStreamTrackEventInit): MediaStreamTrackEvent;\n};\n\n/**\n * The **`MessageChannel`** interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel)\n */\ninterface MessageChannel {\n    /**\n     * The **`port1`** read-only property of the the port attached to the context that originated the channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)\n     */\n    readonly port1: MessagePort;\n    /**\n     * The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)\n     */\n    readonly port2: MessagePort;\n}\n\ndeclare var MessageChannel: {\n    prototype: MessageChannel;\n    new(): MessageChannel;\n};\n\n/**\n * The **`MessageEvent`** interface represents a message received by a target object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent)\n */\ninterface MessageEvent<T = any> extends Event {\n    /**\n     * The **`data`** read-only property of the The data sent by the message emitter; this can be any data type, depending on what originated this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)\n     */\n    readonly data: T;\n    /**\n     * The **`lastEventId`** read-only property of the unique ID for the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)\n     */\n    readonly lastEventId: string;\n    /**\n     * The **`origin`** read-only property of the origin of the message emitter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)\n     */\n    readonly ports: ReadonlyArray<MessagePort>;\n    /**\n     * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)\n     */\n    readonly source: MessageEventSource | null;\n    /** @deprecated */\n    initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;\n}\n\ndeclare var MessageEvent: {\n    prototype: MessageEvent;\n    new<T>(type: string, eventInitDict?: MessageEventInit<T>): MessageEvent<T>;\n};\n\ninterface MessageEventTargetEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\ninterface MessageEventTarget<T> {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/message_event) */\n    onmessage: ((this: T, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/messageerror_event) */\n    onmessageerror: ((this: T, ev: MessageEvent) => any) | null;\n    addEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ninterface MessagePortEventMap extends MessageEventTargetEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`MessagePort`** interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort)\n */\ninterface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {\n    /**\n     * The **`close()`** method of the MessagePort interface disconnects the port, so it is no longer active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/close)\n     */\n    close(): void;\n    /**\n     * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    /**\n     * The **`start()`** method of the MessagePort interface starts the sending of messages queued on the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/start)\n     */\n    start(): void;\n    addEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MessagePort: {\n    prototype: MessagePort;\n    new(): MessagePort;\n};\n\n/**\n * The **`MimeType`** interface provides contains information about a MIME type associated with a particular plugin.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType)\n */\ninterface MimeType {\n    /**\n     * Returns the MIME type's description.\n     * @deprecated\n     */\n    readonly description: string;\n    /**\n     * Returns the Plugin object that implements this MIME type.\n     * @deprecated\n     */\n    readonly enabledPlugin: Plugin;\n    /**\n     * Returns the MIME type's typical file extensions, in a comma-separated list.\n     * @deprecated\n     */\n    readonly suffixes: string;\n    /**\n     * Returns the MIME type.\n     * @deprecated\n     */\n    readonly type: string;\n}\n\n/** @deprecated */\ndeclare var MimeType: {\n    prototype: MimeType;\n    new(): MimeType;\n};\n\n/**\n * The **`MimeTypeArray`** interface returns an array of MimeType instances, each of which contains information about a supported browser plugins.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray)\n */\ninterface MimeTypeArray {\n    /** @deprecated */\n    readonly length: number;\n    /** @deprecated */\n    item(index: number): MimeType | null;\n    /** @deprecated */\n    namedItem(name: string): MimeType | null;\n    [index: number]: MimeType;\n}\n\n/** @deprecated */\ndeclare var MimeTypeArray: {\n    prototype: MimeTypeArray;\n    new(): MimeTypeArray;\n};\n\n/**\n * The **`MouseEvent`** interface represents events that occur due to the user interacting with a pointing device (such as a mouse).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent)\n */\ninterface MouseEvent extends UIEvent {\n    /**\n     * The **`MouseEvent.altKey`** read-only property is a boolean value that indicates whether the <kbd>alt</kbd> key was pressed or not when a given mouse event occurs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/altKey)\n     */\n    readonly altKey: boolean;\n    /**\n     * The **`MouseEvent.button`** read-only property indicates which button was pressed or released on the mouse to trigger the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/button)\n     */\n    readonly button: number;\n    /**\n     * The **`MouseEvent.buttons`** read-only property indicates which buttons are pressed on the mouse (or other input device) when a mouse event is triggered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/buttons)\n     */\n    readonly buttons: number;\n    /**\n     * The **`clientX`** read-only property of the MouseEvent interface provides the horizontal coordinate within the application's viewport at which the event occurred (as opposed to the coordinate within the page).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/clientX)\n     */\n    readonly clientX: number;\n    /**\n     * The **`clientY`** read-only property of the MouseEvent interface provides the vertical coordinate within the application's viewport at which the event occurred (as opposed to the coordinate within the page).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/clientY)\n     */\n    readonly clientY: number;\n    /**\n     * The **`MouseEvent.ctrlKey`** read-only property is a boolean value that indicates whether the <kbd>ctrl</kbd> key was pressed or not when a given mouse event occurs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/ctrlKey)\n     */\n    readonly ctrlKey: boolean;\n    /**\n     * The **`MouseEvent.layerX`** read-only property returns the horizontal coordinate of the event relative to the current layer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/layerX)\n     */\n    readonly layerX: number;\n    /**\n     * The **`MouseEvent.layerY`** read-only property returns the vertical coordinate of the event relative to the current layer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/layerY)\n     */\n    readonly layerY: number;\n    /**\n     * The **`MouseEvent.metaKey`** read-only property is a boolean value that indicates whether the <kbd>meta</kbd> key was pressed or not when a given mouse event occurs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/metaKey)\n     */\n    readonly metaKey: boolean;\n    /**\n     * The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous Element/mousemove_event event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)\n     */\n    readonly movementX: number;\n    /**\n     * The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous Element/mousemove_event event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)\n     */\n    readonly movementY: number;\n    /**\n     * The **`offsetX`** read-only property of the MouseEvent interface provides the offset in the X coordinate of the mouse pointer between that event and the padding edge of the target node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/offsetX)\n     */\n    readonly offsetX: number;\n    /**\n     * The **`offsetY`** read-only property of the MouseEvent interface provides the offset in the Y coordinate of the mouse pointer between that event and the padding edge of the target node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/offsetY)\n     */\n    readonly offsetY: number;\n    /**\n     * The **`pageX`** read-only property of the MouseEvent interface returns the X (horizontal) coordinate (in pixels) at which the mouse was clicked, relative to the left edge of the entire document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/pageX)\n     */\n    readonly pageX: number;\n    /**\n     * The **`pageY`** read-only property of the MouseEvent interface returns the Y (vertical) coordinate (in pixels) at which the mouse was clicked, relative to the top edge of the entire document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/pageY)\n     */\n    readonly pageY: number;\n    /**\n     * The **`MouseEvent.relatedTarget`** read-only property is the secondary target for the mouse event, if there is one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/relatedTarget)\n     */\n    readonly relatedTarget: EventTarget | null;\n    /**\n     * The **`screenX`** read-only property of the MouseEvent interface provides the horizontal coordinate (offset) of the mouse pointer in screen coordinates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/screenX)\n     */\n    readonly screenX: number;\n    /**\n     * The **`screenY`** read-only property of the MouseEvent interface provides the vertical coordinate (offset) of the mouse pointer in screen coordinates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/screenY)\n     */\n    readonly screenY: number;\n    /**\n     * The **`MouseEvent.shiftKey`** read-only property is a boolean value that indicates whether the <kbd>shift</kbd> key was pressed or not when a given mouse event occurs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/shiftKey)\n     */\n    readonly shiftKey: boolean;\n    /**\n     * The **`MouseEvent.x`** property is an alias for the MouseEvent.clientX property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/x)\n     */\n    readonly x: number;\n    /**\n     * The **`MouseEvent.y`** property is an alias for the MouseEvent.clientY property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/y)\n     */\n    readonly y: number;\n    /**\n     * The **`MouseEvent.getModifierState()`** method returns the current state of the specified modifier key: `true` if the modifier is active (i.e., the modifier key is pressed or locked), otherwise, `false`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/getModifierState)\n     */\n    getModifierState(keyArg: string): boolean;\n    /**\n     * The **`MouseEvent.initMouseEvent()`** method initializes the value of a mouse event once it's been created (normally using the Document.createEvent() method).\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/initMouseEvent)\n     */\n    initMouseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget | null): void;\n}\n\ndeclare var MouseEvent: {\n    prototype: MouseEvent;\n    new(type: string, eventInitDict?: MouseEventInit): MouseEvent;\n};\n\n/**\n * The **`MutationObserver`** interface provides the ability to watch for changes being made to the DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationObserver)\n */\ninterface MutationObserver {\n    /**\n     * The MutationObserver method **`disconnect()`** tells the observer to stop watching for mutations.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The MutationObserver method **`observe()`** configures the `MutationObserver` callback to begin receiving notifications of changes to the DOM that match the given options.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationObserver/observe)\n     */\n    observe(target: Node, options?: MutationObserverInit): void;\n    /**\n     * The MutationObserver method **`takeRecords()`** returns a list of all matching DOM changes that have been detected but not yet processed by the observer's callback function, leaving the mutation queue empty.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationObserver/takeRecords)\n     */\n    takeRecords(): MutationRecord[];\n}\n\ndeclare var MutationObserver: {\n    prototype: MutationObserver;\n    new(callback: MutationCallback): MutationObserver;\n};\n\n/**\n * The **`MutationRecord`** is a read-only interface that represents an individual DOM mutation observed by a MutationObserver.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord)\n */\ninterface MutationRecord {\n    /**\n     * The MutationRecord read-only property **`addedNodes`** is a NodeList of nodes added to a target node by a mutation observed with a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/addedNodes)\n     */\n    readonly addedNodes: NodeList;\n    /**\n     * The MutationRecord read-only property **`attributeName`** contains the name of a changed attribute belonging to a node that is observed by a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/attributeName)\n     */\n    readonly attributeName: string | null;\n    /**\n     * The MutationRecord read-only property **`attributeNamespace`** is the namespace of the mutated attribute in the MutationRecord observed by a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/attributeNamespace)\n     */\n    readonly attributeNamespace: string | null;\n    /**\n     * The MutationRecord read-only property **`nextSibling`** is the next sibling of an added or removed child node of the `target` of a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/nextSibling)\n     */\n    readonly nextSibling: Node | null;\n    /**\n     * The MutationRecord read-only property **`oldValue`** contains the character data or attribute value of an observed node before it was changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/oldValue)\n     */\n    readonly oldValue: string | null;\n    /**\n     * The MutationRecord read-only property **`previousSibling`** is the previous sibling of an added or removed child node of the `target` of a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/previousSibling)\n     */\n    readonly previousSibling: Node | null;\n    /**\n     * The MutationRecord read-only property **`removedNodes`** is a NodeList of nodes removed from a target node by a mutation observed with a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/removedNodes)\n     */\n    readonly removedNodes: NodeList;\n    /**\n     * The MutationRecord read-only property **`target`** is the target (i.e., the mutated/changed node) of a mutation observed with a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/target)\n     */\n    readonly target: Node;\n    /**\n     * The MutationRecord read-only property **`type`** is the type of the MutationRecord observed by a MutationObserver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MutationRecord/type)\n     */\n    readonly type: MutationRecordType;\n}\n\ndeclare var MutationRecord: {\n    prototype: MutationRecord;\n    new(): MutationRecord;\n};\n\n/**\n * The **`NamedNodeMap`** interface represents a collection of Attr objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap)\n */\ninterface NamedNodeMap {\n    /**\n     * The read-only **`length`** property of the NamedNodeMap interface is the number of objects stored in the map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/length)\n     */\n    readonly length: number;\n    /**\n     * The **`getNamedItem()`** method of the NamedNodeMap interface returns the Attr corresponding to the given name, or `null` if there is no corresponding attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/getNamedItem)\n     */\n    getNamedItem(qualifiedName: string): Attr | null;\n    /**\n     * The **`getNamedItemNS()`** method of the NamedNodeMap interface returns the Attr corresponding to the given local name in the given namespace, or `null` if there is no corresponding attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/getNamedItemNS)\n     */\n    getNamedItemNS(namespace: string | null, localName: string): Attr | null;\n    /**\n     * The **`item()`** method of the NamedNodeMap interface returns the item in the map matching the index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/item)\n     */\n    item(index: number): Attr | null;\n    /**\n     * The **`removeNamedItem()`** method of the NamedNodeMap interface removes the Attr corresponding to the given name from the map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/removeNamedItem)\n     */\n    removeNamedItem(qualifiedName: string): Attr;\n    /**\n     * The **`removeNamedItemNS()`** method of the NamedNodeMap interface removes the Attr corresponding to the given namespace and local name from the map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/removeNamedItemNS)\n     */\n    removeNamedItemNS(namespace: string | null, localName: string): Attr;\n    /**\n     * The **`setNamedItem()`** method of the NamedNodeMap interface puts the Attr identified by its name in the map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/setNamedItem)\n     */\n    setNamedItem(attr: Attr): Attr | null;\n    /**\n     * The **`setNamedItemNS()`** method of the NamedNodeMap interface puts the Attr identified by its name in the map.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NamedNodeMap/setNamedItemNS)\n     */\n    setNamedItemNS(attr: Attr): Attr | null;\n    [index: number]: Attr;\n}\n\ndeclare var NamedNodeMap: {\n    prototype: NamedNodeMap;\n    new(): NamedNodeMap;\n};\n\n/**\n * The **`NavigationActivation`** interface of the Navigation API represents a recent cross-document navigation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation)\n */\ninterface NavigationActivation {\n    /**\n     * The **`entry`** read-only property of the NavigationActivation interface contains a NavigationHistoryEntry object representing the history entry for the inbound ('to') document in the navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/entry)\n     */\n    readonly entry: NavigationHistoryEntry;\n    /**\n     * The **`from`** read-only property of the NavigationActivation interface contains a NavigationHistoryEntry object representing the history entry for the outgoing ('from') document in the navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/from)\n     */\n    readonly from: NavigationHistoryEntry | null;\n    /**\n     * The **`navigationType`** read-only property of the NavigationActivation interface contains a string indicating the type of navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/navigationType)\n     */\n    readonly navigationType: NavigationType;\n}\n\ndeclare var NavigationActivation: {\n    prototype: NavigationActivation;\n    new(): NavigationActivation;\n};\n\ninterface NavigationHistoryEntryEventMap {\n    \"dispose\": Event;\n}\n\n/**\n * The **`NavigationHistoryEntry`** interface of the Navigation API represents a single navigation history entry.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry)\n */\ninterface NavigationHistoryEntry extends EventTarget {\n    /**\n     * The **`id`** read-only property of the NavigationHistoryEntry interface returns the `id` of the history entry, or an empty string if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/id)\n     */\n    readonly id: string;\n    /**\n     * The **`index`** read-only property of the NavigationHistoryEntry interface returns the index of the history entry in the history entries list (that is, the list returned by Navigation.entries()), or `-1` if the entry does not appear in the list or if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/index)\n     */\n    readonly index: number;\n    /**\n     * The **`key`** read-only property of the NavigationHistoryEntry interface returns the `key` of the history entry, or an empty string if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/key)\n     */\n    readonly key: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/dispose_event) */\n    ondispose: ((this: NavigationHistoryEntry, ev: Event) => any) | null;\n    /**\n     * The **`sameDocument`** read-only property of the NavigationHistoryEntry interface returns `true` if this history entry is for the same `document` as the current Document value and current document is fully active, or `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/sameDocument)\n     */\n    readonly sameDocument: boolean;\n    /**\n     * The **`url`** read-only property of the NavigationHistoryEntry interface returns the absolute URL of this history entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/url)\n     */\n    readonly url: string | null;\n    /**\n     * The **`getState()`** method of the NavigationHistoryEntry interface returns a clone of the developer-supplied state associated with this history entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/getState)\n     */\n    getState(): any;\n    addEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: NavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: NavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var NavigationHistoryEntry: {\n    prototype: NavigationHistoryEntry;\n    new(): NavigationHistoryEntry;\n};\n\n/**\n * The **`NavigationPreloadManager`** interface of the Service Worker API provides methods for managing the preloading of resources in parallel with service worker bootup.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager)\n */\ninterface NavigationPreloadManager {\n    /**\n     * The **`disable()`** method of the NavigationPreloadManager interface halts the automatic preloading of service-worker-managed resources previously started using NavigationPreloadManager.enable() It returns a promise that resolves with `undefined`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/disable)\n     */\n    disable(): Promise<void>;\n    /**\n     * The **`enable()`** method of the NavigationPreloadManager interface is used to enable preloading of resources managed by the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/enable)\n     */\n    enable(): Promise<void>;\n    /**\n     * The **`getState()`** method of the NavigationPreloadManager interface returns a Promise that resolves to an object with properties that indicate whether preload is enabled and what value will be sent in the Service-Worker-Navigation-Preload HTTP header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/getState)\n     */\n    getState(): Promise<NavigationPreloadState>;\n    /**\n     * The **`setHeaderValue()`** method of the NavigationPreloadManager interface sets the value of the Service-Worker-Navigation-Preload header that will be sent with requests resulting from a Window/fetch operation made during service worker navigation preloading.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/setHeaderValue)\n     */\n    setHeaderValue(value: string): Promise<void>;\n}\n\ndeclare var NavigationPreloadManager: {\n    prototype: NavigationPreloadManager;\n    new(): NavigationPreloadManager;\n};\n\n/**\n * The **`Navigator`** interface represents the state and the identity of the user agent.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator)\n */\ninterface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {\n    /**\n     * The **`clipboard`** read-only property of the Navigator interface returns a Clipboard object used to read and write the clipboard's contents.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/clipboard)\n     */\n    readonly clipboard: Clipboard;\n    /**\n     * The **`credentials`** read-only property of the Navigator interface returns the CredentialsContainer object associated with the current document, which exposes methods to request credentials.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/credentials)\n     */\n    readonly credentials: CredentialsContainer;\n    readonly doNotTrack: string | null;\n    /**\n     * The **`Navigator.geolocation`** read-only property returns a device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/geolocation)\n     */\n    readonly geolocation: Geolocation;\n    /**\n     * The **`login`** read-only property of the Navigator interface provides access to the browser's NavigatorLogin object, which a federated identity provider (IdP) can use to set its login status when a user signs into or out of the IdP.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/login)\n     */\n    readonly login: NavigatorLogin;\n    /**\n     * The **`maxTouchPoints`** read-only property of the contact points that are supported by the current device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/maxTouchPoints)\n     */\n    readonly maxTouchPoints: number;\n    /**\n     * The **`mediaCapabilities`** read-only property of the Navigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given media format and output capabilities.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mediaCapabilities)\n     */\n    readonly mediaCapabilities: MediaCapabilities;\n    /**\n     * The **`mediaDevices`** read-only property of the Navigator interface returns a MediaDevices object, which provides access to connected media input devices like cameras and microphones, as well as screen sharing.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mediaDevices)\n     */\n    readonly mediaDevices: MediaDevices;\n    /**\n     * The **`mediaSession`** read-only property of the Navigator interface returns a MediaSession object that can be used to share with the browser metadata and other information about the current playback state of media being handled by a document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mediaSession)\n     */\n    readonly mediaSession: MediaSession;\n    /**\n     * The **`permissions`** read-only property of the Navigator interface returns a status of APIs covered by the Permissions API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/permissions)\n     */\n    readonly permissions: Permissions;\n    /**\n     * The **`serviceWorker`** read-only property of the Navigator interface returns the ServiceWorkerContainer object for the associated document, which provides access to registration, removal, upgrade, and communication with the ServiceWorker.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/serviceWorker)\n     */\n    readonly serviceWorker: ServiceWorkerContainer;\n    /**\n     * The read-only **`userActivation`** property of the Navigator interface returns a UserActivation object which contains information about the current window's user activation state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/userActivation)\n     */\n    readonly userActivation: UserActivation;\n    /**\n     * The **`wakeLock`** read-only property of the Navigator interface returns a WakeLock interface that allows a document to acquire a screen wake lock.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/wakeLock)\n     */\n    readonly wakeLock: WakeLock;\n    /**\n     * The **`canShare()`** method of the Navigator interface returns `true` if the equivalent call to navigator.share() would succeed.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/canShare)\n     */\n    canShare(data?: ShareData): boolean;\n    /**\n     * The **`Navigator.getGamepads()`** method returns an array of Elements in the array may be `null` if a gamepad disconnects during a session, so that the remaining gamepads retain the same index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/getGamepads)\n     */\n    getGamepads(): (Gamepad | null)[];\n    /**\n     * The **`requestMIDIAccess()`** method of the Navigator interface returns a Promise representing a request for access to MIDI devices on a user's system.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/requestMIDIAccess)\n     */\n    requestMIDIAccess(options?: MIDIOptions): Promise<MIDIAccess>;\n    /**\n     * The **`requestMediaKeySystemAccess()`** method of the Navigator interface returns a Promise which delivers a MediaKeySystemAccess object that can be used to access a particular media key system, which can in turn be used to create keys for decrypting a media stream.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/requestMediaKeySystemAccess)\n     */\n    requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise<MediaKeySystemAccess>;\n    /**\n     * The **`navigator.sendBeacon()`** method Asynchronous sends an HTTP POST request containing a small amount of data to a web server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/sendBeacon)\n     */\n    sendBeacon(url: string | URL, data?: BodyInit | null): boolean;\n    /**\n     * The **`share()`** method of the Navigator interface invokes the native sharing mechanism of the device to share data such as text, URLs, or files.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/share)\n     */\n    share(data?: ShareData): Promise<void>;\n    /**\n     * The **`vibrate()`** method of the Navigator interface pulses the vibration hardware on the device, if such hardware exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vibrate)\n     */\n    vibrate(pattern: VibratePattern): boolean;\n}\n\ndeclare var Navigator: {\n    prototype: Navigator;\n    new(): Navigator;\n};\n\ninterface NavigatorAutomationInformation {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/webdriver) */\n    readonly webdriver: boolean;\n}\n\n/** Available only in secure contexts. */\ninterface NavigatorBadge {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/clearAppBadge) */\n    clearAppBadge(): Promise<void>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/setAppBadge) */\n    setAppBadge(contents?: number): Promise<void>;\n}\n\ninterface NavigatorConcurrentHardware {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/hardwareConcurrency) */\n    readonly hardwareConcurrency: number;\n}\n\ninterface NavigatorContentUtils {\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/registerProtocolHandler)\n     */\n    registerProtocolHandler(scheme: string, url: string | URL): void;\n}\n\ninterface NavigatorCookies {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/cookieEnabled) */\n    readonly cookieEnabled: boolean;\n}\n\ninterface NavigatorID {\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName)\n     */\n    readonly appCodeName: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appName)\n     */\n    readonly appName: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appVersion)\n     */\n    readonly appVersion: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/platform)\n     */\n    readonly platform: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/product)\n     */\n    readonly product: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/productSub)\n     */\n    readonly productSub: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/userAgent) */\n    readonly userAgent: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendor)\n     */\n    readonly vendor: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vendorSub)\n     */\n    readonly vendorSub: string;\n}\n\ninterface NavigatorLanguage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/language) */\n    readonly language: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/languages) */\n    readonly languages: ReadonlyArray<string>;\n}\n\n/** Available only in secure contexts. */\ninterface NavigatorLocks {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/locks) */\n    readonly locks: LockManager;\n}\n\n/**\n * The **`NavigatorLogin`** interface of the Federated Credential Management (FedCM) API defines login functionality for federated identity providers (IdPs).\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigatorLogin)\n */\ninterface NavigatorLogin {\n    /**\n     * The **`setStatus()`** method of the NavigatorLogin interface sets the login status of a federated identity provider (IdP), when called from the IdP's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigatorLogin/setStatus)\n     */\n    setStatus(status: LoginStatus): Promise<void>;\n}\n\ndeclare var NavigatorLogin: {\n    prototype: NavigatorLogin;\n    new(): NavigatorLogin;\n};\n\ninterface NavigatorOnLine {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/onLine) */\n    readonly onLine: boolean;\n}\n\ninterface NavigatorPlugins {\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes)\n     */\n    readonly mimeTypes: MimeTypeArray;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */\n    readonly pdfViewerEnabled: boolean;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/plugins)\n     */\n    readonly plugins: PluginArray;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/javaEnabled)\n     */\n    javaEnabled(): boolean;\n}\n\n/** Available only in secure contexts. */\ninterface NavigatorStorage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/storage) */\n    readonly storage: StorageManager;\n}\n\n/**\n * The DOM **`Node`** interface is an abstract base class upon which many other DOM API objects are based, thus letting those object types to be used similarly and often interchangeably.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node)\n */\ninterface Node extends EventTarget {\n    /**\n     * The read-only **`baseURI`** property of the Node interface returns the absolute base URL of the document containing the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/baseURI)\n     */\n    readonly baseURI: string;\n    /**\n     * The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes)\n     */\n    readonly childNodes: NodeListOf<ChildNode>;\n    /**\n     * The read-only **`firstChild`** property of the Node interface returns the node's first child in the tree, or `null` if the node has no children.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/firstChild)\n     */\n    readonly firstChild: ChildNode | null;\n    /**\n     * The read-only **`isConnected`** property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isConnected)\n     */\n    readonly isConnected: boolean;\n    /**\n     * The read-only **`lastChild`** property of the Node interface returns the last child of the node, or `null` if there are no child nodes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lastChild)\n     */\n    readonly lastChild: ChildNode | null;\n    /**\n     * The read-only **`nextSibling`** property of the Node interface returns the node immediately following the specified one in their parent's Node.childNodes, or returns `null` if the specified node is the last child in the parent element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nextSibling)\n     */\n    readonly nextSibling: ChildNode | null;\n    /**\n     * The read-only **`nodeName`** property of Node returns the name of the current node as a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeName)\n     */\n    readonly nodeName: string;\n    /**\n     * The read-only **`nodeType`** property of a Node interface is an integer that identifies what the node is.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeType)\n     */\n    readonly nodeType: number;\n    /**\n     * The **`nodeValue`** property of the Node interface returns or sets the value of the current node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeValue)\n     */\n    nodeValue: string | null;\n    /**\n     * The read-only **`ownerDocument`** property of the Node interface returns the top-level document object of the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/ownerDocument)\n     */\n    readonly ownerDocument: Document | null;\n    /**\n     * The read-only **`parentElement`** property of Node interface returns the DOM node's parent Element, or `null` if the node either has no parent, or its parent isn't a DOM Element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentElement)\n     */\n    readonly parentElement: HTMLElement | null;\n    /**\n     * The read-only **`parentNode`** property of the Node interface returns the parent of the specified node in the DOM tree.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentNode)\n     */\n    readonly parentNode: ParentNode | null;\n    /**\n     * The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's or `null` if the specified node is the first in that list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling)\n     */\n    readonly previousSibling: ChildNode | null;\n    /**\n     * The **`textContent`** property of the Node interface represents the text content of the node and its descendants.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent)\n     */\n    textContent: string | null;\n    /**\n     * The **`appendChild()`** method of the Node interface adds a node to the end of the list of children of a specified parent node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/appendChild)\n     */\n    appendChild<T extends Node>(node: T): T;\n    /**\n     * The **`cloneNode()`** method of the Node interface returns a duplicate of the node on which this method was called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)\n     */\n    cloneNode(subtree?: boolean): Node;\n    /**\n     * The **`compareDocumentPosition()`** method of the Node interface reports the position of its argument node relative to the node on which it is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/compareDocumentPosition)\n     */\n    compareDocumentPosition(other: Node): number;\n    /**\n     * The **`contains()`** method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (Node.childNodes), one of the children's direct children, and so on.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/contains)\n     */\n    contains(other: Node | null): boolean;\n    /**\n     * The **`getRootNode()`** method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/getRootNode)\n     */\n    getRootNode(options?: GetRootNodeOptions): Node;\n    /**\n     * The **`hasChildNodes()`** method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/hasChildNodes)\n     */\n    hasChildNodes(): boolean;\n    /**\n     * The **`insertBefore()`** method of the Node interface inserts a node before a _reference node_ as a child of a specified _parent node_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/insertBefore)\n     */\n    insertBefore<T extends Node>(node: T, child: Node | null): T;\n    /**\n     * The **`isDefaultNamespace()`** method of the Node interface accepts a namespace URI as an argument.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isDefaultNamespace)\n     */\n    isDefaultNamespace(namespace: string | null): boolean;\n    /**\n     * The **`isEqualNode()`** method of the Node interface tests whether two nodes are equal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isEqualNode)\n     */\n    isEqualNode(otherNode: Node | null): boolean;\n    /**\n     * The **`isSameNode()`** method of the Node interface is a legacy alias the for the `===` strict equality operator.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isSameNode)\n     */\n    isSameNode(otherNode: Node | null): boolean;\n    /**\n     * The **`lookupNamespaceURI()`** method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and `null` if not).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupNamespaceURI)\n     */\n    lookupNamespaceURI(prefix: string | null): string | null;\n    /**\n     * The **`lookupPrefix()`** method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and `null` if not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupPrefix)\n     */\n    lookupPrefix(namespace: string | null): string | null;\n    /**\n     * The **`normalize()`** method of the Node interface puts the specified node and all of its sub-tree into a _normalized_ form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/normalize)\n     */\n    normalize(): void;\n    /**\n     * The **`removeChild()`** method of the Node interface removes a child node from the DOM and returns the removed node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/removeChild)\n     */\n    removeChild<T extends Node>(child: T): T;\n    /**\n     * The **`replaceChild()`** method of the Node interface replaces a child node within the given (parent) node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/replaceChild)\n     */\n    replaceChild<T extends Node>(node: Node, child: T): T;\n    /** node is an element. */\n    readonly ELEMENT_NODE: 1;\n    readonly ATTRIBUTE_NODE: 2;\n    /** node is a Text node. */\n    readonly TEXT_NODE: 3;\n    /** node is a CDATASection node. */\n    readonly CDATA_SECTION_NODE: 4;\n    readonly ENTITY_REFERENCE_NODE: 5;\n    readonly ENTITY_NODE: 6;\n    /** node is a ProcessingInstruction node. */\n    readonly PROCESSING_INSTRUCTION_NODE: 7;\n    /** node is a Comment node. */\n    readonly COMMENT_NODE: 8;\n    /** node is a document. */\n    readonly DOCUMENT_NODE: 9;\n    /** node is a doctype. */\n    readonly DOCUMENT_TYPE_NODE: 10;\n    /** node is a DocumentFragment node. */\n    readonly DOCUMENT_FRAGMENT_NODE: 11;\n    readonly NOTATION_NODE: 12;\n    /** Set when node and other are not in the same tree. */\n    readonly DOCUMENT_POSITION_DISCONNECTED: 0x01;\n    /** Set when other is preceding node. */\n    readonly DOCUMENT_POSITION_PRECEDING: 0x02;\n    /** Set when other is following node. */\n    readonly DOCUMENT_POSITION_FOLLOWING: 0x04;\n    /** Set when other is an ancestor of node. */\n    readonly DOCUMENT_POSITION_CONTAINS: 0x08;\n    /** Set when other is a descendant of node. */\n    readonly DOCUMENT_POSITION_CONTAINED_BY: 0x10;\n    readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 0x20;\n}\n\ndeclare var Node: {\n    prototype: Node;\n    new(): Node;\n    /** node is an element. */\n    readonly ELEMENT_NODE: 1;\n    readonly ATTRIBUTE_NODE: 2;\n    /** node is a Text node. */\n    readonly TEXT_NODE: 3;\n    /** node is a CDATASection node. */\n    readonly CDATA_SECTION_NODE: 4;\n    readonly ENTITY_REFERENCE_NODE: 5;\n    readonly ENTITY_NODE: 6;\n    /** node is a ProcessingInstruction node. */\n    readonly PROCESSING_INSTRUCTION_NODE: 7;\n    /** node is a Comment node. */\n    readonly COMMENT_NODE: 8;\n    /** node is a document. */\n    readonly DOCUMENT_NODE: 9;\n    /** node is a doctype. */\n    readonly DOCUMENT_TYPE_NODE: 10;\n    /** node is a DocumentFragment node. */\n    readonly DOCUMENT_FRAGMENT_NODE: 11;\n    readonly NOTATION_NODE: 12;\n    /** Set when node and other are not in the same tree. */\n    readonly DOCUMENT_POSITION_DISCONNECTED: 0x01;\n    /** Set when other is preceding node. */\n    readonly DOCUMENT_POSITION_PRECEDING: 0x02;\n    /** Set when other is following node. */\n    readonly DOCUMENT_POSITION_FOLLOWING: 0x04;\n    /** Set when other is an ancestor of node. */\n    readonly DOCUMENT_POSITION_CONTAINS: 0x08;\n    /** Set when other is a descendant of node. */\n    readonly DOCUMENT_POSITION_CONTAINED_BY: 0x10;\n    readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 0x20;\n};\n\n/**\n * The **`NodeIterator`** interface represents an iterator to traverse nodes of a DOM subtree in document order.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator)\n */\ninterface NodeIterator {\n    /**\n     * The **`NodeIterator.filter`** read-only property returns a `NodeFilter` object, that is an object which implements an `acceptNode(node)` method, used to screen nodes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/filter)\n     */\n    readonly filter: NodeFilter | null;\n    /**\n     * The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the A boolean.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/pointerBeforeReferenceNode)\n     */\n    readonly pointerBeforeReferenceNode: boolean;\n    /**\n     * The **`NodeIterator.referenceNode`** read-only property returns the iterator remains anchored to the reference node as specified by this property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/referenceNode)\n     */\n    readonly referenceNode: Node;\n    /**\n     * The **`NodeIterator.root`** read-only property represents the traverses.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/root)\n     */\n    readonly root: Node;\n    /**\n     * The **`NodeIterator.whatToShow`** read-only property represents an `unsigned integer` representing a bitmask signifying what types of nodes should be returned by the NodeIterator.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/whatToShow)\n     */\n    readonly whatToShow: number;\n    /**\n     * The **`NodeIterator.detach()`** method is a no-op, kept for backward compatibility only.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/detach)\n     */\n    detach(): void;\n    /**\n     * The **`NodeIterator.nextNode()`** method returns the next node in the set represented by the NodeIterator and advances the position of the iterator within the set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/nextNode)\n     */\n    nextNode(): Node | null;\n    /**\n     * The **`NodeIterator.previousNode()`** method returns the previous node in the set represented by the NodeIterator and moves the position of the iterator backwards within the set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/previousNode)\n     */\n    previousNode(): Node | null;\n}\n\ndeclare var NodeIterator: {\n    prototype: NodeIterator;\n    new(): NodeIterator;\n};\n\n/**\n * **`NodeList`** objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeList)\n */\ninterface NodeList {\n    /**\n     * The **`NodeList.length`** property returns the number of items in a NodeList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeList/length)\n     */\n    readonly length: number;\n    /**\n     * Returns a node from a `NodeList` by index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeList/item)\n     */\n    item(index: number): Node | null;\n    forEach(callbackfn: (value: Node, key: number, parent: NodeList) => void, thisArg?: any): void;\n    [index: number]: Node;\n}\n\ndeclare var NodeList: {\n    prototype: NodeList;\n    new(): NodeList;\n};\n\ninterface NodeListOf<TNode extends Node> extends NodeList {\n    item(index: number): TNode;\n    forEach(callbackfn: (value: TNode, key: number, parent: NodeListOf<TNode>) => void, thisArg?: any): void;\n    [index: number]: TNode;\n}\n\ninterface NonDocumentTypeChildNode {\n    /**\n     * Returns the first following sibling that is an element, and null otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/nextElementSibling)\n     */\n    readonly nextElementSibling: Element | null;\n    /**\n     * Returns the first preceding sibling that is an element, and null otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/previousElementSibling)\n     */\n    readonly previousElementSibling: Element | null;\n}\n\ninterface NonElementParentNode {\n    /**\n     * Returns the first element within node's descendants whose ID is elementId.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementById)\n     */\n    getElementById(elementId: string): Element | null;\n}\n\ninterface NotificationEventMap {\n    \"click\": Event;\n    \"close\": Event;\n    \"error\": Event;\n    \"show\": Event;\n}\n\n/**\n * The **`Notification`** interface of the Notifications API is used to configure and display desktop notifications to the user.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)\n */\ninterface Notification extends EventTarget {\n    /**\n     * The **`badge`** read-only property of the Notification interface returns a string containing the URL of an image to represent the notification when there is not enough space to display the notification itself such as for example, the Android Notification Bar.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge)\n     */\n    readonly badge: string;\n    /**\n     * The **`body`** read-only property of the specified in the `body` option of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)\n     */\n    readonly body: string;\n    /**\n     * The **`data`** read-only property of the data, as specified in the `data` option of the The notification's data can be any arbitrary data that you want associated with the notification.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)\n     */\n    readonly data: any;\n    /**\n     * The **`dir`** read-only property of the Notification interface indicates the text direction of the notification, as specified in the `dir` option of the Notification.Notification constructor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/dir)\n     */\n    readonly dir: NotificationDirection;\n    /**\n     * The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)\n     */\n    readonly icon: string;\n    /**\n     * The **`lang`** read-only property of the as specified in the `lang` option of the The language itself is specified using a string representing a language tag according to MISSING: RFC(5646, 'Tags for Identifying Languages (also known as BCP 47)')].\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)\n     */\n    readonly lang: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/click_event) */\n    onclick: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/close_event) */\n    onclose: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/error_event) */\n    onerror: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/show_event) */\n    onshow: ((this: Notification, ev: Event) => any) | null;\n    /**\n     * The **`requireInteraction`** read-only property of the Notification interface returns a boolean value indicating that a notification should remain active until the user clicks or dismisses it, rather than closing automatically.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction)\n     */\n    readonly requireInteraction: boolean;\n    /**\n     * The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)\n     */\n    readonly silent: boolean | null;\n    /**\n     * The **`tag`** read-only property of the as specified in the `tag` option of the The idea of notification tags is that more than one notification can share the same tag, linking them together.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)\n     */\n    readonly tag: string;\n    /**\n     * The **`title`** read-only property of the specified in the `title` parameter of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)\n     */\n    readonly title: string;\n    /**\n     * The **`close()`** method of the Notification interface is used to close/remove a previously displayed notification.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/close)\n     */\n    close(): void;\n    addEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Notification: {\n    prototype: Notification;\n    new(title: string, options?: NotificationOptions): Notification;\n    /**\n     * The **`permission`** read-only static property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/permission_static)\n     */\n    readonly permission: NotificationPermission;\n    /**\n     * The **`requestPermission()`** static method of the Notification interface requests permission from the user for the current origin to display notifications.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requestPermission_static)\n     */\n    requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;\n};\n\n/**\n * The **`OES_draw_buffers_indexed`** extension is part of the WebGL API and enables the use of different blend options when writing to multiple color buffers simultaneously.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed)\n */\ninterface OES_draw_buffers_indexed {\n    /**\n     * The `blendEquationSeparateiOES()` method of the OES_draw_buffers_indexed WebGL extension sets the RGB and alpha blend equations separately for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendEquationSeparateiOES)\n     */\n    blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;\n    /**\n     * The `blendEquationiOES()` method of the `OES_draw_buffers_indexed` WebGL extension sets both the RGB blend and alpha blend equations for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendEquationiOES)\n     */\n    blendEquationiOES(buf: GLuint, mode: GLenum): void;\n    /**\n     * The `blendFuncSeparateiOES()` method of the OES_draw_buffers_indexed WebGL extension defines which function is used when blending pixels for RGB and alpha components separately for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendFuncSeparateiOES)\n     */\n    blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;\n    /**\n     * The `blendFunciOES()` method of the OES_draw_buffers_indexed WebGL extension defines which function is used when blending pixels for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendFunciOES)\n     */\n    blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;\n    /**\n     * The `colorMaskiOES()` method of the OES_draw_buffers_indexed WebGL extension sets which color components to enable or to disable when drawing or rendering for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/colorMaskiOES)\n     */\n    colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;\n    /**\n     * The `disableiOES()` method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/disableiOES)\n     */\n    disableiOES(target: GLenum, index: GLuint): void;\n    /**\n     * The `enableiOES()` method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/enableiOES)\n     */\n    enableiOES(target: GLenum, index: GLuint): void;\n}\n\n/**\n * The **`OES_element_index_uint`** extension is part of the WebGL API and adds support for `gl.UNSIGNED_INT` types to WebGLRenderingContext.drawElements().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_element_index_uint)\n */\ninterface OES_element_index_uint {\n}\n\n/**\n * The `OES_fbo_render_mipmap` extension is part of the WebGL API and makes it possible to attach any level of a texture to a framebuffer object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_fbo_render_mipmap)\n */\ninterface OES_fbo_render_mipmap {\n}\n\n/**\n * The **`OES_standard_derivatives`** extension is part of the WebGL API and adds the GLSL derivative functions `dFdx`, `dFdy`, and `fwidth`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_standard_derivatives)\n */\ninterface OES_standard_derivatives {\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: 0x8B8B;\n}\n\n/**\n * The **`OES_texture_float`** extension is part of the WebGL API and exposes floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float)\n */\ninterface OES_texture_float {\n}\n\n/**\n * The **`OES_texture_float_linear`** extension is part of the WebGL API and allows linear filtering with floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float_linear)\n */\ninterface OES_texture_float_linear {\n}\n\n/**\n * The **`OES_texture_half_float`** extension is part of the WebGL API and adds texture formats with 16- (aka half float) and 32-bit floating-point components.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float)\n */\ninterface OES_texture_half_float {\n    readonly HALF_FLOAT_OES: 0x8D61;\n}\n\n/**\n * The **`OES_texture_half_float_linear`** extension is part of the WebGL API and allows linear filtering with half floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float_linear)\n */\ninterface OES_texture_half_float_linear {\n}\n\n/**\n * The **OES_vertex_array_object** extension is part of the WebGL API and provides vertex array objects (VAOs) which encapsulate vertex array states.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object)\n */\ninterface OES_vertex_array_object {\n    /**\n     * The **`OES_vertex_array_object.bindVertexArrayOES()`** method of the WebGL API binds a passed WebGLVertexArrayObject object to the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/bindVertexArrayOES)\n     */\n    bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;\n    /**\n     * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a pointing to vertex array data and which provides names for different sets of vertex data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)\n     */\n    createVertexArrayOES(): WebGLVertexArrayObjectOES;\n    /**\n     * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given ```js-nolint deleteVertexArrayOES(arrayObject) ``` - `arrayObject` - : A WebGLVertexArrayObject (VAO) object to delete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)\n     */\n    deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;\n    /**\n     * The **`OES_vertex_array_object.isVertexArrayOES()`** method of the WebGL API returns `true` if the passed object is a WebGLVertexArrayObject object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/isVertexArrayOES)\n     */\n    isVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): GLboolean;\n    readonly VERTEX_ARRAY_BINDING_OES: 0x85B5;\n}\n\n/**\n * The `OVR_multiview2` extension is part of the WebGL API and adds support for rendering into multiple views simultaneously.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2)\n */\ninterface OVR_multiview2 {\n    /**\n     * The **`OVR_multiview2.framebufferTextureMultiviewOVR()`** method of the WebGL API attaches a multiview texture to a WebGLFramebuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2/framebufferTextureMultiviewOVR)\n     */\n    framebufferTextureMultiviewOVR(target: GLenum, attachment: GLenum, texture: WebGLTexture | null, level: GLint, baseViewIndex: GLint, numViews: GLsizei): void;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR: 0x9630;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR: 0x9632;\n    readonly MAX_VIEWS_OVR: 0x9631;\n    readonly FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR: 0x9633;\n}\n\n/**\n * The Web Audio API `OfflineAudioCompletionEvent` interface represents events that occur when the processing of an OfflineAudioContext is terminated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent)\n */\ninterface OfflineAudioCompletionEvent extends Event {\n    /**\n     * The **`renderedBuffer`** read-only property of the containing the result of processing an OfflineAudioContext.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer)\n     */\n    readonly renderedBuffer: AudioBuffer;\n}\n\ndeclare var OfflineAudioCompletionEvent: {\n    prototype: OfflineAudioCompletionEvent;\n    new(type: string, eventInitDict: OfflineAudioCompletionEventInit): OfflineAudioCompletionEvent;\n};\n\ninterface OfflineAudioContextEventMap extends BaseAudioContextEventMap {\n    \"complete\": OfflineAudioCompletionEvent;\n}\n\n/**\n * The `OfflineAudioContext` interface is an AudioContext interface representing an audio-processing graph built from linked together AudioNodes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext)\n */\ninterface OfflineAudioContext extends BaseAudioContext {\n    /**\n     * The **`length`** property of the the buffer in sample-frames.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/length)\n     */\n    readonly length: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/complete_event) */\n    oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null;\n    /**\n     * The **`resume()`** method of the context that has been suspended.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/resume)\n     */\n    resume(): Promise<void>;\n    /**\n     * The `startRendering()` method of the OfflineAudioContext Interface starts rendering the audio graph, taking into account the current connections and the current scheduled changes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/startRendering)\n     */\n    startRendering(): Promise<AudioBuffer>;\n    /**\n     * The **`suspend()`** method of the OfflineAudioContext interface schedules a suspension of the time progression in the audio context at the specified time and returns a promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/suspend)\n     */\n    suspend(suspendTime: number): Promise<void>;\n    addEventListener<K extends keyof OfflineAudioContextEventMap>(type: K, listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof OfflineAudioContextEventMap>(type: K, listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var OfflineAudioContext: {\n    prototype: OfflineAudioContext;\n    new(contextOptions: OfflineAudioContextOptions): OfflineAudioContext;\n    new(numberOfChannels: number, length: number, sampleRate: number): OfflineAudioContext;\n};\n\ninterface OffscreenCanvasEventMap {\n    \"contextlost\": Event;\n    \"contextrestored\": Event;\n}\n\n/**\n * When using the canvas element or the Canvas API, rendering, animation, and user interaction usually happen on the main execution thread of a web application.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas)\n */\ninterface OffscreenCanvas extends EventTarget {\n    /**\n     * The **`height`** property returns and sets the height of an OffscreenCanvas object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/height)\n     */\n    height: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextlost_event) */\n    oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextrestored_event) */\n    oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;\n    /**\n     * The **`width`** property returns and sets the width of an OffscreenCanvas object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/width)\n     */\n    width: number;\n    /**\n     * The **`OffscreenCanvas.convertToBlob()`** method creates a Blob object representing the image contained in the canvas.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/convertToBlob)\n     */\n    convertToBlob(options?: ImageEncodeOptions): Promise<Blob>;\n    /**\n     * The **`OffscreenCanvas.getContext()`** method returns a drawing context for an offscreen canvas, or `null` if the context identifier is not supported, or the offscreen canvas has already been set to a different context mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/getContext)\n     */\n    getContext(contextId: \"2d\", options?: any): OffscreenCanvasRenderingContext2D | null;\n    getContext(contextId: \"bitmaprenderer\", options?: any): ImageBitmapRenderingContext | null;\n    getContext(contextId: \"webgl\", options?: any): WebGLRenderingContext | null;\n    getContext(contextId: \"webgl2\", options?: any): WebGL2RenderingContext | null;\n    getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;\n    /**\n     * The **`OffscreenCanvas.transferToImageBitmap()`** method creates an ImageBitmap object from the most recently rendered image of the `OffscreenCanvas`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/transferToImageBitmap)\n     */\n    transferToImageBitmap(): ImageBitmap;\n    addEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var OffscreenCanvas: {\n    prototype: OffscreenCanvas;\n    new(width: number, height: number): OffscreenCanvas;\n};\n\n/**\n * The **`OffscreenCanvasRenderingContext2D`** interface is a CanvasRenderingContext2D rendering context for drawing to the bitmap of an `OffscreenCanvas` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D)\n */\ninterface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas) */\n    readonly canvas: OffscreenCanvas;\n}\n\ndeclare var OffscreenCanvasRenderingContext2D: {\n    prototype: OffscreenCanvasRenderingContext2D;\n    new(): OffscreenCanvasRenderingContext2D;\n};\n\n/**\n * The **`OscillatorNode`** interface represents a periodic waveform, such as a sine wave.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode)\n */\ninterface OscillatorNode extends AudioScheduledSourceNode {\n    /**\n     * The `detune` property of the OscillatorNode interface is an a-rate AudioParam representing detuning of oscillation in cents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/detune)\n     */\n    readonly detune: AudioParam;\n    /**\n     * The **`frequency`** property of the OscillatorNode interface is an a-rate AudioParam representing the frequency of oscillation in hertz.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/frequency)\n     */\n    readonly frequency: AudioParam;\n    /**\n     * The **`type`** property of the OscillatorNode interface specifies what shape of waveform the oscillator will output.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/type)\n     */\n    type: OscillatorType;\n    /**\n     * The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when ```js-nolint setPeriodicWave(wave) ``` - `wave` - : A PeriodicWave object representing the waveform to use as the shape of the oscillator's output.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/setPeriodicWave)\n     */\n    setPeriodicWave(periodicWave: PeriodicWave): void;\n    addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: OscillatorNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(type: K, listener: (this: OscillatorNode, ev: AudioScheduledSourceNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var OscillatorNode: {\n    prototype: OscillatorNode;\n    new(context: BaseAudioContext, options?: OscillatorOptions): OscillatorNode;\n};\n\n/**\n * The **`OverconstrainedError`** interface of the Media Capture and Streams API indicates that the set of desired capabilities for the current MediaStreamTrack cannot currently be met.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError)\n */\ninterface OverconstrainedError extends DOMException {\n    /**\n     * The **`constraint`** read-only property of the in the constructor, meaning the constraint that was not satisfied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint)\n     */\n    readonly constraint: string;\n}\n\ndeclare var OverconstrainedError: {\n    prototype: OverconstrainedError;\n    new(constraint: string, message?: string): OverconstrainedError;\n};\n\n/**\n * The **`PageRevealEvent`** event object is made available inside handler functions for the Window.pagereveal_event event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageRevealEvent)\n */\ninterface PageRevealEvent extends Event {\n    /**\n     * The **`viewTransition`** read-only property of the PageRevealEvent interface contains a ViewTransition object representing the active view transition for the cross-document navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageRevealEvent/viewTransition)\n     */\n    readonly viewTransition: ViewTransition | null;\n}\n\ndeclare var PageRevealEvent: {\n    prototype: PageRevealEvent;\n    new(type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;\n};\n\n/**\n * The **`PageSwapEvent`** event object is made available inside handler functions for the Window.pageswap_event event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent)\n */\ninterface PageSwapEvent extends Event {\n    /**\n     * The **`activation`** read-only property of the PageSwapEvent interface contains a NavigationActivation object containing the navigation type and current and destination document history entries for a same-origin navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent/activation)\n     */\n    readonly activation: NavigationActivation | null;\n    /**\n     * The **`viewTransition`** read-only property of the PageRevealEvent interface contains a ViewTransition object representing the active view transition for the cross-document navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent/viewTransition)\n     */\n    readonly viewTransition: ViewTransition | null;\n}\n\ndeclare var PageSwapEvent: {\n    prototype: PageSwapEvent;\n    new(type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;\n};\n\n/**\n * The **`PageTransitionEvent`** event object is available inside handler functions for the `pageshow` and `pagehide` events, fired when a document is being loaded or unloaded.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageTransitionEvent)\n */\ninterface PageTransitionEvent extends Event {\n    /**\n     * The **`persisted`** read-only property indicates if a webpage is loading from a cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageTransitionEvent/persisted)\n     */\n    readonly persisted: boolean;\n}\n\ndeclare var PageTransitionEvent: {\n    prototype: PageTransitionEvent;\n    new(type: string, eventInitDict?: PageTransitionEventInit): PageTransitionEvent;\n};\n\n/**\n * The `PannerNode` interface defines an audio-processing object that represents the location, direction, and behavior of an audio source signal in a simulated physical space.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode)\n */\ninterface PannerNode extends AudioNode {\n    /**\n     * The `coneInnerAngle` property of the PannerNode interface is a double value describing the angle, in degrees, of a cone inside of which there will be no volume reduction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/coneInnerAngle)\n     */\n    coneInnerAngle: number;\n    /**\n     * The `coneOuterAngle` property of the PannerNode interface is a double value describing the angle, in degrees, of a cone outside of which the volume will be reduced by a constant value, defined by the PannerNode.coneOuterGain property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/coneOuterAngle)\n     */\n    coneOuterAngle: number;\n    /**\n     * The `coneOuterGain` property of the PannerNode interface is a double value, describing the amount of volume reduction outside the cone, defined by the PannerNode.coneOuterAngle attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/coneOuterGain)\n     */\n    coneOuterGain: number;\n    /**\n     * The `distanceModel` property of the PannerNode interface is an enumerated value determining which algorithm to use to reduce the volume of the audio source as it moves away from the listener.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/distanceModel)\n     */\n    distanceModel: DistanceModelType;\n    /**\n     * The `maxDistance` property of the PannerNode interface is a double value representing the maximum distance between the audio source and the listener, after which the volume is not reduced any further.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/maxDistance)\n     */\n    maxDistance: number;\n    /**\n     * The **`orientationX`** property of the PannerNode interface indicates the X (horizontal) component of the direction in which the audio source is facing, in a 3D Cartesian coordinate space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/orientationX)\n     */\n    readonly orientationX: AudioParam;\n    /**\n     * The **`orientationY`** property of the PannerNode interface indicates the Y (vertical) component of the direction the audio source is facing, in 3D Cartesian coordinate space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/orientationY)\n     */\n    readonly orientationY: AudioParam;\n    /**\n     * The **`orientationZ`** property of the PannerNode interface indicates the Z (depth) component of the direction the audio source is facing, in 3D Cartesian coordinate space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/orientationZ)\n     */\n    readonly orientationZ: AudioParam;\n    /**\n     * The `panningModel` property of the PannerNode interface is an enumerated value determining which spatialization algorithm to use to position the audio in 3D space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/panningModel)\n     */\n    panningModel: PanningModelType;\n    /**\n     * The **`positionX`** property of the PannerNode interface specifies the X coordinate of the audio source's position in 3D Cartesian coordinates, corresponding to the _horizontal_ axis (left-right).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/positionX)\n     */\n    readonly positionX: AudioParam;\n    /**\n     * The **`positionY`** property of the PannerNode interface specifies the Y coordinate of the audio source's position in 3D Cartesian coordinates, corresponding to the _vertical_ axis (top-bottom).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/positionY)\n     */\n    readonly positionY: AudioParam;\n    /**\n     * The **`positionZ`** property of the PannerNode interface specifies the Z coordinate of the audio source's position in 3D Cartesian coordinates, corresponding to the _depth_ axis (behind-in front of the listener).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/positionZ)\n     */\n    readonly positionZ: AudioParam;\n    /**\n     * The `refDistance` property of the PannerNode interface is a double value representing the reference distance for reducing volume as the audio source moves further from the listener – i.e., the distance at which the volume reduction starts taking effect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/refDistance)\n     */\n    refDistance: number;\n    /**\n     * The `rolloffFactor` property of the PannerNode interface is a double value describing how quickly the volume is reduced as the source moves away from the listener.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/rolloffFactor)\n     */\n    rolloffFactor: number;\n    /**\n     * The `setOrientation()` method of the PannerNode Interface defines the direction the audio source is playing in.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/setOrientation)\n     */\n    setOrientation(x: number, y: number, z: number): void;\n    /**\n     * The `setPosition()` method of the PannerNode Interface defines the position of the audio source relative to the listener (represented by an AudioListener object stored in the BaseAudioContext.listener attribute.) The three parameters `x`, `y` and `z` are unitless and describe the source's position in 3D space using the right-hand Cartesian coordinate system.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PannerNode/setPosition)\n     */\n    setPosition(x: number, y: number, z: number): void;\n}\n\ndeclare var PannerNode: {\n    prototype: PannerNode;\n    new(context: BaseAudioContext, options?: PannerOptions): PannerNode;\n};\n\ninterface ParentNode extends Node {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/childElementCount) */\n    readonly childElementCount: number;\n    /**\n     * Returns the child elements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/children)\n     */\n    readonly children: HTMLCollection;\n    /**\n     * Returns the first child that is an element, and null otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/firstElementChild)\n     */\n    readonly firstElementChild: Element | null;\n    /**\n     * Returns the last child that is an element, and null otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lastElementChild)\n     */\n    readonly lastElementChild: Element | null;\n    /**\n     * Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)\n     */\n    append(...nodes: (Node | string)[]): void;\n    /**\n     * Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/prepend)\n     */\n    prepend(...nodes: (Node | string)[]): void;\n    /**\n     * Returns the first element that is a descendant of node that matches selectors.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelector)\n     */\n    querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;\n    querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;\n    querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;\n    /** @deprecated */\n    querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;\n    querySelector<E extends Element = Element>(selectors: string): E | null;\n    /**\n     * Returns all element descendants of node that match selectors.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelectorAll)\n     */\n    querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;\n    querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;\n    querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;\n    /** @deprecated */\n    querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;\n    querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;\n    /**\n     * Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.\n     *\n     * Throws a \"HierarchyRequestError\" DOMException if the constraints of the node tree are violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/replaceChildren)\n     */\n    replaceChildren(...nodes: (Node | string)[]): void;\n}\n\n/**\n * The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Path2D)\n */\ninterface Path2D extends CanvasPath {\n    /**\n     * The **`Path2D.addPath()`** method of the Canvas 2D API adds one Path2D object to another `Path2D` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Path2D/addPath)\n     */\n    addPath(path: Path2D, transform?: DOMMatrix2DInit): void;\n}\n\ndeclare var Path2D: {\n    prototype: Path2D;\n    new(path?: Path2D | string): Path2D;\n};\n\n/**\n * The **`ContactAddress`** interface of the Contact Picker API represents a physical address.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress)\n */\ninterface PaymentAddress {\n    /**\n     * The **`addressLine`** read-only property of the ContactAddress interface is an array of strings, each specifying a line of the address that is not covered by one of the other properties of `ContactAddress`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/addressLine)\n     */\n    readonly addressLine: ReadonlyArray<string>;\n    /**\n     * The **`city`** read-only property of the ContactAddress interface returns a string containing the city or town portion of the address.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/city)\n     */\n    readonly city: string;\n    /**\n     * The **`country`** read-only property of the ContactAddress interface is a string identifying the address's country using the ISO 3166-1 alpha-2 standard.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/country)\n     */\n    readonly country: string;\n    /**\n     * The read-only **`dependentLocality`** property of the ContactAddress interface is a string containing a locality or sublocality designation within a city, such as a neighborhood, borough, district, or, in the United Kingdom, a dependent locality.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/dependentLocality)\n     */\n    readonly dependentLocality: string;\n    /**\n     * The **`organization`** read-only property of the ContactAddress interface returns a string containing the name of the organization, firm, company, or institution at the address.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/organization)\n     */\n    readonly organization: string;\n    /**\n     * The read-only **`phone`** property of the ContactAddress interface returns a string containing the telephone number of the recipient or contact person at the address.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/phone)\n     */\n    readonly phone: string;\n    /**\n     * The **`postalCode`** read-only property of the ContactAddress interface returns a string containing a code used by a jurisdiction for mail routing, for example, the ZIP Code in the United States or the Postal Index Number (PIN code) in India.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/postalCode)\n     */\n    readonly postalCode: string;\n    /**\n     * The read-only **`recipient`** property of the ContactAddress interface returns a string containing the name of the recipient, purchaser, or contact person at the address.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/recipient)\n     */\n    readonly recipient: string;\n    /**\n     * The read-only **`region`** property of the ContactAddress interface returns a string containing the top-level administrative subdivision of the country in which the address is located.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/region)\n     */\n    readonly region: string;\n    /**\n     * The **`sortingCode`** read-only property of the ContactAddress interface returns a string containing a postal sorting code such as is used in France.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/sortingCode)\n     */\n    readonly sortingCode: string;\n    /**\n     * The **`toJSON()`** method of the ContactAddress interface is a standard serializer that returns a JSON representation of the `ContactAddress` object's properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ContactAddress/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PaymentAddress: {\n    prototype: PaymentAddress;\n    new(): PaymentAddress;\n};\n\n/**\n * The **`PaymentMethodChangeEvent`** interface of the Payment Request API describes the PaymentRequest/paymentmethodchange_event event which is fired by some payment handlers when the user switches payment instruments (e.g., a user selects a 'store' card to make a purchase while using Apple Pay).\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentMethodChangeEvent)\n */\ninterface PaymentMethodChangeEvent extends PaymentRequestUpdateEvent {\n    /**\n     * The read-only **`methodDetails`** property of the PaymentMethodChangeEvent interface is an object containing any data the payment handler may provide to describe the change the user has made to their payment method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentMethodChangeEvent/methodDetails)\n     */\n    readonly methodDetails: any;\n    /**\n     * The read-only **`methodName`** property of the PaymentMethodChangeEvent interface is a string which uniquely identifies the payment handler currently selected by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentMethodChangeEvent/methodName)\n     */\n    readonly methodName: string;\n}\n\ndeclare var PaymentMethodChangeEvent: {\n    prototype: PaymentMethodChangeEvent;\n    new(type: string, eventInitDict?: PaymentMethodChangeEventInit): PaymentMethodChangeEvent;\n};\n\ninterface PaymentRequestEventMap {\n    \"paymentmethodchange\": PaymentMethodChangeEvent;\n    \"shippingaddresschange\": PaymentRequestUpdateEvent;\n    \"shippingoptionchange\": PaymentRequestUpdateEvent;\n}\n\n/**\n * The Payment Request API's **`PaymentRequest`** interface is the primary access point into the API, and lets web content and apps accept payments from the end user on behalf of the operator of the site or the publisher of the app.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest)\n */\ninterface PaymentRequest extends EventTarget {\n    /**\n     * The **`id`** read-only attribute of the When constructing an instance of the PaymentRequest, you are able to supply an custom id.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/id)\n     */\n    readonly id: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/paymentmethodchange_event) */\n    onpaymentmethodchange: ((this: PaymentRequest, ev: PaymentMethodChangeEvent) => any) | null;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingaddresschange_event)\n     */\n    onshippingaddresschange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingoptionchange_event)\n     */\n    onshippingoptionchange: ((this: PaymentRequest, ev: PaymentRequestUpdateEvent) => any) | null;\n    /**\n     * The **`shippingAddress`** read-only property of the PaymentRequest interface returns the shipping address provided by the user.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingAddress)\n     */\n    readonly shippingAddress: PaymentAddress | null;\n    /**\n     * The **`shippingOption`** read-only attribute of the PaymentRequest interface returns either the id of a selected shipping option, null (if no shipping option was set to be selected) or a shipping option selected by the user.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingOption)\n     */\n    readonly shippingOption: string | null;\n    /**\n     * The **`shippingType`** read-only property of the `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingType)\n     */\n    readonly shippingType: PaymentShippingType | null;\n    /**\n     * The `PaymentRequest.abort()` method of the PaymentRequest interface causes the user agent to end the payment request and to remove any user interface that might be shown.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/abort)\n     */\n    abort(): Promise<void>;\n    /**\n     * The PaymentRequest method **`canMakePayment()`** determines whether or not the request is configured in a way that is compatible with at least one payment method supported by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/canMakePayment)\n     */\n    canMakePayment(): Promise<boolean>;\n    /**\n     * The **PaymentRequest** interface's **`show()`** method instructs the user agent to begin the process of showing and handling the user interface for the payment request to the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/show)\n     */\n    show(detailsPromise?: PaymentDetailsUpdate | PromiseLike<PaymentDetailsUpdate>): Promise<PaymentResponse>;\n    addEventListener<K extends keyof PaymentRequestEventMap>(type: K, listener: (this: PaymentRequest, ev: PaymentRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PaymentRequestEventMap>(type: K, listener: (this: PaymentRequest, ev: PaymentRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var PaymentRequest: {\n    prototype: PaymentRequest;\n    new(methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest;\n};\n\n/**\n * The **`PaymentRequestUpdateEvent`** interface is used for events sent to a PaymentRequest instance when changes are made to shipping-related information for a pending PaymentRequest.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent)\n */\ninterface PaymentRequestUpdateEvent extends Event {\n    /**\n     * The **`updateWith()`** method of the ```js-nolint updateWith(details) ``` - `details` - : Either an object or a Promise that resolves to an object, specifying the changes applied to the payment request: - `displayItems` MISSING: optional_inline] - : An array of objects, each describing one line item for the payment request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent/updateWith)\n     */\n    updateWith(detailsPromise: PaymentDetailsUpdate | PromiseLike<PaymentDetailsUpdate>): void;\n}\n\ndeclare var PaymentRequestUpdateEvent: {\n    prototype: PaymentRequestUpdateEvent;\n    new(type: string, eventInitDict?: PaymentRequestUpdateEventInit): PaymentRequestUpdateEvent;\n};\n\ninterface PaymentResponseEventMap {\n    \"payerdetailchange\": PaymentRequestUpdateEvent;\n}\n\n/**\n * The **`PaymentResponse`** interface of the Payment Request API is returned after a user selects a payment method and approves a payment request.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse)\n */\ninterface PaymentResponse extends EventTarget {\n    /**\n     * The **`details`** read-only property of the provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/details)\n     */\n    readonly details: any;\n    /**\n     * The **`methodName`** read-only property of the PaymentResponse interface returns a string uniquely identifying the payment handler selected by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/methodName)\n     */\n    readonly methodName: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerdetailchange_event) */\n    onpayerdetailchange: ((this: PaymentResponse, ev: PaymentRequestUpdateEvent) => any) | null;\n    /**\n     * The `payerEmail` read-only property of the PaymentResponse interface returns the email address supplied by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerEmail)\n     */\n    readonly payerEmail: string | null;\n    /**\n     * The **`payerName`** read-only property of the option is only present when the `requestPayerName` option is set to `true` in the options parameter of the A string containing the payer name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)\n     */\n    readonly payerName: string | null;\n    /**\n     * The `payerPhone` read-only property of the PaymentResponse interface returns the phone number supplied by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerPhone)\n     */\n    readonly payerPhone: string | null;\n    /**\n     * The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/requestId)\n     */\n    readonly requestId: string;\n    /**\n     * The **`shippingAddress`** read-only property of the `PaymentRequest` interface returns a PaymentAddress object containing the shipping address provided by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/shippingAddress)\n     */\n    readonly shippingAddress: PaymentAddress | null;\n    /**\n     * The **`shippingOption`** read-only property of the `PaymentRequest` interface returns the ID attribute of the shipping option selected by the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/shippingOption)\n     */\n    readonly shippingOption: string | null;\n    /**\n     * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user interface to be closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/complete)\n     */\n    complete(result?: PaymentComplete): Promise<void>;\n    /**\n     * The PaymentResponse interface's **`retry()`** method makes it possible to ask the user to retry a payment after an error occurs during processing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/retry)\n     */\n    retry(errorFields?: PaymentValidationErrors): Promise<void>;\n    /**\n     * The **`toJSON()`** method of the PaymentResponse interface is a Serialization; it returns a JSON representation of the PaymentResponse object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/toJSON)\n     */\n    toJSON(): any;\n    addEventListener<K extends keyof PaymentResponseEventMap>(type: K, listener: (this: PaymentResponse, ev: PaymentResponseEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PaymentResponseEventMap>(type: K, listener: (this: PaymentResponse, ev: PaymentResponseEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var PaymentResponse: {\n    prototype: PaymentResponse;\n    new(): PaymentResponse;\n};\n\ninterface PerformanceEventMap {\n    \"resourcetimingbufferfull\": Event;\n}\n\n/**\n * The **`Performance`** interface provides access to performance-related information for the current page.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance)\n */\ninterface Performance extends EventTarget {\n    /**\n     * The read-only `performance.eventCounts` property is an EventCounts map containing the number of events which have been dispatched per event type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/eventCounts)\n     */\n    readonly eventCounts: EventCounts;\n    /**\n     * The legacy **`Performance.navigation`** read-only property returns a PerformanceNavigation object representing the type of navigation that occurs in the given browsing context, such as the number of redirections needed to fetch the resource.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/navigation)\n     */\n    readonly navigation: PerformanceNavigation;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/resourcetimingbufferfull_event) */\n    onresourcetimingbufferfull: ((this: Performance, ev: Event) => any) | null;\n    /**\n     * The **`timeOrigin`** read-only property of the Performance interface returns the high resolution timestamp that is used as the baseline for performance-related timestamps.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/timeOrigin)\n     */\n    readonly timeOrigin: DOMHighResTimeStamp;\n    /**\n     * The legacy **`Performance.timing`** read-only property returns a PerformanceTiming object containing latency-related performance information.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/timing)\n     */\n    readonly timing: PerformanceTiming;\n    /**\n     * The **`clearMarks()`** method removes all or specific PerformanceMark objects from the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearMarks)\n     */\n    clearMarks(markName?: string): void;\n    /**\n     * The **`clearMeasures()`** method removes all or specific PerformanceMeasure objects from the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearMeasures)\n     */\n    clearMeasures(measureName?: string): void;\n    /**\n     * The **`clearResourceTimings()`** method removes all performance entries with an PerformanceEntry.entryType of `'resource'` from the browser's performance timeline and sets the size of the performance resource data buffer to zero.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearResourceTimings)\n     */\n    clearResourceTimings(): void;\n    /**\n     * The **`getEntries()`** method returns an array of all PerformanceEntry objects currently present in the performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntries)\n     */\n    getEntries(): PerformanceEntryList;\n    /**\n     * The **`getEntriesByName()`** method returns an array of PerformanceEntry objects currently present in the performance timeline with the given _name_ and _type_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntriesByName)\n     */\n    getEntriesByName(name: string, type?: string): PerformanceEntryList;\n    /**\n     * The **`getEntriesByType()`** method returns an array of PerformanceEntry objects currently present in the performance timeline for a given _type_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntriesByType)\n     */\n    getEntriesByType(type: string): PerformanceEntryList;\n    /**\n     * The **`mark()`** method creates a named PerformanceMark object representing a high resolution timestamp marker in the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/mark)\n     */\n    mark(markName: string, markOptions?: PerformanceMarkOptions): PerformanceMark;\n    /**\n     * The **`measure()`** method creates a named PerformanceMeasure object representing a time measurement between two marks in the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/measure)\n     */\n    measure(measureName: string, startOrMeasureOptions?: string | PerformanceMeasureOptions, endMark?: string): PerformanceMeasure;\n    /**\n     * The **`performance.now()`** method returns a high resolution timestamp in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/now)\n     */\n    now(): DOMHighResTimeStamp;\n    /**\n     * The **`setResourceTimingBufferSize()`** method sets the desired size of the browser's resource timing buffer which stores the `'resource'` performance entries.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/setResourceTimingBufferSize)\n     */\n    setResourceTimingBufferSize(maxSize: number): void;\n    /**\n     * The **`toJSON()`** method of the Performance interface is a Serialization; it returns a JSON representation of the Performance object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/toJSON)\n     */\n    toJSON(): any;\n    addEventListener<K extends keyof PerformanceEventMap>(type: K, listener: (this: Performance, ev: PerformanceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PerformanceEventMap>(type: K, listener: (this: Performance, ev: PerformanceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Performance: {\n    prototype: Performance;\n    new(): Performance;\n};\n\n/**\n * The **`PerformanceEntry`** object encapsulates a single performance metric that is part of the browser's performance timeline.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry)\n */\ninterface PerformanceEntry {\n    /**\n     * The read-only **`duration`** property returns a DOMHighResTimeStamp that is the duration of the PerformanceEntry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/duration)\n     */\n    readonly duration: DOMHighResTimeStamp;\n    /**\n     * The read-only **`entryType`** property returns a string representing the type of performance metric that this entry represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/entryType)\n     */\n    readonly entryType: string;\n    /**\n     * The read-only **`name`** property of the PerformanceEntry interface is a string representing the name for a performance entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`startTime`** property returns the first DOMHighResTimeStamp recorded for this PerformanceEntry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/startTime)\n     */\n    readonly startTime: DOMHighResTimeStamp;\n    /**\n     * The **`toJSON()`** method is a Serialization; it returns a JSON representation of the PerformanceEntry object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceEntry: {\n    prototype: PerformanceEntry;\n    new(): PerformanceEntry;\n};\n\n/**\n * The `PerformanceEventTiming` interface of the Event Timing API provides insights into the latency of certain event types triggered by user interaction.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming)\n */\ninterface PerformanceEventTiming extends PerformanceEntry {\n    /**\n     * The read-only **`cancelable`** property returns the associated event's `cancelable` property, indicating whether the event can be canceled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/cancelable)\n     */\n    readonly cancelable: boolean;\n    /**\n     * The read-only **`processingEnd`** property returns the time the last event handler finished executing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/processingEnd)\n     */\n    readonly processingEnd: DOMHighResTimeStamp;\n    /**\n     * The read-only **`processingStart`** property returns the time at which event dispatch started.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/processingStart)\n     */\n    readonly processingStart: DOMHighResTimeStamp;\n    /**\n     * The read-only **`target`** property returns the associated event's last `target` which is the node onto which the event was last dispatched.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/target)\n     */\n    readonly target: Node | null;\n    /**\n     * The **`toJSON()`** method of the PerformanceEventTiming interface is a Serialization; it returns a JSON representation of the PerformanceEventTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceEventTiming: {\n    prototype: PerformanceEventTiming;\n    new(): PerformanceEventTiming;\n};\n\n/**\n * **`PerformanceMark`** is an interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'mark'`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMark)\n */\ninterface PerformanceMark extends PerformanceEntry {\n    /**\n     * The read-only **`detail`** property returns arbitrary metadata that was included in the mark upon construction (either when using Performance.mark or the PerformanceMark.PerformanceMark constructor).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMark/detail)\n     */\n    readonly detail: any;\n}\n\ndeclare var PerformanceMark: {\n    prototype: PerformanceMark;\n    new(markName: string, markOptions?: PerformanceMarkOptions): PerformanceMark;\n};\n\n/**\n * **`PerformanceMeasure`** is an _abstract_ interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'measure'`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMeasure)\n */\ninterface PerformanceMeasure extends PerformanceEntry {\n    /**\n     * The read-only **`detail`** property returns arbitrary metadata that was included in the mark upon construction (when using Performance.measure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMeasure/detail)\n     */\n    readonly detail: any;\n}\n\ndeclare var PerformanceMeasure: {\n    prototype: PerformanceMeasure;\n    new(): PerformanceMeasure;\n};\n\n/**\n * The legacy **`PerformanceNavigation`** interface represents information about how the navigation to the current document was done.\n * @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigation)\n */\ninterface PerformanceNavigation {\n    /**\n     * The legacy **`PerformanceNavigation.redirectCount`** read-only property returns an `unsigned short` representing the number of REDIRECTs done before reaching the page.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigation/redirectCount)\n     */\n    readonly redirectCount: number;\n    /**\n     * The legacy **`PerformanceNavigation.type`** read-only property returns an `unsigned short` containing a constant describing how the navigation to this page was done.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigation/type)\n     */\n    readonly type: number;\n    /**\n     * The **`toJSON()`** method of the PerformanceNavigation interface is a Serialization; it returns a JSON representation of the PerformanceNavigation object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigation/toJSON)\n     */\n    toJSON(): any;\n    readonly TYPE_NAVIGATE: 0;\n    readonly TYPE_RELOAD: 1;\n    readonly TYPE_BACK_FORWARD: 2;\n    readonly TYPE_RESERVED: 255;\n}\n\n/** @deprecated */\ndeclare var PerformanceNavigation: {\n    prototype: PerformanceNavigation;\n    new(): PerformanceNavigation;\n    readonly TYPE_NAVIGATE: 0;\n    readonly TYPE_RELOAD: 1;\n    readonly TYPE_BACK_FORWARD: 2;\n    readonly TYPE_RESERVED: 255;\n};\n\n/**\n * The **`PerformanceNavigationTiming`** interface provides methods and properties to store and retrieve metrics regarding the browser's document navigation events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming)\n */\ninterface PerformanceNavigationTiming extends PerformanceResourceTiming {\n    /**\n     * The **`domComplete`** read-only property returns a DOMHighResTimeStamp representing the time immediately before the user agent sets the document's `readyState` to `'complete'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/domComplete)\n     */\n    readonly domComplete: DOMHighResTimeStamp;\n    /**\n     * The **`domContentLoadedEventEnd`** read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's `DOMContentLoaded` event handler completes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/domContentLoadedEventEnd)\n     */\n    readonly domContentLoadedEventEnd: DOMHighResTimeStamp;\n    /**\n     * The **`domContentLoadedEventStart`** read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's `DOMContentLoaded` event handler starts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/domContentLoadedEventStart)\n     */\n    readonly domContentLoadedEventStart: DOMHighResTimeStamp;\n    /**\n     * The **`domInteractive`** read-only property returns a DOMHighResTimeStamp representing the time immediately before the user agent sets the document's `readyState` to `'interactive'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/domInteractive)\n     */\n    readonly domInteractive: DOMHighResTimeStamp;\n    /**\n     * The **`loadEventEnd`** read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's `load` event handler completes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/loadEventEnd)\n     */\n    readonly loadEventEnd: DOMHighResTimeStamp;\n    /**\n     * The **`loadEventStart`** read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's `load` event handler starts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/loadEventStart)\n     */\n    readonly loadEventStart: DOMHighResTimeStamp;\n    /**\n     * The **`redirectCount`** read-only property returns a number representing the number of redirects since the last non-redirect navigation in the current browsing context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/redirectCount)\n     */\n    readonly redirectCount: number;\n    /**\n     * The **`type`** read-only property returns the type of navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/type)\n     */\n    readonly type: NavigationTimingType;\n    /**\n     * The **`unloadEventEnd`** read-only property returns a DOMHighResTimeStamp representing the time immediately after the current document's `unload` event handler completes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/unloadEventEnd)\n     */\n    readonly unloadEventEnd: DOMHighResTimeStamp;\n    /**\n     * The **`unloadEventStart`** read-only property returns a DOMHighResTimeStamp representing the time immediately before the current document's `unload` event handler starts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/unloadEventStart)\n     */\n    readonly unloadEventStart: DOMHighResTimeStamp;\n    /**\n     * The **`toJSON()`** method of the PerformanceNavigationTiming interface is a Serialization; it returns a JSON representation of the PerformanceNavigationTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceNavigationTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceNavigationTiming: {\n    prototype: PerformanceNavigationTiming;\n    new(): PerformanceNavigationTiming;\n};\n\n/**\n * The **`PerformanceObserver`** interface is used to observe performance measurement events and be notified of new PerformanceEntry as they are recorded in the browser's _performance timeline_.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver)\n */\ninterface PerformanceObserver {\n    /**\n     * The **`disconnect()`** method of the PerformanceObserver interface is used to stop the performance observer from receiving any PerformanceEntry events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The **`observe()`** method of the **PerformanceObserver** interface is used to specify the set of performance entry types to observe.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/observe)\n     */\n    observe(options?: PerformanceObserverInit): void;\n    /**\n     * The **`takeRecords()`** method of the PerformanceObserver interface returns the current list of PerformanceEntry objects stored in the performance observer, emptying it out.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/takeRecords)\n     */\n    takeRecords(): PerformanceEntryList;\n}\n\ndeclare var PerformanceObserver: {\n    prototype: PerformanceObserver;\n    new(callback: PerformanceObserverCallback): PerformanceObserver;\n    /**\n     * The static **`supportedEntryTypes`** read-only property of the PerformanceObserver interface returns an array of the PerformanceEntry.entryType values supported by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/supportedEntryTypes_static)\n     */\n    readonly supportedEntryTypes: ReadonlyArray<string>;\n};\n\n/**\n * The **`PerformanceObserverEntryList`** interface is a list of PerformanceEntry that were explicitly observed via the PerformanceObserver.observe method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList)\n */\ninterface PerformanceObserverEntryList {\n    /**\n     * The **`getEntries()`** method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntries)\n     */\n    getEntries(): PerformanceEntryList;\n    /**\n     * The **`getEntriesByName()`** method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects for a given PerformanceEntry.name and PerformanceEntry.entryType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntriesByName)\n     */\n    getEntriesByName(name: string, type?: string): PerformanceEntryList;\n    /**\n     * The **`getEntriesByType()`** method of the PerformanceObserverEntryList returns a list of explicitly _observed_ PerformanceEntry objects for a given PerformanceEntry.entryType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntriesByType)\n     */\n    getEntriesByType(type: string): PerformanceEntryList;\n}\n\ndeclare var PerformanceObserverEntryList: {\n    prototype: PerformanceObserverEntryList;\n    new(): PerformanceObserverEntryList;\n};\n\n/**\n * The **`PerformancePaintTiming`** interface provides timing information about 'paint' (also called 'render') operations during web page construction.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)\n */\ninterface PerformancePaintTiming extends PerformanceEntry {\n}\n\ndeclare var PerformancePaintTiming: {\n    prototype: PerformancePaintTiming;\n    new(): PerformancePaintTiming;\n};\n\n/**\n * The **`PerformanceResourceTiming`** interface enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming)\n */\ninterface PerformanceResourceTiming extends PerformanceEntry {\n    /**\n     * The **`connectEnd`** read-only property returns the DOMHighResTimeStamp immediately after the browser finishes establishing the connection to the server to retrieve the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectEnd)\n     */\n    readonly connectEnd: DOMHighResTimeStamp;\n    /**\n     * The **`connectStart`** read-only property returns the DOMHighResTimeStamp immediately before the user agent starts establishing the connection to the server to retrieve the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)\n     */\n    readonly connectStart: DOMHighResTimeStamp;\n    /**\n     * The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/decodedBodySize)\n     */\n    readonly decodedBodySize: number;\n    /**\n     * The **`domainLookupEnd`** read-only property returns the DOMHighResTimeStamp immediately after the browser finishes the domain-name lookup for the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/domainLookupEnd)\n     */\n    readonly domainLookupEnd: DOMHighResTimeStamp;\n    /**\n     * The **`domainLookupStart`** read-only property returns the DOMHighResTimeStamp immediately before the browser starts the domain name lookup for the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/domainLookupStart)\n     */\n    readonly domainLookupStart: DOMHighResTimeStamp;\n    /**\n     * The **`encodedBodySize`** read-only property represents the size (in octets) received from the fetch (HTTP or cache) of the payload body before removing any applied content encodings (like gzip or Brotli).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/encodedBodySize)\n     */\n    readonly encodedBodySize: number;\n    /**\n     * The **`fetchStart`** read-only property represents a DOMHighResTimeStamp immediately before the browser starts to fetch the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/fetchStart)\n     */\n    readonly fetchStart: DOMHighResTimeStamp;\n    /**\n     * The **`initiatorType`** read-only property is a string representing web platform feature that initiated the resource load.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/initiatorType)\n     */\n    readonly initiatorType: string;\n    /**\n     * The **`nextHopProtocol`** read-only property is a string representing the network protocol used to fetch the resource, as identified by the ALPN Protocol ID (RFC7301).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/nextHopProtocol)\n     */\n    readonly nextHopProtocol: string;\n    /**\n     * The **`redirectEnd`** read-only property returns a DOMHighResTimeStamp immediately after receiving the last byte of the response of the last redirect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/redirectEnd)\n     */\n    readonly redirectEnd: DOMHighResTimeStamp;\n    /**\n     * The **`redirectStart`** read-only property returns a DOMHighResTimeStamp representing the start time of the fetch which that initiates the redirect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/redirectStart)\n     */\n    readonly redirectStart: DOMHighResTimeStamp;\n    /**\n     * The **`requestStart`** read-only property returns a DOMHighResTimeStamp of the time immediately before the browser starts requesting the resource from the server, cache, or local resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/requestStart)\n     */\n    readonly requestStart: DOMHighResTimeStamp;\n    /**\n     * The **`responseEnd`** read-only property returns a DOMHighResTimeStamp immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd)\n     */\n    readonly responseEnd: DOMHighResTimeStamp;\n    /**\n     * The **`responseStart`** read-only property returns a DOMHighResTimeStamp immediately after the browser receives the first byte of the response from the server, cache, or local resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart)\n     */\n    readonly responseStart: DOMHighResTimeStamp;\n    /**\n     * The **`responseStatus`** read-only property represents the HTTP response status code returned when fetching the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus)\n     */\n    readonly responseStatus: number;\n    /**\n     * The **`secureConnectionStart`** read-only property returns a DOMHighResTimeStamp immediately before the browser starts the handshake process to secure the current connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart)\n     */\n    readonly secureConnectionStart: DOMHighResTimeStamp;\n    /**\n     * The **`serverTiming`** read-only property returns an array of PerformanceServerTiming entries containing server timing metrics.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/serverTiming)\n     */\n    readonly serverTiming: ReadonlyArray<PerformanceServerTiming>;\n    /**\n     * The **`transferSize`** read-only property represents the size (in octets) of the fetched resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/transferSize)\n     */\n    readonly transferSize: number;\n    /**\n     * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a The `workerStart` property can have the following values: - A DOMHighResTimeStamp.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)\n     */\n    readonly workerStart: DOMHighResTimeStamp;\n    /**\n     * The **`toJSON()`** method of the PerformanceResourceTiming interface is a Serialization; it returns a JSON representation of the PerformanceResourceTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceResourceTiming: {\n    prototype: PerformanceResourceTiming;\n    new(): PerformanceResourceTiming;\n};\n\n/**\n * The **`PerformanceServerTiming`** interface surfaces server metrics that are sent with the response in the Server-Timing HTTP header.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming)\n */\ninterface PerformanceServerTiming {\n    /**\n     * The **`description`** read-only property returns a string value of the server-specified metric description, or an empty string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/description)\n     */\n    readonly description: string;\n    /**\n     * The **`duration`** read-only property returns a double that contains the server-specified metric duration, or the value `0.0`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/duration)\n     */\n    readonly duration: DOMHighResTimeStamp;\n    /**\n     * The **`name`** read-only property returns a string value of the server-specified metric name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/name)\n     */\n    readonly name: string;\n    /**\n     * The **`toJSON()`** method of the PerformanceServerTiming interface is a Serialization; it returns a JSON representation of the PerformanceServerTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceServerTiming: {\n    prototype: PerformanceServerTiming;\n    new(): PerformanceServerTiming;\n};\n\n/**\n * The **`PerformanceTiming`** interface is a legacy interface kept for backwards compatibility and contains properties that offer performance timing information for various events which occur during the loading and use of the current page.\n * @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming)\n */\ninterface PerformanceTiming {\n    /**\n     * The legacy **`PerformanceTiming.connectEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, where the connection is opened network.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/connectEnd)\n     */\n    readonly connectEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.connectStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, where the request to open a connection is sent to the network.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/connectStart)\n     */\n    readonly connectStart: number;\n    /**\n     * The legacy **`PerformanceTiming.domComplete`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser finished its work on the main document, that is when its Document.readyState changes to `'complete'` and the corresponding Document/readystatechange_event event is thrown.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domComplete)\n     */\n    readonly domComplete: number;\n    /**\n     * The legacy **`PerformanceTiming.domContentLoadedEventEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right after all the scripts that need to be executed as soon as possible, in order or not, has been executed.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventEnd)\n     */\n    readonly domContentLoadedEventEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the executed right after parsing has been executed.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventStart)\n     */\n    readonly domContentLoadedEventStart: number;\n    /**\n     * The legacy **`PerformanceTiming.domInteractive`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser finished its work on the main document, that is when its Document.readyState changes to `'interactive'` and the corresponding Document/readystatechange_event event is thrown.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domInteractive)\n     */\n    readonly domInteractive: number;\n    /**\n     * The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its corresponding Document/readystatechange_event event is thrown.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domLoading)\n     */\n    readonly domLoading: number;\n    /**\n     * The legacy **`PerformanceTiming.domainLookupEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, where the domain lookup is finished.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domainLookupEnd)\n     */\n    readonly domainLookupEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.domainLookupStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, where the domain lookup starts.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domainLookupStart)\n     */\n    readonly domainLookupStart: number;\n    /**\n     * The legacy **`PerformanceTiming.fetchStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, the browser is ready to fetch the document using an HTTP request.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/fetchStart)\n     */\n    readonly fetchStart: number;\n    /**\n     * The legacy **`PerformanceTiming.loadEventEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the Window/load_event event handler terminated, that is when the load event is completed.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/loadEventEnd)\n     */\n    readonly loadEventEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.loadEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the Window/load_event event was sent for the current document.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/loadEventStart)\n     */\n    readonly loadEventStart: number;\n    /**\n     * The legacy **`PerformanceTiming.navigationStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right after the prompt for unload terminates on the previous document in the same browsing context.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/navigationStart)\n     */\n    readonly navigationStart: number;\n    /**\n     * The legacy **`PerformanceTiming.redirectEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, the last HTTP redirect is completed, that is when the last byte of the HTTP response has been received.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/redirectEnd)\n     */\n    readonly redirectEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.redirectStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, the first HTTP redirect starts.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/redirectStart)\n     */\n    readonly redirectStart: number;\n    /**\n     * The legacy **`PerformanceTiming.requestStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the browser sent the request to obtain the actual document, from the server or from a cache.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/requestStart)\n     */\n    readonly requestStart: number;\n    /**\n     * The legacy **`PerformanceTiming.responseEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the browser received the last byte of the response, or when the connection is closed if this happened first, from the server from a cache or from a local resource.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/responseEnd)\n     */\n    readonly responseEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.responseStart`** read-only property returns an `unsigned long long` representing the moment in time (in milliseconds since the UNIX epoch) when the browser received the first byte of the response from the server, cache, or local resource.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/responseStart)\n     */\n    readonly responseStart: number;\n    /**\n     * The legacy **`PerformanceTiming.secureConnectionStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, where the secure connection handshake starts.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/secureConnectionStart)\n     */\n    readonly secureConnectionStart: number;\n    /**\n     * The legacy **`PerformanceTiming.unloadEventEnd`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, the Window/unload_event event handler finishes.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/unloadEventEnd)\n     */\n    readonly unloadEventEnd: number;\n    /**\n     * The legacy **`PerformanceTiming.unloadEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, the Window/unload_event event has been thrown.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/unloadEventStart)\n     */\n    readonly unloadEventStart: number;\n    /**\n     * The legacy **`toJSON()`** method of the PerformanceTiming interface is a Serialization; it returns a JSON representation of the PerformanceTiming object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\n/** @deprecated */\ndeclare var PerformanceTiming: {\n    prototype: PerformanceTiming;\n    new(): PerformanceTiming;\n};\n\n/**\n * The **`PeriodicWave`** interface defines a periodic waveform that can be used to shape the output of an OscillatorNode.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PeriodicWave)\n */\ninterface PeriodicWave {\n}\n\ndeclare var PeriodicWave: {\n    prototype: PeriodicWave;\n    new(context: BaseAudioContext, options?: PeriodicWaveOptions): PeriodicWave;\n};\n\ninterface PermissionStatusEventMap {\n    \"change\": Event;\n}\n\n/**\n * The **`PermissionStatus`** interface of the Permissions API provides the state of an object and an event handler for monitoring changes to said state.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus)\n */\ninterface PermissionStatus extends EventTarget {\n    /**\n     * The **`name`** read-only property of the PermissionStatus interface returns the name of a requested permission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */\n    onchange: ((this: PermissionStatus, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the This property returns one of `'granted'`, `'denied'`, or `'prompt'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)\n     */\n    readonly state: PermissionState;\n    addEventListener<K extends keyof PermissionStatusEventMap>(type: K, listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PermissionStatusEventMap>(type: K, listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var PermissionStatus: {\n    prototype: PermissionStatus;\n    new(): PermissionStatus;\n};\n\n/**\n * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions - Permissions.query - : Returns the user permission status for a given API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)\n */\ninterface Permissions {\n    /**\n     * The **`query()`** method of the Permissions interface returns the state of a user permission on the global scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions/query)\n     */\n    query(permissionDesc: PermissionDescriptor): Promise<PermissionStatus>;\n}\n\ndeclare var Permissions: {\n    prototype: Permissions;\n    new(): Permissions;\n};\n\n/**\n * The **`PictureInPictureEvent`** interface represents picture-in-picture-related events, including HTMLVideoElement/enterpictureinpicture_event, HTMLVideoElement/leavepictureinpicture_event and PictureInPictureWindow/resize_event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureEvent)\n */\ninterface PictureInPictureEvent extends Event {\n    /**\n     * The read-only **`pictureInPictureWindow`** property of the PictureInPictureEvent interface returns the PictureInPictureWindow the event relates to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureEvent/pictureInPictureWindow)\n     */\n    readonly pictureInPictureWindow: PictureInPictureWindow;\n}\n\ndeclare var PictureInPictureEvent: {\n    prototype: PictureInPictureEvent;\n    new(type: string, eventInitDict: PictureInPictureEventInit): PictureInPictureEvent;\n};\n\ninterface PictureInPictureWindowEventMap {\n    \"resize\": Event;\n}\n\n/**\n * The **`PictureInPictureWindow`** interface represents an object able to programmatically obtain the **`width`** and **`height`** and **`resize event`** of the floating video window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureWindow)\n */\ninterface PictureInPictureWindow extends EventTarget {\n    /**\n     * The read-only **`height`** property of the PictureInPictureWindow interface returns the height of the floating video window in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureWindow/height)\n     */\n    readonly height: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureWindow/resize_event) */\n    onresize: ((this: PictureInPictureWindow, ev: Event) => any) | null;\n    /**\n     * The read-only **`width`** property of the PictureInPictureWindow interface returns the width of the floating video window in pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PictureInPictureWindow/width)\n     */\n    readonly width: number;\n    addEventListener<K extends keyof PictureInPictureWindowEventMap>(type: K, listener: (this: PictureInPictureWindow, ev: PictureInPictureWindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PictureInPictureWindowEventMap>(type: K, listener: (this: PictureInPictureWindow, ev: PictureInPictureWindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var PictureInPictureWindow: {\n    prototype: PictureInPictureWindow;\n    new(): PictureInPictureWindow;\n};\n\n/**\n * The `Plugin` interface provides information about a browser plugin.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin)\n */\ninterface Plugin {\n    /**\n     * Returns the plugin's description.\n     * @deprecated\n     */\n    readonly description: string;\n    /**\n     * Returns the plugin library's filename, if applicable on the current platform.\n     * @deprecated\n     */\n    readonly filename: string;\n    /**\n     * Returns the number of MIME types, represented by MimeType objects, supported by the plugin.\n     * @deprecated\n     */\n    readonly length: number;\n    /**\n     * Returns the plugin's name.\n     * @deprecated\n     */\n    readonly name: string;\n    /**\n     * Returns the specified MimeType object.\n     * @deprecated\n     */\n    item(index: number): MimeType | null;\n    /** @deprecated */\n    namedItem(name: string): MimeType | null;\n    [index: number]: MimeType;\n}\n\n/** @deprecated */\ndeclare var Plugin: {\n    prototype: Plugin;\n    new(): Plugin;\n};\n\n/**\n * The `PluginArray` interface is used to store a list of Plugin objects; it's returned by the Navigator.plugins property.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray)\n */\ninterface PluginArray {\n    /** @deprecated */\n    readonly length: number;\n    /** @deprecated */\n    item(index: number): Plugin | null;\n    /** @deprecated */\n    namedItem(name: string): Plugin | null;\n    /** @deprecated */\n    refresh(): void;\n    [index: number]: Plugin;\n}\n\n/** @deprecated */\ndeclare var PluginArray: {\n    prototype: PluginArray;\n    new(): PluginArray;\n};\n\n/**\n * The **`PointerEvent`** interface represents the state of a DOM event produced by a pointer such as the geometry of the contact point, the device type that generated the event, the amount of pressure that was applied on the contact surface, etc.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent)\n */\ninterface PointerEvent extends MouseEvent {\n    /**\n     * The **`altitudeAngle`** read-only property of the PointerEvent interface represents the angle between a transducer (a pointer or stylus) axis and the X-Y plane of a device screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/altitudeAngle)\n     */\n    readonly altitudeAngle: number;\n    /**\n     * The **`azimuthAngle`** read-only property of the PointerEvent interface represents the angle between the Y-Z plane and the plane containing both the transducer (pointer or stylus) axis and the Y axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/azimuthAngle)\n     */\n    readonly azimuthAngle: number;\n    /**\n     * The **`height`** read-only property of the geometry, along the y-axis (in CSS pixels).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height)\n     */\n    readonly height: number;\n    /**\n     * The **`isPrimary`** read-only property of the created the event is the _primary_ pointer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary)\n     */\n    readonly isPrimary: boolean;\n    /**\n     * The **`pointerId`** read-only property of the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)\n     */\n    readonly pointerId: number;\n    /**\n     * The **`pointerType`** read-only property of the that caused a given pointer event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerType)\n     */\n    readonly pointerType: string;\n    /**\n     * The **`pressure`** read-only property of the input.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pressure)\n     */\n    readonly pressure: number;\n    /**\n     * The **`tangentialPressure`** read-only property of the the pointer input (also known as barrel pressure or cylinder stress).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tangentialPressure)\n     */\n    readonly tangentialPressure: number;\n    /**\n     * The **`tiltX`** read-only property of the PointerEvent interface is the angle (in degrees) between the _Y-Z plane_ of the pointer and the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tiltX)\n     */\n    readonly tiltX: number;\n    /**\n     * The **`tiltY`** read-only property of the PointerEvent interface is the angle (in degrees) between the _X-Z plane_ of the pointer and the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tiltY)\n     */\n    readonly tiltY: number;\n    /**\n     * The **`twist`** read-only property of the (e.g., pen stylus) around its major axis, in degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/twist)\n     */\n    readonly twist: number;\n    /**\n     * The **`width`** read-only property of the geometry along the x-axis, measured in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/width)\n     */\n    readonly width: number;\n    /**\n     * The **`getCoalescedEvents()`** method of the PointerEvent interface returns a sequence of `PointerEvent` instances that were coalesced (merged) into a single Element/pointermove_event or Element/pointerrawupdate_event event.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/getCoalescedEvents)\n     */\n    getCoalescedEvents(): PointerEvent[];\n    /**\n     * The **`getPredictedEvents()`** method of the PointerEvent interface returns a sequence of `PointerEvent` instances that are estimated future pointer positions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/getPredictedEvents)\n     */\n    getPredictedEvents(): PointerEvent[];\n}\n\ndeclare var PointerEvent: {\n    prototype: PointerEvent;\n    new(type: string, eventInitDict?: PointerEventInit): PointerEvent;\n};\n\n/**\n * **`PopStateEvent`** is an interface for the Window/popstate_event event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent)\n */\ninterface PopStateEvent extends Event {\n    /**\n     * The **`hasUAVisualTransition`** read-only property of the PopStateEvent interface returns `true` if the user agent performed a visual transition for this navigation before dispatching this event, or `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent/hasUAVisualTransition)\n     */\n    readonly hasUAVisualTransition: boolean;\n    /**\n     * The **`state`** read-only property of the PopStateEvent interface represents the state stored when the event was created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent/state)\n     */\n    readonly state: any;\n}\n\ndeclare var PopStateEvent: {\n    prototype: PopStateEvent;\n    new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent;\n};\n\ninterface PopoverInvokerElement {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction) */\n    popoverTargetAction: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetElement) */\n    popoverTargetElement: Element | null;\n}\n\n/**\n * The **`ProcessingInstruction`** interface represents a processing instruction; that is, a Node which embeds an instruction targeting a specific application but that can be ignored by any other applications which don't recognize the instruction.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProcessingInstruction)\n */\ninterface ProcessingInstruction extends CharacterData, LinkStyle {\n    readonly ownerDocument: Document;\n    /**\n     * The read-only **`target`** property of the ProcessingInstruction interface represent the application to which the `ProcessingInstruction` is targeted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProcessingInstruction/target)\n     */\n    readonly target: string;\n}\n\ndeclare var ProcessingInstruction: {\n    prototype: ProcessingInstruction;\n    new(): ProcessingInstruction;\n};\n\n/**\n * The **`ProgressEvent`** interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)\n */\ninterface ProgressEvent<T extends EventTarget = EventTarget> extends Event {\n    /**\n     * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the A boolean.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)\n     */\n    readonly lengthComputable: boolean;\n    /**\n     * The **`ProgressEvent.loaded`** read-only property is a number indicating the size of the data already transmitted or processed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/loaded)\n     */\n    readonly loaded: number;\n    readonly target: T | null;\n    /**\n     * The **`ProgressEvent.total`** read-only property is a number indicating the total size of the data being transmitted or processed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/total)\n     */\n    readonly total: number;\n}\n\ndeclare var ProgressEvent: {\n    prototype: ProgressEvent;\n    new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent;\n};\n\n/**\n * The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent)\n */\ninterface PromiseRejectionEvent extends Event {\n    /**\n     * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)\n     */\n    readonly promise: Promise<any>;\n    /**\n     * The PromiseRejectionEvent **`reason`** read-only property is any JavaScript value or Object which provides the reason passed into Promise.reject().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason)\n     */\n    readonly reason: any;\n}\n\ndeclare var PromiseRejectionEvent: {\n    prototype: PromiseRejectionEvent;\n    new(type: string, eventInitDict: PromiseRejectionEventInit): PromiseRejectionEvent;\n};\n\n/**\n * The **`PublicKeyCredential`** interface provides information about a public key / private key pair, which is a credential for logging in to a service using an un-phishable and data-breach resistant asymmetric key pair instead of a password.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential)\n */\ninterface PublicKeyCredential extends Credential {\n    /**\n     * The **`authenticatorAttachment`** read-only property of the PublicKeyCredential interface is a string that indicates the general category of authenticator used during the associated CredentialsContainer.create() or CredentialsContainer.get() call.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/authenticatorAttachment)\n     */\n    readonly authenticatorAttachment: string | null;\n    /**\n     * The **`rawId`** read-only property of the containing the identifier of the credentials.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId)\n     */\n    readonly rawId: ArrayBuffer;\n    /**\n     * The **`response`** read-only property of the object which is sent from the authenticator to the user agent for the creation/fetching of credentials.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/response)\n     */\n    readonly response: AuthenticatorResponse;\n    /**\n     * The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns a map between the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)\n     */\n    getClientExtensionResults(): AuthenticationExtensionsClientOutputs;\n    /**\n     * The **`toJSON()`** method of the PublicKeyCredential interface returns a JSON type representation of a PublicKeyCredential.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/toJSON)\n     */\n    toJSON(): PublicKeyCredentialJSON;\n}\n\ndeclare var PublicKeyCredential: {\n    prototype: PublicKeyCredential;\n    new(): PublicKeyCredential;\n    /**\n     * The **`getClientCapabilities()`** static method of the PublicKeyCredential interface returns a Promise that resolves with an object that can be used to check whether or not particular WebAuthn client capabilities and extensions are supported.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientCapabilities_static)\n     */\n    getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;\n    /**\n     * The **`isConditionalMediationAvailable()`** static method of the PublicKeyCredential interface returns a Promise which resolves to `true` if conditional mediation is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable_static)\n     */\n    isConditionalMediationAvailable(): Promise<boolean>;\n    /**\n     * The **`isUserVerifyingPlatformAuthenticatorAvailable()`** static method of the PublicKeyCredential interface returns a Promise which resolves to `true` if a user-verifying platform authenticator is present.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static)\n     */\n    isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;\n    /**\n     * The **`parseCreationOptionsFromJSON()`** static method of the PublicKeyCredential interface creates a PublicKeyCredentialCreationOptions object from a JSON representation of its properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/parseCreationOptionsFromJSON_static)\n     */\n    parseCreationOptionsFromJSON(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;\n    /**\n     * The **`parseRequestOptionsFromJSON()`** static method of the PublicKeyCredential interface converts a JSON type representation into a PublicKeyCredentialRequestOptions instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/parseRequestOptionsFromJSON_static)\n     */\n    parseRequestOptionsFromJSON(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;\n};\n\n/**\n * The **`PushManager`** interface of the Push API provides a way to receive notifications from third-party servers as well as request URLs for push notifications.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager)\n */\ninterface PushManager {\n    /**\n     * The **`PushManager.getSubscription()`** method of the PushManager interface retrieves an existing push subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/getSubscription)\n     */\n    getSubscription(): Promise<PushSubscription | null>;\n    /**\n     * The **`permissionState()`** method of the string indicating the permission state of the push manager.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)\n     */\n    permissionState(options?: PushSubscriptionOptionsInit): Promise<PermissionState>;\n    /**\n     * The **`subscribe()`** method of the PushManager interface subscribes to a push service.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/subscribe)\n     */\n    subscribe(options?: PushSubscriptionOptionsInit): Promise<PushSubscription>;\n}\n\ndeclare var PushManager: {\n    prototype: PushManager;\n    new(): PushManager;\n    /**\n     * The **`supportedContentEncodings`** read-only static property of the PushManager interface returns an array of supported content codings that can be used to encrypt the payload of a push message.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/supportedContentEncodings_static)\n     */\n    readonly supportedContentEncodings: ReadonlyArray<string>;\n};\n\n/**\n * The `PushSubscription` interface of the Push API provides a subscription's URL endpoint along with the public key and secrets that should be used for encrypting push messages to this subscription.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription)\n */\ninterface PushSubscription {\n    /**\n     * The **`endpoint`** read-only property of the the endpoint associated with the push subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)\n     */\n    readonly endpoint: string;\n    /**\n     * The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)\n     */\n    readonly expirationTime: EpochTimeStamp | null;\n    /**\n     * The **`options`** read-only property of the PushSubscription interface is an object containing the options used to create the subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/options)\n     */\n    readonly options: PushSubscriptionOptions;\n    /**\n     * The `getKey()` method of the PushSubscription interface returns an ArrayBuffer representing a client public key, which can then be sent to a server and used in encrypting push message data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/getKey)\n     */\n    getKey(name: PushEncryptionKeyName): ArrayBuffer | null;\n    /**\n     * The `toJSON()` method of the PushSubscription interface is a standard serializer: it returns a JSON representation of the subscription properties, providing a useful shortcut.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/toJSON)\n     */\n    toJSON(): PushSubscriptionJSON;\n    /**\n     * The `unsubscribe()` method of the PushSubscription interface returns a Promise that resolves to a boolean value when the current subscription is successfully unsubscribed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/unsubscribe)\n     */\n    unsubscribe(): Promise<boolean>;\n}\n\ndeclare var PushSubscription: {\n    prototype: PushSubscription;\n    new(): PushSubscription;\n};\n\n/**\n * The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions)\n */\ninterface PushSubscriptionOptions {\n    /**\n     * The **`applicationServerKey`** read-only property of the PushSubscriptionOptions interface contains the public key used by the push server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions/applicationServerKey)\n     */\n    readonly applicationServerKey: ArrayBuffer | null;\n    /**\n     * The **`userVisibleOnly`** read-only property of the PushSubscriptionOptions interface indicates if the returned push subscription will only be used for messages whose effect is made visible to the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions/userVisibleOnly)\n     */\n    readonly userVisibleOnly: boolean;\n}\n\ndeclare var PushSubscriptionOptions: {\n    prototype: PushSubscriptionOptions;\n    new(): PushSubscriptionOptions;\n};\n\n/**\n * The **`RTCCertificate`** interface of the WebRTC API provides an object representing a certificate that an RTCPeerConnection uses to authenticate.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCCertificate)\n */\ninterface RTCCertificate {\n    /**\n     * The read-only **`expires`** property of the RTCCertificate interface returns the expiration date of the certificate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCCertificate/expires)\n     */\n    readonly expires: EpochTimeStamp;\n    /**\n     * The **`getFingerprints()`** method of the **RTCCertificate** interface is used to get an array of certificate fingerprints.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCCertificate/getFingerprints)\n     */\n    getFingerprints(): RTCDtlsFingerprint[];\n}\n\ndeclare var RTCCertificate: {\n    prototype: RTCCertificate;\n    new(): RTCCertificate;\n};\n\ninterface RTCDTMFSenderEventMap {\n    \"tonechange\": RTCDTMFToneChangeEvent;\n}\n\n/**\n * The **`RTCDTMFSender`** interface provides a mechanism for transmitting DTMF codes on a WebRTC RTCPeerConnection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFSender)\n */\ninterface RTCDTMFSender extends EventTarget {\n    /**\n     * The **`canInsertDTMF`** read-only property of the RTCDTMFSender interface returns a boolean value which indicates whether the `RTCDTMFSender` is capable of sending DTMF tones over the RTCPeerConnection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFSender/canInsertDTMF)\n     */\n    readonly canInsertDTMF: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFSender/tonechange_event) */\n    ontonechange: ((this: RTCDTMFSender, ev: RTCDTMFToneChangeEvent) => any) | null;\n    /**\n     * The RTCDTMFSender interface's toneBuffer property returns a string containing a list of the DTMF tones currently queued for sending to the remote peer over the RTCPeerConnection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFSender/toneBuffer)\n     */\n    readonly toneBuffer: string;\n    /**\n     * The **`insertDTMF()`** method of the RTCDTMFSender interface sends DTMF tones to the remote peer over the RTCPeerConnection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFSender/insertDTMF)\n     */\n    insertDTMF(tones: string, duration?: number, interToneGap?: number): void;\n    addEventListener<K extends keyof RTCDTMFSenderEventMap>(type: K, listener: (this: RTCDTMFSender, ev: RTCDTMFSenderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCDTMFSenderEventMap>(type: K, listener: (this: RTCDTMFSender, ev: RTCDTMFSenderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCDTMFSender: {\n    prototype: RTCDTMFSender;\n    new(): RTCDTMFSender;\n};\n\n/**\n * The **`RTCDTMFToneChangeEvent`** interface represents events sent to indicate that DTMF tones have started or finished playing.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFToneChangeEvent)\n */\ninterface RTCDTMFToneChangeEvent extends Event {\n    /**\n     * The read-only property **`RTCDTMFToneChangeEvent.tone`** returns the DTMF character which has just begun to play, or an empty string (`''`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDTMFToneChangeEvent/tone)\n     */\n    readonly tone: string;\n}\n\ndeclare var RTCDTMFToneChangeEvent: {\n    prototype: RTCDTMFToneChangeEvent;\n    new(type: string, eventInitDict?: RTCDTMFToneChangeEventInit): RTCDTMFToneChangeEvent;\n};\n\ninterface RTCDataChannelEventMap {\n    \"bufferedamountlow\": Event;\n    \"close\": Event;\n    \"closing\": Event;\n    \"error\": RTCErrorEvent;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The **`RTCDataChannel`** interface represents a network channel which can be used for bidirectional peer-to-peer transfers of arbitrary data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel)\n */\ninterface RTCDataChannel extends EventTarget {\n    /**\n     * The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)\n     */\n    binaryType: BinaryType;\n    /**\n     * The read-only `RTCDataChannel` property **`bufferedAmount`** returns the number of bytes of data currently queued to be sent over the data channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedAmount)\n     */\n    readonly bufferedAmount: number;\n    /**\n     * The `RTCDataChannel` property **`bufferedAmountLowThreshold`** is used to specify the number of bytes of buffered outgoing data that is considered 'low.' The default value is 0\\.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedAmountLowThreshold)\n     */\n    bufferedAmountLowThreshold: number;\n    /**\n     * The read-only `RTCDataChannel` property **`id`** returns an ID number (between 0 and 65,534) which uniquely identifies the RTCDataChannel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/id)\n     */\n    readonly id: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`label`** returns a string containing a name describing the data channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/label)\n     */\n    readonly label: string;\n    /**\n     * The read-only `RTCDataChannel` property **`maxPacketLifeTime`** returns the amount of time, in milliseconds, the browser is allowed to take to attempt to transmit a message, as set when the data channel was created, or `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/maxPacketLifeTime)\n     */\n    readonly maxPacketLifeTime: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`maxRetransmits`** returns the maximum number of times the browser should try to retransmit a message before giving up, as set when the data channel was created, or `null`, which indicates that there is no maximum.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/maxRetransmits)\n     */\n    readonly maxRetransmits: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)\n     */\n    readonly negotiated: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedamountlow_event) */\n    onbufferedamountlow: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close_event) */\n    onclose: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/closing_event) */\n    onclosing: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/error_event) */\n    onerror: ((this: RTCDataChannel, ev: RTCErrorEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/message_event) */\n    onmessage: ((this: RTCDataChannel, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/open_event) */\n    onopen: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /**\n     * The read-only `RTCDataChannel` property **`ordered`** indicates whether or not the data channel guarantees in-order delivery of messages; the default is `true`, which indicates that the data channel is indeed ordered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/ordered)\n     */\n    readonly ordered: boolean;\n    /**\n     * The read-only `RTCDataChannel` property **`protocol`** returns a string containing the name of the subprotocol in use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/protocol)\n     */\n    readonly protocol: string;\n    /**\n     * The read-only `RTCDataChannel` property **`readyState`** returns a string which indicates the state of the data channel's underlying data connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/readyState)\n     */\n    readonly readyState: RTCDataChannelState;\n    /**\n     * The **`RTCDataChannel.close()`** method closes the closure of the channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)\n     */\n    close(): void;\n    /**\n     * The **`send()`** method of the remote peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)\n     */\n    send(data: string): void;\n    send(data: Blob): void;\n    send(data: ArrayBuffer): void;\n    send(data: ArrayBufferView<ArrayBuffer>): void;\n    addEventListener<K extends keyof RTCDataChannelEventMap>(type: K, listener: (this: RTCDataChannel, ev: RTCDataChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCDataChannelEventMap>(type: K, listener: (this: RTCDataChannel, ev: RTCDataChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCDataChannel: {\n    prototype: RTCDataChannel;\n    new(): RTCDataChannel;\n};\n\n/**\n * The **`RTCDataChannelEvent`** interface represents an event related to a specific RTCDataChannel.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannelEvent)\n */\ninterface RTCDataChannelEvent extends Event {\n    /**\n     * The read-only property **`RTCDataChannelEvent.channel`** returns the RTCDataChannel associated with the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannelEvent/channel)\n     */\n    readonly channel: RTCDataChannel;\n}\n\ndeclare var RTCDataChannelEvent: {\n    prototype: RTCDataChannelEvent;\n    new(type: string, eventInitDict: RTCDataChannelEventInit): RTCDataChannelEvent;\n};\n\ninterface RTCDtlsTransportEventMap {\n    \"error\": RTCErrorEvent;\n    \"statechange\": Event;\n}\n\n/**\n * The **`RTCDtlsTransport`** interface provides access to information about the Datagram Transport Layer Security (**DTLS**) transport over which a RTCPeerConnection's RTP and RTCP packets are sent and received by its RTCRtpSender and RTCRtpReceiver objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport)\n */\ninterface RTCDtlsTransport extends EventTarget {\n    /**\n     * The **`iceTransport`** read-only property of the **RTCDtlsTransport** interface contains a reference to the underlying RTCIceTransport.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/iceTransport)\n     */\n    readonly iceTransport: RTCIceTransport;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/error_event) */\n    onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;\n    onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the Datagram Transport Layer Security (**DTLS**) transport state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state)\n     */\n    readonly state: RTCDtlsTransportState;\n    getRemoteCertificates(): ArrayBuffer[];\n    addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCDtlsTransport: {\n    prototype: RTCDtlsTransport;\n    new(): RTCDtlsTransport;\n};\n\n/**\n * The **`RTCEncodedAudioFrame`** of the WebRTC API represents an encoded audio frame in the WebRTC receiver or sender pipeline, which may be modified using a WebRTC Encoded Transform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame)\n */\ninterface RTCEncodedAudioFrame {\n    /**\n     * The **`data`** property of the RTCEncodedAudioFrame interface returns a buffer containing the data for an encoded frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/data)\n     */\n    data: ArrayBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp) */\n    readonly timestamp: number;\n    /**\n     * The **`getMetadata()`** method of the RTCEncodedAudioFrame interface returns an object containing the metadata associated with the frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/getMetadata)\n     */\n    getMetadata(): RTCEncodedAudioFrameMetadata;\n}\n\ndeclare var RTCEncodedAudioFrame: {\n    prototype: RTCEncodedAudioFrame;\n    new(): RTCEncodedAudioFrame;\n};\n\n/**\n * The **`RTCEncodedVideoFrame`** of the WebRTC API represents an encoded video frame in the WebRTC receiver or sender pipeline, which may be modified using a WebRTC Encoded Transform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame)\n */\ninterface RTCEncodedVideoFrame {\n    /**\n     * The **`data`** property of the RTCEncodedVideoFrame interface returns a buffer containing the frame data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/data)\n     */\n    data: ArrayBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp) */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the RTCEncodedVideoFrame interface indicates whether this frame is a key frame, delta frame, or empty frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)\n     */\n    readonly type: RTCEncodedVideoFrameType;\n    /**\n     * The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/getMetadata)\n     */\n    getMetadata(): RTCEncodedVideoFrameMetadata;\n}\n\ndeclare var RTCEncodedVideoFrame: {\n    prototype: RTCEncodedVideoFrame;\n    new(): RTCEncodedVideoFrame;\n};\n\n/**\n * The **`RTCError`** interface describes an error which has occurred while handling WebRTC operations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError)\n */\ninterface RTCError extends DOMException {\n    /**\n     * The RTCError interface's read-only **`errorDetail`** property is a string indicating the WebRTC-specific error code that occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/errorDetail)\n     */\n    readonly errorDetail: RTCErrorDetailType;\n    /**\n     * The RTCError read-only property **`receivedAlert`** specifies the fatal DTLS error which resulted in an alert being received from the remote peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/receivedAlert)\n     */\n    readonly receivedAlert: number | null;\n    /**\n     * The read-only **`sctpCauseCode`** property in an why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sctpCauseCode)\n     */\n    readonly sctpCauseCode: number | null;\n    /**\n     * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the An unsigned integer value indicating the line within the SDP at which the syntax error described by the `RTCError` object occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sdpLineNumber)\n     */\n    readonly sdpLineNumber: number | null;\n    /**\n     * The read-only **`sentAlert`** property in an while sending data to the remote peer, if the error represents an outbound DTLS error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sentAlert)\n     */\n    readonly sentAlert: number | null;\n}\n\ndeclare var RTCError: {\n    prototype: RTCError;\n    new(init: RTCErrorInit, message?: string): RTCError;\n};\n\n/**\n * The WebRTC API's **`RTCErrorEvent`** interface represents an error sent to a WebRTC object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCErrorEvent)\n */\ninterface RTCErrorEvent extends Event {\n    /**\n     * The read-only RTCErrorEvent property **`error`** contains an RTCError object describing the details of the error which the event is announcing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCErrorEvent/error)\n     */\n    readonly error: RTCError;\n}\n\ndeclare var RTCErrorEvent: {\n    prototype: RTCErrorEvent;\n    new(type: string, eventInitDict: RTCErrorEventInit): RTCErrorEvent;\n};\n\n/**\n * The **`RTCIceCandidate`** interface—part of the WebRTC API—represents a candidate Interactive Connectivity Establishment (ICE) configuration which may be used to establish an RTCPeerConnection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate)\n */\ninterface RTCIceCandidate {\n    /**\n     * The **RTCIceCandidate** interface's read-only **`address`** property is a string providing the IP address of the device which is the source of the candidate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/address)\n     */\n    readonly address: string | null;\n    /**\n     * The read-only property **`candidate`** on the RTCIceCandidate interface returns a string describing the candidate in detail.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/candidate)\n     */\n    readonly candidate: string;\n    /**\n     * The read-only **`component`** property on the RTCIceCandidate interface is a string which indicates whether the candidate is an RTP or an RTCP candidate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/component)\n     */\n    readonly component: RTCIceComponent | null;\n    /**\n     * The **`foundation`** read-only property of the RTCIceCandidate interface is a string that allows correlation of candidates from a common network path on multiple RTCIceTransport objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/foundation)\n     */\n    readonly foundation: string | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`port`** property contains the port number on the device at the address given by RTCIceCandidate.address at which the candidate's peer can be reached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/port)\n     */\n    readonly port: number | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`priority`** property specifies the candidate's priority according to the remote peer; the higher this value is, the better the remote peer considers the candidate to be.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/priority)\n     */\n    readonly priority: number | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`protocol`** property is a string which indicates whether the candidate uses UDP or TCP as its transport protocol.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/protocol)\n     */\n    readonly protocol: RTCIceProtocol | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`relatedAddress`** property is a string indicating the **related address** of a relay or reflexive candidate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/relatedAddress)\n     */\n    readonly relatedAddress: string | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`relatedPort`** property indicates the port number of reflexive or relay candidates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/relatedPort)\n     */\n    readonly relatedPort: number | null;\n    /**\n     * The read-only **`sdpMLineIndex`** property on the RTCIceCandidate interface is a zero-based index of the m-line describing the media associated with the candidate.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/sdpMLineIndex)\n     */\n    readonly sdpMLineIndex: number | null;\n    /**\n     * The read-only property **`sdpMid`** on the RTCIceCandidate interface returns a string specifying the media stream identification tag of the media component with which the candidate is associated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/sdpMid)\n     */\n    readonly sdpMid: string | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`tcpType`** property is included on TCP candidates to provide additional details about the candidate type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/tcpType)\n     */\n    readonly tcpType: RTCIceTcpCandidateType | null;\n    /**\n     * The **RTCIceCandidate** interface's read-only **`type`** specifies the type of candidate the object represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/type)\n     */\n    readonly type: RTCIceCandidateType | null;\n    /**\n     * The read-only **`usernameFragment`** property on the RTCIceCandidate interface is a string indicating the username fragment ('ufrag') that uniquely identifies a single ICE interaction session.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/usernameFragment)\n     */\n    readonly usernameFragment: string | null;\n    /**\n     * The RTCIceCandidate method **`toJSON()`** converts the `RTCIceCandidate` on which it's called into JSON.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceCandidate/toJSON)\n     */\n    toJSON(): RTCIceCandidateInit;\n}\n\ndeclare var RTCIceCandidate: {\n    prototype: RTCIceCandidate;\n    new(candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;\n};\n\n/** The **`RTCIceCandidatePair`** dictionary describes a pair of ICE candidates which together comprise a description of a viable connection between two WebRTC endpoints. */\ninterface RTCIceCandidatePair {\n    /** The **`local`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection. */\n    local: RTCIceCandidate;\n    /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the viable WebRTC connection. */\n    remote: RTCIceCandidate;\n}\n\ninterface RTCIceTransportEventMap {\n    \"gatheringstatechange\": Event;\n    \"selectedcandidatepairchange\": Event;\n    \"statechange\": Event;\n}\n\n/**\n * The **`RTCIceTransport`** interface provides access to information about the ICE transport layer over which the data is being sent and received.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport)\n */\ninterface RTCIceTransport extends EventTarget {\n    /**\n     * The **`gatheringState`** read-only property of the RTCIceTransport interface returns a string that indicates the current gathering state of the ICE agent for this transport: `'new'`, `'gathering'`, or `'complete'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/gatheringState)\n     */\n    readonly gatheringState: RTCIceGathererState;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/gatheringstatechange_event) */\n    ongatheringstatechange: ((this: RTCIceTransport, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/selectedcandidatepairchange_event) */\n    onselectedcandidatepairchange: ((this: RTCIceTransport, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/statechange_event) */\n    onstatechange: ((this: RTCIceTransport, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the RTCIceTransport interface returns the current state of the ICE transport, so you can determine the state of ICE gathering in which the ICE agent currently is operating.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/state)\n     */\n    readonly state: RTCIceTransportState;\n    /**\n     * The **`getSelectedCandidatePair()`** method of the RTCIceTransport interface returns an RTCIceCandidatePair object containing the current best-choice pair of ICE candidates describing the configuration of the endpoints of the transport.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCIceTransport/getSelectedCandidatePair)\n     */\n    getSelectedCandidatePair(): RTCIceCandidatePair | null;\n    addEventListener<K extends keyof RTCIceTransportEventMap>(type: K, listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCIceTransportEventMap>(type: K, listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCIceTransport: {\n    prototype: RTCIceTransport;\n    new(): RTCIceTransport;\n};\n\ninterface RTCPeerConnectionEventMap {\n    \"connectionstatechange\": Event;\n    \"datachannel\": RTCDataChannelEvent;\n    \"icecandidate\": RTCPeerConnectionIceEvent;\n    \"icecandidateerror\": RTCPeerConnectionIceErrorEvent;\n    \"iceconnectionstatechange\": Event;\n    \"icegatheringstatechange\": Event;\n    \"negotiationneeded\": Event;\n    \"signalingstatechange\": Event;\n    \"track\": RTCTrackEvent;\n}\n\n/**\n * The **`RTCPeerConnection`** interface represents a WebRTC connection between the local computer and a remote peer.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection)\n */\ninterface RTCPeerConnection extends EventTarget {\n    /**\n     * The **`canTrickleIceCandidates`** read-only property of the RTCPeerConnection interface returns a boolean value which indicates whether or not the remote peer can accept trickled ICE candidates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/canTrickleIceCandidates)\n     */\n    readonly canTrickleIceCandidates: boolean | null;\n    /**\n     * The **`connectionState`** read-only property of the RTCPeerConnection interface indicates the current state of the peer connection by returning one of the following string values: `new`, `connecting`, `connected`, `disconnected`, `failed`, or `closed`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/connectionState)\n     */\n    readonly connectionState: RTCPeerConnectionState;\n    /**\n     * The **`currentLocalDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing the local end of the connection as it was most recently successfully negotiated since the last time the RTCPeerConnection finished negotiating and connecting to a remote peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentLocalDescription)\n     */\n    readonly currentLocalDescription: RTCSessionDescription | null;\n    /**\n     * The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an Also included is a list of any ICE candidates that may already have been generated by the ICE agent since the offer or answer represented by the description was first instantiated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentRemoteDescription)\n     */\n    readonly currentRemoteDescription: RTCSessionDescription | null;\n    /**\n     * The **`iceConnectionState`** read-only property of the RTCPeerConnection interface returns a string which state of the ICE agent associated with the RTCPeerConnection: `new`, `checking`, `connected`, `completed`, `failed`, `disconnected`, and `closed`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceConnectionState)\n     */\n    readonly iceConnectionState: RTCIceConnectionState;\n    /**\n     * The **`iceGatheringState`** read-only property of the RTCPeerConnection interface returns a string that describes the overall ICE gathering state for this connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceGatheringState)\n     */\n    readonly iceGatheringState: RTCIceGatheringState;\n    /**\n     * The **`localDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription describing the session for the local end of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/localDescription)\n     */\n    readonly localDescription: RTCSessionDescription | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/connectionstatechange_event) */\n    onconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/datachannel_event) */\n    ondatachannel: ((this: RTCPeerConnection, ev: RTCDataChannelEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidate_event) */\n    onicecandidate: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidateerror_event) */\n    onicecandidateerror: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceErrorEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceconnectionstatechange_event) */\n    oniceconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icegatheringstatechange_event) */\n    onicegatheringstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/negotiationneeded_event) */\n    onnegotiationneeded: ((this: RTCPeerConnection, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/signalingstatechange_event) */\n    onsignalingstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/track_event) */\n    ontrack: ((this: RTCPeerConnection, ev: RTCTrackEvent) => any) | null;\n    /**\n     * The **`pendingLocalDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing a pending configuration change for the local end of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/pendingLocalDescription)\n     */\n    readonly pendingLocalDescription: RTCSessionDescription | null;\n    /**\n     * The **`pendingRemoteDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing a pending configuration change for the remote end of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/pendingRemoteDescription)\n     */\n    readonly pendingRemoteDescription: RTCSessionDescription | null;\n    /**\n     * The **`remoteDescription`** read-only property of the RTCPeerConnection interface returns a RTCSessionDescription describing the session (which includes configuration and media information) for the remote end of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/remoteDescription)\n     */\n    readonly remoteDescription: RTCSessionDescription | null;\n    /**\n     * The **`sctp`** read-only property of the RTCPeerConnection interface returns an RTCSctpTransport describing the SCTP transport over which SCTP data is being sent and received.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/sctp)\n     */\n    readonly sctp: RTCSctpTransport | null;\n    /**\n     * The **`signalingState`** read-only property of the RTCPeerConnection interface returns a string value describing the state of the signaling process on the local end of the connection while connecting or reconnecting to another peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/signalingState)\n     */\n    readonly signalingState: RTCSignalingState;\n    /**\n     * The **`addIceCandidate()`** method of the RTCPeerConnection interface adds a new remote candidate to the connection's remote description, which describes the state of the remote end of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addIceCandidate)\n     */\n    addIceCandidate(candidate?: RTCIceCandidateInit | null): Promise<void>;\n    /** @deprecated */\n    addIceCandidate(candidate: RTCIceCandidateInit | null, successCallback: VoidFunction, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;\n    /**\n     * The **`addTrack()`** method of the RTCPeerConnection interface adds a new media track to the set of tracks which will be transmitted to the other peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addTrack)\n     */\n    addTrack(track: MediaStreamTrack, ...streams: MediaStream[]): RTCRtpSender;\n    /**\n     * The **`addTransceiver()`** method of the RTCPeerConnection interface creates a new RTCRtpTransceiver and adds it to the set of transceivers associated with the `RTCPeerConnection`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/addTransceiver)\n     */\n    addTransceiver(trackOrKind: MediaStreamTrack | string, init?: RTCRtpTransceiverInit): RTCRtpTransceiver;\n    /**\n     * The **`close()`** method of the RTCPeerConnection interface closes the current peer connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/close)\n     */\n    close(): void;\n    /**\n     * The **`createAnswer()`** method of the RTCPeerConnection interface creates an SDP answer to an offer received from a remote peer during the offer/answer negotiation of a WebRTC connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/createAnswer)\n     */\n    createAnswer(options?: RTCAnswerOptions): Promise<RTCSessionDescriptionInit>;\n    /** @deprecated */\n    createAnswer(successCallback: RTCSessionDescriptionCallback, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;\n    /**\n     * The **`createDataChannel()`** method of the RTCPeerConnection interface creates a new channel linked with the remote peer, over which any kind of data may be transmitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/createDataChannel)\n     */\n    createDataChannel(label: string, dataChannelDict?: RTCDataChannelInit): RTCDataChannel;\n    /**\n     * The **`createOffer()`** method of the RTCPeerConnection interface initiates the creation of an SDP offer for the purpose of starting a new WebRTC connection to a remote peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/createOffer)\n     */\n    createOffer(options?: RTCOfferOptions): Promise<RTCSessionDescriptionInit>;\n    /** @deprecated */\n    createOffer(successCallback: RTCSessionDescriptionCallback, failureCallback: RTCPeerConnectionErrorCallback, options?: RTCOfferOptions): Promise<void>;\n    /**\n     * The **`getConfiguration()`** method of the RTCPeerConnection interface returns an object which indicates the current configuration of the RTCPeerConnection on which the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/getConfiguration)\n     */\n    getConfiguration(): RTCConfiguration;\n    /**\n     * The **`getReceivers()`** method of the RTCPeerConnection interface returns an array of RTCRtpReceiver objects, each of which represents one RTP receiver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/getReceivers)\n     */\n    getReceivers(): RTCRtpReceiver[];\n    /**\n     * The **`getSenders()`** method of the RTCPeerConnection interface returns an array of RTCRtpSender objects, each of which represents the RTP sender responsible for transmitting one track's data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/getSenders)\n     */\n    getSenders(): RTCRtpSender[];\n    /**\n     * The **`getStats()`** method of the RTCPeerConnection interface returns a promise which resolves with data providing statistics about either the overall connection or about the specified MediaStreamTrack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/getStats)\n     */\n    getStats(selector?: MediaStreamTrack | null): Promise<RTCStatsReport>;\n    /**\n     * The **`getTransceivers()`** method of the RTCPeerConnection interface returns a list of the RTCRtpTransceiver objects being used to send and receive data on the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/getTransceivers)\n     */\n    getTransceivers(): RTCRtpTransceiver[];\n    /**\n     * The **`removeTrack()`** method of the RTCPeerConnection interface tells the local end of the connection to stop sending media from the specified track, without actually removing the corresponding RTCRtpSender from the list of senders as reported by RTCPeerConnection.getSenders().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/removeTrack)\n     */\n    removeTrack(sender: RTCRtpSender): void;\n    /**\n     * The **`restartIce()`** method of the RTCPeerConnection interface allows a web application to request that ICE candidate gathering be redone on both ends of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/restartIce)\n     */\n    restartIce(): void;\n    /**\n     * The **`setConfiguration()`** method of the RTCPeerConnection interface sets the current configuration of the connection based on the values included in the specified object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/setConfiguration)\n     */\n    setConfiguration(configuration?: RTCConfiguration): void;\n    /**\n     * The **`setLocalDescription()`** method of the RTCPeerConnection interface changes the local description associated with the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/setLocalDescription)\n     */\n    setLocalDescription(description?: RTCLocalSessionDescriptionInit): Promise<void>;\n    /** @deprecated */\n    setLocalDescription(description: RTCLocalSessionDescriptionInit, successCallback: VoidFunction, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;\n    /**\n     * The **`setRemoteDescription()`** method of the RTCPeerConnection interface sets the specified session description as the remote peer's current offer or answer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/setRemoteDescription)\n     */\n    setRemoteDescription(description: RTCSessionDescriptionInit): Promise<void>;\n    /** @deprecated */\n    setRemoteDescription(description: RTCSessionDescriptionInit, successCallback: VoidFunction, failureCallback: RTCPeerConnectionErrorCallback): Promise<void>;\n    addEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: RTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: RTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCPeerConnection: {\n    prototype: RTCPeerConnection;\n    new(configuration?: RTCConfiguration): RTCPeerConnection;\n    /**\n     * The **`generateCertificate()`** static function of the RTCPeerConnection interface creates an X.509 certificate and corresponding private key, returning a promise that resolves with the new RTCCertificate once it's generated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/generateCertificate_static)\n     */\n    generateCertificate(keygenAlgorithm: AlgorithmIdentifier): Promise<RTCCertificate>;\n};\n\n/**\n * The **`RTCPeerConnectionIceErrorEvent`** interface—based upon the Event interface—provides details pertaining to an ICE error announced by sending an RTCPeerConnection.icecandidateerror_event event to the RTCPeerConnection object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent)\n */\ninterface RTCPeerConnectionIceErrorEvent extends Event {\n    /**\n     * The RTCPeerConnectionIceErrorEvent property **`address`** is a string which indicates the local IP address being used to communicate with the STUN or TURN server during negotiations.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/address)\n     */\n    readonly address: string | null;\n    readonly errorCode: number;\n    readonly errorText: string;\n    readonly port: number | null;\n    readonly url: string;\n}\n\ndeclare var RTCPeerConnectionIceErrorEvent: {\n    prototype: RTCPeerConnectionIceErrorEvent;\n    new(type: string, eventInitDict: RTCPeerConnectionIceErrorEventInit): RTCPeerConnectionIceErrorEvent;\n};\n\n/**\n * The **`RTCPeerConnectionIceEvent`** interface represents events that occur in relation to ICE candidates with the target, usually an RTCPeerConnection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent)\n */\ninterface RTCPeerConnectionIceEvent extends Event {\n    /**\n     * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the An RTCIceCandidate object representing the ICE candidate that has been received, or `null` to indicate that there are no further candidates for this negotiation session.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent/candidate)\n     */\n    readonly candidate: RTCIceCandidate | null;\n}\n\ndeclare var RTCPeerConnectionIceEvent: {\n    prototype: RTCPeerConnectionIceEvent;\n    new(type: string, eventInitDict?: RTCPeerConnectionIceEventInit): RTCPeerConnectionIceEvent;\n};\n\n/**\n * The **`RTCRtpReceiver`** interface of the WebRTC API manages the reception and decoding of data for a MediaStreamTrack on an RTCPeerConnection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver)\n */\ninterface RTCRtpReceiver {\n    /**\n     * The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter buffer should hold media before playing it out.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)\n     */\n    jitterBufferTarget: DOMHighResTimeStamp | null;\n    /**\n     * The **`track`** read-only property of the associated with the current RTCRtpReceiver instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track)\n     */\n    readonly track: MediaStreamTrack;\n    /**\n     * The **`transform`** property of the RTCRtpReceiver object is used to insert a transform stream (TransformStream) running in a worker thread into the receiver pipeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)\n     */\n    transform: RTCRtpTransform | null;\n    /**\n     * The read-only **`transport`** property of an used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport)\n     */\n    readonly transport: RTCDtlsTransport | null;\n    /**\n     * The **`getContributingSources()`** method of the RTCRtpReceiver interface returns an array of objects, each corresponding to one CSRC (contributing source) identifier received by the current `RTCRtpReceiver` in the last ten seconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getContributingSources)\n     */\n    getContributingSources(): RTCRtpContributingSource[];\n    /**\n     * The **`getParameters()`** method of the RTCRtpReceiver interface returns an object describing the current configuration for how the receiver's RTCRtpReceiver.track is decoded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getParameters)\n     */\n    getParameters(): RTCRtpReceiveParameters;\n    /**\n     * The RTCRtpReceiver method **`getStats()`** asynchronously requests an RTCStatsReport object which provides statistics about incoming traffic on the owning RTCPeerConnection, returning a Promise whose fulfillment handler will be called once the results are available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getStats)\n     */\n    getStats(): Promise<RTCStatsReport>;\n    /**\n     * The **`getSynchronizationSources()`** method of the RTCRtpReceiver interface returns an array of objects, each corresponding to one SSRC (synchronization source) identifier received by the current `RTCRtpReceiver` in the last ten seconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getSynchronizationSources)\n     */\n    getSynchronizationSources(): RTCRtpSynchronizationSource[];\n}\n\ndeclare var RTCRtpReceiver: {\n    prototype: RTCRtpReceiver;\n    new(): RTCRtpReceiver;\n    /**\n     * The _static method_ **`RTCRtpReceiver.getCapabilities()`** returns an object describing the codec and header extension capabilities supported by RTCRtpReceiver objects on the current device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getCapabilities_static)\n     */\n    getCapabilities(kind: string): RTCRtpCapabilities | null;\n};\n\n/**\n * The **`RTCRtpScriptTransform`** interface of the WebRTC API is used to insert a WebRTC Encoded Transform (a TransformStream running in a worker thread) into the WebRTC sender and receiver pipelines.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransform)\n */\ninterface RTCRtpScriptTransform {\n}\n\ndeclare var RTCRtpScriptTransform: {\n    prototype: RTCRtpScriptTransform;\n    new(worker: Worker, options?: any, transfer?: any[]): RTCRtpScriptTransform;\n};\n\n/**\n * The **`RTCRtpSender`** interface provides the ability to control and obtain details about how a particular MediaStreamTrack is encoded and sent to a remote peer.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender)\n */\ninterface RTCRtpSender {\n    /**\n     * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a over the RTCPeerConnection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/dtmf)\n     */\n    readonly dtmf: RTCDTMFSender | null;\n    /**\n     * The **`track`** read-only property of the RTCRtpSender interface returns the MediaStreamTrack which is being handled by the `RTCRtpSender`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/track)\n     */\n    readonly track: MediaStreamTrack | null;\n    /**\n     * The **`transform`** property of the RTCRtpSender object is used to insert a transform stream (TransformStream) running in a worker thread into the sender pipeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)\n     */\n    transform: RTCRtpTransform | null;\n    /**\n     * The read-only **`transport`** property of an used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport)\n     */\n    readonly transport: RTCDtlsTransport | null;\n    /**\n     * The **`getParameters()`** method of the RTCRtpSender interface returns an object describing the current configuration for how the sender's RTCRtpSender.track will be encoded and transmitted to a remote RTCRtpReceiver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/getParameters)\n     */\n    getParameters(): RTCRtpSendParameters;\n    /**\n     * The RTCRtpSender method **`getStats()`** asynchronously requests an RTCStatsReport object which provides statistics about outgoing traffic on the RTCPeerConnection which owns the sender, returning a Promise which is fulfilled when the results are available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/getStats)\n     */\n    getStats(): Promise<RTCStatsReport>;\n    /**\n     * The RTCRtpSender method **`replaceTrack()`** replaces the track currently being used as the sender's source with a new MediaStreamTrack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/replaceTrack)\n     */\n    replaceTrack(withTrack: MediaStreamTrack | null): Promise<void>;\n    /**\n     * The **`setParameters()`** method of the RTCRtpSender interface applies changes the configuration of sender's RTCRtpSender.track, which is the MediaStreamTrack for which the `RTCRtpSender` is responsible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/setParameters)\n     */\n    setParameters(parameters: RTCRtpSendParameters, setParameterOptions?: RTCSetParameterOptions): Promise<void>;\n    /**\n     * The RTCRtpSender method **`setStreams()`** associates the sender's RTCRtpSender.track with the specified MediaStream objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/setStreams)\n     */\n    setStreams(...streams: MediaStream[]): void;\n}\n\ndeclare var RTCRtpSender: {\n    prototype: RTCRtpSender;\n    new(): RTCRtpSender;\n    /**\n     * The _static method_ **`RTCRtpSender.getCapabilities()`** returns an object describing the codec and header extension capabilities supported by the RTCRtpSender.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/getCapabilities_static)\n     */\n    getCapabilities(kind: string): RTCRtpCapabilities | null;\n};\n\n/**\n * The WebRTC interface **`RTCRtpTransceiver`** describes a permanent pairing of an RTCRtpSender and an RTCRtpReceiver, along with some shared state.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver)\n */\ninterface RTCRtpTransceiver {\n    /**\n     * The read-only RTCRtpTransceiver property **`currentDirection`** is a string which indicates the current negotiated directionality of the transceiver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/currentDirection)\n     */\n    readonly currentDirection: RTCRtpTransceiverDirection | null;\n    /**\n     * The RTCRtpTransceiver property **`direction`** is a string that indicates the transceiver's _preferred_ directionality.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/direction)\n     */\n    direction: RTCRtpTransceiverDirection;\n    /**\n     * The read-only RTCRtpTransceiver interface's **`mid`** property specifies the negotiated media ID (`mid`) which the local and remote peers have agreed upon to uniquely identify the stream's pairing of sender and receiver.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/mid)\n     */\n    readonly mid: string | null;\n    /**\n     * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the data for the transceiver's stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/receiver)\n     */\n    readonly receiver: RTCRtpReceiver;\n    /**\n     * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the for the transceiver's stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender)\n     */\n    readonly sender: RTCRtpSender;\n    /**\n     * The **`setCodecPreferences()`** method of the RTCRtpTransceiver interface is used to set the codecs that the transceiver allows for decoding _received_ data, in order of decreasing preference.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/setCodecPreferences)\n     */\n    setCodecPreferences(codecs: RTCRtpCodec[]): void;\n    /**\n     * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and ```js-nolint stop() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop)\n     */\n    stop(): void;\n}\n\ndeclare var RTCRtpTransceiver: {\n    prototype: RTCRtpTransceiver;\n    new(): RTCRtpTransceiver;\n};\n\ninterface RTCSctpTransportEventMap {\n    \"statechange\": Event;\n}\n\n/**\n * The **`RTCSctpTransport`** interface provides information which describes a Stream Control Transmission Protocol (**SCTP**) transport.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport)\n */\ninterface RTCSctpTransport extends EventTarget {\n    /**\n     * The **`maxChannels`** read-only property of the RTCSctpTransport interface indicates the maximum number of RTCDataChannel objects that can be opened simultaneously.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxChannels)\n     */\n    readonly maxChannels: number | null;\n    /**\n     * The **`maxMessageSize`** read-only property of the RTCSctpTransport interface indicates the maximum size of a message that can be sent using the RTCDataChannel.send() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize)\n     */\n    readonly maxMessageSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */\n    onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the RTCSctpTransport interface provides information which describes a Stream Control Transmission Protocol (SCTP) transport state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/state)\n     */\n    readonly state: RTCSctpTransportState;\n    /**\n     * The **`transport`** read-only property of the RTCSctpTransport interface returns a RTCDtlsTransport object representing the DTLS transport used for the transmission and receipt of data packets.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/transport)\n     */\n    readonly transport: RTCDtlsTransport;\n    addEventListener<K extends keyof RTCSctpTransportEventMap>(type: K, listener: (this: RTCSctpTransport, ev: RTCSctpTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCSctpTransportEventMap>(type: K, listener: (this: RTCSctpTransport, ev: RTCSctpTransportEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCSctpTransport: {\n    prototype: RTCSctpTransport;\n    new(): RTCSctpTransport;\n};\n\n/**\n * The **`RTCSessionDescription`** interface describes one end of a connection—or potential connection—and how it's configured.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription)\n */\ninterface RTCSessionDescription {\n    /**\n     * The property **`RTCSessionDescription.sdp`** is a read-only string containing the SDP which describes the session.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/sdp)\n     */\n    readonly sdp: string;\n    /**\n     * The property **`RTCSessionDescription.type`** is a read-only string value which describes the description's type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/type)\n     */\n    readonly type: RTCSdpType;\n    /**\n     * The **`RTCSessionDescription.toJSON()`** method generates a ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON)\n     */\n    toJSON(): RTCSessionDescriptionInit;\n}\n\ndeclare var RTCSessionDescription: {\n    prototype: RTCSessionDescription;\n    new(descriptionInitDict: RTCSessionDescriptionInit): RTCSessionDescription;\n};\n\n/**\n * The **`RTCStatsReport`** interface of the WebRTC API provides a statistics report for a RTCPeerConnection, RTCRtpSender, or RTCRtpReceiver.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCStatsReport)\n */\ninterface RTCStatsReport {\n    forEach(callbackfn: (value: any, key: string, parent: RTCStatsReport) => void, thisArg?: any): void;\n}\n\ndeclare var RTCStatsReport: {\n    prototype: RTCStatsReport;\n    new(): RTCStatsReport;\n};\n\n/**\n * The WebRTC API interface **`RTCTrackEvent`** represents the RTCPeerConnection.track_event event, which is sent when a new MediaStreamTrack is added to an RTCRtpReceiver which is part of the RTCPeerConnection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent)\n */\ninterface RTCTrackEvent extends Event {\n    /**\n     * The read-only **`receiver`** property of the RTCTrackEvent interface indicates the The RTCRtpReceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/receiver)\n     */\n    readonly receiver: RTCRtpReceiver;\n    /**\n     * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of track being added to the RTCPeerConnection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/streams)\n     */\n    readonly streams: ReadonlyArray<MediaStream>;\n    /**\n     * The\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/track)\n     */\n    readonly track: MediaStreamTrack;\n    /**\n     * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the The transceiver pairs the track's The RTCRtpTransceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/transceiver)\n     */\n    readonly transceiver: RTCRtpTransceiver;\n}\n\ndeclare var RTCTrackEvent: {\n    prototype: RTCTrackEvent;\n    new(type: string, eventInitDict: RTCTrackEventInit): RTCTrackEvent;\n};\n\n/**\n * The **`RadioNodeList`** interface represents a collection of elements in a form returned by a call to HTMLFormControlsCollection.namedItem().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList)\n */\ninterface RadioNodeList extends NodeListOf<HTMLInputElement> {\n    /**\n     * If the underlying element collection contains radio buttons, the **`RadioNodeList.value`** property represents the checked radio button.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList/value)\n     */\n    value: string;\n}\n\ndeclare var RadioNodeList: {\n    prototype: RadioNodeList;\n    new(): RadioNodeList;\n};\n\n/**\n * The **`Range`** interface represents a fragment of a document that can contain nodes and parts of text nodes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range)\n */\ninterface Range extends AbstractRange {\n    /**\n     * The **`Range.commonAncestorContainer`** read-only property returns the deepest — or furthest down the document tree — Node that contains both boundary points of the Range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/commonAncestorContainer)\n     */\n    readonly commonAncestorContainer: Node;\n    /**\n     * The **`cloneContents()`** method of the Range interface copies the selected Node children of the range's Range/commonAncestorContainer and puts them in a new DocumentFragment object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneContents)\n     */\n    cloneContents(): DocumentFragment;\n    /**\n     * The **`Range.cloneRange()`** method returns a The returned clone is copied by value, not reference, so a change in either ```js-nolint cloneRange() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneRange)\n     */\n    cloneRange(): Range;\n    /**\n     * The **`collapse()`** method of the Range interface collapses the A collapsed Range is empty, containing no content, specifying a single-point in a DOM tree.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/collapse)\n     */\n    collapse(toStart?: boolean): void;\n    /**\n     * The **`compareBoundaryPoints()`** method of the Range interface compares the boundary points of the Range with those of another range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/compareBoundaryPoints)\n     */\n    compareBoundaryPoints(how: number, sourceRange: Range): number;\n    /**\n     * The **`comparePoint()`** method of the Range interface determines whether a specified point is before, within, or after the Range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/comparePoint)\n     */\n    comparePoint(node: Node, offset: number): number;\n    /**\n     * The **`Range.createContextualFragment()`** method returns a XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment)\n     */\n    createContextualFragment(string: string): DocumentFragment;\n    /**\n     * The **`Range.deleteContents()`** method removes all completely-selected Node within this range from the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/deleteContents)\n     */\n    deleteContents(): void;\n    /**\n     * The **`Range.detach()`** method does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/detach)\n     */\n    detach(): void;\n    /**\n     * The **`extractContents()`** method of the Range interface is similar to a combination of Range.cloneContents() and Range.deleteContents().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/extractContents)\n     */\n    extractContents(): DocumentFragment;\n    /**\n     * The **`Range.getBoundingClientRect()`** method returns a DOMRect object that bounds the contents of the range; this is a rectangle enclosing the union of the bounding rectangles for all the elements in the range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/getBoundingClientRect)\n     */\n    getBoundingClientRect(): DOMRect;\n    /**\n     * The **`Range.getClientRects()`** method returns a list of DOMRect objects representing the area of the screen occupied by the range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/getClientRects)\n     */\n    getClientRects(): DOMRectList;\n    /**\n     * The **`Range.insertNode()`** method inserts a node at the start of the Range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/insertNode)\n     */\n    insertNode(node: Node): void;\n    /**\n     * The **`Range.intersectsNode()`** method returns a boolean indicating whether the given Node intersects the Range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/intersectsNode)\n     */\n    intersectsNode(node: Node): boolean;\n    /**\n     * The **`isPointInRange()`** method of the Range interface determines whether a specified point is within the Range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/isPointInRange)\n     */\n    isPointInRange(node: Node, offset: number): boolean;\n    /**\n     * The **`Range.selectNode()`** method sets the the parent of the _referenceNode_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNode)\n     */\n    selectNode(node: Node): void;\n    /**\n     * The **`Range.selectNodeContents()`** method sets the Range to contain the contents of a Node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNodeContents)\n     */\n    selectNodeContents(node: Node): void;\n    /**\n     * The **`Range.setEnd()`** method sets the end position of a Range to be located at the given offset into the specified node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEnd)\n     */\n    setEnd(node: Node, offset: number): void;\n    /**\n     * The **`Range.setEndAfter()`** method sets the end position of a `Node` of end of the `Range` will be the same as that for the `referenceNode`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndAfter)\n     */\n    setEndAfter(node: Node): void;\n    /**\n     * The **`Range.setEndBefore()`** method sets the end position of a `Range` relative to another Node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndBefore)\n     */\n    setEndBefore(node: Node): void;\n    /**\n     * The **`Range.setStart()`** method sets the start position of a If the `startNode` is a Node of type Text, the number of characters from the start of `startNode`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStart)\n     */\n    setStart(node: Node, offset: number): void;\n    /**\n     * The **`Range.setStartAfter()`** method sets the start position of a Range relative to a Node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStartAfter)\n     */\n    setStartAfter(node: Node): void;\n    /**\n     * The **`Range.setStartBefore()`** method sets the start position of a Range relative to another Node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStartBefore)\n     */\n    setStartBefore(node: Node): void;\n    /**\n     * The **`surroundContents()`** method of the Range interface surrounds the selected content by a provided node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/surroundContents)\n     */\n    surroundContents(newParent: Node): void;\n    toString(): string;\n    readonly START_TO_START: 0;\n    readonly START_TO_END: 1;\n    readonly END_TO_END: 2;\n    readonly END_TO_START: 3;\n}\n\ndeclare var Range: {\n    prototype: Range;\n    new(): Range;\n    readonly START_TO_START: 0;\n    readonly START_TO_END: 1;\n    readonly END_TO_END: 2;\n    readonly END_TO_START: 3;\n};\n\n/**\n * The **`ReadableByteStreamController`** interface of the Streams API represents a controller for a readable byte stream.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController)\n */\ninterface ReadableByteStreamController {\n    /**\n     * The **`byobRequest`** read-only property of the ReadableByteStreamController interface returns the current BYOB request, or `null` if there are no pending requests.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/byobRequest)\n     */\n    readonly byobRequest: ReadableStreamBYOBRequest | null;\n    /**\n     * The **`desiredSize`** read-only property of the ReadableByteStreamController interface returns the number of bytes required to fill the stream's internal queue to its 'desired size'.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`close()`** method of the ReadableByteStreamController interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/close)\n     */\n    close(): void;\n    /**\n     * The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)\n     */\n    enqueue(chunk: ArrayBufferView<ArrayBuffer>): void;\n    /**\n     * The **`error()`** method of the ReadableByteStreamController interface causes any future interactions with the associated stream to error with the specified reason.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var ReadableByteStreamController: {\n    prototype: ReadableByteStreamController;\n    new(): ReadableByteStreamController;\n};\n\n/**\n * The `ReadableStream` interface of the Streams API represents a readable stream of byte data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream)\n */\ninterface ReadableStream<R = any> {\n    /**\n     * The **`locked`** read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/locked)\n     */\n    readonly locked: boolean;\n    /**\n     * The **`cancel()`** method of the ReadableStream interface returns a Promise that resolves when the stream is canceled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/cancel)\n     */\n    cancel(reason?: any): Promise<void>;\n    /**\n     * The **`getReader()`** method of the ReadableStream interface creates a reader and locks the stream to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/getReader)\n     */\n    getReader(options: { mode: \"byob\" }): ReadableStreamBYOBReader;\n    getReader(): ReadableStreamDefaultReader<R>;\n    getReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReader<R>;\n    /**\n     * The **`pipeThrough()`** method of the ReadableStream interface provides a chainable way of piping the current stream through a transform stream or any other writable/readable pair.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeThrough)\n     */\n    pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>;\n    /**\n     * The **`pipeTo()`** method of the ReadableStream interface pipes the current `ReadableStream` to a given WritableStream and returns a Promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeTo)\n     */\n    pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;\n    /**\n     * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)\n     */\n    tee(): [ReadableStream<R>, ReadableStream<R>];\n}\n\ndeclare var ReadableStream: {\n    prototype: ReadableStream;\n    new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream<Uint8Array<ArrayBuffer>>;\n    new<R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;\n    new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;\n};\n\n/**\n * The `ReadableStreamBYOBReader` interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader)\n */\ninterface ReadableStreamBYOBReader extends ReadableStreamGenericReader {\n    /**\n     * The **`read()`** method of the ReadableStreamBYOBReader interface is used to read data into a view on a user-supplied buffer from an associated readable byte stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read)\n     */\n    read<T extends ArrayBufferView>(view: T): Promise<ReadableStreamReadResult<T>>;\n    /**\n     * The **`releaseLock()`** method of the ReadableStreamBYOBReader interface releases the reader's lock on the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/releaseLock)\n     */\n    releaseLock(): void;\n}\n\ndeclare var ReadableStreamBYOBReader: {\n    prototype: ReadableStreamBYOBReader;\n    new(stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;\n};\n\n/**\n * The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a 'pull request' for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)\n */\ninterface ReadableStreamBYOBRequest {\n    /**\n     * The **`view`** getter property of the ReadableStreamBYOBRequest interface returns the current view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view)\n     */\n    readonly view: ArrayBufferView<ArrayBuffer> | null;\n    /**\n     * The **`respond()`** method of the ReadableStreamBYOBRequest interface is used to signal to the associated readable byte stream that the specified number of bytes were written into the ReadableStreamBYOBRequest.view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respond)\n     */\n    respond(bytesWritten: number): void;\n    /**\n     * The **`respondWithNewView()`** method of the ReadableStreamBYOBRequest interface specifies a new view that the consumer of the associated readable byte stream should write to instead of ReadableStreamBYOBRequest.view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respondWithNewView)\n     */\n    respondWithNewView(view: ArrayBufferView<ArrayBuffer>): void;\n}\n\ndeclare var ReadableStreamBYOBRequest: {\n    prototype: ReadableStreamBYOBRequest;\n    new(): ReadableStreamBYOBRequest;\n};\n\n/**\n * The **`ReadableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a ReadableStream's state and internal queue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController)\n */\ninterface ReadableStreamDefaultController<R = any> {\n    /**\n     * The **`desiredSize`** read-only property of the required to fill the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`close()`** method of the ReadableStreamDefaultController interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/close)\n     */\n    close(): void;\n    /**\n     * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)\n     */\n    enqueue(chunk?: R): void;\n    /**\n     * The **`error()`** method of the with the associated stream to error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var ReadableStreamDefaultController: {\n    prototype: ReadableStreamDefaultController;\n    new(): ReadableStreamDefaultController;\n};\n\n/**\n * The **`ReadableStreamDefaultReader`** interface of the Streams API represents a default reader that can be used to read stream data supplied from a network (such as a fetch request).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader)\n */\ninterface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {\n    /**\n     * The **`read()`** method of the ReadableStreamDefaultReader interface returns a Promise providing access to the next chunk in the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/read)\n     */\n    read(): Promise<ReadableStreamReadResult<R>>;\n    /**\n     * The **`releaseLock()`** method of the ReadableStreamDefaultReader interface releases the reader's lock on the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/releaseLock)\n     */\n    releaseLock(): void;\n}\n\ndeclare var ReadableStreamDefaultReader: {\n    prototype: ReadableStreamDefaultReader;\n    new<R = any>(stream: ReadableStream<R>): ReadableStreamDefaultReader<R>;\n};\n\ninterface ReadableStreamGenericReader {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/closed) */\n    readonly closed: Promise<void>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/cancel) */\n    cancel(reason?: any): Promise<void>;\n}\n\ninterface RemotePlaybackEventMap {\n    \"connect\": Event;\n    \"connecting\": Event;\n    \"disconnect\": Event;\n}\n\n/**\n * The **`RemotePlayback`** interface of the Remote Playback API allows the page to detect availability of remote playback devices, then connect to and control playing on these devices.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback)\n */\ninterface RemotePlayback extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/connect_event) */\n    onconnect: ((this: RemotePlayback, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/connecting_event) */\n    onconnecting: ((this: RemotePlayback, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/disconnect_event) */\n    ondisconnect: ((this: RemotePlayback, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the RemotePlayback interface returns the current state of the `RemotePlayback` connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/state)\n     */\n    readonly state: RemotePlaybackState;\n    /**\n     * The **`cancelWatchAvailability()`** method of the RemotePlayback interface cancels the request to watch for one or all available devices.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/cancelWatchAvailability)\n     */\n    cancelWatchAvailability(id?: number): Promise<void>;\n    /**\n     * The **`prompt()`** method of the RemotePlayback interface prompts the user to select an available remote playback device and give permission for the current media to be played using that device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/prompt)\n     */\n    prompt(): Promise<void>;\n    /**\n     * The **`watchAvailability()`** method of the RemotePlayback interface watches the list of available remote playback devices and returns a Promise that resolves with the `callbackId` of a remote playback device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RemotePlayback/watchAvailability)\n     */\n    watchAvailability(callback: RemotePlaybackAvailabilityCallback): Promise<number>;\n    addEventListener<K extends keyof RemotePlaybackEventMap>(type: K, listener: (this: RemotePlayback, ev: RemotePlaybackEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RemotePlaybackEventMap>(type: K, listener: (this: RemotePlayback, ev: RemotePlaybackEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RemotePlayback: {\n    prototype: RemotePlayback;\n    new(): RemotePlayback;\n};\n\n/**\n * The `Report` interface of the Reporting API represents a single report.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report)\n */\ninterface Report {\n    /**\n     * The **`body`** read-only property of the Report interface returns the body of the report, which is a `ReportBody` object containing the detailed report information.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/body)\n     */\n    readonly body: ReportBody | null;\n    /**\n     * The **`type`** read-only property of the Report interface returns the type of report generated, e.g., `deprecation` or `intervention`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/type)\n     */\n    readonly type: string;\n    /**\n     * The **`url`** read-only property of the Report interface returns the URL of the document that generated the report.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/url)\n     */\n    readonly url: string;\n    toJSON(): any;\n}\n\ndeclare var Report: {\n    prototype: Report;\n    new(): Report;\n};\n\n/**\n * The **`ReportBody`** interface of the Reporting API represents the body of a report.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody)\n */\ninterface ReportBody {\n    /**\n     * The **`toJSON()`** method of the ReportBody interface is a _serializer_, and returns a JSON representation of the `ReportBody` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var ReportBody: {\n    prototype: ReportBody;\n    new(): ReportBody;\n};\n\n/**\n * The `ReportingObserver` interface of the Reporting API allows you to collect and access reports.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver)\n */\ninterface ReportingObserver {\n    /**\n     * The **`disconnect()`** method of the previously started observing from collecting reports.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The **`observe()`** method of the collecting reports in its report queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)\n     */\n    observe(): void;\n    /**\n     * The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)\n     */\n    takeRecords(): ReportList;\n}\n\ndeclare var ReportingObserver: {\n    prototype: ReportingObserver;\n    new(callback: ReportingObserverCallback, options?: ReportingObserverOptions): ReportingObserver;\n};\n\n/**\n * The **`Request`** interface of the Fetch API represents a resource request.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request)\n */\ninterface Request extends Body {\n    /**\n     * The **`cache`** read-only property of the Request interface contains the cache mode of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/cache)\n     */\n    readonly cache: RequestCache;\n    /**\n     * The **`credentials`** read-only property of the Request interface reflects the value given to the Request.Request() constructor in the `credentials` option.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/credentials)\n     */\n    readonly credentials: RequestCredentials;\n    /**\n     * The **`destination`** read-only property of the **Request** interface returns a string describing the type of content being requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/destination)\n     */\n    readonly destination: RequestDestination;\n    /**\n     * The **`headers`** read-only property of the with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)\n     */\n    readonly headers: Headers;\n    /**\n     * The **`integrity`** read-only property of the Request interface contains the subresource integrity value of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)\n     */\n    readonly integrity: string;\n    /**\n     * The **`keepalive`** read-only property of the Request interface contains the request's `keepalive` setting (`true` or `false`), which indicates whether the browser will keep the associated request alive if the page that initiated it is unloaded before the request is complete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)\n     */\n    readonly keepalive: boolean;\n    /**\n     * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)\n     */\n    readonly method: string;\n    /**\n     * The **`mode`** read-only property of the Request interface contains the mode of the request (e.g., `cors`, `no-cors`, `same-origin`, or `navigate`.) This is used to determine if cross-origin requests lead to valid responses, and which properties of the response are readable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/mode)\n     */\n    readonly mode: RequestMode;\n    /**\n     * The **`redirect`** read-only property of the Request interface contains the mode for how redirects are handled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/redirect)\n     */\n    readonly redirect: RequestRedirect;\n    /**\n     * The **`referrer`** read-only property of the Request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)\n     */\n    readonly referrer: string;\n    /**\n     * The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)\n     */\n    readonly referrerPolicy: ReferrerPolicy;\n    /**\n     * The read-only **`signal`** property of the Request interface returns the AbortSignal associated with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`url`** read-only property of the Request interface contains the URL of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/url)\n     */\n    readonly url: string;\n    /**\n     * The **`clone()`** method of the Request interface creates a copy of the current `Request` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/clone)\n     */\n    clone(): Request;\n}\n\ndeclare var Request: {\n    prototype: Request;\n    new(input: RequestInfo | URL, init?: RequestInit): Request;\n};\n\n/**\n * The **`ResizeObserver`** interface reports changes to the dimensions of an Element's content or border box, or the bounding box of an SVGElement.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver)\n */\ninterface ResizeObserver {\n    /**\n     * The **`disconnect()`** method of the or SVGElement targets.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The **`observe()`** method of the ```js-nolint observe(target) observe(target, options) ``` - `target` - : A reference to an Element or SVGElement to be observed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/observe)\n     */\n    observe(target: Element, options?: ResizeObserverOptions): void;\n    /**\n     * The **`unobserve()`** method of the ```js-nolint unobserve(target) ``` - `target` - : A reference to an Element or SVGElement to be unobserved.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/unobserve)\n     */\n    unobserve(target: Element): void;\n}\n\ndeclare var ResizeObserver: {\n    prototype: ResizeObserver;\n    new(callback: ResizeObserverCallback): ResizeObserver;\n};\n\n/**\n * The **`ResizeObserverEntry`** interface represents the object passed to the ResizeObserver.ResizeObserver constructor's callback function, which allows you to access the new dimensions of the Element or SVGElement being observed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry)\n */\ninterface ResizeObserverEntry {\n    /**\n     * The **`borderBoxSize`** read-only property of the ResizeObserverEntry interface returns an array containing the new border box size of the observed element when the callback is run.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/borderBoxSize)\n     */\n    readonly borderBoxSize: ReadonlyArray<ResizeObserverSize>;\n    /**\n     * The **`contentBoxSize`** read-only property of the ResizeObserverEntry interface returns an array containing the new content box size of the observed element when the callback is run.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentBoxSize)\n     */\n    readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;\n    /**\n     * The `contentRect` read-only property of the object containing the new size of the observed element when the callback is run.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect)\n     */\n    readonly contentRect: DOMRectReadOnly;\n    /**\n     * The **`devicePixelContentBoxSize`** read-only property of the ResizeObserverEntry interface returns an array containing the size in device pixels of the observed element when the callback is run.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/devicePixelContentBoxSize)\n     */\n    readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;\n    /**\n     * The **`target`** read-only property of the An Element or SVGElement representing the element being observed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target)\n     */\n    readonly target: Element;\n}\n\ndeclare var ResizeObserverEntry: {\n    prototype: ResizeObserverEntry;\n    new(): ResizeObserverEntry;\n};\n\n/**\n * The **`ResizeObserverSize`** interface of the Resize Observer API is used by the ResizeObserverEntry interface to access the box sizing properties of the element being observed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverSize)\n */\ninterface ResizeObserverSize {\n    /**\n     * The **`blockSize`** read-only property of the ResizeObserverSize interface returns the length of the observed element's border box in the block dimension.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverSize/blockSize)\n     */\n    readonly blockSize: number;\n    /**\n     * The **`inlineSize`** read-only property of the ResizeObserverSize interface returns the length of the observed element's border box in the inline dimension.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverSize/inlineSize)\n     */\n    readonly inlineSize: number;\n}\n\ndeclare var ResizeObserverSize: {\n    prototype: ResizeObserverSize;\n    new(): ResizeObserverSize;\n};\n\n/**\n * The **`Response`** interface of the Fetch API represents the response to a request.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response)\n */\ninterface Response extends Body {\n    /**\n     * The **`headers`** read-only property of the with the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)\n     */\n    readonly headers: Headers;\n    /**\n     * The **`ok`** read-only property of the Response interface contains a Boolean stating whether the response was successful (status in the range 200-299) or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/ok)\n     */\n    readonly ok: boolean;\n    /**\n     * The **`redirected`** read-only property of the Response interface indicates whether or not the response is the result of a request you made which was redirected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirected)\n     */\n    readonly redirected: boolean;\n    /**\n     * The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)\n     */\n    readonly status: number;\n    /**\n     * The **`statusText`** read-only property of the Response interface contains the status message corresponding to the HTTP status code in Response.status.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/statusText)\n     */\n    readonly statusText: string;\n    /**\n     * The **`type`** read-only property of the Response interface contains the type of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/type)\n     */\n    readonly type: ResponseType;\n    /**\n     * The **`url`** read-only property of the Response interface contains the URL of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/url)\n     */\n    readonly url: string;\n    /**\n     * The **`clone()`** method of the Response interface creates a clone of a response object, identical in every way, but stored in a different variable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/clone)\n     */\n    clone(): Response;\n}\n\ndeclare var Response: {\n    prototype: Response;\n    new(body?: BodyInit | null, init?: ResponseInit): Response;\n    /**\n     * The **`error()`** static method of the Response interface returns a new `Response` object associated with a network error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/error_static)\n     */\n    error(): Response;\n    /**\n     * The **`json()`** static method of the Response interface returns a `Response` that contains the provided JSON data as body, and a Content-Type header which is set to `application/json`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/json_static)\n     */\n    json(data: any, init?: ResponseInit): Response;\n    /**\n     * The **`redirect()`** static method of the Response interface returns a `Response` resulting in a redirect to the specified URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirect_static)\n     */\n    redirect(url: string | URL, status?: number): Response;\n};\n\n/**\n * The **`SVGAElement`** interface provides access to the properties of an a element, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement)\n */\ninterface SVGAElement extends SVGGraphicsElement, SVGURIReference {\n    rel: string;\n    get relList(): DOMTokenList;\n    set relList(value: string);\n    /**\n     * The **`SVGAElement.target`** read-only property of SVGAElement returns an SVGAnimatedString object that specifies the portion of a target window, frame, pane into which a document is to be opened when a link is activated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/target)\n     */\n    readonly target: SVGAnimatedString;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGAElement: {\n    prototype: SVGAElement;\n    new(): SVGAElement;\n};\n\n/**\n * The `SVGAngle` interface is used to represent a value that can be an &lt;angle&gt; or &lt;number&gt; value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle)\n */\ninterface SVGAngle {\n    /**\n     * The **`unitType`** property of the SVGAngle interface is one of the unit type constants and represents the units in which this angle's value is expressed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/unitType)\n     */\n    readonly unitType: number;\n    /**\n     * The `value` property of the SVGAngle interface represents the floating point value of the `<angle>` in degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/value)\n     */\n    value: number;\n    /**\n     * The `valueAsString` property of the SVGAngle interface represents the angle's value as a string, in the units expressed by SVGAngle.unitType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/valueAsString)\n     */\n    valueAsString: string;\n    /**\n     * The `valueInSpecifiedUnits` property of the SVGAngle interface represents the value of this angle as a number, in the units expressed by the angle's SVGAngle.unitType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/valueInSpecifiedUnits)\n     */\n    valueInSpecifiedUnits: number;\n    /**\n     * The `convertToSpecifiedUnits()` method of the SVGAngle interface allows you to convert the angle's value to the specified unit type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/convertToSpecifiedUnits)\n     */\n    convertToSpecifiedUnits(unitType: number): void;\n    /**\n     * The `newValueSpecifiedUnits()` method of the SVGAngle interface sets the value to a number with an associated SVGAngle.unitType, thereby replacing the values for all of the attributes on the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/newValueSpecifiedUnits)\n     */\n    newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n    readonly SVG_ANGLETYPE_UNKNOWN: 0;\n    readonly SVG_ANGLETYPE_UNSPECIFIED: 1;\n    readonly SVG_ANGLETYPE_DEG: 2;\n    readonly SVG_ANGLETYPE_RAD: 3;\n    readonly SVG_ANGLETYPE_GRAD: 4;\n}\n\ndeclare var SVGAngle: {\n    prototype: SVGAngle;\n    new(): SVGAngle;\n    readonly SVG_ANGLETYPE_UNKNOWN: 0;\n    readonly SVG_ANGLETYPE_UNSPECIFIED: 1;\n    readonly SVG_ANGLETYPE_DEG: 2;\n    readonly SVG_ANGLETYPE_RAD: 3;\n    readonly SVG_ANGLETYPE_GRAD: 4;\n};\n\n/**\n * The **`SVGAnimateElement`** interface corresponds to the animate element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimateElement)\n */\ninterface SVGAnimateElement extends SVGAnimationElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGAnimateElement: {\n    prototype: SVGAnimateElement;\n    new(): SVGAnimateElement;\n};\n\n/**\n * The **`SVGAnimateMotionElement`** interface corresponds to the animateMotion element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimateMotionElement)\n */\ninterface SVGAnimateMotionElement extends SVGAnimationElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateMotionElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateMotionElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGAnimateMotionElement: {\n    prototype: SVGAnimateMotionElement;\n    new(): SVGAnimateMotionElement;\n};\n\n/**\n * The `SVGAnimateTransformElement` interface corresponds to the animateTransform element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimateTransformElement)\n */\ninterface SVGAnimateTransformElement extends SVGAnimationElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateTransformElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimateTransformElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGAnimateTransformElement: {\n    prototype: SVGAnimateTransformElement;\n    new(): SVGAnimateTransformElement;\n};\n\n/**\n * The **`SVGAnimatedAngle`** interface is used for attributes of basic type \\<angle> which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)\n */\ninterface SVGAnimatedAngle {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedAngle interface represents the current animated value of the associated `<angle>` on an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal)\n     */\n    readonly animVal: SVGAngle;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedAngle interface represents the base (non-animated) value of the associated `<angle>` on an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal)\n     */\n    readonly baseVal: SVGAngle;\n}\n\ndeclare var SVGAnimatedAngle: {\n    prototype: SVGAnimatedAngle;\n    new(): SVGAnimatedAngle;\n};\n\n/**\n * The **`SVGAnimatedBoolean`** interface is used for attributes of type boolean which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)\n */\ninterface SVGAnimatedBoolean {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedBoolean interface represents the current animated value of the associated animatable boolean SVG attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal)\n     */\n    readonly animVal: boolean;\n    /**\n     * The **`baseVal`** property of the SVGAnimatedBoolean interface is the value of the associated animatable boolean SVG attribute in its base (none-animated) state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal)\n     */\n    baseVal: boolean;\n}\n\ndeclare var SVGAnimatedBoolean: {\n    prototype: SVGAnimatedBoolean;\n    new(): SVGAnimatedBoolean;\n};\n\n/**\n * The **`SVGAnimatedEnumeration`** interface describes attribute values which are constants from a particular enumeration and which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration)\n */\ninterface SVGAnimatedEnumeration {\n    /**\n     * The **`animVal`** property of the SVGAnimatedEnumeration interface contains the current value of an SVG enumeration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/animVal)\n     */\n    readonly animVal: number;\n    /**\n     * The **`baseVal`** property of the SVGAnimatedEnumeration interface contains the initial value of an SVG enumeration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/baseVal)\n     */\n    baseVal: number;\n}\n\ndeclare var SVGAnimatedEnumeration: {\n    prototype: SVGAnimatedEnumeration;\n    new(): SVGAnimatedEnumeration;\n};\n\n/**\n * The **`SVGAnimatedInteger`** interface is used for attributes of basic type \\<integer> which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger)\n */\ninterface SVGAnimatedInteger {\n    /**\n     * The **`animVal`** property of the SVGAnimatedInteger interface represents the animated value of an `<integer>`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger/animVal)\n     */\n    readonly animVal: number;\n    /**\n     * The **`baseVal`** property of the SVGAnimatedInteger interface represents the base (non-animated) value of an animatable `<integer>`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger/baseVal)\n     */\n    baseVal: number;\n}\n\ndeclare var SVGAnimatedInteger: {\n    prototype: SVGAnimatedInteger;\n    new(): SVGAnimatedInteger;\n};\n\n/**\n * The **`SVGAnimatedLength`** interface represents attributes of type \\<length> which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength)\n */\ninterface SVGAnimatedLength {\n    /**\n     * The **`animVal`** property of the SVGAnimatedLength interface contains the current value of an SVG enumeration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/animVal)\n     */\n    readonly animVal: SVGLength;\n    /**\n     * The **`baseVal`** property of the SVGAnimatedLength interface contains the initial value of an SVG enumeration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/baseVal)\n     */\n    readonly baseVal: SVGLength;\n}\n\ndeclare var SVGAnimatedLength: {\n    prototype: SVGAnimatedLength;\n    new(): SVGAnimatedLength;\n};\n\n/**\n * The **`SVGAnimatedLengthList`** interface is used for attributes of type SVGLengthList which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)\n */\ninterface SVGAnimatedLengthList {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedLengthList interface represents the animated value of an attribute that accepts a list of `<length>`, `<percentage>`, or `<number>` values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal)\n     */\n    readonly animVal: SVGLengthList;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedLengthList interface represents the base (non-animated) value of an animatable attribute that accepts a list of `<length>`, `<percentage>`, or `<number>` values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal)\n     */\n    readonly baseVal: SVGLengthList;\n}\n\ndeclare var SVGAnimatedLengthList: {\n    prototype: SVGAnimatedLengthList;\n    new(): SVGAnimatedLengthList;\n};\n\n/**\n * The **`SVGAnimatedNumber`** interface represents attributes of type \\<number> which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)\n */\ninterface SVGAnimatedNumber {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedNumber interface represents the animated value of an SVG element's numeric attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal)\n     */\n    readonly animVal: number;\n    /**\n     * The **`baseVal`** property of the SVGAnimatedNumber interface represents the base (non-animated) value of an animatable numeric attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal)\n     */\n    baseVal: number;\n}\n\ndeclare var SVGAnimatedNumber: {\n    prototype: SVGAnimatedNumber;\n    new(): SVGAnimatedNumber;\n};\n\n/**\n * The **`SVGAnimatedNumberList`** interface represents a list of attributes of type \\<number> which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)\n */\ninterface SVGAnimatedNumberList {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedNumberList interface represents the current animated value of an animatable attribute that accepts a list of `<number>` values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal)\n     */\n    readonly animVal: SVGNumberList;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedNumberList interface represents the base (non-animated) value of an animatable attribute that accepts a list of `<number>` values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal)\n     */\n    readonly baseVal: SVGNumberList;\n}\n\ndeclare var SVGAnimatedNumberList: {\n    prototype: SVGAnimatedNumberList;\n    new(): SVGAnimatedNumberList;\n};\n\ninterface SVGAnimatedPoints {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/animatedPoints) */\n    readonly animatedPoints: SVGPointList;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/points) */\n    readonly points: SVGPointList;\n}\n\n/**\n * The **`SVGAnimatedPreserveAspectRatio`** interface represents attributes of type SVGPreserveAspectRatio which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio)\n */\ninterface SVGAnimatedPreserveAspectRatio {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedPreserveAspectRatio interface represents the value of the preserveAspectRatio attribute of an SVG element after any animations or transformations are applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio/animVal)\n     */\n    readonly animVal: SVGPreserveAspectRatio;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedPreserveAspectRatio interface represents the base (non-animated) value of the preserveAspectRatio attribute of an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio/baseVal)\n     */\n    readonly baseVal: SVGPreserveAspectRatio;\n}\n\ndeclare var SVGAnimatedPreserveAspectRatio: {\n    prototype: SVGAnimatedPreserveAspectRatio;\n    new(): SVGAnimatedPreserveAspectRatio;\n};\n\n/**\n * The **`SVGAnimatedRect`** interface represents an SVGRect attribute that can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)\n */\ninterface SVGAnimatedRect {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedRect interface represents the current animated value of the `viewBox` attribute of an SVG element as a read-only DOMRectReadOnly object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal)\n     */\n    readonly animVal: DOMRectReadOnly;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedRect interface represents the current non-animated value of the `viewBox` attribute of an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal)\n     */\n    readonly baseVal: DOMRect;\n}\n\ndeclare var SVGAnimatedRect: {\n    prototype: SVGAnimatedRect;\n    new(): SVGAnimatedRect;\n};\n\n/**\n * The **`SVGAnimatedString`** interface represents string attributes which can be animated from each SVG declaration.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString)\n */\ninterface SVGAnimatedString {\n    /**\n     * The `animVal` read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)\n     */\n    readonly animVal: string;\n    /**\n     * BaseVal gets or sets the base value of the given attribute before any animations are applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)\n     */\n    baseVal: string;\n}\n\ndeclare var SVGAnimatedString: {\n    prototype: SVGAnimatedString;\n    new(): SVGAnimatedString;\n};\n\n/**\n * The **`SVGAnimatedTransformList`** interface represents attributes which take a list of numbers and which can be animated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)\n */\ninterface SVGAnimatedTransformList {\n    /**\n     * The **`animVal`** read-only property of the SVGAnimatedTransformList interface represents the animated value of the `transform` attribute of an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal)\n     */\n    readonly animVal: SVGTransformList;\n    /**\n     * The **`baseVal`** read-only property of the SVGAnimatedTransformList interface represents the non-animated value of the `transform` attribute of an SVG element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal)\n     */\n    readonly baseVal: SVGTransformList;\n}\n\ndeclare var SVGAnimatedTransformList: {\n    prototype: SVGAnimatedTransformList;\n    new(): SVGAnimatedTransformList;\n};\n\n/**\n * The **`SVGAnimationElement`** interface is the base interface for all of the animation element interfaces: SVGAnimateElement, SVGSetElement, SVGAnimateColorElement, SVGAnimateMotionElement and SVGAnimateTransformElement.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement)\n */\ninterface SVGAnimationElement extends SVGElement, SVGTests {\n    /**\n     * The **`targetElement`** read-only property of the SVGAnimationElement interface refers to the element which is being animated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement)\n     */\n    readonly targetElement: SVGElement | null;\n    /**\n     * The SVGAnimationElement method `beginElement()` creates a begin instance time for the current time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement)\n     */\n    beginElement(): void;\n    /**\n     * The SVGAnimationElement method `beginElementAt()` creates a begin instance time for the current time plus the specified offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt)\n     */\n    beginElementAt(offset: number): void;\n    /**\n     * The SVGAnimationElement method `endElement()` creates an end instance time for the current time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement)\n     */\n    endElement(): void;\n    /**\n     * The SVGAnimationElement method `endElementAt()` creates an end instance time for the current time plus the specified offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt)\n     */\n    endElementAt(offset: number): void;\n    /**\n     * The SVGAnimationElement method `getCurrentTime()` returns a float representing the current time in seconds relative to time zero for the given time container.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getCurrentTime)\n     */\n    getCurrentTime(): number;\n    /**\n     * The SVGAnimationElement method `getSimpleDuration()` returns a float representing the number of seconds for the simple duration for this animation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getSimpleDuration)\n     */\n    getSimpleDuration(): number;\n    /**\n     * The SVGAnimationElement method `getStartTime()` returns a float representing the start time, in seconds, for this animation element's current interval, if it exists, regardless of whether the interval has begun yet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/getStartTime)\n     */\n    getStartTime(): number;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimationElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAnimationElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGAnimationElement: {\n    prototype: SVGAnimationElement;\n    new(): SVGAnimationElement;\n};\n\n/**\n * The **`SVGCircleElement`** interface is an interface for the circle element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement)\n */\ninterface SVGCircleElement extends SVGGeometryElement {\n    /**\n     * The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.< If unspecified, the effect is as if the value is set to `0`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cx)\n     */\n    readonly cx: SVGAnimatedLength;\n    /**\n     * The **`cy`** read-only property of the SVGCircleElement interface reflects the cy attribute of a circle element and by that defines the y-coordinate of the circle's center.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cy)\n     */\n    readonly cy: SVGAnimatedLength;\n    /**\n     * The **`r`** read-only property of the SVGCircleElement interface reflects the r attribute of a circle element and by that defines the radius of the circle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/r)\n     */\n    readonly r: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGCircleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGCircleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGCircleElement: {\n    prototype: SVGCircleElement;\n    new(): SVGCircleElement;\n};\n\n/**\n * The **`SVGClipPathElement`** interface provides access to the properties of clipPath elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement)\n */\ninterface SVGClipPathElement extends SVGElement {\n    /**\n     * The read-only **`clipPathUnits`** property of the SVGClipPathElement interface reflects the clipPathUnits attribute of a clipPath element which defines the coordinate system to use for the content of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement/clipPathUnits)\n     */\n    readonly clipPathUnits: SVGAnimatedEnumeration;\n    /**\n     * The read-only **`transform`** property of the SVGClipPathElement interface reflects the transform attribute of a clipPath element, that is a list of transformations applied to the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement/transform)\n     */\n    readonly transform: SVGAnimatedTransformList;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGClipPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGClipPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGClipPathElement: {\n    prototype: SVGClipPathElement;\n    new(): SVGClipPathElement;\n};\n\n/**\n * The **`SVGComponentTransferFunctionElement`** interface represents a base interface used by the component transfer function interfaces.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)\n */\ninterface SVGComponentTransferFunctionElement extends SVGElement {\n    /**\n     * The **`amplitude`** read-only property of the SVGComponentTransferFunctionElement interface reflects the amplitude attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude)\n     */\n    readonly amplitude: SVGAnimatedNumber;\n    /**\n     * The **`exponent`** read-only property of the SVGComponentTransferFunctionElement interface reflects the exponent attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent)\n     */\n    readonly exponent: SVGAnimatedNumber;\n    /**\n     * The **`intercept`** read-only property of the SVGComponentTransferFunctionElement interface reflects the intercept attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept)\n     */\n    readonly intercept: SVGAnimatedNumber;\n    /**\n     * The **`offset`** read-only property of the SVGComponentTransferFunctionElement interface reflects the offset attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset)\n     */\n    readonly offset: SVGAnimatedNumber;\n    /**\n     * The **`slope`** read-only property of the SVGComponentTransferFunctionElement interface reflects the slope attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope)\n     */\n    readonly slope: SVGAnimatedNumber;\n    /**\n     * The **`tableValues`** read-only property of the SVGComponentTransferFunctionElement interface reflects the tableValues attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues)\n     */\n    readonly tableValues: SVGAnimatedNumberList;\n    /**\n     * The **`type`** read-only property of the SVGComponentTransferFunctionElement interface reflects the type attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type)\n     */\n    readonly type: SVGAnimatedEnumeration;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: 2;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: 3;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: 4;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: 5;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGComponentTransferFunctionElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGComponentTransferFunctionElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGComponentTransferFunctionElement: {\n    prototype: SVGComponentTransferFunctionElement;\n    new(): SVGComponentTransferFunctionElement;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: 2;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: 3;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: 4;\n    readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: 5;\n};\n\n/**\n * The **`SVGDefsElement`** interface corresponds to the defs element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGDefsElement)\n */\ninterface SVGDefsElement extends SVGGraphicsElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDefsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDefsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGDefsElement: {\n    prototype: SVGDefsElement;\n    new(): SVGDefsElement;\n};\n\n/**\n * The **`SVGDescElement`** interface corresponds to the desc element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGDescElement)\n */\ninterface SVGDescElement extends SVGElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDescElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDescElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGDescElement: {\n    prototype: SVGDescElement;\n    new(): SVGDescElement;\n};\n\ninterface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMap {\n}\n\n/**\n * All of the SVG DOM interfaces that correspond directly to elements in the SVG language derive from the `SVGElement` interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement)\n */\ninterface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {\n    /** @deprecated */\n    readonly className: any;\n    /**\n     * The **`ownerSVGElement`** property of the SVGElement interface reflects the nearest ancestor svg element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement)\n     */\n    readonly ownerSVGElement: SVGSVGElement | null;\n    /**\n     * The **`viewportElement`** property of the SVGElement interface represents the `SVGElement` which established the current viewport.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement)\n     */\n    readonly viewportElement: SVGElement | null;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGElement: {\n    prototype: SVGElement;\n    new(): SVGElement;\n};\n\n/**\n * The **`SVGEllipseElement`** interface provides access to the properties of ellipse elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)\n */\ninterface SVGEllipseElement extends SVGGeometryElement {\n    /**\n     * The **`cx`** read-only property of the SVGEllipseElement interface describes the x-axis coordinate of the center of the ellipse as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx)\n     */\n    readonly cx: SVGAnimatedLength;\n    /**\n     * The **`cy`** read-only property of the SVGEllipseElement interface describes the y-axis coordinate of the center of the ellipse as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy)\n     */\n    readonly cy: SVGAnimatedLength;\n    /**\n     * The **`rx`** read-only property of the SVGEllipseElement interface describes the x-axis radius of the ellipse as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx)\n     */\n    readonly rx: SVGAnimatedLength;\n    /**\n     * The **`ry`** read-only property of the SVGEllipseElement interface describes the y-axis radius of the ellipse as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry)\n     */\n    readonly ry: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGEllipseElement: {\n    prototype: SVGEllipseElement;\n    new(): SVGEllipseElement;\n};\n\n/**\n * The **`SVGFEBlendElement`** interface corresponds to the feBlend element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement)\n */\ninterface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEBlendElement interface reflects the in attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`in2`** read-only property of the SVGFEBlendElement interface reflects the in2 attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/in2)\n     */\n    readonly in2: SVGAnimatedString;\n    /**\n     * The **`mode`** read-only property of the SVGFEBlendElement interface reflects the mode attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/mode)\n     */\n    readonly mode: SVGAnimatedEnumeration;\n    readonly SVG_FEBLEND_MODE_UNKNOWN: 0;\n    readonly SVG_FEBLEND_MODE_NORMAL: 1;\n    readonly SVG_FEBLEND_MODE_MULTIPLY: 2;\n    readonly SVG_FEBLEND_MODE_SCREEN: 3;\n    readonly SVG_FEBLEND_MODE_DARKEN: 4;\n    readonly SVG_FEBLEND_MODE_LIGHTEN: 5;\n    readonly SVG_FEBLEND_MODE_OVERLAY: 6;\n    readonly SVG_FEBLEND_MODE_COLOR_DODGE: 7;\n    readonly SVG_FEBLEND_MODE_COLOR_BURN: 8;\n    readonly SVG_FEBLEND_MODE_HARD_LIGHT: 9;\n    readonly SVG_FEBLEND_MODE_SOFT_LIGHT: 10;\n    readonly SVG_FEBLEND_MODE_DIFFERENCE: 11;\n    readonly SVG_FEBLEND_MODE_EXCLUSION: 12;\n    readonly SVG_FEBLEND_MODE_HUE: 13;\n    readonly SVG_FEBLEND_MODE_SATURATION: 14;\n    readonly SVG_FEBLEND_MODE_COLOR: 15;\n    readonly SVG_FEBLEND_MODE_LUMINOSITY: 16;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEBlendElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEBlendElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEBlendElement: {\n    prototype: SVGFEBlendElement;\n    new(): SVGFEBlendElement;\n    readonly SVG_FEBLEND_MODE_UNKNOWN: 0;\n    readonly SVG_FEBLEND_MODE_NORMAL: 1;\n    readonly SVG_FEBLEND_MODE_MULTIPLY: 2;\n    readonly SVG_FEBLEND_MODE_SCREEN: 3;\n    readonly SVG_FEBLEND_MODE_DARKEN: 4;\n    readonly SVG_FEBLEND_MODE_LIGHTEN: 5;\n    readonly SVG_FEBLEND_MODE_OVERLAY: 6;\n    readonly SVG_FEBLEND_MODE_COLOR_DODGE: 7;\n    readonly SVG_FEBLEND_MODE_COLOR_BURN: 8;\n    readonly SVG_FEBLEND_MODE_HARD_LIGHT: 9;\n    readonly SVG_FEBLEND_MODE_SOFT_LIGHT: 10;\n    readonly SVG_FEBLEND_MODE_DIFFERENCE: 11;\n    readonly SVG_FEBLEND_MODE_EXCLUSION: 12;\n    readonly SVG_FEBLEND_MODE_HUE: 13;\n    readonly SVG_FEBLEND_MODE_SATURATION: 14;\n    readonly SVG_FEBLEND_MODE_COLOR: 15;\n    readonly SVG_FEBLEND_MODE_LUMINOSITY: 16;\n};\n\n/**\n * The **`SVGFEColorMatrixElement`** interface corresponds to the feColorMatrix element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)\n */\ninterface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEColorMatrixElement interface reflects the in attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`type`** read-only property of the SVGFEColorMatrixElement interface reflects the type attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type)\n     */\n    readonly type: SVGAnimatedEnumeration;\n    /**\n     * The **`values`** read-only property of the SVGFEColorMatrixElement interface reflects the values attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values)\n     */\n    readonly values: SVGAnimatedNumberList;\n    readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;\n    readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;\n    readonly SVG_FECOLORMATRIX_TYPE_SATURATE: 2;\n    readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: 3;\n    readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: 4;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEColorMatrixElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEColorMatrixElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEColorMatrixElement: {\n    prototype: SVGFEColorMatrixElement;\n    new(): SVGFEColorMatrixElement;\n    readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;\n    readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;\n    readonly SVG_FECOLORMATRIX_TYPE_SATURATE: 2;\n    readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: 3;\n    readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: 4;\n};\n\n/**\n * The **`SVGFEComponentTransferElement`** interface corresponds to the feComponentTransfer element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement)\n */\ninterface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEComponentTransferElement interface reflects the in attribute of the given feComponentTransfer element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEComponentTransferElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEComponentTransferElement: {\n    prototype: SVGFEComponentTransferElement;\n    new(): SVGFEComponentTransferElement;\n};\n\n/**\n * The **`SVGFECompositeElement`** interface corresponds to the feComposite element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement)\n */\ninterface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFECompositeElement interface reflects the in attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`in2`** read-only property of the SVGFECompositeElement interface reflects the in2 attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/in2)\n     */\n    readonly in2: SVGAnimatedString;\n    /**\n     * The **`k1`** read-only property of the SVGFECompositeElement interface reflects the k1 attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k1)\n     */\n    readonly k1: SVGAnimatedNumber;\n    /**\n     * The **`k2`** read-only property of the SVGFECompositeElement interface reflects the k2 attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k2)\n     */\n    readonly k2: SVGAnimatedNumber;\n    /**\n     * The **`k3`** read-only property of the SVGFECompositeElement interface reflects the k3 attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k3)\n     */\n    readonly k3: SVGAnimatedNumber;\n    /**\n     * The **`k4`** read-only property of the SVGFECompositeElement interface reflects the k4 attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/k4)\n     */\n    readonly k4: SVGAnimatedNumber;\n    /**\n     * The **`operator`** read-only property of the SVGFECompositeElement interface reflects the operator attribute of the given feComposite element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFECompositeElement/operator)\n     */\n    readonly operator: SVGAnimatedEnumeration;\n    readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: 0;\n    readonly SVG_FECOMPOSITE_OPERATOR_OVER: 1;\n    readonly SVG_FECOMPOSITE_OPERATOR_IN: 2;\n    readonly SVG_FECOMPOSITE_OPERATOR_OUT: 3;\n    readonly SVG_FECOMPOSITE_OPERATOR_ATOP: 4;\n    readonly SVG_FECOMPOSITE_OPERATOR_XOR: 5;\n    readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: 6;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFECompositeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFECompositeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFECompositeElement: {\n    prototype: SVGFECompositeElement;\n    new(): SVGFECompositeElement;\n    readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: 0;\n    readonly SVG_FECOMPOSITE_OPERATOR_OVER: 1;\n    readonly SVG_FECOMPOSITE_OPERATOR_IN: 2;\n    readonly SVG_FECOMPOSITE_OPERATOR_OUT: 3;\n    readonly SVG_FECOMPOSITE_OPERATOR_ATOP: 4;\n    readonly SVG_FECOMPOSITE_OPERATOR_XOR: 5;\n    readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: 6;\n};\n\n/**\n * The **`SVGFEConvolveMatrixElement`** interface corresponds to the feConvolveMatrix element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)\n */\ninterface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`bias`** read-only property of the SVGFEConvolveMatrixElement interface reflects the bias attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias)\n     */\n    readonly bias: SVGAnimatedNumber;\n    /**\n     * The **`divisor`** read-only property of the SVGFEConvolveMatrixElement interface reflects the divisor attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor)\n     */\n    readonly divisor: SVGAnimatedNumber;\n    /**\n     * The **`edgeMode`** read-only property of the SVGFEConvolveMatrixElement interface reflects the edgeMode attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode)\n     */\n    readonly edgeMode: SVGAnimatedEnumeration;\n    /**\n     * The **`in1`** read-only property of the SVGFEConvolveMatrixElement interface reflects the in attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`kernelMatrix`** read-only property of the SVGFEConvolveMatrixElement interface reflects the kernelMatrix attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix)\n     */\n    readonly kernelMatrix: SVGAnimatedNumberList;\n    /**\n     * The **`kernelUnitLengthX`** read-only property of the SVGFEConvolveMatrixElement interface reflects the kernelUnitLength attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX)\n     */\n    readonly kernelUnitLengthX: SVGAnimatedNumber;\n    /**\n     * The **`kernelUnitLengthY`** read-only property of the SVGFEConvolveMatrixElement interface reflects the kernelUnitLength attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY)\n     */\n    readonly kernelUnitLengthY: SVGAnimatedNumber;\n    /**\n     * The **`orderX`** read-only property of the SVGFEConvolveMatrixElement interface reflects the order attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX)\n     */\n    readonly orderX: SVGAnimatedInteger;\n    /**\n     * The **`orderY`** read-only property of the SVGFEConvolveMatrixElement interface reflects the order attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY)\n     */\n    readonly orderY: SVGAnimatedInteger;\n    /**\n     * The **`preserveAlpha`** read-only property of the SVGFEConvolveMatrixElement interface reflects the preserveAlpha attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha)\n     */\n    readonly preserveAlpha: SVGAnimatedBoolean;\n    /**\n     * The **`targetX`** read-only property of the SVGFEConvolveMatrixElement interface reflects the targetX attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX)\n     */\n    readonly targetX: SVGAnimatedInteger;\n    /**\n     * The **`targetY`** read-only property of the SVGFEConvolveMatrixElement interface reflects the targetY attribute of the given feConvolveMatrix element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY)\n     */\n    readonly targetY: SVGAnimatedInteger;\n    readonly SVG_EDGEMODE_UNKNOWN: 0;\n    readonly SVG_EDGEMODE_DUPLICATE: 1;\n    readonly SVG_EDGEMODE_WRAP: 2;\n    readonly SVG_EDGEMODE_NONE: 3;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEConvolveMatrixElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEConvolveMatrixElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEConvolveMatrixElement: {\n    prototype: SVGFEConvolveMatrixElement;\n    new(): SVGFEConvolveMatrixElement;\n    readonly SVG_EDGEMODE_UNKNOWN: 0;\n    readonly SVG_EDGEMODE_DUPLICATE: 1;\n    readonly SVG_EDGEMODE_WRAP: 2;\n    readonly SVG_EDGEMODE_NONE: 3;\n};\n\n/**\n * The **`SVGFEDiffuseLightingElement`** interface corresponds to the feDiffuseLighting element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement)\n */\ninterface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`diffuseConstant`** read-only property of the SVGFEDiffuseLightingElement interface reflects the diffuseConstant attribute of the given feDiffuseLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/diffuseConstant)\n     */\n    readonly diffuseConstant: SVGAnimatedNumber;\n    /**\n     * The **`in1`** read-only property of the SVGFEDiffuseLightingElement interface reflects the in attribute of the given feDiffuseLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`kernelUnitLengthX`** read-only property of the SVGFEDiffuseLightingElement interface reflects the X component of the kernelUnitLength attribute of the given feDiffuseLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/kernelUnitLengthX)\n     */\n    readonly kernelUnitLengthX: SVGAnimatedNumber;\n    /**\n     * The **`kernelUnitLengthY`** read-only property of the SVGFEDiffuseLightingElement interface reflects the Y component of the kernelUnitLength attribute of the given feDiffuseLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/kernelUnitLengthY)\n     */\n    readonly kernelUnitLengthY: SVGAnimatedNumber;\n    /**\n     * The **`surfaceScale`** read-only property of the SVGFEDiffuseLightingElement interface reflects the surfaceScale attribute of the given feDiffuseLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/surfaceScale)\n     */\n    readonly surfaceScale: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDiffuseLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDiffuseLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEDiffuseLightingElement: {\n    prototype: SVGFEDiffuseLightingElement;\n    new(): SVGFEDiffuseLightingElement;\n};\n\n/**\n * The **`SVGFEDisplacementMapElement`** interface corresponds to the feDisplacementMap element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)\n */\ninterface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEDisplacementMapElement interface reflects the in attribute of the given feDisplacementMap element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`in2`** read-only property of the SVGFEDisplacementMapElement interface reflects the in2 attribute of the given feDisplacementMap element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2)\n     */\n    readonly in2: SVGAnimatedString;\n    /**\n     * The **`scale`** read-only property of the SVGFEDisplacementMapElement interface reflects the scale attribute of the given feDisplacementMap element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale)\n     */\n    readonly scale: SVGAnimatedNumber;\n    /**\n     * The **`xChannelSelector`** read-only property of the SVGFEDisplacementMapElement interface reflects the xChannelSelector attribute of the given feDisplacementMap element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector)\n     */\n    readonly xChannelSelector: SVGAnimatedEnumeration;\n    /**\n     * The **`yChannelSelector`** read-only property of the SVGFEDisplacementMapElement interface reflects the yChannelSelector attribute of the given feDisplacementMap element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector)\n     */\n    readonly yChannelSelector: SVGAnimatedEnumeration;\n    readonly SVG_CHANNEL_UNKNOWN: 0;\n    readonly SVG_CHANNEL_R: 1;\n    readonly SVG_CHANNEL_G: 2;\n    readonly SVG_CHANNEL_B: 3;\n    readonly SVG_CHANNEL_A: 4;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDisplacementMapElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDisplacementMapElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEDisplacementMapElement: {\n    prototype: SVGFEDisplacementMapElement;\n    new(): SVGFEDisplacementMapElement;\n    readonly SVG_CHANNEL_UNKNOWN: 0;\n    readonly SVG_CHANNEL_R: 1;\n    readonly SVG_CHANNEL_G: 2;\n    readonly SVG_CHANNEL_B: 3;\n    readonly SVG_CHANNEL_A: 4;\n};\n\n/**\n * The **`SVGFEDistantLightElement`** interface corresponds to the feDistantLight element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement)\n */\ninterface SVGFEDistantLightElement extends SVGElement {\n    /**\n     * The **`azimuth`** read-only property of the SVGFEDistantLightElement interface reflects the azimuth attribute of the given feDistantLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/azimuth)\n     */\n    readonly azimuth: SVGAnimatedNumber;\n    /**\n     * The **`elevation`** read-only property of the SVGFEDistantLightElement interface reflects the elevation attribute of the given feDistantLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/elevation)\n     */\n    readonly elevation: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEDistantLightElement: {\n    prototype: SVGFEDistantLightElement;\n    new(): SVGFEDistantLightElement;\n};\n\n/**\n * The **`SVGFEDropShadowElement`** interface corresponds to the feDropShadow element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement)\n */\ninterface SVGFEDropShadowElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`dx`** read-only property of the SVGFEDropShadowElement interface reflects the dx attribute of the given feDropShadow element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dx)\n     */\n    readonly dx: SVGAnimatedNumber;\n    /**\n     * The **`dy`** read-only property of the SVGFEDropShadowElement interface reflects the dy attribute of the given feDropShadow element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/dy)\n     */\n    readonly dy: SVGAnimatedNumber;\n    /**\n     * The **`in1`** read-only property of the SVGFEDropShadowElement interface reflects the in attribute of the given feDropShadow element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`stdDeviationX`** read-only property of the SVGFEDropShadowElement interface reflects the (possibly automatically computed) X component of the stdDeviation attribute of the given feDropShadow element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationX)\n     */\n    readonly stdDeviationX: SVGAnimatedNumber;\n    /**\n     * The **`stdDeviationY`** read-only property of the SVGFEDropShadowElement interface reflects the (possibly automatically computed) Y component of the stdDeviation attribute of the given feDropShadow element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/stdDeviationY)\n     */\n    readonly stdDeviationY: SVGAnimatedNumber;\n    /**\n     * The `setStdDeviation()` method of the SVGFEDropShadowElement interface sets the values for the stdDeviation attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDropShadowElement/setStdDeviation)\n     */\n    setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEDropShadowElement: {\n    prototype: SVGFEDropShadowElement;\n    new(): SVGFEDropShadowElement;\n};\n\n/**\n * The **`SVGFEFloodElement`** interface corresponds to the feFlood element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEFloodElement)\n */\ninterface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEFloodElement: {\n    prototype: SVGFEFloodElement;\n    new(): SVGFEFloodElement;\n};\n\n/**\n * The **`SVGFEFuncAElement`** interface corresponds to the feFuncA element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEFuncAElement)\n */\ninterface SVGFEFuncAElement extends SVGComponentTransferFunctionElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncAElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncAElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEFuncAElement: {\n    prototype: SVGFEFuncAElement;\n    new(): SVGFEFuncAElement;\n};\n\n/**\n * The **`SVGFEFuncBElement`** interface corresponds to the feFuncB element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEFuncBElement)\n */\ninterface SVGFEFuncBElement extends SVGComponentTransferFunctionElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncBElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncBElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEFuncBElement: {\n    prototype: SVGFEFuncBElement;\n    new(): SVGFEFuncBElement;\n};\n\n/**\n * The **`SVGFEFuncGElement`** interface corresponds to the feFuncG element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEFuncGElement)\n */\ninterface SVGFEFuncGElement extends SVGComponentTransferFunctionElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEFuncGElement: {\n    prototype: SVGFEFuncGElement;\n    new(): SVGFEFuncGElement;\n};\n\n/**\n * The **`SVGFEFuncRElement`** interface corresponds to the feFuncR element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEFuncRElement)\n */\ninterface SVGFEFuncRElement extends SVGComponentTransferFunctionElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncRElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncRElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEFuncRElement: {\n    prototype: SVGFEFuncRElement;\n    new(): SVGFEFuncRElement;\n};\n\n/**\n * The **`SVGFEGaussianBlurElement`** interface corresponds to the feGaussianBlur element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement)\n */\ninterface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEGaussianBlurElement interface reflects the in attribute of the given feGaussianBlur element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`stdDeviationX`** read-only property of the SVGFEGaussianBlurElement interface reflects the (possibly automatically computed) X component of the stdDeviation attribute of the given feGaussianBlur element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationX)\n     */\n    readonly stdDeviationX: SVGAnimatedNumber;\n    /**\n     * The **`stdDeviationY`** read-only property of the SVGFEGaussianBlurElement interface reflects the (possibly automatically computed) Y component of the stdDeviation attribute of the given feGaussianBlur element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationY)\n     */\n    readonly stdDeviationY: SVGAnimatedNumber;\n    /**\n     * The `setStdDeviation()` method of the SVGFEGaussianBlurElement interface sets the values for the stdDeviation attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/setStdDeviation)\n     */\n    setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEGaussianBlurElement: {\n    prototype: SVGFEGaussianBlurElement;\n    new(): SVGFEGaussianBlurElement;\n};\n\n/**\n * The **`SVGFEImageElement`** interface corresponds to the feImage element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement)\n */\ninterface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {\n    /**\n     * The **`preserveAspectRatio`** read-only property of the SVGFEImageElement interface reflects the preserveAspectRatio attribute of the given feImage element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEImageElement/preserveAspectRatio)\n     */\n    readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEImageElement: {\n    prototype: SVGFEImageElement;\n    new(): SVGFEImageElement;\n};\n\n/**\n * The **`SVGFEMergeElement`** interface corresponds to the feMerge element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMergeElement)\n */\ninterface SVGFEMergeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEMergeElement: {\n    prototype: SVGFEMergeElement;\n    new(): SVGFEMergeElement;\n};\n\n/**\n * The **`SVGFEMergeNodeElement`** interface corresponds to the feMergeNode element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMergeNodeElement)\n */\ninterface SVGFEMergeNodeElement extends SVGElement {\n    /**\n     * The **`in1`** read-only property of the SVGFEMergeNodeElement interface reflects the in attribute of the given feMergeNode element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMergeNodeElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeNodeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeNodeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEMergeNodeElement: {\n    prototype: SVGFEMergeNodeElement;\n    new(): SVGFEMergeNodeElement;\n};\n\n/**\n * The **`SVGFEMorphologyElement`** interface corresponds to the feMorphology element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement)\n */\ninterface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFEMorphologyElement interface reflects the in attribute of the given feMorphology element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`operator`** read-only property of the SVGFEMorphologyElement interface reflects the operator attribute of the given feMorphology element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/operator)\n     */\n    readonly operator: SVGAnimatedEnumeration;\n    /**\n     * The **`radiusX`** read-only property of the SVGFEMorphologyElement interface reflects the X component of the radius attribute of the given feMorphology element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/radiusX)\n     */\n    readonly radiusX: SVGAnimatedNumber;\n    /**\n     * The **`radiusY`** read-only property of the SVGFEMorphologyElement interface reflects the Y component of the radius attribute of the given feMorphology element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/radiusY)\n     */\n    readonly radiusY: SVGAnimatedNumber;\n    readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: 0;\n    readonly SVG_MORPHOLOGY_OPERATOR_ERODE: 1;\n    readonly SVG_MORPHOLOGY_OPERATOR_DILATE: 2;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMorphologyElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMorphologyElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEMorphologyElement: {\n    prototype: SVGFEMorphologyElement;\n    new(): SVGFEMorphologyElement;\n    readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: 0;\n    readonly SVG_MORPHOLOGY_OPERATOR_ERODE: 1;\n    readonly SVG_MORPHOLOGY_OPERATOR_DILATE: 2;\n};\n\n/**\n * The **`SVGFEOffsetElement`** interface corresponds to the feOffset element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)\n */\ninterface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`dx`** read-only property of the SVGFEOffsetElement interface reflects the dx attribute of the given feOffset element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx)\n     */\n    readonly dx: SVGAnimatedNumber;\n    /**\n     * The **`dy`** read-only property of the SVGFEOffsetElement interface reflects the dy attribute of the given feOffset element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy)\n     */\n    readonly dy: SVGAnimatedNumber;\n    /**\n     * The **`in1`** read-only property of the SVGFEOffsetElement interface reflects the in attribute of the given feOffset element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEOffsetElement: {\n    prototype: SVGFEOffsetElement;\n    new(): SVGFEOffsetElement;\n};\n\n/**\n * The **`SVGFEPointLightElement`** interface corresponds to the fePointLight element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement)\n */\ninterface SVGFEPointLightElement extends SVGElement {\n    /**\n     * The **`x`** read-only property of the SVGFEPointLightElement interface describes the horizontal coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/x)\n     */\n    readonly x: SVGAnimatedNumber;\n    /**\n     * The **`y`** read-only property of the SVGFEPointLightElement interface describes the vertical coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/y)\n     */\n    readonly y: SVGAnimatedNumber;\n    /**\n     * The **`z`** read-only property of the SVGFEPointLightElement interface describes the z-axis value of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEPointLightElement/z)\n     */\n    readonly z: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFEPointLightElement: {\n    prototype: SVGFEPointLightElement;\n    new(): SVGFEPointLightElement;\n};\n\n/**\n * The **`SVGFESpecularLightingElement`** interface corresponds to the feSpecularLighting element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement)\n */\ninterface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFESpecularLightingElement interface reflects the in attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    /**\n     * The **`kernelUnitLengthX`** read-only property of the SVGFESpecularLightingElement interface reflects the x value of the kernelUnitLength attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthX)\n     */\n    readonly kernelUnitLengthX: SVGAnimatedNumber;\n    /**\n     * The **`kernelUnitLengthY`** read-only property of the SVGFESpecularLightingElement interface reflects the y value of the kernelUnitLength attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthY)\n     */\n    readonly kernelUnitLengthY: SVGAnimatedNumber;\n    /**\n     * The **`specularConstant`** read-only property of the SVGFESpecularLightingElement interface reflects the specularConstant attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant)\n     */\n    readonly specularConstant: SVGAnimatedNumber;\n    /**\n     * The **`specularExponent`** read-only property of the SVGFESpecularLightingElement interface reflects the specularExponent attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularExponent)\n     */\n    readonly specularExponent: SVGAnimatedNumber;\n    /**\n     * The **`surfaceScale`** read-only property of the SVGFESpecularLightingElement interface reflects the surfaceScale attribute of the given feSpecularLighting element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/surfaceScale)\n     */\n    readonly surfaceScale: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFESpecularLightingElement: {\n    prototype: SVGFESpecularLightingElement;\n    new(): SVGFESpecularLightingElement;\n};\n\n/**\n * The **`SVGFESpotLightElement`** interface corresponds to the feSpotLight element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)\n */\ninterface SVGFESpotLightElement extends SVGElement {\n    /**\n     * The **`limitingConeAngle`** read-only property of the SVGFESpotLightElement interface reflects the limitingConeAngle attribute of the given feSpotLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle)\n     */\n    readonly limitingConeAngle: SVGAnimatedNumber;\n    /**\n     * The **`pointsAtX`** read-only property of the SVGFESpotLightElement interface reflects the pointsAtX attribute of the given feSpotLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX)\n     */\n    readonly pointsAtX: SVGAnimatedNumber;\n    /**\n     * The **`pointsAtY`** read-only property of the SVGFESpotLightElement interface reflects the pointsAtY attribute of the given feSpotLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY)\n     */\n    readonly pointsAtY: SVGAnimatedNumber;\n    /**\n     * The **`pointsAtZ`** read-only property of the SVGFESpotLightElement interface reflects the pointsAtZ attribute of the given feSpotLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ)\n     */\n    readonly pointsAtZ: SVGAnimatedNumber;\n    /**\n     * The **`specularExponent`** read-only property of the SVGFESpotLightElement interface reflects the specularExponent attribute of the given feSpotLight element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent)\n     */\n    readonly specularExponent: SVGAnimatedNumber;\n    /**\n     * The **`x`** read-only property of the SVGFESpotLightElement interface describes the horizontal coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x)\n     */\n    readonly x: SVGAnimatedNumber;\n    /**\n     * The **`y`** read-only property of the SVGFESpotLightElement interface describes the vertical coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/y)\n     */\n    readonly y: SVGAnimatedNumber;\n    /**\n     * The **`z`** read-only property of the SVGFESpotLightElement interface describes the z-axis value of the position of an SVG filter primitive as a SVGAnimatedNumber.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/z)\n     */\n    readonly z: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFESpotLightElement: {\n    prototype: SVGFESpotLightElement;\n    new(): SVGFESpotLightElement;\n};\n\n/**\n * The **`SVGFETileElement`** interface corresponds to the feTile element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)\n */\ninterface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`in1`** read-only property of the SVGFETileElement interface reflects the in attribute of the given feTile element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1)\n     */\n    readonly in1: SVGAnimatedString;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFETileElement: {\n    prototype: SVGFETileElement;\n    new(): SVGFETileElement;\n};\n\n/**\n * The **`SVGFETurbulenceElement`** interface corresponds to the feTurbulence element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement)\n */\ninterface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n    /**\n     * The **`baseFrequencyX`** read-only property of the SVGFETurbulenceElement interface reflects the X component of the baseFrequency attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyX)\n     */\n    readonly baseFrequencyX: SVGAnimatedNumber;\n    /**\n     * The **`baseFrequencyY`** read-only property of the SVGFETurbulenceElement interface reflects the Y component of the baseFrequency attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/baseFrequencyY)\n     */\n    readonly baseFrequencyY: SVGAnimatedNumber;\n    /**\n     * The **`numOctaves`** read-only property of the SVGFETurbulenceElement interface reflects the numOctaves attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/numOctaves)\n     */\n    readonly numOctaves: SVGAnimatedInteger;\n    /**\n     * The **`seed`** read-only property of the SVGFETurbulenceElement interface reflects the seed attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/seed)\n     */\n    readonly seed: SVGAnimatedNumber;\n    /**\n     * The **`stitchTiles`** read-only property of the SVGFETurbulenceElement interface reflects the stitchTiles attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/stitchTiles)\n     */\n    readonly stitchTiles: SVGAnimatedEnumeration;\n    /**\n     * The **`type`** read-only property of the SVGFETurbulenceElement interface reflects the type attribute of the given feTurbulence element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETurbulenceElement/type)\n     */\n    readonly type: SVGAnimatedEnumeration;\n    readonly SVG_TURBULENCE_TYPE_UNKNOWN: 0;\n    readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: 1;\n    readonly SVG_TURBULENCE_TYPE_TURBULENCE: 2;\n    readonly SVG_STITCHTYPE_UNKNOWN: 0;\n    readonly SVG_STITCHTYPE_STITCH: 1;\n    readonly SVG_STITCHTYPE_NOSTITCH: 2;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETurbulenceElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETurbulenceElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFETurbulenceElement: {\n    prototype: SVGFETurbulenceElement;\n    new(): SVGFETurbulenceElement;\n    readonly SVG_TURBULENCE_TYPE_UNKNOWN: 0;\n    readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: 1;\n    readonly SVG_TURBULENCE_TYPE_TURBULENCE: 2;\n    readonly SVG_STITCHTYPE_UNKNOWN: 0;\n    readonly SVG_STITCHTYPE_STITCH: 1;\n    readonly SVG_STITCHTYPE_NOSTITCH: 2;\n};\n\n/**\n * The **`SVGFilterElement`** interface provides access to the properties of filter elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement)\n */\ninterface SVGFilterElement extends SVGElement, SVGURIReference {\n    /**\n     * The **`filterUnits`** read-only property of the SVGFilterElement interface reflects the filterUnits attribute of the given filter element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/filterUnits)\n     */\n    readonly filterUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`height`** read-only property of the SVGFilterElement interface describes the vertical size of an SVG filter primitive as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`primitiveUnits`** read-only property of the SVGFilterElement interface reflects the primitiveUnits attribute of the given filter element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/primitiveUnits)\n     */\n    readonly primitiveUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`width`** read-only property of the SVGFilterElement interface describes the horizontal size of an SVG filter primitive as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGFilterElement interface describes the horizontal coordinate of the position of an SVG filter primitive as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGFilterElement interface describes the vertical coordinate of the position of an SVG filter primitive as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGFilterElement: {\n    prototype: SVGFilterElement;\n    new(): SVGFilterElement;\n};\n\ninterface SVGFilterPrimitiveStandardAttributes {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */\n    readonly height: SVGAnimatedLength;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */\n    readonly result: SVGAnimatedString;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */\n    readonly width: SVGAnimatedLength;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */\n    readonly x: SVGAnimatedLength;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */\n    readonly y: SVGAnimatedLength;\n}\n\ninterface SVGFitToViewBox {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/preserveAspectRatio) */\n    readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/viewBox) */\n    readonly viewBox: SVGAnimatedRect;\n}\n\n/**\n * The **`SVGForeignObjectElement`** interface provides access to the properties of foreignObject elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement)\n */\ninterface SVGForeignObjectElement extends SVGGraphicsElement {\n    /**\n     * The **`height`** read-only property of the SVGForeignObjectElement interface describes the height of the `<foreignObject>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`width`** read-only property of the SVGForeignObjectElement interface describes the width of the `<foreignObject>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGForeignObjectElement interface describes the x-axis coordinate of the `<foreignObject>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGForeignObjectElement interface describes the y-axis coordinate of the `<foreignObject>` element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGForeignObjectElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGForeignObjectElement: {\n    prototype: SVGForeignObjectElement;\n    new(): SVGForeignObjectElement;\n};\n\n/**\n * The **`SVGGElement`** interface corresponds to the g element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGElement)\n */\ninterface SVGGElement extends SVGGraphicsElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGGElement: {\n    prototype: SVGGElement;\n    new(): SVGGElement;\n};\n\n/**\n * The `SVGGeometryElement` interface represents SVG elements whose rendering is defined by geometry with an equivalent path, and which can be filled and stroked.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement)\n */\ninterface SVGGeometryElement extends SVGGraphicsElement {\n    /**\n     * The **`SVGGeometryElement.pathLength`** property reflects the A number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/pathLength)\n     */\n    readonly pathLength: SVGAnimatedNumber;\n    /**\n     * The **`SVGGeometryElement.getPointAtLength()`** method returns the point at a given distance along the path.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/getPointAtLength)\n     */\n    getPointAtLength(distance: number): DOMPoint;\n    /**\n     * The **`SVGGeometryElement.getTotalLength()`** method returns the user agent's computed value for the total length of the path in user units.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/getTotalLength)\n     */\n    getTotalLength(): number;\n    /**\n     * The **`isPointInFill()`** method of the SVGGeometryElement interface determines whether a given point is within the fill shape of an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/isPointInFill)\n     */\n    isPointInFill(point?: DOMPointInit): boolean;\n    /**\n     * The **`isPointInStroke()`** method of the SVGGeometryElement interface determines whether a given point is within the stroke shape of an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/isPointInStroke)\n     */\n    isPointInStroke(point?: DOMPointInit): boolean;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGeometryElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGeometryElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGGeometryElement: {\n    prototype: SVGGeometryElement;\n    new(): SVGGeometryElement;\n};\n\n/**\n * The **`SVGGradient`** interface is a base interface used by SVGLinearGradientElement and SVGRadialGradientElement.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement)\n */\ninterface SVGGradientElement extends SVGElement, SVGURIReference {\n    /**\n     * The **`gradientTransform`** read-only property of the SVGGradientElement interface reflects the gradientTransform attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientTransform)\n     */\n    readonly gradientTransform: SVGAnimatedTransformList;\n    /**\n     * The **`gradientUnits`** read-only property of the SVGGradientElement interface reflects the gradientUnits attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientUnits)\n     */\n    readonly gradientUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`spreadMethod`** read-only property of the SVGGradientElement interface reflects the spreadMethod attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/spreadMethod)\n     */\n    readonly spreadMethod: SVGAnimatedEnumeration;\n    readonly SVG_SPREADMETHOD_UNKNOWN: 0;\n    readonly SVG_SPREADMETHOD_PAD: 1;\n    readonly SVG_SPREADMETHOD_REFLECT: 2;\n    readonly SVG_SPREADMETHOD_REPEAT: 3;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGGradientElement: {\n    prototype: SVGGradientElement;\n    new(): SVGGradientElement;\n    readonly SVG_SPREADMETHOD_UNKNOWN: 0;\n    readonly SVG_SPREADMETHOD_PAD: 1;\n    readonly SVG_SPREADMETHOD_REFLECT: 2;\n    readonly SVG_SPREADMETHOD_REPEAT: 3;\n};\n\n/**\n * The **`SVGGraphicsElement`** interface represents SVG elements whose primary purpose is to directly render graphics into a group.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement)\n */\ninterface SVGGraphicsElement extends SVGElement, SVGTests {\n    /**\n     * The **`transform`** read-only property of the SVGGraphicsElement interface reflects the computed value of the transform property and its corresponding transform attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/transform)\n     */\n    readonly transform: SVGAnimatedTransformList;\n    /**\n     * The **`SVGGraphicsElement.getBBox()`** method allows us to determine the coordinates of the smallest rectangle in which the object fits.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getBBox)\n     */\n    getBBox(options?: SVGBoundingBoxOptions): DOMRect;\n    /**\n     * The `getCTM()` method of the SVGGraphicsElement interface represents the matrix that transforms the current element's coordinate system to its SVG viewport's coordinate system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getCTM)\n     */\n    getCTM(): DOMMatrix | null;\n    /**\n     * The `getScreenCTM()` method of the SVGGraphicsElement interface represents the matrix that transforms the current element's coordinate system to the coordinate system of the SVG viewport for the SVG document fragment.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGraphicsElement/getScreenCTM)\n     */\n    getScreenCTM(): DOMMatrix | null;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGGraphicsElement: {\n    prototype: SVGGraphicsElement;\n    new(): SVGGraphicsElement;\n};\n\n/**\n * The **`SVGImageElement`** interface corresponds to the image element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)\n */\ninterface SVGImageElement extends SVGGraphicsElement, SVGURIReference {\n    /**\n     * The **`crossOrigin`** property of the SVGImageElement interface is a string which specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossOrigin)\n     */\n    crossOrigin: string | null;\n    /**\n     * The **`height`** read-only property of the corresponding to the height attribute of the given An SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio)\n     */\n    readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n    /**\n     * The **`width`** read-only property of the corresponding to the width attribute of the given image element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the corresponding to the x attribute of the given image element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the corresponding to the y attribute of the given image element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGImageElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGImageElement: {\n    prototype: SVGImageElement;\n    new(): SVGImageElement;\n};\n\n/**\n * The **`SVGLength`** interface correspond to the \\<length> basic data type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength)\n */\ninterface SVGLength {\n    /**\n     * The **`unitType`** property of the SVGLength interface that represents type of the value as specified by one of the `SVG_LENGTHTYPE_*` constants defined on this interface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/unitType)\n     */\n    readonly unitType: number;\n    /**\n     * The `value` property of the SVGLength interface represents the floating point value of the \\<length> in user units.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/value)\n     */\n    value: number;\n    /**\n     * The `valueAsString` property of the SVGLength interface represents the \\<length>'s value as a string, in the units expressed by SVGLength.unitType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueAsString)\n     */\n    valueAsString: string;\n    /**\n     * The `valueInSpecifiedUnits` property of the SVGLength interface represents floating point value, in the units expressed by SVGLength.unitType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/valueInSpecifiedUnits)\n     */\n    valueInSpecifiedUnits: number;\n    /**\n     * The `convertToSpecifiedUnits()` method of the SVGLength interface allows you to convert the length's value to the specified unit type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/convertToSpecifiedUnits)\n     */\n    convertToSpecifiedUnits(unitType: number): void;\n    /**\n     * The `newValueSpecifiedUnits()` method of the SVGLength interface resets the value as a number with an associated SVGLength.unitType, thereby replacing the values for all of the attributes on the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLength/newValueSpecifiedUnits)\n     */\n    newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n    readonly SVG_LENGTHTYPE_UNKNOWN: 0;\n    readonly SVG_LENGTHTYPE_NUMBER: 1;\n    readonly SVG_LENGTHTYPE_PERCENTAGE: 2;\n    readonly SVG_LENGTHTYPE_EMS: 3;\n    readonly SVG_LENGTHTYPE_EXS: 4;\n    readonly SVG_LENGTHTYPE_PX: 5;\n    readonly SVG_LENGTHTYPE_CM: 6;\n    readonly SVG_LENGTHTYPE_MM: 7;\n    readonly SVG_LENGTHTYPE_IN: 8;\n    readonly SVG_LENGTHTYPE_PT: 9;\n    readonly SVG_LENGTHTYPE_PC: 10;\n}\n\ndeclare var SVGLength: {\n    prototype: SVGLength;\n    new(): SVGLength;\n    readonly SVG_LENGTHTYPE_UNKNOWN: 0;\n    readonly SVG_LENGTHTYPE_NUMBER: 1;\n    readonly SVG_LENGTHTYPE_PERCENTAGE: 2;\n    readonly SVG_LENGTHTYPE_EMS: 3;\n    readonly SVG_LENGTHTYPE_EXS: 4;\n    readonly SVG_LENGTHTYPE_PX: 5;\n    readonly SVG_LENGTHTYPE_CM: 6;\n    readonly SVG_LENGTHTYPE_MM: 7;\n    readonly SVG_LENGTHTYPE_IN: 8;\n    readonly SVG_LENGTHTYPE_PT: 9;\n    readonly SVG_LENGTHTYPE_PC: 10;\n};\n\n/**\n * The **`SVGLengthList`** interface defines a list of SVGLength objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)\n */\ninterface SVGLengthList {\n    /**\n     * The **`length`** property of the SVGLengthList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`numberOfItems`** property of the SVGLengthList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems)\n     */\n    readonly numberOfItems: number;\n    /**\n     * The **`appendItem()`** method of the SVGLengthList interface inserts a new item at the end of the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem)\n     */\n    appendItem(newItem: SVGLength): SVGLength;\n    /**\n     * The **`clear()`** method of the SVGLengthList interface clears all existing items from the list, with the result being an empty list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear)\n     */\n    clear(): void;\n    /**\n     * The **`getItem()`** method of the SVGLengthList interface returns the specified item from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem)\n     */\n    getItem(index: number): SVGLength;\n    /**\n     * The **`initialize()`** method of the SVGLengthList interface clears all existing items from the list and re-initializes the list to hold the single item specified by the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize)\n     */\n    initialize(newItem: SVGLength): SVGLength;\n    /**\n     * The **`insertItemBefore()`** method of the SVGLengthList interface inserts a new item into the list at the specified position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore)\n     */\n    insertItemBefore(newItem: SVGLength, index: number): SVGLength;\n    /**\n     * The **`removeItem()`** method of the SVGLengthList interface removes an existing item at the given index from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem)\n     */\n    removeItem(index: number): SVGLength;\n    /**\n     * The **`replaceItem()`** method of the SVGLengthList interface replaces an existing item in the list with a new item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem)\n     */\n    replaceItem(newItem: SVGLength, index: number): SVGLength;\n    [index: number]: SVGLength;\n}\n\ndeclare var SVGLengthList: {\n    prototype: SVGLengthList;\n    new(): SVGLengthList;\n};\n\n/**\n * The **`SVGLineElement`** interface provides access to the properties of line elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement)\n */\ninterface SVGLineElement extends SVGGeometryElement {\n    /**\n     * The **`x1`** read-only property of the SVGLineElement interface describes the start of the SVG line along the x-axis as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/x1)\n     */\n    readonly x1: SVGAnimatedLength;\n    /**\n     * The **`x2`** read-only property of the SVGLineElement interface describes the x-axis coordinate value of the end of a line as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/x2)\n     */\n    readonly x2: SVGAnimatedLength;\n    /**\n     * The **`y1`** read-only property of the SVGLineElement interface describes the start of the SVG line along the y-axis as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/y1)\n     */\n    readonly y1: SVGAnimatedLength;\n    /**\n     * The **`y2`** read-only property of the SVGLineElement interface describes the v-axis coordinate value of the end of a line as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/y2)\n     */\n    readonly y2: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLineElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLineElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGLineElement: {\n    prototype: SVGLineElement;\n    new(): SVGLineElement;\n};\n\n/**\n * The **`SVGLinearGradientElement`** interface corresponds to the linearGradient element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)\n */\ninterface SVGLinearGradientElement extends SVGGradientElement {\n    /**\n     * The **`x1`** read-only property of the SVGLinearGradientElement interface describes the x-axis coordinate of the start point of the gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1)\n     */\n    readonly x1: SVGAnimatedLength;\n    /**\n     * The **`x2`** read-only property of the SVGLinearGradientElement interface describes the x-axis coordinate of the start point of the gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2)\n     */\n    readonly x2: SVGAnimatedLength;\n    /**\n     * The **`y1`** read-only property of the SVGLinearGradientElement interface describes the y-axis coordinate of the start point of the gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1)\n     */\n    readonly y1: SVGAnimatedLength;\n    /**\n     * The **`y2`** read-only property of the SVGLinearGradientElement interface describes the y-axis coordinate of the start point of the gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2)\n     */\n    readonly y2: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGLinearGradientElement: {\n    prototype: SVGLinearGradientElement;\n    new(): SVGLinearGradientElement;\n};\n\n/**\n * The **`SVGMPathElement`** interface corresponds to the mpath element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMPathElement)\n */\ninterface SVGMPathElement extends SVGElement, SVGURIReference {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGMPathElement: {\n    prototype: SVGMPathElement;\n    new(): SVGMPathElement;\n};\n\n/**\n * The **`SVGMarkerElement`** interface provides access to the properties of marker elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement)\n */\ninterface SVGMarkerElement extends SVGElement, SVGFitToViewBox {\n    /**\n     * The **`markerHeight`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedLength object containing the height of the marker viewport as defined by the markerHeight attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/markerHeight)\n     */\n    readonly markerHeight: SVGAnimatedLength;\n    /**\n     * The **`markerUnits`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedEnumeration object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/markerUnits)\n     */\n    readonly markerUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`markerWidth`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedLength object containing the width of the marker viewport as defined by the markerWidth attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/markerWidth)\n     */\n    readonly markerWidth: SVGAnimatedLength;\n    /**\n     * The **`orientAngle`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedAngle object containing the angle of the orient attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/orientAngle)\n     */\n    readonly orientAngle: SVGAnimatedAngle;\n    /**\n     * The **`orientType`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedEnumeration object indicating whether the orient attribute is `auto`, an angle value, or something else.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/orientType)\n     */\n    readonly orientType: SVGAnimatedEnumeration;\n    /**\n     * The **`refX`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedLength object containing the value of the refX attribute of the marker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/refX)\n     */\n    readonly refX: SVGAnimatedLength;\n    /**\n     * The **`refY`** read-only property of the SVGMarkerElement interface returns an SVGAnimatedLength object containing the value of the refY attribute of the marker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/refY)\n     */\n    readonly refY: SVGAnimatedLength;\n    /**\n     * The **`setOrientToAngle()`** method of the SVGMarkerElement interface sets the value of the `orient` attribute to the value in the SVGAngle passed in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/setOrientToAngle)\n     */\n    setOrientToAngle(angle: SVGAngle): void;\n    /**\n     * The **`setOrientToAuto()`** method of the SVGMarkerElement interface sets the value of the `orient` attribute to `auto`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMarkerElement/setOrientToAuto)\n     */\n    setOrientToAuto(): void;\n    readonly SVG_MARKERUNITS_UNKNOWN: 0;\n    readonly SVG_MARKERUNITS_USERSPACEONUSE: 1;\n    readonly SVG_MARKERUNITS_STROKEWIDTH: 2;\n    readonly SVG_MARKER_ORIENT_UNKNOWN: 0;\n    readonly SVG_MARKER_ORIENT_AUTO: 1;\n    readonly SVG_MARKER_ORIENT_ANGLE: 2;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGMarkerElement: {\n    prototype: SVGMarkerElement;\n    new(): SVGMarkerElement;\n    readonly SVG_MARKERUNITS_UNKNOWN: 0;\n    readonly SVG_MARKERUNITS_USERSPACEONUSE: 1;\n    readonly SVG_MARKERUNITS_STROKEWIDTH: 2;\n    readonly SVG_MARKER_ORIENT_UNKNOWN: 0;\n    readonly SVG_MARKER_ORIENT_AUTO: 1;\n    readonly SVG_MARKER_ORIENT_ANGLE: 2;\n};\n\n/**\n * The **`SVGMaskElement`** interface provides access to the properties of mask elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement)\n */\ninterface SVGMaskElement extends SVGElement {\n    /**\n     * The read-only **`height`** property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the height attribute of the marker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The read-only **`maskContentUnits`** property of the SVGMaskElement interface reflects the maskContentUnits attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/maskContentUnits)\n     */\n    readonly maskContentUnits: SVGAnimatedEnumeration;\n    /**\n     * The read-only **`maskUnits`** property of the SVGMaskElement interface reflects the maskUnits attribute of a mask element which defines the coordinate system to use for the mask of the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/maskUnits)\n     */\n    readonly maskUnits: SVGAnimatedEnumeration;\n    /**\n     * The read-only **`width`** property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the width attribute of the marker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The read-only **`x`** property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the x attribute of the mask.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The read-only **`y`** property of the SVGMaskElement interface returns an SVGAnimatedLength object containing the value of the y attribute of the marker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMaskElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMaskElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGMaskElement: {\n    prototype: SVGMaskElement;\n    new(): SVGMaskElement;\n};\n\n/**\n * The **`SVGMetadataElement`** interface corresponds to the metadata element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMetadataElement)\n */\ninterface SVGMetadataElement extends SVGElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMetadataElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMetadataElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGMetadataElement: {\n    prototype: SVGMetadataElement;\n    new(): SVGMetadataElement;\n};\n\n/**\n * The **`SVGNumber`** interface corresponds to the &lt;number&gt; basic data type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber)\n */\ninterface SVGNumber {\n    /**\n     * The **`value`** read-only property of the SVGNumber interface represents the number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumber/value)\n     */\n    value: number;\n}\n\ndeclare var SVGNumber: {\n    prototype: SVGNumber;\n    new(): SVGNumber;\n};\n\n/**\n * The **`SVGNumberList`** interface defines a list of numbers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList)\n */\ninterface SVGNumberList {\n    /**\n     * The **`length`** property of the SVGNumberList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`numberOfItems`** property of the SVGNumberList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/numberOfItems)\n     */\n    readonly numberOfItems: number;\n    /**\n     * The **`appendItem()`** method of the SVGNumberList interface inserts a new item at the end of the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/appendItem)\n     */\n    appendItem(newItem: SVGNumber): SVGNumber;\n    /**\n     * The **`clear()`** method of the SVGNumberList interface clears all existing items from the list, with the result being an empty list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/clear)\n     */\n    clear(): void;\n    /**\n     * The **`getItem()`** method of the SVGNumberList interface returns the specified item from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/getItem)\n     */\n    getItem(index: number): SVGNumber;\n    /**\n     * The **`initialize()`** method of the SVGNumberList interface clears all existing items from the list and re-initializes the list to hold the single item specified by the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/initialize)\n     */\n    initialize(newItem: SVGNumber): SVGNumber;\n    /**\n     * The **`insertItemBefore()`** method of the SVGNumberList interface inserts a new item into the list at the specified position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/insertItemBefore)\n     */\n    insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;\n    /**\n     * The **`removeItem()`** method of the SVGNumberList interface removes an existing item at the given index from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/removeItem)\n     */\n    removeItem(index: number): SVGNumber;\n    /**\n     * The **`replaceItem()`** method of the SVGNumberList interface replaces an existing item in the list with a new item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/replaceItem)\n     */\n    replaceItem(newItem: SVGNumber, index: number): SVGNumber;\n    [index: number]: SVGNumber;\n}\n\ndeclare var SVGNumberList: {\n    prototype: SVGNumberList;\n    new(): SVGNumberList;\n};\n\n/**\n * The **`SVGPathElement`** interface corresponds to the path element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPathElement)\n */\ninterface SVGPathElement extends SVGGeometryElement {\n    /**\n     * The **`pathLength`** read-only property of the SVGPathElement interface reflects the pathLength attribute of the given path element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPathElement/pathLength)\n     */\n    readonly pathLength: SVGAnimatedNumber;\n    /**\n     * The **`getPointAtLength()`** method of the SVGPathElement interface returns the point at a given distance along the path.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPathElement/getPointAtLength)\n     */\n    getPointAtLength(distance: number): DOMPoint;\n    /**\n     * The **`getTotalLength()`** method of the SVGPathElement interface returns the user agent's computed value for the total length of the path in user units.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPathElement/getTotalLength)\n     */\n    getTotalLength(): number;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGPathElement: {\n    prototype: SVGPathElement;\n    new(): SVGPathElement;\n};\n\n/**\n * The **`SVGPatternElement`** interface corresponds to the pattern element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement)\n */\ninterface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {\n    /**\n     * The **`height`** read-only property of the SVGPatternElement interface describes the height of the pattern as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`patternContentUnits`** read-only property of the SVGPatternElement interface reflects the patternContentUnits attribute of the given pattern element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits)\n     */\n    readonly patternContentUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`patternTransform`** read-only property of the SVGPatternElement interface reflects the patternTransform attribute of the given pattern element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform)\n     */\n    readonly patternTransform: SVGAnimatedTransformList;\n    /**\n     * The **`patternUnits`** read-only property of the SVGPatternElement interface reflects the patternUnits attribute of the given pattern element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits)\n     */\n    readonly patternUnits: SVGAnimatedEnumeration;\n    /**\n     * The **`width`** read-only property of the SVGPatternElement interface describes the width of the pattern as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGPatternElement interface describes the x-axis coordinate of the start point of the pattern as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGPatternElement interface describes the y-axis coordinate of the start point of the pattern as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGPatternElement: {\n    prototype: SVGPatternElement;\n    new(): SVGPatternElement;\n};\n\n/**\n * The **`SVGPointList`** interface represents a list of DOMPoint objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)\n */\ninterface SVGPointList {\n    /**\n     * The **`length`** read-only property of the SVGPointList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`numberOfItems`** read-only property of the SVGPointList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/numberOfItems)\n     */\n    readonly numberOfItems: number;\n    /**\n     * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)\n     */\n    appendItem(newItem: DOMPoint): DOMPoint;\n    /**\n     * The **`clear()`** method of the SVGPointList interface removes all items from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/clear)\n     */\n    clear(): void;\n    /**\n     * The **`getItem()`** method of the SVGPointList interface gets one item from the list at the specified index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/getItem)\n     */\n    getItem(index: number): DOMPoint;\n    /**\n     * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)\n     */\n    initialize(newItem: DOMPoint): DOMPoint;\n    /**\n     * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)\n     */\n    insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;\n    /**\n     * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)\n     */\n    removeItem(index: number): DOMPoint;\n    /**\n     * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)\n     */\n    replaceItem(newItem: DOMPoint, index: number): DOMPoint;\n    [index: number]: DOMPoint;\n}\n\ndeclare var SVGPointList: {\n    prototype: SVGPointList;\n    new(): SVGPointList;\n};\n\n/**\n * The **`SVGPolygonElement`** interface provides access to the properties of polygon elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement)\n */\ninterface SVGPolygonElement extends SVGGeometryElement, SVGAnimatedPoints {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolygonElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolygonElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGPolygonElement: {\n    prototype: SVGPolygonElement;\n    new(): SVGPolygonElement;\n};\n\n/**\n * The **`SVGPolylineElement`** interface provides access to the properties of polyline elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolylineElement)\n */\ninterface SVGPolylineElement extends SVGGeometryElement, SVGAnimatedPoints {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolylineElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolylineElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGPolylineElement: {\n    prototype: SVGPolylineElement;\n    new(): SVGPolylineElement;\n};\n\n/**\n * The **`SVGPreserveAspectRatio`** interface corresponds to the preserveAspectRatio attribute.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio)\n */\ninterface SVGPreserveAspectRatio {\n    /**\n     * The **`align`** read-only property of the SVGPreserveAspectRatio interface reflects the type of the alignment value as specified by one of the `SVG_PRESERVEASPECTRATIO_*` constants defined on this interface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/align)\n     */\n    align: number;\n    /**\n     * The **`meetOrSlice`** read-only property of the SVGPreserveAspectRatio interface reflects the type of the meet-or-slice value as specified by one of the `SVG_MEETORSLICE_*` constants defined on this interface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPreserveAspectRatio/meetOrSlice)\n     */\n    meetOrSlice: number;\n    readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: 0;\n    readonly SVG_PRESERVEASPECTRATIO_NONE: 1;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: 2;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: 3;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: 4;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMID: 5;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: 6;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: 7;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: 8;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: 9;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: 10;\n    readonly SVG_MEETORSLICE_UNKNOWN: 0;\n    readonly SVG_MEETORSLICE_MEET: 1;\n    readonly SVG_MEETORSLICE_SLICE: 2;\n}\n\ndeclare var SVGPreserveAspectRatio: {\n    prototype: SVGPreserveAspectRatio;\n    new(): SVGPreserveAspectRatio;\n    readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: 0;\n    readonly SVG_PRESERVEASPECTRATIO_NONE: 1;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: 2;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: 3;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: 4;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMID: 5;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: 6;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: 7;\n    readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: 8;\n    readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: 9;\n    readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: 10;\n    readonly SVG_MEETORSLICE_UNKNOWN: 0;\n    readonly SVG_MEETORSLICE_MEET: 1;\n    readonly SVG_MEETORSLICE_SLICE: 2;\n};\n\n/**\n * The **`SVGRadialGradientElement`** interface corresponds to the RadialGradient element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)\n */\ninterface SVGRadialGradientElement extends SVGGradientElement {\n    /**\n     * The **`cx`** read-only property of the SVGRadialGradientElement interface describes the x-axis coordinate of the center of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx)\n     */\n    readonly cx: SVGAnimatedLength;\n    /**\n     * The **`cy`** read-only property of the SVGRadialGradientElement interface describes the y-axis coordinate of the center of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy)\n     */\n    readonly cy: SVGAnimatedLength;\n    /**\n     * The **`fr`** read-only property of the SVGRadialGradientElement interface describes the radius of the focal circle of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fr)\n     */\n    readonly fr: SVGAnimatedLength;\n    /**\n     * The **`fx`** read-only property of the SVGRadialGradientElement interface describes the x-axis coordinate of the focal point of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx)\n     */\n    readonly fx: SVGAnimatedLength;\n    /**\n     * The **`fy`** read-only property of the SVGRadialGradientElement interface describes the y-axis coordinate of the focal point of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy)\n     */\n    readonly fy: SVGAnimatedLength;\n    /**\n     * The **`r`** read-only property of the SVGRadialGradientElement interface describes the radius of the radial gradient as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r)\n     */\n    readonly r: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGRadialGradientElement: {\n    prototype: SVGRadialGradientElement;\n    new(): SVGRadialGradientElement;\n};\n\n/**\n * The `SVGRectElement` interface provides access to the properties of rect elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)\n */\ninterface SVGRectElement extends SVGGeometryElement {\n    /**\n     * The **`height`** read-only property of the SVGRectElement interface describes the vertical size of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`rx`** read-only property of the SVGRectElement interface describes the horizontal curve of the corners of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx)\n     */\n    readonly rx: SVGAnimatedLength;\n    /**\n     * The **`ry`** read-only property of the SVGRectElement interface describes the vertical curve of the corners of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry)\n     */\n    readonly ry: SVGAnimatedLength;\n    /**\n     * The **`width`** read-only property of the SVGRectElement interface describes the horizontal size of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGRectElement interface describes the horizontal coordinate of the position of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGRectElement interface describes the vertical coordinate of the position of an SVG rectangle as a SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGRectElement: {\n    prototype: SVGRectElement;\n    new(): SVGRectElement;\n};\n\ninterface SVGSVGElementEventMap extends SVGElementEventMap, WindowEventHandlersEventMap {\n}\n\n/**\n * The **`SVGSVGElement`** interface provides access to the properties of svg elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement)\n */\ninterface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEventHandlers {\n    /**\n     * The **`currentScale`** property of the SVGSVGElement interface reflects the current scale factor relative to the initial view to take into account user magnification and panning operations on the outermost svg element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentScale)\n     */\n    currentScale: number;\n    /**\n     * The **`currentTranslate`** read-only property of the SVGSVGElement interface reflects the translation factor that takes into account user 'magnification' corresponding to an outermost svg element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/currentTranslate)\n     */\n    readonly currentTranslate: DOMPointReadOnly;\n    /**\n     * The **`height`** read-only property of the SVGSVGElement interface describes the vertical size of element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`width`** read-only property of the SVGSVGElement interface describes the horizontal size of element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGSVGElement interface describes the horizontal coordinate of the position of that SVG as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGSVGElement interface describes the vertical coordinate of the position of that SVG as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    /**\n     * The `animationsPaused()` method of the SVGSVGElement interface checks whether the animations in the SVG document fragment are currently paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/animationsPaused)\n     */\n    animationsPaused(): boolean;\n    /**\n     * The `checkEnclosure()` method of the SVGSVGElement interface checks if the rendered content of the given element is entirely contained within the supplied rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkEnclosure)\n     */\n    checkEnclosure(element: SVGElement, rect: DOMRectReadOnly): boolean;\n    /**\n     * The `checkIntersection()` method of the SVGSVGElement interface checks if the rendered content of the given element intersects the supplied rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/checkIntersection)\n     */\n    checkIntersection(element: SVGElement, rect: DOMRectReadOnly): boolean;\n    /**\n     * The `createSVGAngle()` method of the SVGSVGElement interface creates an SVGAngle object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGAngle)\n     */\n    createSVGAngle(): SVGAngle;\n    /**\n     * The `createSVGLength()` method of the SVGSVGElement interface creates an SVGLength object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGLength)\n     */\n    createSVGLength(): SVGLength;\n    /**\n     * The `createSVGMatrix()` method of the SVGSVGElement interface creates a DOMMatrix object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGMatrix)\n     */\n    createSVGMatrix(): DOMMatrix;\n    /**\n     * The `createSVGNumber()` method of the SVGSVGElement interface creates an SVGNumber object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGNumber)\n     */\n    createSVGNumber(): SVGNumber;\n    /**\n     * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)\n     */\n    createSVGPoint(): DOMPoint;\n    /**\n     * The `createSVGRect()` method of the SVGSVGElement interface creates an DOMRect object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGRect)\n     */\n    createSVGRect(): DOMRect;\n    /**\n     * The `createSVGTransform()` method of the SVGSVGElement interface creates an SVGTransform object outside of any document trees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransform)\n     */\n    createSVGTransform(): SVGTransform;\n    /**\n     * The `createSVGTransformFromMatrix()` method of the SVGSVGElement interface creates an SVGTransform object outside of any document trees, based on the given DOMMatrix object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGTransformFromMatrix)\n     */\n    createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;\n    /**\n     * The `deselectAll()` method of the SVGSVGElement interface unselects any selected objects, including any selections of text strings and type-in bars.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/deselectAll)\n     */\n    deselectAll(): void;\n    /** @deprecated */\n    forceRedraw(): void;\n    /**\n     * The `getCurrentTime()` method of the SVGSVGElement interface returns the current time in seconds relative to the start time for the current SVG document fragment.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getCurrentTime)\n     */\n    getCurrentTime(): number;\n    /**\n     * The `getElementById()` method of the SVGSVGElement interface searches the SVG document fragment (i.e., the search is restricted to a subset of the document tree) for an Element whose `id` property matches the specified string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/getElementById)\n     */\n    getElementById(elementId: string): Element;\n    getEnclosureList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n    getIntersectionList(rect: DOMRectReadOnly, referenceElement: SVGElement | null): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n    /**\n     * The `pauseAnimations()` method of the SVGSVGElement interface suspends (i.e., pauses) all currently running animations that are defined within the SVG document fragment corresponding to this svg element, causing the animation clock corresponding to this document fragment to stand still until it is unpaused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/pauseAnimations)\n     */\n    pauseAnimations(): void;\n    /**\n     * The `setCurrentTime()` method of the SVGSVGElement interface adjusts the clock for this SVG document fragment, establishing a new current time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/setCurrentTime)\n     */\n    setCurrentTime(seconds: number): void;\n    /** @deprecated */\n    suspendRedraw(maxWaitMilliseconds: number): number;\n    /**\n     * The `unpauseAnimations()` method of the SVGSVGElement interface resumes (i.e., unpauses) currently running animations that are defined within the SVG document fragment, causing the animation clock to continue from the time at which it was suspended.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/unpauseAnimations)\n     */\n    unpauseAnimations(): void;\n    /** @deprecated */\n    unsuspendRedraw(suspendHandleID: number): void;\n    /** @deprecated */\n    unsuspendRedrawAll(): void;\n    addEventListener<K extends keyof SVGSVGElementEventMap>(type: K, listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGSVGElementEventMap>(type: K, listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGSVGElement: {\n    prototype: SVGSVGElement;\n    new(): SVGSVGElement;\n};\n\n/**\n * The **`SVGScriptElement`** interface corresponds to the SVG script element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement)\n */\ninterface SVGScriptElement extends SVGElement, SVGURIReference {\n    /**\n     * The **`type`** read-only property of the SVGScriptElement interface reflects the type attribute of the given script element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGScriptElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGScriptElement: {\n    prototype: SVGScriptElement;\n    new(): SVGScriptElement;\n};\n\n/**\n * The **`SVGSetElement`** interface corresponds to the set element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSetElement)\n */\ninterface SVGSetElement extends SVGAnimationElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGSetElement: {\n    prototype: SVGSetElement;\n    new(): SVGSetElement;\n};\n\n/**\n * The **`SVGStopElement`** interface corresponds to the stop element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement)\n */\ninterface SVGStopElement extends SVGElement {\n    /**\n     * The **`offset`** read-only property of the SVGStopElement interface reflects the offset attribute of the given stop element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement/offset)\n     */\n    readonly offset: SVGAnimatedNumber;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGStopElement: {\n    prototype: SVGStopElement;\n    new(): SVGStopElement;\n};\n\n/**\n * The **`SVGStringList`** interface defines a list of strings.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList)\n */\ninterface SVGStringList {\n    /**\n     * The **`length`** property of the SVGStringList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`numberOfItems`** property of the SVGStringList interface returns the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/numberOfItems)\n     */\n    readonly numberOfItems: number;\n    /**\n     * The **`appendItem()`** method of the SVGStringList interface inserts a new item at the end of the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/appendItem)\n     */\n    appendItem(newItem: string): string;\n    /**\n     * The **`clear()`** method of the SVGStringList interface clears all existing items from the list, with the result being an empty list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/clear)\n     */\n    clear(): void;\n    /**\n     * The **`getItem()`** method of the SVGStringList interface returns the specified item from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/getItem)\n     */\n    getItem(index: number): string;\n    /**\n     * The **`initialize()`** method of the SVGStringList interface clears all existing items from the list and re-initializes the list to hold the single item specified by the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/initialize)\n     */\n    initialize(newItem: string): string;\n    /**\n     * The **`insertItemBefore()`** method of the SVGStringList interface inserts a new item into the list at the specified position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/insertItemBefore)\n     */\n    insertItemBefore(newItem: string, index: number): string;\n    /**\n     * The **`removeItem()`** method of the SVGStringList interface removes an existing item at the given index from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/removeItem)\n     */\n    removeItem(index: number): string;\n    /**\n     * The **`replaceItem()`** method of the SVGStringList interface replaces an existing item in the list with a new item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStringList/replaceItem)\n     */\n    replaceItem(newItem: string, index: number): string;\n    [index: number]: string;\n}\n\ndeclare var SVGStringList: {\n    prototype: SVGStringList;\n    new(): SVGStringList;\n};\n\n/**\n * The **`SVGStyleElement`** interface corresponds to the SVG style element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStyleElement)\n */\ninterface SVGStyleElement extends SVGElement, LinkStyle {\n    disabled: boolean;\n    /**\n     * The **`SVGStyleElement.media`** property is a media query string corresponding to the `media` attribute of the given SVG style element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStyleElement/media)\n     */\n    media: string;\n    /**\n     * The **`SVGStyleElement.title`** property is a string corresponding to the `title` attribute of the given SVG style element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStyleElement/title)\n     */\n    title: string;\n    /**\n     * The **`SVGStyleElement.type`** property returns the type of the current style.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStyleElement/type)\n     */\n    type: string;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStyleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStyleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGStyleElement: {\n    prototype: SVGStyleElement;\n    new(): SVGStyleElement;\n};\n\n/**\n * The **`SVGSwitchElement`** interface corresponds to the switch element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSwitchElement)\n */\ninterface SVGSwitchElement extends SVGGraphicsElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSwitchElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSwitchElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGSwitchElement: {\n    prototype: SVGSwitchElement;\n    new(): SVGSwitchElement;\n};\n\n/**\n * The **`SVGSymbolElement`** interface corresponds to the symbol element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSymbolElement)\n */\ninterface SVGSymbolElement extends SVGElement, SVGFitToViewBox {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSymbolElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSymbolElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGSymbolElement: {\n    prototype: SVGSymbolElement;\n    new(): SVGSymbolElement;\n};\n\n/**\n * The **`SVGTSpanElement`** interface represents a tspan element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTSpanElement)\n */\ninterface SVGTSpanElement extends SVGTextPositioningElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTSpanElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTSpanElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTSpanElement: {\n    prototype: SVGTSpanElement;\n    new(): SVGTSpanElement;\n};\n\ninterface SVGTests {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */\n    readonly requiredExtensions: SVGStringList;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */\n    readonly systemLanguage: SVGStringList;\n}\n\n/**\n * The **`SVGTextContentElement`** interface is implemented by elements that support rendering child text content.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement)\n */\ninterface SVGTextContentElement extends SVGGraphicsElement {\n    /**\n     * The **`lengthAdjust`** read-only property of the SVGTextContentElement interface reflects the lengthAdjust attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/lengthAdjust)\n     */\n    readonly lengthAdjust: SVGAnimatedEnumeration;\n    /**\n     * The **`textLength`** read-only property of the SVGTextContentElement interface reflects the textLength attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/textLength)\n     */\n    readonly textLength: SVGAnimatedLength;\n    /**\n     * The `getCharNumAtPosition()` method of the SVGTextContentElement interface represents the character which caused a text glyph to be rendered at a given position in the coordinate system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getCharNumAtPosition)\n     */\n    getCharNumAtPosition(point?: DOMPointInit): number;\n    /**\n     * The `getComputedTextLength()` method of the SVGTextContentElement interface represents the computed length for the text within the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getComputedTextLength)\n     */\n    getComputedTextLength(): number;\n    /**\n     * The `getEndPositionOfChar()` method of the SVGTextContentElement interface returns the trailing position of a typographic character after text layout has been performed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getEndPositionOfChar)\n     */\n    getEndPositionOfChar(charnum: number): DOMPoint;\n    /**\n     * The `getExtentOfChar()` method of the SVGTextContentElement interface the represents computed tight bounding box of the glyph cell that corresponds to a given typographic character.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getExtentOfChar)\n     */\n    getExtentOfChar(charnum: number): DOMRect;\n    /**\n     * The `getNumberOfChars()` method of the SVGTextContentElement interface represents the total number of addressable characters available for rendering within the current element, regardless of whether they will be rendered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getNumberOfChars)\n     */\n    getNumberOfChars(): number;\n    /**\n     * The `getRotationOfChar()` method of the SVGTextContentElement interface the represents the rotation of a typographic character.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getRotationOfChar)\n     */\n    getRotationOfChar(charnum: number): number;\n    /**\n     * The `getStartPositionOfChar()` method of the SVGTextContentElement interface returns the position of a typographic character after text layout has been performed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getStartPositionOfChar)\n     */\n    getStartPositionOfChar(charnum: number): DOMPoint;\n    /**\n     * The `getSubStringLength()` method of the SVGTextContentElement interface represents the computed length of the formatted text advance distance for a substring of text within the element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getSubStringLength)\n     */\n    getSubStringLength(charnum: number, nchars: number): number;\n    /** @deprecated */\n    selectSubString(charnum: number, nchars: number): void;\n    readonly LENGTHADJUST_UNKNOWN: 0;\n    readonly LENGTHADJUST_SPACING: 1;\n    readonly LENGTHADJUST_SPACINGANDGLYPHS: 2;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextContentElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextContentElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTextContentElement: {\n    prototype: SVGTextContentElement;\n    new(): SVGTextContentElement;\n    readonly LENGTHADJUST_UNKNOWN: 0;\n    readonly LENGTHADJUST_SPACING: 1;\n    readonly LENGTHADJUST_SPACINGANDGLYPHS: 2;\n};\n\n/**\n * The **`SVGTextElement`** interface corresponds to the text elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextElement)\n */\ninterface SVGTextElement extends SVGTextPositioningElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTextElement: {\n    prototype: SVGTextElement;\n    new(): SVGTextElement;\n};\n\n/**\n * The **`SVGTextPathElement`** interface corresponds to the textPath element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement)\n */\ninterface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {\n    /**\n     * The **`method`** read-only property of the SVGTextPathElement interface reflects the method attribute of the given textPath element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/method)\n     */\n    readonly method: SVGAnimatedEnumeration;\n    /**\n     * The **`spacing`** read-only property of the SVGTextPathElement interface reflects the spacing attribute of the given textPath element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/spacing)\n     */\n    readonly spacing: SVGAnimatedEnumeration;\n    /**\n     * The **`startOffset`** read-only property of the SVGTextPathElement interface reflects the X component of the startOffset attribute of the given textPath, which defines an offset from the start of the path for the initial current text position along the path after converting the path to the `<textPath>` element's coordinate system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/startOffset)\n     */\n    readonly startOffset: SVGAnimatedLength;\n    readonly TEXTPATH_METHODTYPE_UNKNOWN: 0;\n    readonly TEXTPATH_METHODTYPE_ALIGN: 1;\n    readonly TEXTPATH_METHODTYPE_STRETCH: 2;\n    readonly TEXTPATH_SPACINGTYPE_UNKNOWN: 0;\n    readonly TEXTPATH_SPACINGTYPE_AUTO: 1;\n    readonly TEXTPATH_SPACINGTYPE_EXACT: 2;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTextPathElement: {\n    prototype: SVGTextPathElement;\n    new(): SVGTextPathElement;\n    readonly TEXTPATH_METHODTYPE_UNKNOWN: 0;\n    readonly TEXTPATH_METHODTYPE_ALIGN: 1;\n    readonly TEXTPATH_METHODTYPE_STRETCH: 2;\n    readonly TEXTPATH_SPACINGTYPE_UNKNOWN: 0;\n    readonly TEXTPATH_SPACINGTYPE_AUTO: 1;\n    readonly TEXTPATH_SPACINGTYPE_EXACT: 2;\n};\n\n/**\n * The **`SVGTextPositioningElement`** interface is implemented by elements that support attributes that position individual text glyphs.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement)\n */\ninterface SVGTextPositioningElement extends SVGTextContentElement {\n    /**\n     * The **`dx`** read-only property of the SVGTextPositioningElement interface describes the x-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dx)\n     */\n    readonly dx: SVGAnimatedLengthList;\n    /**\n     * The **`dy`** read-only property of the SVGTextPositioningElement interface describes the y-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/dy)\n     */\n    readonly dy: SVGAnimatedLengthList;\n    /**\n     * The **`rotate`** read-only property of the SVGTextPositioningElement interface reflects the rotation of individual text glyphs, as specified by the rotate attribute of the given element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/rotate)\n     */\n    readonly rotate: SVGAnimatedNumberList;\n    /**\n     * The **`x`** read-only property of the SVGTextPositioningElement interface describes the x-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/x)\n     */\n    readonly x: SVGAnimatedLengthList;\n    /**\n     * The **`y`** read-only property of the SVGTextPositioningElement interface describes the y-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPositioningElement/y)\n     */\n    readonly y: SVGAnimatedLengthList;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTextPositioningElement: {\n    prototype: SVGTextPositioningElement;\n    new(): SVGTextPositioningElement;\n};\n\n/**\n * The **`SVGTitleElement`** interface corresponds to the title element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTitleElement)\n */\ninterface SVGTitleElement extends SVGElement {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTitleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTitleElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGTitleElement: {\n    prototype: SVGTitleElement;\n    new(): SVGTitleElement;\n};\n\n/**\n * The **`SVGTransform`** interface reflects one of the component transformations within an SVGTransformList; thus, an `SVGTransform` object corresponds to a single component (e.g., `scale(…)` or `matrix(…)`) within a transform attribute.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)\n */\ninterface SVGTransform {\n    /**\n     * The **`angle`** read-only property of the SVGTransform interface represents the angle of the transformation in degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle)\n     */\n    readonly angle: number;\n    /**\n     * The **`matrix`** read-only property of the SVGTransform interface represents the transformation matrix that corresponds to the transformation `type`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix)\n     */\n    readonly matrix: DOMMatrix;\n    /**\n     * The **`type`** read-only property of the SVGTransform interface represents the `type` of transformation applied, specified by one of the `SVG_TRANSFORM_*` constants defined on this interface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type)\n     */\n    readonly type: number;\n    /**\n     * The `setMatrix()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_MATRIX`, with parameter `matrix` defining the new transformation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix)\n     */\n    setMatrix(matrix?: DOMMatrix2DInit): void;\n    /**\n     * The `setRotate()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_ROTATE`, with parameter `angle` defining the rotation angle and parameters `cx` and `cy` defining the optional center of rotation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate)\n     */\n    setRotate(angle: number, cx: number, cy: number): void;\n    /**\n     * The `setScale()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_SCALE`, with parameters `sx` and `sy` defining the scale amounts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale)\n     */\n    setScale(sx: number, sy: number): void;\n    /**\n     * The `setSkewX()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_SKEWX`, with parameter `angle` defining the amount of skew along the X-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX)\n     */\n    setSkewX(angle: number): void;\n    /**\n     * The `setSkewY()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_SKEWY`, with parameter `angle` defining the amount of skew along the Y-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY)\n     */\n    setSkewY(angle: number): void;\n    /**\n     * The `setTranslate()` method of the SVGTransform interface sets the transform type to `SVG_TRANSFORM_TRANSLATE`, with parameters `tx` and `ty` defining the translation amounts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate)\n     */\n    setTranslate(tx: number, ty: number): void;\n    readonly SVG_TRANSFORM_UNKNOWN: 0;\n    readonly SVG_TRANSFORM_MATRIX: 1;\n    readonly SVG_TRANSFORM_TRANSLATE: 2;\n    readonly SVG_TRANSFORM_SCALE: 3;\n    readonly SVG_TRANSFORM_ROTATE: 4;\n    readonly SVG_TRANSFORM_SKEWX: 5;\n    readonly SVG_TRANSFORM_SKEWY: 6;\n}\n\ndeclare var SVGTransform: {\n    prototype: SVGTransform;\n    new(): SVGTransform;\n    readonly SVG_TRANSFORM_UNKNOWN: 0;\n    readonly SVG_TRANSFORM_MATRIX: 1;\n    readonly SVG_TRANSFORM_TRANSLATE: 2;\n    readonly SVG_TRANSFORM_SCALE: 3;\n    readonly SVG_TRANSFORM_ROTATE: 4;\n    readonly SVG_TRANSFORM_SKEWX: 5;\n    readonly SVG_TRANSFORM_SKEWY: 6;\n};\n\n/**\n * The **`SVGTransformList`** interface defines a list of SVGTransform objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList)\n */\ninterface SVGTransformList {\n    /**\n     * The **`length`** read-only property of the SVGTransformList interface represents the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`numberOfItems`** read-only property of the SVGTransformList interface represents the number of items in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/numberOfItems)\n     */\n    readonly numberOfItems: number;\n    /**\n     * The `appendItem()` method of the SVGTransformList interface inserts a new item at the end of the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/appendItem)\n     */\n    appendItem(newItem: SVGTransform): SVGTransform;\n    /**\n     * The `clear()` method of the SVGTransformList interface clears all existing current items from the list, with the result being an empty list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/clear)\n     */\n    clear(): void;\n    /**\n     * The `consolidate()` method of the SVGTransformList interface consolidates the list of separate SVGTransform objects by multiplying the equivalent transformation matrices together to result in a list consisting of a single `SVGTransform` object of type `SVG_TRANSFORM_MATRIX`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/consolidate)\n     */\n    consolidate(): SVGTransform | null;\n    /**\n     * The `createSVGTransformFromMatrix()` method of the SVGTransformList interface creates an SVGTransform object which is initialized to a transform of type `SVG_TRANSFORM_MATRIX` and whose values are the given matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/createSVGTransformFromMatrix)\n     */\n    createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;\n    /**\n     * The `getItem()` method of the SVGTransformList interface returns the specified item from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/getItem)\n     */\n    getItem(index: number): SVGTransform;\n    /**\n     * The `initialize()` method of the SVGTransformList interface clears all existing current items from the list and re-initializes the list to hold the single item specified by the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/initialize)\n     */\n    initialize(newItem: SVGTransform): SVGTransform;\n    /**\n     * The `insertItemBefore()` method of the SVGTransformList interface inserts a new item into the list at the specified position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/insertItemBefore)\n     */\n    insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;\n    /**\n     * The `removeItem()` method of the SVGTransformList interface removes an existing item from the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/removeItem)\n     */\n    removeItem(index: number): SVGTransform;\n    /**\n     * The `replaceItem()` method of the SVGTransformList interface replaces an existing item in the list with a new item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/replaceItem)\n     */\n    replaceItem(newItem: SVGTransform, index: number): SVGTransform;\n    [index: number]: SVGTransform;\n}\n\ndeclare var SVGTransformList: {\n    prototype: SVGTransformList;\n    new(): SVGTransformList;\n};\n\ninterface SVGURIReference {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/href) */\n    readonly href: SVGAnimatedString;\n}\n\n/**\n * The **`SVGUnitTypes`** interface defines a commonly used set of constants used for reflecting gradientUnits, patternContentUnits and other similar attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUnitTypes)\n */\ninterface SVGUnitTypes {\n    readonly SVG_UNIT_TYPE_UNKNOWN: 0;\n    readonly SVG_UNIT_TYPE_USERSPACEONUSE: 1;\n    readonly SVG_UNIT_TYPE_OBJECTBOUNDINGBOX: 2;\n}\n\ndeclare var SVGUnitTypes: {\n    prototype: SVGUnitTypes;\n    new(): SVGUnitTypes;\n    readonly SVG_UNIT_TYPE_UNKNOWN: 0;\n    readonly SVG_UNIT_TYPE_USERSPACEONUSE: 1;\n    readonly SVG_UNIT_TYPE_OBJECTBOUNDINGBOX: 2;\n};\n\n/**\n * The **`SVGUseElement`** interface corresponds to the use element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)\n */\ninterface SVGUseElement extends SVGGraphicsElement, SVGURIReference {\n    /**\n     * The **`height`** read-only property of the SVGUseElement interface describes the height of the referenced element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height)\n     */\n    readonly height: SVGAnimatedLength;\n    /**\n     * The **`width`** read-only property of the SVGUseElement interface describes the width of the referenced element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width)\n     */\n    readonly width: SVGAnimatedLength;\n    /**\n     * The **`x`** read-only property of the SVGUseElement interface describes the x-axis coordinate of the start point of the referenced element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x)\n     */\n    readonly x: SVGAnimatedLength;\n    /**\n     * The **`y`** read-only property of the SVGUseElement interface describes the y-axis coordinate of the start point of the referenced element as an SVGAnimatedLength.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y)\n     */\n    readonly y: SVGAnimatedLength;\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGUseElement: {\n    prototype: SVGUseElement;\n    new(): SVGUseElement;\n};\n\n/**\n * The **`SVGViewElement`** interface provides access to the properties of view elements, as well as methods to manipulate them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGViewElement)\n */\ninterface SVGViewElement extends SVGElement, SVGFitToViewBox {\n    addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGViewElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGViewElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SVGViewElement: {\n    prototype: SVGViewElement;\n    new(): SVGViewElement;\n};\n\n/**\n * The `Screen` interface represents a screen, usually the one on which the current window is being rendered, and is obtained using window.screen.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen)\n */\ninterface Screen {\n    /**\n     * The read-only Screen interface's **`availHeight`** property returns the height, in CSS pixels, of the space available for Web content on the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/availHeight)\n     */\n    readonly availHeight: number;\n    /**\n     * The **`Screen.availWidth`** property returns the amount of horizontal space (in CSS pixels) available to the window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/availWidth)\n     */\n    readonly availWidth: number;\n    /**\n     * The **`Screen.colorDepth`** read-only property returns the color depth of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/colorDepth)\n     */\n    readonly colorDepth: number;\n    /**\n     * The **`Screen.height`** read-only property returns the height of the screen in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/height)\n     */\n    readonly height: number;\n    /**\n     * The **`orientation`** read-only property of the An instance of ScreenOrientation representing the orientation of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/orientation)\n     */\n    readonly orientation: ScreenOrientation;\n    /**\n     * Returns the bit depth of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/pixelDepth)\n     */\n    readonly pixelDepth: number;\n    /**\n     * The **`Screen.width`** read-only property returns the width of the screen in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/width)\n     */\n    readonly width: number;\n}\n\ndeclare var Screen: {\n    prototype: Screen;\n    new(): Screen;\n};\n\ninterface ScreenOrientationEventMap {\n    \"change\": Event;\n}\n\n/**\n * The **`ScreenOrientation`** interface of the Screen Orientation API provides information about the current orientation of the document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation)\n */\ninterface ScreenOrientation extends EventTarget {\n    /**\n     * The **`angle`** read-only property of the angle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle)\n     */\n    readonly angle: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */\n    onchange: ((this: ScreenOrientation, ev: Event) => any) | null;\n    /**\n     * The **`type`** read-only property of the type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)\n     */\n    readonly type: OrientationType;\n    /**\n     * The **`unlock()`** method of the document from its default orientation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)\n     */\n    unlock(): void;\n    addEventListener<K extends keyof ScreenOrientationEventMap>(type: K, listener: (this: ScreenOrientation, ev: ScreenOrientationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ScreenOrientationEventMap>(type: K, listener: (this: ScreenOrientation, ev: ScreenOrientationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ScreenOrientation: {\n    prototype: ScreenOrientation;\n    new(): ScreenOrientation;\n};\n\ninterface ScriptProcessorNodeEventMap {\n    \"audioprocess\": AudioProcessingEvent;\n}\n\n/**\n * The `ScriptProcessorNode` interface allows the generation, processing, or analyzing of audio using JavaScript.\n * @deprecated As of the August 29 2014 Web Audio API spec publication, this feature has been marked as deprecated, and was replaced by AudioWorklet (see AudioWorkletNode).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScriptProcessorNode)\n */\ninterface ScriptProcessorNode extends AudioNode {\n    /**\n     * The `bufferSize` property of the ScriptProcessorNode interface returns an integer representing both the input and output buffer size, in sample-frames.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScriptProcessorNode/bufferSize)\n     */\n    readonly bufferSize: number;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScriptProcessorNode/audioprocess_event)\n     */\n    onaudioprocess: ((this: ScriptProcessorNode, ev: AudioProcessingEvent) => any) | null;\n    addEventListener<K extends keyof ScriptProcessorNodeEventMap>(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ScriptProcessorNodeEventMap>(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\n/** @deprecated */\ndeclare var ScriptProcessorNode: {\n    prototype: ScriptProcessorNode;\n    new(): ScriptProcessorNode;\n};\n\n/**\n * The **`SecurityPolicyViolationEvent`** interface inherits from Event, and represents the event object of a `securitypolicyviolation` event sent on an Element/securitypolicyviolation_event, Document/securitypolicyviolation_event, or WorkerGlobalScope/securitypolicyviolation_event when its Content Security Policy (CSP) is violated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent)\n */\ninterface SecurityPolicyViolationEvent extends Event {\n    /**\n     * The **`blockedURI`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URI of the resource that was blocked because it violates a Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/blockedURI)\n     */\n    readonly blockedURI: string;\n    /**\n     * The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)\n     */\n    readonly columnNumber: number;\n    /**\n     * The **`disposition`** read-only property of the SecurityPolicyViolationEvent interface indicates how the violated Content Security Policy (CSP) is configured to be treated by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/disposition)\n     */\n    readonly disposition: SecurityPolicyViolationEventDisposition;\n    /**\n     * The **`documentURI`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URI of the document or worker in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/documentURI)\n     */\n    readonly documentURI: string;\n    /**\n     * The **`effectiveDirective`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the Content Security Policy (CSP) directive that was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/effectiveDirective)\n     */\n    readonly effectiveDirective: string;\n    /**\n     * The **`lineNumber`** read-only property of the SecurityPolicyViolationEvent interface is the line number in the document or worker script at which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/lineNumber)\n     */\n    readonly lineNumber: number;\n    /**\n     * The **`originalPolicy`** read-only property of the SecurityPolicyViolationEvent interface is a string containing the Content Security Policy (CSP) whose enforcement uncovered the violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/originalPolicy)\n     */\n    readonly originalPolicy: string;\n    /**\n     * The **`referrer`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the referrer for the resources whose Content Security Policy (CSP) was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/referrer)\n     */\n    readonly referrer: string;\n    /**\n     * The **`sample`** read-only property of the SecurityPolicyViolationEvent interface is a string representing a sample of the resource that caused the Content Security Policy (CSP) violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/sample)\n     */\n    readonly sample: string;\n    /**\n     * The **`sourceFile`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URL of the script in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/sourceFile)\n     */\n    readonly sourceFile: string;\n    /**\n     * The **`statusCode`** read-only property of the SecurityPolicyViolationEvent interface is a number representing the HTTP status code of the window or worker in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/statusCode)\n     */\n    readonly statusCode: number;\n    /**\n     * The **`violatedDirective`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the Content Security Policy (CSP) directive that was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/violatedDirective)\n     */\n    readonly violatedDirective: string;\n}\n\ndeclare var SecurityPolicyViolationEvent: {\n    prototype: SecurityPolicyViolationEvent;\n    new(type: string, eventInitDict?: SecurityPolicyViolationEventInit): SecurityPolicyViolationEvent;\n};\n\n/**\n * A **`Selection`** object represents the range of text selected by the user or the current position of the caret.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection)\n */\ninterface Selection {\n    /**\n     * The **`Selection.anchorNode`** read-only property returns the Node in which the selection begins.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorNode)\n     */\n    readonly anchorNode: Node | null;\n    /**\n     * The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the In the case of Selection.anchorNode being another type of node, **`Selection.anchorOffset`** returns the number of Node.childNodes the selection's anchor is offset within the Selection.anchorNode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset)\n     */\n    readonly anchorOffset: number;\n    /**\n     * The **`direction`** read-only property of the Selection interface is a string that provides the direction of the current selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/direction)\n     */\n    readonly direction: string;\n    /**\n     * The **`Selection.focusNode`** read-only property returns the Node in which the selection ends.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusNode)\n     */\n    readonly focusNode: Node | null;\n    /**\n     * The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the In the case of Selection.focusNode being another type of node, **`Selection.focusOffset`** returns the number of Node.childNodes the selection's focus is offset within the Selection.focusNode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset)\n     */\n    readonly focusOffset: number;\n    /**\n     * The **`Selection.isCollapsed`** read-only property returns a boolean value which indicates whether or not there is currently any text selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/isCollapsed)\n     */\n    readonly isCollapsed: boolean;\n    /**\n     * The **`Selection.rangeCount`** read-only property returns the number of ranges in the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/rangeCount)\n     */\n    readonly rangeCount: number;\n    /**\n     * The **`type`** read-only property of the type of the current selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/type)\n     */\n    readonly type: string;\n    /**\n     * The **`Selection.addRange()`** method adds a ```js-nolint addRange(range) ``` - `range` - : A Range object that will be added to the Selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/addRange)\n     */\n    addRange(range: Range): void;\n    /**\n     * The **`Selection.collapse()`** method collapses the current selection to a single point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/collapse)\n     */\n    collapse(node: Node | null, offset?: number): void;\n    /**\n     * The **`Selection.collapseToEnd()`** method collapses the selection to the end of the last range in the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/collapseToEnd)\n     */\n    collapseToEnd(): void;\n    /**\n     * The **`Selection.collapseToStart()`** method collapses the selection to the start of the first range in the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/collapseToStart)\n     */\n    collapseToStart(): void;\n    /**\n     * The **`Selection.containsNode()`** method indicates whether a specified node is part of the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/containsNode)\n     */\n    containsNode(node: Node, allowPartialContainment?: boolean): boolean;\n    /**\n     * The **`deleteFromDocument()`** method of the ```js-nolint deleteFromDocument() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument)\n     */\n    deleteFromDocument(): void;\n    /**\n     * The **`Selection.empty()`** method removes all ranges from the selection, leaving the Selection.anchorNode and Selection.focusNode properties equal to `null` and nothing selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/empty)\n     */\n    empty(): void;\n    /**\n     * The **`Selection.extend()`** method moves the focus of the selection to a specified point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/extend)\n     */\n    extend(node: Node, offset?: number): void;\n    /**\n     * The **`Selection.getComposedRanges()`** method returns an array of StaticRange objects representing the current selection ranges, and can return ranges that potentially cross shadow boundaries.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getComposedRanges)\n     */\n    getComposedRanges(options?: GetComposedRangesOptions): StaticRange[];\n    /**\n     * The **`getRangeAt()`** method of the Selection interface returns a range object representing a currently selected range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/getRangeAt)\n     */\n    getRangeAt(index: number): Range;\n    /**\n     * The **`Selection.modify()`** method applies a change to the current selection or cursor position, using simple textual commands.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/modify)\n     */\n    modify(alter?: string, direction?: string, granularity?: string): void;\n    /**\n     * The **`Selection.removeAllRanges()`** method removes all ranges from the selection, leaving the Selection.anchorNode and Selection.focusNode properties equal to `null` and nothing selected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/removeAllRanges)\n     */\n    removeAllRanges(): void;\n    /**\n     * The **`Selection.removeRange()`** method removes a range from a selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/removeRange)\n     */\n    removeRange(range: Range): void;\n    /**\n     * The **`Selection.selectAllChildren()`** method adds all the children of the specified node to the selection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/selectAllChildren)\n     */\n    selectAllChildren(node: Node): void;\n    /**\n     * The **`setBaseAndExtent()`** method of the Selection interface sets the selection to be a range including all or parts of two specified DOM nodes, and any content located between them.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/setBaseAndExtent)\n     */\n    setBaseAndExtent(anchorNode: Node, anchorOffset: number, focusNode: Node, focusOffset: number): void;\n    /**\n     * The **`Selection.setPosition()`** method collapses the current selection to a single point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/setPosition)\n     */\n    setPosition(node: Node | null, offset?: number): void;\n    toString(): string;\n}\n\ndeclare var Selection: {\n    prototype: Selection;\n    new(): Selection;\n};\n\ninterface ServiceWorkerEventMap extends AbstractWorkerEventMap {\n    \"statechange\": Event;\n}\n\n/**\n * The **`ServiceWorker`** interface of the Service Worker API provides a reference to a service worker.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker)\n */\ninterface ServiceWorker extends EventTarget, AbstractWorker {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/statechange_event) */\n    onstatechange: ((this: ServiceWorker, ev: Event) => any) | null;\n    /**\n     * Returns the `ServiceWorker` serialized script URL defined as part of `ServiceWorkerRegistration`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/scriptURL)\n     */\n    readonly scriptURL: string;\n    /**\n     * The **`state`** read-only property of the of the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)\n     */\n    readonly state: ServiceWorkerState;\n    /**\n     * The **`postMessage()`** method of the ServiceWorker interface sends a message to the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    addEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorker: {\n    prototype: ServiceWorker;\n    new(): ServiceWorker;\n};\n\ninterface ServiceWorkerContainerEventMap {\n    \"controllerchange\": Event;\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`ServiceWorkerContainer`** interface of the Service Worker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer)\n */\ninterface ServiceWorkerContainer extends EventTarget {\n    /**\n     * The **`controller`** read-only property of the ServiceWorkerContainer interface returns a `activated` (the same object returned by `null` if the request is a force refresh (_Shift_ + refresh) or if there is no active worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/controller)\n     */\n    readonly controller: ServiceWorker | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/controllerchange_event) */\n    oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */\n    onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */\n    onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;\n    /**\n     * The **`ready`** read-only property of the ServiceWorkerContainer interface provides a way of delaying code execution until a service worker is active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready)\n     */\n    readonly ready: Promise<ServiceWorkerRegistration>;\n    /**\n     * The **`getRegistration()`** method of the client URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)\n     */\n    getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;\n    /**\n     * The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)\n     */\n    getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;\n    /**\n     * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)\n     */\n    register(scriptURL: string | URL, options?: RegistrationOptions): Promise<ServiceWorkerRegistration>;\n    /**\n     * The **`startMessages()`** method of the ServiceWorkerContainer interface explicitly starts the flow of messages being dispatched from a service worker to pages under its control (e.g., sent via Client.postMessage()).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/startMessages)\n     */\n    startMessages(): void;\n    addEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorkerContainer: {\n    prototype: ServiceWorkerContainer;\n    new(): ServiceWorkerContainer;\n};\n\ninterface ServiceWorkerRegistrationEventMap {\n    \"updatefound\": Event;\n}\n\n/**\n * The **`ServiceWorkerRegistration`** interface of the Service Worker API represents the service worker registration.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration)\n */\ninterface ServiceWorkerRegistration extends EventTarget {\n    /**\n     * The **`active`** read-only property of the This property is initially set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)\n     */\n    readonly active: ServiceWorker | null;\n    /**\n     * The **`cookies`** read-only property of the ServiceWorkerRegistration interface returns a reference to the CookieStoreManager interface, which enables a web app to subscribe to and unsubscribe from cookie change events in a service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies)\n     */\n    readonly cookies: CookieStoreManager;\n    /**\n     * The **`installing`** read-only property of the initially set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)\n     */\n    readonly installing: ServiceWorker | null;\n    /**\n     * The **`navigationPreload`** read-only property of the ServiceWorkerRegistration interface returns the NavigationPreloadManager associated with the current service worker registration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload)\n     */\n    readonly navigationPreload: NavigationPreloadManager;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */\n    onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;\n    /**\n     * The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)\n     */\n    readonly pushManager: PushManager;\n    /**\n     * The **`scope`** read-only property of the ServiceWorkerRegistration interface returns a string representing a URL that defines a service worker's registration scope; that is, the range of URLs a service worker can control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/scope)\n     */\n    readonly scope: string;\n    /**\n     * The **`updateViaCache`** read-only property of the ServiceWorkerRegistration interface returns the value of the setting used to determine the circumstances in which the browser will consult the HTTP cache when it tries to update the service worker or any scripts that are imported via WorkerGlobalScope.importScripts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updateViaCache)\n     */\n    readonly updateViaCache: ServiceWorkerUpdateViaCache;\n    /**\n     * The **`waiting`** read-only property of the set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)\n     */\n    readonly waiting: ServiceWorker | null;\n    /**\n     * The **`getNotifications()`** method of the ServiceWorkerRegistration interface returns a list of the notifications in the order that they were created from the current origin via the current service worker registration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/getNotifications)\n     */\n    getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;\n    /**\n     * The **`showNotification()`** method of the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)\n     */\n    showNotification(title: string, options?: NotificationOptions): Promise<void>;\n    /**\n     * The **`unregister()`** method of the registration and returns a Promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)\n     */\n    unregister(): Promise<boolean>;\n    /**\n     * The **`update()`** method of the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)\n     */\n    update(): Promise<ServiceWorkerRegistration>;\n    addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorkerRegistration: {\n    prototype: ServiceWorkerRegistration;\n    new(): ServiceWorkerRegistration;\n};\n\ninterface ShadowRootEventMap {\n    \"slotchange\": Event;\n}\n\n/**\n * The **`ShadowRoot`** interface of the Shadow DOM API is the root node of a DOM subtree that is rendered separately from a document's main DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot)\n */\ninterface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {\n    /**\n     * The **`clonable`** read-only property of the ShadowRoot interface returns `true` if the shadow root is clonable, and `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/clonable)\n     */\n    readonly clonable: boolean;\n    /**\n     * The **`delegatesFocus`** read-only property of the ShadowRoot interface returns `true` if the shadow root delegates focus, and `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/delegatesFocus)\n     */\n    readonly delegatesFocus: boolean;\n    /**\n     * The **`host`** read-only property of the ShadowRoot returns a reference to the DOM element the `ShadowRoot` is attached to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/host)\n     */\n    readonly host: Element;\n    /**\n     * The **`innerHTML`** property of the ShadowRoot interface sets gets or sets the HTML markup to the DOM tree inside the `ShadowRoot`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/innerHTML)\n     */\n    innerHTML: string;\n    /**\n     * The **`mode`** read-only property of the ShadowRoot specifies its mode — either `open` or `closed`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode)\n     */\n    readonly mode: ShadowRootMode;\n    onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;\n    /**\n     * The **`serializable`** read-only property of the ShadowRoot interface returns `true` if the shadow root is serializable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/serializable)\n     */\n    readonly serializable: boolean;\n    /**\n     * The read-only **`slotAssignment`** property of the ShadowRoot interface returns the _slot assignment mode_ for the shadow DOM tree.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment)\n     */\n    readonly slotAssignment: SlotAssignmentMode;\n    /**\n     * The **`getHTML()`** method of the ShadowRoot interface is used to serialize a shadow root's DOM to an HTML string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/getHTML)\n     */\n    getHTML(options?: GetHTMLOptions): string;\n    /**\n     * The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)\n     */\n    setHTMLUnsafe(html: string): void;\n    addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ShadowRoot: {\n    prototype: ShadowRoot;\n    new(): ShadowRoot;\n};\n\n/**\n * The **`SharedWorker`** interface represents a specific kind of worker that can be _accessed_ from several browsing contexts, such as several windows, iframes or even workers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker)\n */\ninterface SharedWorker extends EventTarget, AbstractWorker {\n    /**\n     * The **`port`** property of the SharedWorker interface returns a MessagePort object used to communicate and control the shared worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker/port)\n     */\n    readonly port: MessagePort;\n    addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SharedWorker: {\n    prototype: SharedWorker;\n    new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;\n};\n\ninterface Slottable {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/assignedSlot) */\n    readonly assignedSlot: HTMLSlotElement | null;\n}\n\ninterface SourceBufferEventMap {\n    \"abort\": Event;\n    \"error\": Event;\n    \"update\": Event;\n    \"updateend\": Event;\n    \"updatestart\": Event;\n}\n\n/**\n * The **`SourceBuffer`** interface represents a chunk of media to be passed into an HTMLMediaElement and played, via a MediaSource object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer)\n */\ninterface SourceBuffer extends EventTarget {\n    /**\n     * The **`appendWindowEnd`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowEnd)\n     */\n    appendWindowEnd: number;\n    /**\n     * The **`appendWindowStart`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowStart)\n     */\n    appendWindowStart: number;\n    /**\n     * The **`buffered`** read-only property of the buffered in the `SourceBuffer` as a normalized TimeRanges object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/buffered)\n     */\n    readonly buffered: TimeRanges;\n    /**\n     * The **`mode`** property of the SourceBuffer interface controls whether media segments can be appended to the `SourceBuffer` in any order, or in a strict sequence.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/mode)\n     */\n    mode: AppendMode;\n    onabort: ((this: SourceBuffer, ev: Event) => any) | null;\n    onerror: ((this: SourceBuffer, ev: Event) => any) | null;\n    onupdate: ((this: SourceBuffer, ev: Event) => any) | null;\n    onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;\n    onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;\n    /**\n     * The **`timestampOffset`** property of the media segments that are appended to the `SourceBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset)\n     */\n    timestampOffset: number;\n    /**\n     * The **`updating`** read-only property of the currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updating)\n     */\n    readonly updating: boolean;\n    /**\n     * The **`abort()`** method of the SourceBuffer interface aborts the current segment and resets the segment parser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/abort)\n     */\n    abort(): void;\n    /**\n     * The **`appendBuffer()`** method of the to the `SourceBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendBuffer)\n     */\n    appendBuffer(data: BufferSource): void;\n    /**\n     * The **`changeType()`** method of the data to conform to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/changeType)\n     */\n    changeType(type: string): void;\n    /**\n     * The **`remove()`** method of the SourceBuffer interface removes media segments within a specific time range from the `SourceBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/remove)\n     */\n    remove(start: number, end: number): void;\n    addEventListener<K extends keyof SourceBufferEventMap>(type: K, listener: (this: SourceBuffer, ev: SourceBufferEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SourceBufferEventMap>(type: K, listener: (this: SourceBuffer, ev: SourceBufferEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SourceBuffer: {\n    prototype: SourceBuffer;\n    new(): SourceBuffer;\n};\n\ninterface SourceBufferListEventMap {\n    \"addsourcebuffer\": Event;\n    \"removesourcebuffer\": Event;\n}\n\n/**\n * The **`SourceBufferList`** interface represents a simple container list for multiple SourceBuffer objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList)\n */\ninterface SourceBufferList extends EventTarget {\n    /**\n     * The **`length`** read-only property of the An unsigned long number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length)\n     */\n    readonly length: number;\n    onaddsourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;\n    onremovesourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;\n    addEventListener<K extends keyof SourceBufferListEventMap>(type: K, listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SourceBufferListEventMap>(type: K, listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n    [index: number]: SourceBuffer;\n}\n\ndeclare var SourceBufferList: {\n    prototype: SourceBufferList;\n    new(): SourceBufferList;\n};\n\n/**\n * The **`SpeechRecognitionAlternative`** interface of the Web Speech API represents a single word that has been recognized by the speech recognition service.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative)\n */\ninterface SpeechRecognitionAlternative {\n    /**\n     * The **`confidence`** read-only property of the confident the speech recognition system is that the recognition is correct.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/confidence)\n     */\n    readonly confidence: number;\n    /**\n     * The **`transcript`** read-only property of the transcript of the recognized word(s).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/transcript)\n     */\n    readonly transcript: string;\n}\n\ndeclare var SpeechRecognitionAlternative: {\n    prototype: SpeechRecognitionAlternative;\n    new(): SpeechRecognitionAlternative;\n};\n\n/**\n * The **`SpeechRecognitionResult`** interface of the Web Speech API represents a single recognition match, which may contain multiple SpeechRecognitionAlternative objects.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult)\n */\ninterface SpeechRecognitionResult {\n    /**\n     * The **`isFinal`** read-only property of the whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/isFinal)\n     */\n    readonly isFinal: boolean;\n    /**\n     * The **`length`** read-only property of the — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.) The number of alternatives contained in the result depends on what the recognition was first initiated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item`** getter of the array syntax.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/item)\n     */\n    item(index: number): SpeechRecognitionAlternative;\n    [index: number]: SpeechRecognitionAlternative;\n}\n\ndeclare var SpeechRecognitionResult: {\n    prototype: SpeechRecognitionResult;\n    new(): SpeechRecognitionResult;\n};\n\n/**\n * The **`SpeechRecognitionResultList`** interface of the Web Speech API represents a list of SpeechRecognitionResult objects, or a single one if results are being captured in SpeechRecognition.continuous mode.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList)\n */\ninterface SpeechRecognitionResultList {\n    /**\n     * The **`length`** read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item`** getter of the syntax.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/item)\n     */\n    item(index: number): SpeechRecognitionResult;\n    [index: number]: SpeechRecognitionResult;\n}\n\ndeclare var SpeechRecognitionResultList: {\n    prototype: SpeechRecognitionResultList;\n    new(): SpeechRecognitionResultList;\n};\n\ninterface SpeechSynthesisEventMap {\n    \"voiceschanged\": Event;\n}\n\n/**\n * The **`SpeechSynthesis`** interface of the Web Speech API is the controller interface for the speech service; this can be used to retrieve information about the synthesis voices available on the device, start and pause speech, and other commands besides.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis)\n */\ninterface SpeechSynthesis extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/voiceschanged_event) */\n    onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;\n    /**\n     * The **`paused`** read-only property of the `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/paused)\n     */\n    readonly paused: boolean;\n    /**\n     * The **`pending`** read-only property of the `true` if the utterance queue contains as-yet-unspoken utterances.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pending)\n     */\n    readonly pending: boolean;\n    /**\n     * The **`speaking`** read-only property of the `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a A boolean value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speaking)\n     */\n    readonly speaking: boolean;\n    /**\n     * The **`cancel()`** method of the SpeechSynthesis interface removes all utterances from the utterance queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/cancel)\n     */\n    cancel(): void;\n    /**\n     * The **`getVoices()`** method of the current device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/getVoices)\n     */\n    getVoices(): SpeechSynthesisVoice[];\n    /**\n     * The **`pause()`** method of the SpeechSynthesis interface puts the `SpeechSynthesis` object into a paused state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pause)\n     */\n    pause(): void;\n    /**\n     * The **`resume()`** method of the SpeechSynthesis interface puts the `SpeechSynthesis` object into a non-paused state: resumes it if it was already paused.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/resume)\n     */\n    resume(): void;\n    /**\n     * The **`speak()`** method of the SpeechSynthesis interface adds an SpeechSynthesisUtterance to the utterance queue; it will be spoken when any other utterances queued before it have been spoken.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speak)\n     */\n    speak(utterance: SpeechSynthesisUtterance): void;\n    addEventListener<K extends keyof SpeechSynthesisEventMap>(type: K, listener: (this: SpeechSynthesis, ev: SpeechSynthesisEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SpeechSynthesisEventMap>(type: K, listener: (this: SpeechSynthesis, ev: SpeechSynthesisEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SpeechSynthesis: {\n    prototype: SpeechSynthesis;\n    new(): SpeechSynthesis;\n};\n\n/**\n * The **`SpeechSynthesisErrorEvent`** interface of the Web Speech API contains information about any errors that occur while processing SpeechSynthesisUtterance objects in the speech service.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent)\n */\ninterface SpeechSynthesisErrorEvent extends SpeechSynthesisEvent {\n    /**\n     * The **`error`** property of the A string containing the error reason.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent/error)\n     */\n    readonly error: SpeechSynthesisErrorCode;\n}\n\ndeclare var SpeechSynthesisErrorEvent: {\n    prototype: SpeechSynthesisErrorEvent;\n    new(type: string, eventInitDict: SpeechSynthesisErrorEventInit): SpeechSynthesisErrorEvent;\n};\n\n/**\n * The **`SpeechSynthesisEvent`** interface of the Web Speech API contains information about the current state of SpeechSynthesisUtterance objects that have been processed in the speech service.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent)\n */\ninterface SpeechSynthesisEvent extends Event {\n    /**\n     * The **`charIndex`** read-only property of the SpeechSynthesisUtterance interface returns the index position of the character in SpeechSynthesisUtterance.text that was being spoken when the event was triggered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent/charIndex)\n     */\n    readonly charIndex: number;\n    /**\n     * The read-only **`charLength`** property of the SpeechSynthesisEvent interface returns the number of characters left to be spoken after the character at the SpeechSynthesisEvent.charIndex position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent/charLength)\n     */\n    readonly charLength: number;\n    /**\n     * The **`elapsedTime`** read-only property of the SpeechSynthesisEvent returns the elapsed time in seconds, after the SpeechSynthesisUtterance.text started being spoken, at which the event was triggered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent/elapsedTime)\n     */\n    readonly elapsedTime: number;\n    /**\n     * The **`name`** read-only property of the SpeechSynthesisUtterance interface returns the name associated with certain types of events occurring as the SpeechSynthesisUtterance.text is being spoken: the name of the SSML marker reached in the case of a SpeechSynthesisUtterance.mark_event event, or the type of boundary reached in the case of a SpeechSynthesisUtterance.boundary_event event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent/name)\n     */\n    readonly name: string;\n    /**\n     * The **`utterance`** read-only property of the SpeechSynthesisUtterance interface returns the SpeechSynthesisUtterance instance that the event was triggered on.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisEvent/utterance)\n     */\n    readonly utterance: SpeechSynthesisUtterance;\n}\n\ndeclare var SpeechSynthesisEvent: {\n    prototype: SpeechSynthesisEvent;\n    new(type: string, eventInitDict: SpeechSynthesisEventInit): SpeechSynthesisEvent;\n};\n\ninterface SpeechSynthesisUtteranceEventMap {\n    \"boundary\": SpeechSynthesisEvent;\n    \"end\": SpeechSynthesisEvent;\n    \"error\": SpeechSynthesisErrorEvent;\n    \"mark\": SpeechSynthesisEvent;\n    \"pause\": SpeechSynthesisEvent;\n    \"resume\": SpeechSynthesisEvent;\n    \"start\": SpeechSynthesisEvent;\n}\n\n/**\n * The **`SpeechSynthesisUtterance`** interface of the Web Speech API represents a speech request.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance)\n */\ninterface SpeechSynthesisUtterance extends EventTarget {\n    /**\n     * The **`lang`** property of the SpeechSynthesisUtterance interface gets and sets the language of the utterance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/lang)\n     */\n    lang: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/boundary_event) */\n    onboundary: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/end_event) */\n    onend: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/error_event) */\n    onerror: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/mark_event) */\n    onmark: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/pause_event) */\n    onpause: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/resume_event) */\n    onresume: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/start_event) */\n    onstart: ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any) | null;\n    /**\n     * The **`pitch`** property of the SpeechSynthesisUtterance interface gets and sets the pitch at which the utterance will be spoken at.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/pitch)\n     */\n    pitch: number;\n    /**\n     * The **`rate`** property of the SpeechSynthesisUtterance interface gets and sets the speed at which the utterance will be spoken at.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/rate)\n     */\n    rate: number;\n    /**\n     * The **`text`** property of the The text may be provided as plain text, or a well-formed SSML document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/text)\n     */\n    text: string;\n    /**\n     * The **`voice`** property of the SpeechSynthesisUtterance interface gets and sets the voice that will be used to speak the utterance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/voice)\n     */\n    voice: SpeechSynthesisVoice | null;\n    /**\n     * The **`volume`** property of the SpeechSynthesisUtterance interface gets and sets the volume that the utterance will be spoken at.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/volume)\n     */\n    volume: number;\n    addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SpeechSynthesisUtterance: {\n    prototype: SpeechSynthesisUtterance;\n    new(text?: string): SpeechSynthesisUtterance;\n};\n\n/**\n * The **`SpeechSynthesisVoice`** interface of the Web Speech API represents a voice that the system supports.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice)\n */\ninterface SpeechSynthesisVoice {\n    /**\n     * The **`default`** read-only property of the indicating whether the voice is the default voice for the current app (`true`), or not (`false`.) A boolean value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/default)\n     */\n    readonly default: boolean;\n    /**\n     * The **`lang`** read-only property of the SpeechSynthesisVoice interface returns a BCP 47 language tag indicating the language of the voice.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/lang)\n     */\n    readonly lang: string;\n    /**\n     * The **`localService`** read-only property of the indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.) This property is provided to allow differentiation in the case that some voice options are provided by a remote service; it is possible that remote voices might have extra latency, bandwidth or cost associated with them, so such distinction may be useful.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/localService)\n     */\n    readonly localService: boolean;\n    /**\n     * The **`name`** read-only property of the represents the voice.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/name)\n     */\n    readonly name: string;\n    /**\n     * The **`voiceURI`** read-only property of the the speech synthesis service for this voice.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/voiceURI)\n     */\n    readonly voiceURI: string;\n}\n\ndeclare var SpeechSynthesisVoice: {\n    prototype: SpeechSynthesisVoice;\n    new(): SpeechSynthesisVoice;\n};\n\n/**\n * The DOM **`StaticRange`** interface extends AbstractRange to provide a method to specify a range of content in the DOM whose contents don't update to reflect changes which occur within the DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StaticRange)\n */\ninterface StaticRange extends AbstractRange {\n}\n\ndeclare var StaticRange: {\n    prototype: StaticRange;\n    new(init: StaticRangeInit): StaticRange;\n};\n\n/**\n * The `StereoPannerNode` interface of the Web Audio API represents a simple stereo panner node that can be used to pan an audio stream left or right.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StereoPannerNode)\n */\ninterface StereoPannerNode extends AudioNode {\n    /**\n     * The `pan` property of the StereoPannerNode interface is an a-rate AudioParam representing the amount of panning to apply.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StereoPannerNode/pan)\n     */\n    readonly pan: AudioParam;\n}\n\ndeclare var StereoPannerNode: {\n    prototype: StereoPannerNode;\n    new(context: BaseAudioContext, options?: StereoPannerOptions): StereoPannerNode;\n};\n\n/**\n * The **`Storage`** interface of the Web Storage API provides access to a particular domain's session or local storage.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage)\n */\ninterface Storage {\n    /**\n     * The **`length`** read-only property of the `Storage` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/length)\n     */\n    readonly length: number;\n    /**\n     * The **`clear()`** method of the Storage interface clears all keys stored in a given `Storage` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/clear)\n     */\n    clear(): void;\n    /**\n     * The **`getItem()`** method of the Storage interface, when passed a key name, will return that key's value, or `null` if the key does not exist, in the given `Storage` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/getItem)\n     */\n    getItem(key: string): string | null;\n    /**\n     * The **`key()`** method of the Storage interface, when passed a number n, returns the name of the nth key in a given `Storage` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/key)\n     */\n    key(index: number): string | null;\n    /**\n     * The **`removeItem()`** method of the Storage interface, when passed a key name, will remove that key from the given `Storage` object if it exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/removeItem)\n     */\n    removeItem(key: string): void;\n    /**\n     * The **`setItem()`** method of the Storage interface, when passed a key name and value, will add that key to the given `Storage` object, or update that key's value if it already exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/setItem)\n     */\n    setItem(key: string, value: string): void;\n    [name: string]: any;\n}\n\ndeclare var Storage: {\n    prototype: Storage;\n    new(): Storage;\n};\n\n/**\n * The **`StorageEvent`** interface is implemented by the Window/storage_event event, which is sent to a window when a storage area the window has access to is changed within the context of another document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent)\n */\ninterface StorageEvent extends Event {\n    /**\n     * The **`key`** property of the StorageEvent interface returns the key for the storage item that was changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/key)\n     */\n    readonly key: string | null;\n    /**\n     * The **`newValue`** property of the StorageEvent interface returns the new value of the storage item whose value was changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/newValue)\n     */\n    readonly newValue: string | null;\n    /**\n     * The **`oldValue`** property of the StorageEvent interface returns the original value of the storage item whose value changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/oldValue)\n     */\n    readonly oldValue: string | null;\n    /**\n     * The **`storageArea`** property of the StorageEvent interface returns the storage object that was affected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/storageArea)\n     */\n    readonly storageArea: Storage | null;\n    /**\n     * The **`url`** property of the StorageEvent interface returns the URL of the document whose storage changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/url)\n     */\n    readonly url: string;\n    /**\n     * The **`StorageEvent.initStorageEvent()`** method is used to initialize the value of a StorageEvent.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageEvent/initStorageEvent)\n     */\n    initStorageEvent(type: string, bubbles?: boolean, cancelable?: boolean, key?: string | null, oldValue?: string | null, newValue?: string | null, url?: string | URL, storageArea?: Storage | null): void;\n}\n\ndeclare var StorageEvent: {\n    prototype: StorageEvent;\n    new(type: string, eventInitDict?: StorageEventInit): StorageEvent;\n};\n\n/**\n * The **`StorageManager`** interface of the Storage API provides an interface for managing persistence permissions and estimating available storage.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager)\n */\ninterface StorageManager {\n    /**\n     * The **`estimate()`** method of the StorageManager interface asks the Storage Manager for how much storage the current origin takes up (`usage`), and how much space is available (`quota`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/estimate)\n     */\n    estimate(): Promise<StorageEstimate>;\n    /**\n     * The **`getDirectory()`** method of the StorageManager interface is used to obtain a reference to a FileSystemDirectoryHandle object allowing access to a directory and its contents, stored in the origin private file system (OPFS).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/getDirectory)\n     */\n    getDirectory(): Promise<FileSystemDirectoryHandle>;\n    /**\n     * The **`persist()`** method of the StorageManager interface requests permission to use persistent storage, and returns a Promise that resolves to `true` if permission is granted and bucket mode is persistent, and `false` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/persist)\n     */\n    persist(): Promise<boolean>;\n    /**\n     * The **`persisted()`** method of the StorageManager interface returns a Promise that resolves to `true` if your site's storage bucket is persistent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/persisted)\n     */\n    persisted(): Promise<boolean>;\n}\n\ndeclare var StorageManager: {\n    prototype: StorageManager;\n    new(): StorageManager;\n};\n\n/** @deprecated */\ninterface StyleMedia {\n    type: string;\n    matchMedium(mediaquery: string): boolean;\n}\n\n/**\n * The **`StylePropertyMap`** interface of the CSS Typed Object Model API provides a representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap)\n */\ninterface StylePropertyMap extends StylePropertyMapReadOnly {\n    /**\n     * The **`append()`** method of the `StylePropertyMap` with the given property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append)\n     */\n    append(property: string, ...values: (CSSStyleValue | string)[]): void;\n    /**\n     * The **`clear()`** method of the StylePropertyMap interface removes all declarations in the `StylePropertyMap`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/clear)\n     */\n    clear(): void;\n    /**\n     * The **`delete()`** method of the property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete)\n     */\n    delete(property: string): void;\n    /**\n     * The **`set()`** method of the StylePropertyMap interface changes the CSS declaration with the given property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/set)\n     */\n    set(property: string, ...values: (CSSStyleValue | string)[]): void;\n}\n\ndeclare var StylePropertyMap: {\n    prototype: StylePropertyMap;\n    new(): StylePropertyMap;\n};\n\n/**\n * The **`StylePropertyMapReadOnly`** interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly)\n */\ninterface StylePropertyMapReadOnly {\n    /**\n     * The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)\n     */\n    readonly size: number;\n    /**\n     * The **`get()`** method of the object for the first value of the specified property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)\n     */\n    get(property: string): undefined | CSSStyleValue;\n    /**\n     * The **`getAll()`** method of the ```js-nolint getAll(property) ``` - `property` - : The name of the property to retrieve all values of.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)\n     */\n    getAll(property: string): CSSStyleValue[];\n    /**\n     * The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)\n     */\n    has(property: string): boolean;\n    forEach(callbackfn: (value: CSSStyleValue[], key: string, parent: StylePropertyMapReadOnly) => void, thisArg?: any): void;\n}\n\ndeclare var StylePropertyMapReadOnly: {\n    prototype: StylePropertyMapReadOnly;\n    new(): StylePropertyMapReadOnly;\n};\n\n/**\n * An object implementing the `StyleSheet` interface represents a single style sheet.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet)\n */\ninterface StyleSheet {\n    /**\n     * The **`disabled`** property of the applying to the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/disabled)\n     */\n    disabled: boolean;\n    /**\n     * The **`href`** property of the StyleSheet interface returns the location of the style sheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/href)\n     */\n    readonly href: string | null;\n    /**\n     * The **`media`** property of the StyleSheet interface specifies the intended destination media for style information.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/media)\n     */\n    get media(): MediaList;\n    set media(mediaText: string);\n    /**\n     * The **`ownerNode`** property of the with the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode)\n     */\n    readonly ownerNode: Element | ProcessingInstruction | null;\n    /**\n     * The **`parentStyleSheet`** property of the the given style sheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet)\n     */\n    readonly parentStyleSheet: CSSStyleSheet | null;\n    /**\n     * The **`title`** property of the StyleSheet interface returns the advisory title of the current style sheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/title)\n     */\n    readonly title: string | null;\n    /**\n     * The **`type`** property of the StyleSheet interface specifies the style sheet language for the given style sheet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/type)\n     */\n    readonly type: string;\n}\n\ndeclare var StyleSheet: {\n    prototype: StyleSheet;\n    new(): StyleSheet;\n};\n\n/**\n * The `StyleSheetList` interface represents a list of CSSStyleSheet objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheetList)\n */\ninterface StyleSheetList {\n    /**\n     * The **`length`** read-only property of the StyleSheetList interface returns the number of CSSStyleSheet objects in the collection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheetList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method of the StyleSheetList interface returns a single CSSStyleSheet object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheetList/item)\n     */\n    item(index: number): CSSStyleSheet | null;\n    [index: number]: CSSStyleSheet;\n}\n\ndeclare var StyleSheetList: {\n    prototype: StyleSheetList;\n    new(): StyleSheetList;\n};\n\n/**\n * The **`SubmitEvent`** interface defines the object used to represent an HTML form's HTMLFormElement.submit_event event.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubmitEvent)\n */\ninterface SubmitEvent extends Event {\n    /**\n     * The read-only **`submitter`** property found on the SubmitEvent interface specifies the submit button or other element that was invoked to cause the form to be submitted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubmitEvent/submitter)\n     */\n    readonly submitter: HTMLElement | null;\n}\n\ndeclare var SubmitEvent: {\n    prototype: SubmitEvent;\n    new(type: string, eventInitDict?: SubmitEventInit): SubmitEvent;\n};\n\n/**\n * The **`SubtleCrypto`** interface of the Web Crypto API provides a number of low-level cryptographic functions.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto)\n */\ninterface SubtleCrypto {\n    /**\n     * The **`decrypt()`** method of the SubtleCrypto interface decrypts some encrypted data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt)\n     */\n    decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`deriveBits()`** method of the key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)\n     */\n    deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null): Promise<ArrayBuffer>;\n    /**\n     * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey)\n     */\n    deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`digest()`** method of the SubtleCrypto interface generates a _digest_ of the given data, using the specified hash function.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest)\n     */\n    digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`encrypt()`** method of the SubtleCrypto interface encrypts data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/encrypt)\n     */\n    encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`exportKey()`** method of the SubtleCrypto interface exports a key: that is, it takes as input a CryptoKey object and gives you the key in an external, portable format.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey)\n     */\n    exportKey(format: \"jwk\", key: CryptoKey): Promise<JsonWebKey>;\n    exportKey(format: Exclude<KeyFormat, \"jwk\">, key: CryptoKey): Promise<ArrayBuffer>;\n    exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;\n    /**\n     * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey)\n     */\n    generateKey(algorithm: \"Ed25519\" | { name: \"Ed25519\" }, extractable: boolean, keyUsages: ReadonlyArray<\"sign\" | \"verify\">): Promise<CryptoKeyPair>;\n    generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;\n    generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;\n    /**\n     * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey)\n     */\n    importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    importKey(format: Exclude<KeyFormat, \"jwk\">, keyData: BufferSource, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`sign()`** method of the SubtleCrypto interface generates a digital signature.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/sign)\n     */\n    sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey)\n     */\n    unwrapKey(format: KeyFormat, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`verify()`** method of the SubtleCrypto interface verifies a digital signature.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/verify)\n     */\n    verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource): Promise<boolean>;\n    /**\n     * The **`wrapKey()`** method of the SubtleCrypto interface 'wraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/wrapKey)\n     */\n    wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams): Promise<ArrayBuffer>;\n}\n\ndeclare var SubtleCrypto: {\n    prototype: SubtleCrypto;\n    new(): SubtleCrypto;\n};\n\n/**\n * The **`Text`** interface represents a text Node in a DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Text)\n */\ninterface Text extends CharacterData, Slottable {\n    /**\n     * The read-only **`wholeText`** property of the Text interface returns the full text of all Text nodes logically adjacent to the node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Text/wholeText)\n     */\n    readonly wholeText: string;\n    /**\n     * The **`splitText()`** method of the Text interface breaks the Text node into two nodes at the specified offset, keeping both nodes in the tree as siblings.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Text/splitText)\n     */\n    splitText(offset: number): Text;\n}\n\ndeclare var Text: {\n    prototype: Text;\n    new(data?: string): Text;\n};\n\n/**\n * The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)\n */\ninterface TextDecoder extends TextDecoderCommon {\n    /**\n     * The **`TextDecoder.decode()`** method returns a string containing text decoded from the buffer passed as a parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/decode)\n     */\n    decode(input?: AllowSharedBufferSource, options?: TextDecodeOptions): string;\n}\n\ndeclare var TextDecoder: {\n    prototype: TextDecoder;\n    new(label?: string, options?: TextDecoderOptions): TextDecoder;\n};\n\ninterface TextDecoderCommon {\n    /**\n     * Returns encoding's name, lowercased.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/encoding)\n     */\n    readonly encoding: string;\n    /**\n     * Returns true if error mode is \"fatal\", otherwise false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/fatal)\n     */\n    readonly fatal: boolean;\n    /**\n     * Returns the value of ignore BOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/ignoreBOM)\n     */\n    readonly ignoreBOM: boolean;\n}\n\n/**\n * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)\n */\ninterface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {\n    readonly readable: ReadableStream<string>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var TextDecoderStream: {\n    prototype: TextDecoderStream;\n    new(label?: string, options?: TextDecoderOptions): TextDecoderStream;\n};\n\n/**\n * The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)\n */\ninterface TextEncoder extends TextEncoderCommon {\n    /**\n     * The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)\n     */\n    encode(input?: string): Uint8Array<ArrayBuffer>;\n    /**\n     * The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)\n     */\n    encodeInto(source: string, destination: Uint8Array<ArrayBufferLike>): TextEncoderEncodeIntoResult;\n}\n\ndeclare var TextEncoder: {\n    prototype: TextEncoder;\n    new(): TextEncoder;\n};\n\ninterface TextEncoderCommon {\n    /**\n     * Returns \"utf-8\".\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encoding)\n     */\n    readonly encoding: string;\n}\n\n/**\n * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)\n */\ninterface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<string>;\n}\n\ndeclare var TextEncoderStream: {\n    prototype: TextEncoderStream;\n    new(): TextEncoderStream;\n};\n\n/**\n * The **`TextEvent`** interface is a legacy UI event interface for reporting changes to text UI elements.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent)\n */\ninterface TextEvent extends UIEvent {\n    /**\n     * The **`data`** read-only property of the TextEvent interface returns the last character added to the input element.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent/data)\n     */\n    readonly data: string;\n    /**\n     * The **`initTextEventEvent()`** method of the TextEvent interface initializes the value of a `TextEvent` after it has been created.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent/initTextEvent)\n     */\n    initTextEvent(type: string, bubbles?: boolean, cancelable?: boolean, view?: Window | null, data?: string): void;\n}\n\n/** @deprecated */\ndeclare var TextEvent: {\n    prototype: TextEvent;\n    new(): TextEvent;\n};\n\n/**\n * The **`TextMetrics`** interface represents the dimensions of a piece of text in the canvas; a `TextMetrics` instance can be retrieved using the CanvasRenderingContext2D.measureText() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics)\n */\ninterface TextMetrics {\n    /**\n     * The read-only **`actualBoundingBoxAscent`** property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the top of the bounding rectangle used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxAscent)\n     */\n    readonly actualBoundingBoxAscent: number;\n    /**\n     * The read-only `actualBoundingBoxDescent` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxDescent)\n     */\n    readonly actualBoundingBoxDescent: number;\n    /**\n     * The read-only `actualBoundingBoxLeft` property of the TextMetrics interface is a `double` giving the distance parallel to the baseline from the alignment point given by the CanvasRenderingContext2D.textAlign property to the left side of the bounding rectangle of the given text, in CSS pixels; positive numbers indicating a distance going left from the given alignment point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxLeft)\n     */\n    readonly actualBoundingBoxLeft: number;\n    /**\n     * The read-only `actualBoundingBoxRight` property of the TextMetrics interface is a `double` giving the distance parallel to the baseline from the alignment point given by the CanvasRenderingContext2D.textAlign property to the right side of the bounding rectangle of the given text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxRight)\n     */\n    readonly actualBoundingBoxRight: number;\n    /**\n     * The read-only `alphabeticBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the alphabetic baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/alphabeticBaseline)\n     */\n    readonly alphabeticBaseline: number;\n    /**\n     * The read-only `emHeightAscent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the top of the _em_ square in the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightAscent)\n     */\n    readonly emHeightAscent: number;\n    /**\n     * The read-only `emHeightDescent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the bottom of the _em_ square in the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightDescent)\n     */\n    readonly emHeightDescent: number;\n    /**\n     * The read-only `fontBoundingBoxAscent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute, to the top of the highest bounding rectangle of all the fonts used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxAscent)\n     */\n    readonly fontBoundingBoxAscent: number;\n    /**\n     * The read-only `fontBoundingBoxDescent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle of all the fonts used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxDescent)\n     */\n    readonly fontBoundingBoxDescent: number;\n    /**\n     * The read-only `hangingBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the hanging baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/hangingBaseline)\n     */\n    readonly hangingBaseline: number;\n    /**\n     * The read-only `ideographicBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the ideographic baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/ideographicBaseline)\n     */\n    readonly ideographicBaseline: number;\n    /**\n     * The read-only **`width`** property of the TextMetrics interface contains the text's advance width (the width of that inline box) in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/width)\n     */\n    readonly width: number;\n}\n\ndeclare var TextMetrics: {\n    prototype: TextMetrics;\n    new(): TextMetrics;\n};\n\ninterface TextTrackEventMap {\n    \"cuechange\": Event;\n}\n\n/**\n * The **`TextTrack`** interface of the WebVTT API represents a text track associated with a media element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack)\n */\ninterface TextTrack extends EventTarget {\n    /**\n     * The **`activeCues`** read-only property of the TextTrack interface returns a TextTrackCueList object listing the currently active cues.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/activeCues)\n     */\n    readonly activeCues: TextTrackCueList | null;\n    /**\n     * The **`cues`** read-only property of the TextTrack interface returns a TextTrackCueList object containing all of the track's cues.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/cues)\n     */\n    readonly cues: TextTrackCueList | null;\n    /**\n     * The **`id`** read-only property of the TextTrack interface returns the ID of the track if it has one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/id)\n     */\n    readonly id: string;\n    /**\n     * The **`inBandMetadataTrackDispatchType`** read-only property of the TextTrack interface returns the text track's in-band metadata dispatch type of the text track represented by the TextTrack object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/inBandMetadataTrackDispatchType)\n     */\n    readonly inBandMetadataTrackDispatchType: string;\n    /**\n     * The **`kind`** read-only property of the TextTrack interface returns the kind of text track this object represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/kind)\n     */\n    readonly kind: TextTrackKind;\n    /**\n     * The **`label`** read-only property of the TextTrack interface returns a human-readable label for the text track, if it is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/label)\n     */\n    readonly label: string;\n    /**\n     * The **`language`** read-only property of the TextTrack interface returns the language of the text track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/language)\n     */\n    readonly language: string;\n    /**\n     * The TextTrack interface's **`mode`** property is a string specifying and controlling the text track's mode: `disabled`, `hidden`, or `showing`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/mode)\n     */\n    mode: TextTrackMode;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/cuechange_event) */\n    oncuechange: ((this: TextTrack, ev: Event) => any) | null;\n    /**\n     * The **`addCue()`** method of the TextTrack interface adds a new cue to the list of cues.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/addCue)\n     */\n    addCue(cue: TextTrackCue): void;\n    /**\n     * The **`removeCue()`** method of the TextTrack interface removes a cue from the list of cues.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrack/removeCue)\n     */\n    removeCue(cue: TextTrackCue): void;\n    addEventListener<K extends keyof TextTrackEventMap>(type: K, listener: (this: TextTrack, ev: TextTrackEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof TextTrackEventMap>(type: K, listener: (this: TextTrack, ev: TextTrackEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var TextTrack: {\n    prototype: TextTrack;\n    new(): TextTrack;\n};\n\ninterface TextTrackCueEventMap {\n    \"enter\": Event;\n    \"exit\": Event;\n}\n\n/**\n * The **`TextTrackCue`** interface of the WebVTT API is the abstract base class for the various derived cue types, such as VTTCue; you will work with these derived types rather than the base class.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue)\n */\ninterface TextTrackCue extends EventTarget {\n    /**\n     * The **`endTime`** property of the TextTrackCue interface returns and sets the end time of the cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/endTime)\n     */\n    endTime: number;\n    /**\n     * The **`id`** property of the TextTrackCue interface returns and sets the identifier for this cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/id)\n     */\n    id: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/enter_event) */\n    onenter: ((this: TextTrackCue, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/exit_event) */\n    onexit: ((this: TextTrackCue, ev: Event) => any) | null;\n    /**\n     * The **`pauseOnExit`** property of the TextTrackCue interface returns or sets the flag indicating whether playback of the media should pause when the end of the range to which this cue applies is reached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/pauseOnExit)\n     */\n    pauseOnExit: boolean;\n    /**\n     * The **`startTime`** property of the TextTrackCue interface returns and sets the start time of the cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/startTime)\n     */\n    startTime: number;\n    /**\n     * The **`track`** read-only property of the TextTrackCue interface returns the TextTrack object that this cue belongs to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCue/track)\n     */\n    readonly track: TextTrack | null;\n    addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var TextTrackCue: {\n    prototype: TextTrackCue;\n    new(): TextTrackCue;\n};\n\n/**\n * The **`TextTrackCueList`** interface of the WebVTT API is an array-like object that represents a dynamically updating list of TextTrackCue objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCueList)\n */\ninterface TextTrackCueList {\n    /**\n     * The **`length`** read-only property of the TextTrackCueList interface returns the number of cues in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCueList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`getCueById()`** method of the TextTrackCueList interface returns the first VTTCue in the list represented by the `TextTrackCueList` object whose identifier matches the value of `id`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackCueList/getCueById)\n     */\n    getCueById(id: string): TextTrackCue | null;\n    [index: number]: TextTrackCue;\n}\n\ndeclare var TextTrackCueList: {\n    prototype: TextTrackCueList;\n    new(): TextTrackCueList;\n};\n\ninterface TextTrackListEventMap {\n    \"addtrack\": TrackEvent;\n    \"change\": Event;\n    \"removetrack\": TrackEvent;\n}\n\n/**\n * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate textTrack object in the list.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)\n */\ninterface TextTrackList extends EventTarget {\n    /**\n     * The read-only **TextTrackList** property **`length`** returns the number of entries in the `TextTrackList`, each of which is a TextTrack representing one track in the media element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/length)\n     */\n    readonly length: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/addtrack_event) */\n    onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/change_event) */\n    onchange: ((this: TextTrackList, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */\n    onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;\n    /**\n     * The **TextTrackList** method **`getTrackById()`** returns the first `id` matches the specified string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById)\n     */\n    getTrackById(id: string): TextTrack | null;\n    addEventListener<K extends keyof TextTrackListEventMap>(type: K, listener: (this: TextTrackList, ev: TextTrackListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof TextTrackListEventMap>(type: K, listener: (this: TextTrackList, ev: TextTrackListEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n    [index: number]: TextTrack;\n}\n\ndeclare var TextTrackList: {\n    prototype: TextTrackList;\n    new(): TextTrackList;\n};\n\n/**\n * When loading a media resource for use by an audio or video element, the **`TimeRanges`** interface is used for representing the time ranges of the media resource that have been buffered, the time ranges that have been played, and the time ranges that are seekable.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TimeRanges)\n */\ninterface TimeRanges {\n    /**\n     * The **`TimeRanges.length`** read-only property returns the number of ranges in the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TimeRanges/length)\n     */\n    readonly length: number;\n    /**\n     * The **`end()`** method of the TimeRanges interface returns the time offset (in seconds) at which a specified time range ends.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TimeRanges/end)\n     */\n    end(index: number): number;\n    /**\n     * The **`start()`** method of the TimeRanges interface returns the time offset (in seconds) at which a specified time range begins.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TimeRanges/start)\n     */\n    start(index: number): number;\n}\n\ndeclare var TimeRanges: {\n    prototype: TimeRanges;\n    new(): TimeRanges;\n};\n\n/**\n * The **`ToggleEvent`** interface represents an event notifying the user an Element's state has changed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)\n */\ninterface ToggleEvent extends Event {\n    /**\n     * The **`newState`** read-only property of the ToggleEvent interface is a string representing the state the element is transitioning to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/newState)\n     */\n    readonly newState: string;\n    /**\n     * The **`oldState`** read-only property of the ToggleEvent interface is a string representing the state the element is transitioning from.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/oldState)\n     */\n    readonly oldState: string;\n}\n\ndeclare var ToggleEvent: {\n    prototype: ToggleEvent;\n    new(type: string, eventInitDict?: ToggleEventInit): ToggleEvent;\n};\n\n/**\n * The **`Touch`** interface represents a single contact point on a touch-sensitive device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch)\n */\ninterface Touch {\n    /**\n     * The `Touch.clientX` read-only property returns the X coordinate of the touch point relative to the viewport, not including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/clientX)\n     */\n    readonly clientX: number;\n    /**\n     * The **`Touch.clientY`** read-only property returns the Y coordinate of the touch point relative to the browser's viewport, not including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/clientY)\n     */\n    readonly clientY: number;\n    /**\n     * The **`Touch.force`** read-only property returns the amount of pressure the user is applying to the touch surface for a Touch point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/force)\n     */\n    readonly force: number;\n    /**\n     * The **`Touch.identifier`** returns a value uniquely identifying this point of contact with the touch surface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/identifier)\n     */\n    readonly identifier: number;\n    /**\n     * The **`Touch.pageX`** read-only property returns the X coordinate of the touch point relative to the viewport, including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/pageX)\n     */\n    readonly pageX: number;\n    /**\n     * The **`Touch.pageY`** read-only property returns the Y coordinate of the touch point relative to the viewport, including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/pageY)\n     */\n    readonly pageY: number;\n    /**\n     * The **`radiusX`** read-only property of the Touch interface returns the X radius of the ellipse that most closely circumscribes the area of contact with the touch surface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/radiusX)\n     */\n    readonly radiusX: number;\n    /**\n     * The **`radiusY`** read-only property of the Touch interface returns the Y radius of the ellipse that most closely circumscribes the area of contact with the touch surface.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/radiusY)\n     */\n    readonly radiusY: number;\n    /**\n     * The **`rotationAngle`** read-only property of the Touch interface returns the rotation angle, in degrees, of the contact area ellipse defined by Touch.radiusX and Touch.radiusY.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/rotationAngle)\n     */\n    readonly rotationAngle: number;\n    /**\n     * Returns the X coordinate of the touch point relative to the screen, not including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/screenX)\n     */\n    readonly screenX: number;\n    /**\n     * Returns the Y coordinate of the touch point relative to the screen, not including any scroll offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/screenY)\n     */\n    readonly screenY: number;\n    /**\n     * The read-only **`target`** property of the `Touch` interface returns the (EventTarget) on which the touch contact started when it was first placed on the surface, even if the touch point has since moved outside the interactive area of that element or even been removed from the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Touch/target)\n     */\n    readonly target: EventTarget;\n}\n\ndeclare var Touch: {\n    prototype: Touch;\n    new(touchInitDict: TouchInit): Touch;\n};\n\n/**\n * The **`TouchEvent`** interface represents an UIEvent which is sent when the state of contacts with a touch-sensitive surface changes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent)\n */\ninterface TouchEvent extends UIEvent {\n    /**\n     * The read-only **`altKey`** property of the TouchEvent interface returns a boolean value indicating whether or not the <kbd>alt</kbd> (Alternate) key is enabled when the touch event is created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/altKey)\n     */\n    readonly altKey: boolean;\n    /**\n     * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows: - For the Element/touchstart_event event, it is a list of the touch points that became active with the current event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches)\n     */\n    readonly changedTouches: TouchList;\n    /**\n     * The read-only **`ctrlKey`** property of the TouchEvent interface returns a boolean value indicating whether the <kbd>control</kbd> (Control) key is enabled when the touch event is created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/ctrlKey)\n     */\n    readonly ctrlKey: boolean;\n    /**\n     * The read-only **`metaKey`** property of the TouchEvent interface returns a boolean value indicating whether or not the <kbd>Meta</kbd> key is enabled when the touch event is created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/metaKey)\n     */\n    readonly metaKey: boolean;\n    /**\n     * The read-only **`shiftKey`** property of the `TouchEvent` interface returns a boolean value indicating whether or not the <kbd>shift</kbd> key is enabled when the touch event is created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/shiftKey)\n     */\n    readonly shiftKey: boolean;\n    /**\n     * The **`targetTouches`** read-only property is a TouchList listing all the Touch objects for touch points that are still in contact with the touch surface **and** whose Element/touchstart_event event occurred inside the same target element as the current target element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/targetTouches)\n     */\n    readonly targetTouches: TouchList;\n    /**\n     * **`touches`** is a read-only TouchList listing all the Touch objects for touch points that are currently in contact with the touch surface, regardless of whether or not they've changed or what their target element was at Element/touchstart_event time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/touches)\n     */\n    readonly touches: TouchList;\n}\n\ndeclare var TouchEvent: {\n    prototype: TouchEvent;\n    new(type: string, eventInitDict?: TouchEventInit): TouchEvent;\n};\n\n/**\n * The **`TouchList`** interface represents a list of contact points on a touch surface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchList)\n */\ninterface TouchList {\n    /**\n     * The **`length`** read-only property indicates the number of items (touch points) in a given TouchList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method returns the Touch object at the specified index in the TouchList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchList/item)\n     */\n    item(index: number): Touch | null;\n    [index: number]: Touch;\n}\n\ndeclare var TouchList: {\n    prototype: TouchList;\n    new(): TouchList;\n};\n\n/**\n * The **`TrackEvent`** interface of the HTML DOM API is used for events which represent changes to a set of available tracks on an HTML media element; these events are `addtrack` and `removetrack`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TrackEvent)\n */\ninterface TrackEvent extends Event {\n    /**\n     * The read-only **`track`** property of the TrackEvent interface specifies the media track object to which the event applies.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TrackEvent/track)\n     */\n    readonly track: TextTrack | null;\n}\n\ndeclare var TrackEvent: {\n    prototype: TrackEvent;\n    new(type: string, eventInitDict?: TrackEventInit): TrackEvent;\n};\n\n/**\n * The **`TransformStream`** interface of the Streams API represents a concrete implementation of the pipe chain _transform stream_ concept.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream)\n */\ninterface TransformStream<I = any, O = any> {\n    /**\n     * The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this `TransformStream`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable)\n     */\n    readonly readable: ReadableStream<O>;\n    /**\n     * The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this `TransformStream`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/writable)\n     */\n    readonly writable: WritableStream<I>;\n}\n\ndeclare var TransformStream: {\n    prototype: TransformStream;\n    new<I = any, O = any>(transformer?: Transformer<I, O>, writableStrategy?: QueuingStrategy<I>, readableStrategy?: QueuingStrategy<O>): TransformStream<I, O>;\n};\n\n/**\n * The **`TransformStreamDefaultController`** interface of the Streams API provides methods to manipulate the associated ReadableStream and WritableStream.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController)\n */\ninterface TransformStreamDefaultController<O = any> {\n    /**\n     * The **`desiredSize`** read-only property of the TransformStreamDefaultController interface returns the desired size to fill the queue of the associated ReadableStream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`enqueue()`** method of the TransformStreamDefaultController interface enqueues the given chunk in the readable side of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)\n     */\n    enqueue(chunk?: O): void;\n    /**\n     * The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/error)\n     */\n    error(reason?: any): void;\n    /**\n     * The **`terminate()`** method of the TransformStreamDefaultController interface closes the readable side and errors the writable side of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/terminate)\n     */\n    terminate(): void;\n}\n\ndeclare var TransformStreamDefaultController: {\n    prototype: TransformStreamDefaultController;\n    new(): TransformStreamDefaultController;\n};\n\n/**\n * The **`TransitionEvent`** interface represents events providing information related to transitions.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransitionEvent)\n */\ninterface TransitionEvent extends Event {\n    /**\n     * The **`TransitionEvent.elapsedTime`** read-only property is a `float` giving the amount of time the animation has been running, in seconds, when this event fired.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransitionEvent/elapsedTime)\n     */\n    readonly elapsedTime: number;\n    /**\n     * The **`propertyName`** read-only property of TransitionEvent objects is a string containing the name of the CSS property associated with the transition.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransitionEvent/propertyName)\n     */\n    readonly propertyName: string;\n    /**\n     * The **`TransitionEvent.pseudoElement`** read-only property is a string, starting with `'::'`, containing the name of the pseudo-element the animation runs on.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransitionEvent/pseudoElement)\n     */\n    readonly pseudoElement: string;\n}\n\ndeclare var TransitionEvent: {\n    prototype: TransitionEvent;\n    new(type: string, transitionEventInitDict?: TransitionEventInit): TransitionEvent;\n};\n\n/**\n * The **`TreeWalker`** object represents the nodes of a document subtree and a position within them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker)\n */\ninterface TreeWalker {\n    /**\n     * The **`TreeWalker.currentNode`** property represents the A Node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/currentNode)\n     */\n    currentNode: Node;\n    /**\n     * The **`TreeWalker.filter`** read-only property returns the `NodeFilter` associated with the TreeWalker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/filter)\n     */\n    readonly filter: NodeFilter | null;\n    /**\n     * The **`TreeWalker.root`** read-only property returns the root Node that the TreeWalker traverses.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/root)\n     */\n    readonly root: Node;\n    /**\n     * The **`TreeWalker.whatToShow`** read-only property returns a bitmask that indicates the types of nodes to show.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/whatToShow)\n     */\n    readonly whatToShow: number;\n    /**\n     * The **`TreeWalker.firstChild()`** method moves the current the found child.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/firstChild)\n     */\n    firstChild(): Node | null;\n    /**\n     * The **`TreeWalker.lastChild()`** method moves the current the found child.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/lastChild)\n     */\n    lastChild(): Node | null;\n    /**\n     * The **`TreeWalker.nextNode()`** method moves the current the found node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextNode)\n     */\n    nextNode(): Node | null;\n    /**\n     * The **`TreeWalker.nextSibling()`** method moves the current is no such node, it returns `null` and the current node is not changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextSibling)\n     */\n    nextSibling(): Node | null;\n    /**\n     * The **`TreeWalker.parentNode()`** method moves the current and returns the found node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/parentNode)\n     */\n    parentNode(): Node | null;\n    /**\n     * The **`TreeWalker.previousNode()`** method moves the current returns the found node.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousNode)\n     */\n    previousNode(): Node | null;\n    /**\n     * The **`TreeWalker.previousSibling()`** method moves the current there is no such node, it returns `null` and the current node is not changed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousSibling)\n     */\n    previousSibling(): Node | null;\n}\n\ndeclare var TreeWalker: {\n    prototype: TreeWalker;\n    new(): TreeWalker;\n};\n\n/**\n * The **`UIEvent`** interface represents simple user interface events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent)\n */\ninterface UIEvent extends Event {\n    /**\n     * The **`UIEvent.detail`** read-only property, when non-zero, provides the current (or next, depending on the event) click count.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/detail)\n     */\n    readonly detail: number;\n    /**\n     * The **`UIEvent.view`** read-only property returns the is the Window object the event happened in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view)\n     */\n    readonly view: Window | null;\n    /**\n     * The **`UIEvent.which`** read-only property of the UIEvent interface returns a number that indicates which button was pressed on the mouse, or the numeric `keyCode` or the character code (`charCode`) of the key pressed on the keyboard.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/which)\n     */\n    readonly which: number;\n    /**\n     * The **`UIEvent.initUIEvent()`** method initializes a UI event once it's been created.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/initUIEvent)\n     */\n    initUIEvent(typeArg: string, bubblesArg?: boolean, cancelableArg?: boolean, viewArg?: Window | null, detailArg?: number): void;\n}\n\ndeclare var UIEvent: {\n    prototype: UIEvent;\n    new(type: string, eventInitDict?: UIEventInit): UIEvent;\n};\n\n/**\n * The **`URL`** interface is used to parse, construct, normalize, and encode URL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL)\n */\ninterface URL {\n    /**\n     * The **`hash`** property of the URL interface is a string containing a `'#'` followed by the fragment identifier of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash)\n     */\n    hash: string;\n    /**\n     * The **`host`** property of the URL interface is a string containing the host, which is the URL.hostname, and then, if the port of the URL is nonempty, a `':'`, followed by the URL.port of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host)\n     */\n    host: string;\n    /**\n     * The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname)\n     */\n    hostname: string;\n    /**\n     * The **`href`** property of the URL interface is a string containing the whole URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/href)\n     */\n    href: string;\n    toString(): string;\n    /**\n     * The **`origin`** read-only property of the URL interface returns a string containing the Unicode serialization of the origin of the represented URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`password`** property of the URL interface is a string containing the password component of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password)\n     */\n    password: string;\n    /**\n     * The **`pathname`** property of the URL interface represents a location in a hierarchical structure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/pathname)\n     */\n    pathname: string;\n    /**\n     * The **`port`** property of the URL interface is a string containing the port number of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port)\n     */\n    port: string;\n    /**\n     * The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final `':'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol)\n     */\n    protocol: string;\n    /**\n     * The **`search`** property of the URL interface is a search string, also called a _query string_, that is a string containing a `'?'` followed by the parameters of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search)\n     */\n    search: string;\n    /**\n     * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)\n     */\n    readonly searchParams: URLSearchParams;\n    /**\n     * The **`username`** property of the URL interface is a string containing the username component of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username)\n     */\n    username: string;\n    /**\n     * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)\n     */\n    toJSON(): string;\n}\n\ndeclare var URL: {\n    prototype: URL;\n    new(url: string | URL, base?: string | URL): URL;\n    /**\n     * The **`URL.canParse()`** static method of the URL interface returns a boolean indicating whether or not an absolute URL, or a relative URL combined with a base URL, are parsable and valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static)\n     */\n    canParse(url: string | URL, base?: string | URL): boolean;\n    /**\n     * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static)\n     */\n    createObjectURL(obj: Blob | MediaSource): string;\n    /**\n     * The **`URL.parse()`** static method of the URL interface returns a newly created URL object representing the URL defined by the parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static)\n     */\n    parse(url: string | URL, base?: string | URL): URL | null;\n    /**\n     * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling Call this method when you've finished using an object URL to let the browser know not to keep the reference to the file any longer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)\n     */\n    revokeObjectURL(url: string): void;\n};\n\ntype webkitURL = URL;\ndeclare var webkitURL: typeof URL;\n\n/**\n * The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n */\ninterface URLSearchParams {\n    /**\n     * The **`size`** read-only property of the URLSearchParams interface indicates the total number of search parameter entries.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/size)\n     */\n    readonly size: number;\n    /**\n     * The **`append()`** method of the URLSearchParams interface appends a specified key/value pair as a new search parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/append)\n     */\n    append(name: string, value: string): void;\n    /**\n     * The **`delete()`** method of the URLSearchParams interface deletes specified parameters and their associated value(s) from the list of all search parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)\n     */\n    delete(name: string, value?: string): void;\n    /**\n     * The **`get()`** method of the URLSearchParams interface returns the first value associated to the given search parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/get)\n     */\n    get(name: string): string | null;\n    /**\n     * The **`getAll()`** method of the URLSearchParams interface returns all the values associated with a given search parameter as an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/getAll)\n     */\n    getAll(name: string): string[];\n    /**\n     * The **`has()`** method of the URLSearchParams interface returns a boolean value that indicates whether the specified parameter is in the search parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)\n     */\n    has(name: string, value?: string): boolean;\n    /**\n     * The **`set()`** method of the URLSearchParams interface sets the value associated with a given search parameter to the given value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/set)\n     */\n    set(name: string, value: string): void;\n    /**\n     * The **`URLSearchParams.sort()`** method sorts all key/value pairs contained in this object in place and returns `undefined`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/sort)\n     */\n    sort(): void;\n    toString(): string;\n    forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;\n}\n\ndeclare var URLSearchParams: {\n    prototype: URLSearchParams;\n    new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;\n};\n\n/**\n * The **`UserActivation`** interface provides information about whether a user is currently interacting with the page, or has completed an interaction since page load.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UserActivation)\n */\ninterface UserActivation {\n    /**\n     * The read-only **`hasBeenActive`** property of the UserActivation interface indicates whether the current window has sticky activation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UserActivation/hasBeenActive)\n     */\n    readonly hasBeenActive: boolean;\n    /**\n     * The read-only **`isActive`** property of the UserActivation interface indicates whether the current window has transient activation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UserActivation/isActive)\n     */\n    readonly isActive: boolean;\n}\n\ndeclare var UserActivation: {\n    prototype: UserActivation;\n    new(): UserActivation;\n};\n\n/**\n * The `VTTCue` interface of the WebVTT API represents a cue that can be added to the text track associated with a particular video (or other media).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue)\n */\ninterface VTTCue extends TextTrackCue {\n    /**\n     * The **`align`** property of the VTTCue interface represents the alignment of all of the lines of text in the text box.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/align)\n     */\n    align: AlignSetting;\n    /**\n     * The **`line`** property of the VTTCue interface represents the cue line of this WebVTT cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/line)\n     */\n    line: LineAndPositionSetting;\n    /**\n     * The **`lineAlign`** property of the VTTCue interface represents the alignment of this VTT cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/lineAlign)\n     */\n    lineAlign: LineAlignSetting;\n    /**\n     * The **`position`** property of the VTTCue interface represents the indentation of the cue within the line.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/position)\n     */\n    position: LineAndPositionSetting;\n    /**\n     * The **`positionAlign`** property of the VTTCue interface is used to determine what VTTCue.position is anchored to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/positionAlign)\n     */\n    positionAlign: PositionAlignSetting;\n    /**\n     * The **`region`** property of the VTTCue interface returns and sets the VTTRegion that this cue belongs to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/region)\n     */\n    region: VTTRegion | null;\n    /**\n     * The **`size`** property of the VTTCue interface represents the size of the cue as a percentage of the video size.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/size)\n     */\n    size: number;\n    /**\n     * The **`snapToLines`** property of the VTTCue interface is a Boolean indicating if the VTTCue.line property is an integer number of lines, or a percentage of the video size.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/snapToLines)\n     */\n    snapToLines: boolean;\n    /**\n     * The **`text`** property of the VTTCue interface represents the text contents of the cue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/text)\n     */\n    text: string;\n    /**\n     * The **`vertical`** property of the VTTCue interface is a string representing the cue's writing direction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/vertical)\n     */\n    vertical: DirectionSetting;\n    /**\n     * The **`getCueAsHTML()`** method of the VTTCue interface returns a DocumentFragment containing the cue content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTCue/getCueAsHTML)\n     */\n    getCueAsHTML(): DocumentFragment;\n    addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: VTTCue, ev: TextTrackCueEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: VTTCue, ev: TextTrackCueEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VTTCue: {\n    prototype: VTTCue;\n    new(startTime: number, endTime: number, text: string): VTTCue;\n};\n\n/**\n * The `VTTRegion` interface of the WebVTT API describes a portion of the video to render a VTTCue onto.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion)\n */\ninterface VTTRegion {\n    id: string;\n    lines: number;\n    regionAnchorX: number;\n    regionAnchorY: number;\n    scroll: ScrollSetting;\n    viewportAnchorX: number;\n    viewportAnchorY: number;\n    width: number;\n}\n\ndeclare var VTTRegion: {\n    prototype: VTTRegion;\n    new(): VTTRegion;\n};\n\n/**\n * The **`ValidityState`** interface represents the _validity states_ that an element can be in, with respect to constraint validation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState)\n */\ninterface ValidityState {\n    /**\n     * The read-only **`badInput`** property of the ValidityState interface indicates if the user has provided input that the browser is unable to convert.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/badInput)\n     */\n    readonly badInput: boolean;\n    /**\n     * The read-only **`customError`** property of the `ValidityState` interface returns `true` if an element doesn't meet the validation required in the custom validity set by the element's HTMLInputElement.setCustomValidity method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/customError)\n     */\n    readonly customError: boolean;\n    /**\n     * The read-only **`patternMismatch`** property of the `ValidityState` interface indicates if the value of an input, after having been edited by the user, does not conform to the constraints set by the element's `pattern` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/patternMismatch)\n     */\n    readonly patternMismatch: boolean;\n    /**\n     * The read-only **`rangeOverflow`** property of the `ValidityState` interface indicates if the value of an input, after having been edited by the user, does not conform to the constraints set by the element's `max` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/rangeOverflow)\n     */\n    readonly rangeOverflow: boolean;\n    /**\n     * The read-only **`rangeUnderflow`** property of the `ValidityState` interface indicates if the value of an input, after having been edited by the user, does not conform to the constraints set by the element's `min` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/rangeUnderflow)\n     */\n    readonly rangeUnderflow: boolean;\n    /**\n     * The read-only **`stepMismatch`** property of the `ValidityState` interface indicates if the value of an input, after having been edited by the user, does not conform to the constraints set by the element's `step` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/stepMismatch)\n     */\n    readonly stepMismatch: boolean;\n    /**\n     * The read-only **`tooLong`** property of the `ValidityState` interface indicates if the value of an input or textarea, after having been edited by the user, exceeds the maximum code-unit length established by the element's `maxlength` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/tooLong)\n     */\n    readonly tooLong: boolean;\n    /**\n     * The read-only **`tooShort`** property of the `ValidityState` interface indicates if the value of an input, button, select, output, fieldset or textarea, after having been edited by the user, is less than the minimum code-unit length established by the element's `minlength` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/tooShort)\n     */\n    readonly tooShort: boolean;\n    /**\n     * The read-only **`typeMismatch`** property of the `ValidityState` interface indicates if the value of an input, after having been edited by the user, does not conform to the constraints set by the element's `type` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/typeMismatch)\n     */\n    readonly typeMismatch: boolean;\n    /**\n     * The read-only **`valid`** property of the `ValidityState` interface indicates if the value of an input element meets all its validation constraints, and is therefore considered to be valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valid)\n     */\n    readonly valid: boolean;\n    /**\n     * The read-only **`valueMissing`** property of the `ValidityState` interface indicates if a `required` control, such as an input, select, or textarea, has an empty value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valueMissing)\n     */\n    readonly valueMissing: boolean;\n}\n\ndeclare var ValidityState: {\n    prototype: ValidityState;\n    new(): ValidityState;\n};\n\n/**\n * The **`VideoColorSpace`** interface of the WebCodecs API represents the color space of a video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace)\n */\ninterface VideoColorSpace {\n    /**\n     * The **`fullRange`** read-only property of the VideoColorSpace interface returns `true` if full-range color values are used.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/fullRange)\n     */\n    readonly fullRange: boolean | null;\n    /**\n     * The **`matrix`** read-only property of the VideoColorSpace interface returns the matrix coefficient of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/matrix)\n     */\n    readonly matrix: VideoMatrixCoefficients | null;\n    /**\n     * The **`primaries`** read-only property of the VideoColorSpace interface returns the color gamut of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/primaries)\n     */\n    readonly primaries: VideoColorPrimaries | null;\n    /**\n     * The **`transfer`** read-only property of the VideoColorSpace interface returns the opto-electronic transfer characteristics of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/transfer)\n     */\n    readonly transfer: VideoTransferCharacteristics | null;\n    /**\n     * The **`toJSON()`** method of the VideoColorSpace interface is a _serializer_ that returns a JSON representation of the `VideoColorSpace` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/toJSON)\n     */\n    toJSON(): VideoColorSpaceInit;\n}\n\ndeclare var VideoColorSpace: {\n    prototype: VideoColorSpace;\n    new(init?: VideoColorSpaceInit): VideoColorSpace;\n};\n\ninterface VideoDecoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`VideoDecoder`** interface of the WebCodecs API decodes chunks of video.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder)\n */\ninterface VideoDecoder extends EventTarget {\n    /**\n     * The **`decodeQueueSize`** read-only property of the VideoDecoder interface returns the number of pending decode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decodeQueueSize)\n     */\n    readonly decodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/dequeue_event) */\n    ondequeue: ((this: VideoDecoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** property of the VideoDecoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the VideoDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the VideoDecoder interface enqueues a control message to configure the video decoder for decoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/configure)\n     */\n    configure(config: VideoDecoderConfig): void;\n    /**\n     * The **`decode()`** method of the VideoDecoder interface enqueues a control message to decode a given chunk of video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decode)\n     */\n    decode(chunk: EncodedVideoChunk): void;\n    /**\n     * The **`flush()`** method of the VideoDecoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the VideoDecoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof VideoDecoderEventMap>(type: K, listener: (this: VideoDecoder, ev: VideoDecoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof VideoDecoderEventMap>(type: K, listener: (this: VideoDecoder, ev: VideoDecoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VideoDecoder: {\n    prototype: VideoDecoder;\n    new(init: VideoDecoderInit): VideoDecoder;\n    /**\n     * The **`isConfigSupported()`** static method of the VideoDecoder interface checks if the given config is supported (that is, if VideoDecoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: VideoDecoderConfig): Promise<VideoDecoderSupport>;\n};\n\ninterface VideoEncoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`VideoEncoder`** interface of the WebCodecs API encodes VideoFrame objects into EncodedVideoChunks.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder)\n */\ninterface VideoEncoder extends EventTarget {\n    /**\n     * The **`encodeQueueSize`** read-only property of the VideoEncoder interface returns the number of pending encode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encodeQueueSize)\n     */\n    readonly encodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/dequeue_event) */\n    ondequeue: ((this: VideoEncoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the VideoEncoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the VideoEncoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the VideoEncoder interface changes the VideoEncoder.state of the encoder to 'configured' and asynchronously prepares the encoder to accept VideoEncoders for encoding with the specified parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/configure)\n     */\n    configure(config: VideoEncoderConfig): void;\n    /**\n     * The **`encode()`** method of the VideoEncoder interface asynchronously encodes a VideoFrame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encode)\n     */\n    encode(frame: VideoFrame, options?: VideoEncoderEncodeOptions): void;\n    /**\n     * The **`flush()`** method of the VideoEncoder interface forces all pending encodes to complete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the VideoEncoder interface synchronously cancels all pending encodes and callbacks, frees all underlying resources and sets the VideoEncoder.state to 'unconfigured'.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof VideoEncoderEventMap>(type: K, listener: (this: VideoEncoder, ev: VideoEncoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof VideoEncoderEventMap>(type: K, listener: (this: VideoEncoder, ev: VideoEncoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VideoEncoder: {\n    prototype: VideoEncoder;\n    new(init: VideoEncoderInit): VideoEncoder;\n    /**\n     * The **`isConfigSupported()`** static method of the VideoEncoder interface checks if VideoEncoder can be successfully configured with the given config.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: VideoEncoderConfig): Promise<VideoEncoderSupport>;\n};\n\n/**\n * The **`VideoFrame`** interface of the Web Codecs API represents a frame of a video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame)\n */\ninterface VideoFrame {\n    /**\n     * The **`codedHeight`** property of the VideoFrame interface returns the height of the VideoFrame in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedHeight)\n     */\n    readonly codedHeight: number;\n    /**\n     * The **`codedRect`** property of the VideoFrame interface returns a DOMRectReadOnly with the width and height matching VideoFrame.codedWidth and VideoFrame.codedHeight.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedRect)\n     */\n    readonly codedRect: DOMRectReadOnly | null;\n    /**\n     * The **`codedWidth`** property of the VideoFrame interface returns the width of the `VideoFrame` in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedWidth)\n     */\n    readonly codedWidth: number;\n    /**\n     * The **`colorSpace`** property of the VideoFrame interface returns a VideoColorSpace object representing the color space of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/colorSpace)\n     */\n    readonly colorSpace: VideoColorSpace;\n    /**\n     * The **`displayHeight`** property of the VideoFrame interface returns the height of the `VideoFrame` after applying aspect ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/displayHeight)\n     */\n    readonly displayHeight: number;\n    /**\n     * The **`displayWidth`** property of the VideoFrame interface returns the width of the `VideoFrame` after applying aspect ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/displayWidth)\n     */\n    readonly displayWidth: number;\n    /**\n     * The **`duration`** property of the VideoFrame interface returns an integer indicating the duration of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`format`** property of the VideoFrame interface returns the pixel format of the `VideoFrame`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/format)\n     */\n    readonly format: VideoPixelFormat | null;\n    /**\n     * The **`timestamp`** property of the VideoFrame interface returns an integer indicating the timestamp of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`visibleRect`** property of the VideoFrame interface returns a DOMRectReadOnly describing the visible rectangle of pixels for this `VideoFrame`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/visibleRect)\n     */\n    readonly visibleRect: DOMRectReadOnly | null;\n    /**\n     * The **`allocationSize()`** method of the VideoFrame interface returns the number of bytes required to hold the video as filtered by options passed into the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/allocationSize)\n     */\n    allocationSize(options?: VideoFrameCopyToOptions): number;\n    /**\n     * The **`clone()`** method of the VideoFrame interface creates a new `VideoFrame` object referencing the same media resource as the original.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/clone)\n     */\n    clone(): VideoFrame;\n    /**\n     * The **`close()`** method of the VideoFrame interface clears all states and releases the reference to the media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/close)\n     */\n    close(): void;\n    /**\n     * The **`copyTo()`** method of the VideoFrame interface copies the contents of the `VideoFrame` to an `ArrayBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource, options?: VideoFrameCopyToOptions): Promise<PlaneLayout[]>;\n}\n\ndeclare var VideoFrame: {\n    prototype: VideoFrame;\n    new(image: CanvasImageSource, init?: VideoFrameInit): VideoFrame;\n    new(data: AllowSharedBufferSource, init: VideoFrameBufferInit): VideoFrame;\n};\n\n/**\n * A **`VideoPlaybackQuality`** object is returned by the HTMLVideoElement.getVideoPlaybackQuality() method and contains metrics that can be used to determine the playback quality of a video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality)\n */\ninterface VideoPlaybackQuality {\n    /**\n     * The VideoPlaybackQuality interface's read-only **`corruptedVideoFrames`** property the number of corrupted video frames that have been received since the video element was last loaded or reloaded.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/corruptedVideoFrames)\n     */\n    readonly corruptedVideoFrames: number;\n    /**\n     * The read-only **`creationTime`** property on the the browsing context was created this quality sample was recorded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/creationTime)\n     */\n    readonly creationTime: DOMHighResTimeStamp;\n    /**\n     * The read-only **`droppedVideoFrames`** property of the VideoPlaybackQuality interface returns the number of video frames which have been dropped rather than being displayed since the last time the media was loaded into the HTMLVideoElement.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/droppedVideoFrames)\n     */\n    readonly droppedVideoFrames: number;\n    /**\n     * The VideoPlaybackQuality interface's **`totalVideoFrames`** read-only property returns the total number of video frames that have been displayed or dropped since the media was loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/totalVideoFrames)\n     */\n    readonly totalVideoFrames: number;\n}\n\ndeclare var VideoPlaybackQuality: {\n    prototype: VideoPlaybackQuality;\n    new(): VideoPlaybackQuality;\n};\n\n/**\n * The **`ViewTransition`** interface of the View Transition API represents an active view transition, and provides functionality to react to the transition reaching different states (e.g., ready to run the animation, or animation finished) or skip the transition altogether.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition)\n */\ninterface ViewTransition {\n    /**\n     * The **`finished`** read-only property of the `finished` will only reject in the case of a same-document (SPA) transition, if the callback passed to Document.startViewTransition() throws or returns a promise that rejects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished)\n     */\n    readonly finished: Promise<void>;\n    /**\n     * The **`ready`** read-only property of the `ready` will reject if the transition cannot begin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)\n     */\n    readonly ready: Promise<void>;\n    types: ViewTransitionTypeSet;\n    /**\n     * The **`updateCallbackDone`** read-only property of the `updateCallbackDone` is useful when you don't care about the success/failure of a same-document (SPA) view transition animation, and just want to know if and when the DOM is updated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone)\n     */\n    readonly updateCallbackDone: Promise<void>;\n    /**\n     * The **`skipTransition()`** method of the ```js-nolint skipTransition() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition)\n     */\n    skipTransition(): void;\n}\n\ndeclare var ViewTransition: {\n    prototype: ViewTransition;\n    new(): ViewTransition;\n};\n\ninterface ViewTransitionTypeSet {\n    forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;\n}\n\ndeclare var ViewTransitionTypeSet: {\n    prototype: ViewTransitionTypeSet;\n    new(): ViewTransitionTypeSet;\n};\n\ninterface VisualViewportEventMap {\n    \"resize\": Event;\n    \"scroll\": Event;\n}\n\n/**\n * The **`VisualViewport`** interface of the Visual Viewport API represents the visual viewport for a given window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport)\n */\ninterface VisualViewport extends EventTarget {\n    /**\n     * The **`height`** read-only property of the VisualViewport interface returns the height of the visual viewport, in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/height)\n     */\n    readonly height: number;\n    /**\n     * The **`offsetLeft`** read-only property of the VisualViewport interface returns the offset of the left edge of the visual viewport from the left edge of the layout viewport in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/offsetLeft)\n     */\n    readonly offsetLeft: number;\n    /**\n     * The **`offsetTop`** read-only property of the VisualViewport interface returns the offset of the top edge of the visual viewport from the top edge of the layout viewport in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/offsetTop)\n     */\n    readonly offsetTop: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/resize_event) */\n    onresize: ((this: VisualViewport, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/scroll_event) */\n    onscroll: ((this: VisualViewport, ev: Event) => any) | null;\n    /**\n     * The **`pageLeft`** read-only property of the VisualViewport interface returns the x coordinate of the left edge of the visual viewport relative to the initial containing block origin, in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/pageLeft)\n     */\n    readonly pageLeft: number;\n    /**\n     * The **`pageTop`** read-only property of the VisualViewport interface returns the y coordinate of the top edge of the visual viewport relative to the initial containing block origin, in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/pageTop)\n     */\n    readonly pageTop: number;\n    /**\n     * The **`scale`** read-only property of the VisualViewport interface returns the pinch-zoom scaling factor applied to the visual viewport, or `0` if current document is not fully active, or `1` if there is no output device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/scale)\n     */\n    readonly scale: number;\n    /**\n     * The **`width`** read-only property of the VisualViewport interface returns the width of the visual viewport, in CSS pixels, or `0` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport/width)\n     */\n    readonly width: number;\n    addEventListener<K extends keyof VisualViewportEventMap>(type: K, listener: (this: VisualViewport, ev: VisualViewportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof VisualViewportEventMap>(type: K, listener: (this: VisualViewport, ev: VisualViewportEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VisualViewport: {\n    prototype: VisualViewport;\n    new(): VisualViewport;\n};\n\n/**\n * The **`WEBGL_color_buffer_float`** extension is part of the WebGL API and adds the ability to render to 32-bit floating-point color buffers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_color_buffer_float)\n */\ninterface WEBGL_color_buffer_float {\n    readonly RGBA32F_EXT: 0x8814;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: 0x8211;\n    readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;\n}\n\n/**\n * The **`WEBGL_compressed_texture_astc`** extension is part of the WebGL API and exposes Adaptive Scalable Texture Compression (ASTC) compressed texture formats to WebGL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc)\n */\ninterface WEBGL_compressed_texture_astc {\n    /**\n     * The **`WEBGL_compressed_texture_astc.getSupportedProfiles()`** method returns an array of strings containing the names of the ASTC profiles supported by the implementation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc/getSupportedProfiles)\n     */\n    getSupportedProfiles(): string[];\n    readonly COMPRESSED_RGBA_ASTC_4x4_KHR: 0x93B0;\n    readonly COMPRESSED_RGBA_ASTC_5x4_KHR: 0x93B1;\n    readonly COMPRESSED_RGBA_ASTC_5x5_KHR: 0x93B2;\n    readonly COMPRESSED_RGBA_ASTC_6x5_KHR: 0x93B3;\n    readonly COMPRESSED_RGBA_ASTC_6x6_KHR: 0x93B4;\n    readonly COMPRESSED_RGBA_ASTC_8x5_KHR: 0x93B5;\n    readonly COMPRESSED_RGBA_ASTC_8x6_KHR: 0x93B6;\n    readonly COMPRESSED_RGBA_ASTC_8x8_KHR: 0x93B7;\n    readonly COMPRESSED_RGBA_ASTC_10x5_KHR: 0x93B8;\n    readonly COMPRESSED_RGBA_ASTC_10x6_KHR: 0x93B9;\n    readonly COMPRESSED_RGBA_ASTC_10x8_KHR: 0x93BA;\n    readonly COMPRESSED_RGBA_ASTC_10x10_KHR: 0x93BB;\n    readonly COMPRESSED_RGBA_ASTC_12x10_KHR: 0x93BC;\n    readonly COMPRESSED_RGBA_ASTC_12x12_KHR: 0x93BD;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR: 0x93D0;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR: 0x93D1;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR: 0x93D2;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR: 0x93D3;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR: 0x93D4;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR: 0x93D5;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR: 0x93D6;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: 0x93D7;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR: 0x93D8;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR: 0x93D9;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR: 0x93DA;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR: 0x93DB;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR: 0x93DC;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR: 0x93DD;\n}\n\n/**\n * The **`WEBGL_compressed_texture_etc`** extension is part of the WebGL API and exposes 10 ETC/EAC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc)\n */\ninterface WEBGL_compressed_texture_etc {\n    readonly COMPRESSED_R11_EAC: 0x9270;\n    readonly COMPRESSED_SIGNED_R11_EAC: 0x9271;\n    readonly COMPRESSED_RG11_EAC: 0x9272;\n    readonly COMPRESSED_SIGNED_RG11_EAC: 0x9273;\n    readonly COMPRESSED_RGB8_ETC2: 0x9274;\n    readonly COMPRESSED_SRGB8_ETC2: 0x9275;\n    readonly COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2: 0x9276;\n    readonly COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2: 0x9277;\n    readonly COMPRESSED_RGBA8_ETC2_EAC: 0x9278;\n    readonly COMPRESSED_SRGB8_ALPHA8_ETC2_EAC: 0x9279;\n}\n\n/**\n * The **`WEBGL_compressed_texture_etc1`** extension is part of the WebGL API and exposes the ETC1 compressed texture format.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc1)\n */\ninterface WEBGL_compressed_texture_etc1 {\n    readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;\n}\n\n/**\n * The **`WEBGL_compressed_texture_pvrtc`** extension is part of the WebGL API and exposes four PVRTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_pvrtc)\n */\ninterface WEBGL_compressed_texture_pvrtc {\n    readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;\n    readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;\n    readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;\n    readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;\n}\n\n/**\n * The **`WEBGL_compressed_texture_s3tc`** extension is part of the WebGL API and exposes four S3TC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc)\n */\ninterface WEBGL_compressed_texture_s3tc {\n    readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;\n    readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: 0x83F1;\n    readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: 0x83F2;\n    readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: 0x83F3;\n}\n\n/**\n * The **`WEBGL_compressed_texture_s3tc_srgb`** extension is part of the WebGL API and exposes four S3TC compressed texture formats for the sRGB colorspace.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc_srgb)\n */\ninterface WEBGL_compressed_texture_s3tc_srgb {\n    readonly COMPRESSED_SRGB_S3TC_DXT1_EXT: 0x8C4C;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT: 0x8C4D;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT: 0x8C4E;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT: 0x8C4F;\n}\n\n/**\n * The **`WEBGL_debug_renderer_info`** extension is part of the WebGL API and exposes two constants with information about the graphics driver for debugging purposes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_renderer_info)\n */\ninterface WEBGL_debug_renderer_info {\n    readonly UNMASKED_VENDOR_WEBGL: 0x9245;\n    readonly UNMASKED_RENDERER_WEBGL: 0x9246;\n}\n\n/**\n * The **`WEBGL_debug_shaders`** extension is part of the WebGL API and exposes a method to debug shaders from privileged contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders)\n */\ninterface WEBGL_debug_shaders {\n    /**\n     * The **`WEBGL_debug_shaders.getTranslatedShaderSource()`** method is part of the WebGL API and allows you to debug a translated shader.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders/getTranslatedShaderSource)\n     */\n    getTranslatedShaderSource(shader: WebGLShader): string;\n}\n\n/**\n * The **`WEBGL_depth_texture`** extension is part of the WebGL API and defines 2D depth and depth-stencil textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_depth_texture)\n */\ninterface WEBGL_depth_texture {\n    readonly UNSIGNED_INT_24_8_WEBGL: 0x84FA;\n}\n\n/**\n * The **`WEBGL_draw_buffers`** extension is part of the WebGL API and enables a fragment shader to write to several textures, which is useful for deferred shading, for example.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers)\n */\ninterface WEBGL_draw_buffers {\n    /**\n     * The **`WEBGL_draw_buffers.drawBuffersWEBGL()`** method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL)\n     */\n    drawBuffersWEBGL(buffers: GLenum[]): void;\n    readonly COLOR_ATTACHMENT0_WEBGL: 0x8CE0;\n    readonly COLOR_ATTACHMENT1_WEBGL: 0x8CE1;\n    readonly COLOR_ATTACHMENT2_WEBGL: 0x8CE2;\n    readonly COLOR_ATTACHMENT3_WEBGL: 0x8CE3;\n    readonly COLOR_ATTACHMENT4_WEBGL: 0x8CE4;\n    readonly COLOR_ATTACHMENT5_WEBGL: 0x8CE5;\n    readonly COLOR_ATTACHMENT6_WEBGL: 0x8CE6;\n    readonly COLOR_ATTACHMENT7_WEBGL: 0x8CE7;\n    readonly COLOR_ATTACHMENT8_WEBGL: 0x8CE8;\n    readonly COLOR_ATTACHMENT9_WEBGL: 0x8CE9;\n    readonly COLOR_ATTACHMENT10_WEBGL: 0x8CEA;\n    readonly COLOR_ATTACHMENT11_WEBGL: 0x8CEB;\n    readonly COLOR_ATTACHMENT12_WEBGL: 0x8CEC;\n    readonly COLOR_ATTACHMENT13_WEBGL: 0x8CED;\n    readonly COLOR_ATTACHMENT14_WEBGL: 0x8CEE;\n    readonly COLOR_ATTACHMENT15_WEBGL: 0x8CEF;\n    readonly DRAW_BUFFER0_WEBGL: 0x8825;\n    readonly DRAW_BUFFER1_WEBGL: 0x8826;\n    readonly DRAW_BUFFER2_WEBGL: 0x8827;\n    readonly DRAW_BUFFER3_WEBGL: 0x8828;\n    readonly DRAW_BUFFER4_WEBGL: 0x8829;\n    readonly DRAW_BUFFER5_WEBGL: 0x882A;\n    readonly DRAW_BUFFER6_WEBGL: 0x882B;\n    readonly DRAW_BUFFER7_WEBGL: 0x882C;\n    readonly DRAW_BUFFER8_WEBGL: 0x882D;\n    readonly DRAW_BUFFER9_WEBGL: 0x882E;\n    readonly DRAW_BUFFER10_WEBGL: 0x882F;\n    readonly DRAW_BUFFER11_WEBGL: 0x8830;\n    readonly DRAW_BUFFER12_WEBGL: 0x8831;\n    readonly DRAW_BUFFER13_WEBGL: 0x8832;\n    readonly DRAW_BUFFER14_WEBGL: 0x8833;\n    readonly DRAW_BUFFER15_WEBGL: 0x8834;\n    readonly MAX_COLOR_ATTACHMENTS_WEBGL: 0x8CDF;\n    readonly MAX_DRAW_BUFFERS_WEBGL: 0x8824;\n}\n\n/**\n * The **WEBGL_lose_context** extension is part of the WebGL API and exposes functions to simulate losing and restoring a WebGLRenderingContext.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context)\n */\ninterface WEBGL_lose_context {\n    /**\n     * The **WEBGL_lose_context.loseContext()** method is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/loseContext)\n     */\n    loseContext(): void;\n    /**\n     * The **WEBGL_lose_context.restoreContext()** method is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/restoreContext)\n     */\n    restoreContext(): void;\n}\n\n/**\n * The **`WEBGL_multi_draw`** extension is part of the WebGL API and allows to render more than one primitive with a single function call.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw)\n */\ninterface WEBGL_multi_draw {\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL)\n     */\n    multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | GLint[], firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL)\n     */\n    multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | GLint[], firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL)\n     */\n    multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | GLsizei[], offsetsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL)\n     */\n    multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | GLsizei[], offsetsOffset: number, drawcount: GLsizei): void;\n}\n\n/**\n * The **`WakeLock`** interface of the Screen Wake Lock API can be used to request a lock that prevents device screens from dimming or locking when an application needs to keep running.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLock)\n */\ninterface WakeLock {\n    /**\n     * The **`request()`** method of the WakeLock interface returns a Promise that fulfills with a WakeLockSentinel object if the system screen wake lock is granted.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLock/request)\n     */\n    request(type?: WakeLockType): Promise<WakeLockSentinel>;\n}\n\ndeclare var WakeLock: {\n    prototype: WakeLock;\n    new(): WakeLock;\n};\n\ninterface WakeLockSentinelEventMap {\n    \"release\": Event;\n}\n\n/**\n * The **`WakeLockSentinel`** interface of the Screen Wake Lock API can be used to monitor the status of the platform screen wake lock, and manually release the lock when needed.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLockSentinel)\n */\ninterface WakeLockSentinel extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLockSentinel/release_event) */\n    onrelease: ((this: WakeLockSentinel, ev: Event) => any) | null;\n    /**\n     * The **`released`** read-only property of the WakeLockSentinel interface returns a boolean that indicates whether a WakeLockSentinel has been released.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLockSentinel/released)\n     */\n    readonly released: boolean;\n    /**\n     * The **`type`** read-only property of the WakeLockSentinel interface returns a string representation of the currently acquired WakeLockSentinel type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLockSentinel/type)\n     */\n    readonly type: WakeLockType;\n    /**\n     * The **`release()`** method of the WakeLockSentinel interface releases the WakeLockSentinel, returning a Promise that is resolved once the sentinel has been successfully released.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WakeLockSentinel/release)\n     */\n    release(): Promise<void>;\n    addEventListener<K extends keyof WakeLockSentinelEventMap>(type: K, listener: (this: WakeLockSentinel, ev: WakeLockSentinelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WakeLockSentinelEventMap>(type: K, listener: (this: WakeLockSentinel, ev: WakeLockSentinelEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var WakeLockSentinel: {\n    prototype: WakeLockSentinel;\n    new(): WakeLockSentinel;\n};\n\n/**\n * The **`WaveShaperNode`** interface represents a non-linear distorter.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WaveShaperNode)\n */\ninterface WaveShaperNode extends AudioNode {\n    /**\n     * The `curve` property of the WaveShaperNode interface is a Float32Array of numbers describing the distortion to apply.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WaveShaperNode/curve)\n     */\n    curve: Float32Array<ArrayBuffer> | null;\n    /**\n     * The `oversample` property of the WaveShaperNode interface is an enumerated value indicating if oversampling must be used.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WaveShaperNode/oversample)\n     */\n    oversample: OverSampleType;\n}\n\ndeclare var WaveShaperNode: {\n    prototype: WaveShaperNode;\n    new(context: BaseAudioContext, options?: WaveShaperOptions): WaveShaperNode;\n};\n\n/**\n * The **WebGL2RenderingContext** interface provides the OpenGL ES 3.0 rendering context for the drawing surface of an HTML canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext)\n */\ninterface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {\n}\n\ndeclare var WebGL2RenderingContext: {\n    prototype: WebGL2RenderingContext;\n    new(): WebGL2RenderingContext;\n    readonly READ_BUFFER: 0x0C02;\n    readonly UNPACK_ROW_LENGTH: 0x0CF2;\n    readonly UNPACK_SKIP_ROWS: 0x0CF3;\n    readonly UNPACK_SKIP_PIXELS: 0x0CF4;\n    readonly PACK_ROW_LENGTH: 0x0D02;\n    readonly PACK_SKIP_ROWS: 0x0D03;\n    readonly PACK_SKIP_PIXELS: 0x0D04;\n    readonly COLOR: 0x1800;\n    readonly DEPTH: 0x1801;\n    readonly STENCIL: 0x1802;\n    readonly RED: 0x1903;\n    readonly RGB8: 0x8051;\n    readonly RGB10_A2: 0x8059;\n    readonly TEXTURE_BINDING_3D: 0x806A;\n    readonly UNPACK_SKIP_IMAGES: 0x806D;\n    readonly UNPACK_IMAGE_HEIGHT: 0x806E;\n    readonly TEXTURE_3D: 0x806F;\n    readonly TEXTURE_WRAP_R: 0x8072;\n    readonly MAX_3D_TEXTURE_SIZE: 0x8073;\n    readonly UNSIGNED_INT_2_10_10_10_REV: 0x8368;\n    readonly MAX_ELEMENTS_VERTICES: 0x80E8;\n    readonly MAX_ELEMENTS_INDICES: 0x80E9;\n    readonly TEXTURE_MIN_LOD: 0x813A;\n    readonly TEXTURE_MAX_LOD: 0x813B;\n    readonly TEXTURE_BASE_LEVEL: 0x813C;\n    readonly TEXTURE_MAX_LEVEL: 0x813D;\n    readonly MIN: 0x8007;\n    readonly MAX: 0x8008;\n    readonly DEPTH_COMPONENT24: 0x81A6;\n    readonly MAX_TEXTURE_LOD_BIAS: 0x84FD;\n    readonly TEXTURE_COMPARE_MODE: 0x884C;\n    readonly TEXTURE_COMPARE_FUNC: 0x884D;\n    readonly CURRENT_QUERY: 0x8865;\n    readonly QUERY_RESULT: 0x8866;\n    readonly QUERY_RESULT_AVAILABLE: 0x8867;\n    readonly STREAM_READ: 0x88E1;\n    readonly STREAM_COPY: 0x88E2;\n    readonly STATIC_READ: 0x88E5;\n    readonly STATIC_COPY: 0x88E6;\n    readonly DYNAMIC_READ: 0x88E9;\n    readonly DYNAMIC_COPY: 0x88EA;\n    readonly MAX_DRAW_BUFFERS: 0x8824;\n    readonly DRAW_BUFFER0: 0x8825;\n    readonly DRAW_BUFFER1: 0x8826;\n    readonly DRAW_BUFFER2: 0x8827;\n    readonly DRAW_BUFFER3: 0x8828;\n    readonly DRAW_BUFFER4: 0x8829;\n    readonly DRAW_BUFFER5: 0x882A;\n    readonly DRAW_BUFFER6: 0x882B;\n    readonly DRAW_BUFFER7: 0x882C;\n    readonly DRAW_BUFFER8: 0x882D;\n    readonly DRAW_BUFFER9: 0x882E;\n    readonly DRAW_BUFFER10: 0x882F;\n    readonly DRAW_BUFFER11: 0x8830;\n    readonly DRAW_BUFFER12: 0x8831;\n    readonly DRAW_BUFFER13: 0x8832;\n    readonly DRAW_BUFFER14: 0x8833;\n    readonly DRAW_BUFFER15: 0x8834;\n    readonly MAX_FRAGMENT_UNIFORM_COMPONENTS: 0x8B49;\n    readonly MAX_VERTEX_UNIFORM_COMPONENTS: 0x8B4A;\n    readonly SAMPLER_3D: 0x8B5F;\n    readonly SAMPLER_2D_SHADOW: 0x8B62;\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT: 0x8B8B;\n    readonly PIXEL_PACK_BUFFER: 0x88EB;\n    readonly PIXEL_UNPACK_BUFFER: 0x88EC;\n    readonly PIXEL_PACK_BUFFER_BINDING: 0x88ED;\n    readonly PIXEL_UNPACK_BUFFER_BINDING: 0x88EF;\n    readonly FLOAT_MAT2x3: 0x8B65;\n    readonly FLOAT_MAT2x4: 0x8B66;\n    readonly FLOAT_MAT3x2: 0x8B67;\n    readonly FLOAT_MAT3x4: 0x8B68;\n    readonly FLOAT_MAT4x2: 0x8B69;\n    readonly FLOAT_MAT4x3: 0x8B6A;\n    readonly SRGB: 0x8C40;\n    readonly SRGB8: 0x8C41;\n    readonly SRGB8_ALPHA8: 0x8C43;\n    readonly COMPARE_REF_TO_TEXTURE: 0x884E;\n    readonly RGBA32F: 0x8814;\n    readonly RGB32F: 0x8815;\n    readonly RGBA16F: 0x881A;\n    readonly RGB16F: 0x881B;\n    readonly VERTEX_ATTRIB_ARRAY_INTEGER: 0x88FD;\n    readonly MAX_ARRAY_TEXTURE_LAYERS: 0x88FF;\n    readonly MIN_PROGRAM_TEXEL_OFFSET: 0x8904;\n    readonly MAX_PROGRAM_TEXEL_OFFSET: 0x8905;\n    readonly MAX_VARYING_COMPONENTS: 0x8B4B;\n    readonly TEXTURE_2D_ARRAY: 0x8C1A;\n    readonly TEXTURE_BINDING_2D_ARRAY: 0x8C1D;\n    readonly R11F_G11F_B10F: 0x8C3A;\n    readonly UNSIGNED_INT_10F_11F_11F_REV: 0x8C3B;\n    readonly RGB9_E5: 0x8C3D;\n    readonly UNSIGNED_INT_5_9_9_9_REV: 0x8C3E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_MODE: 0x8C7F;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: 0x8C80;\n    readonly TRANSFORM_FEEDBACK_VARYINGS: 0x8C83;\n    readonly TRANSFORM_FEEDBACK_BUFFER_START: 0x8C84;\n    readonly TRANSFORM_FEEDBACK_BUFFER_SIZE: 0x8C85;\n    readonly TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: 0x8C88;\n    readonly RASTERIZER_DISCARD: 0x8C89;\n    readonly MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: 0x8C8A;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: 0x8C8B;\n    readonly INTERLEAVED_ATTRIBS: 0x8C8C;\n    readonly SEPARATE_ATTRIBS: 0x8C8D;\n    readonly TRANSFORM_FEEDBACK_BUFFER: 0x8C8E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_BINDING: 0x8C8F;\n    readonly RGBA32UI: 0x8D70;\n    readonly RGB32UI: 0x8D71;\n    readonly RGBA16UI: 0x8D76;\n    readonly RGB16UI: 0x8D77;\n    readonly RGBA8UI: 0x8D7C;\n    readonly RGB8UI: 0x8D7D;\n    readonly RGBA32I: 0x8D82;\n    readonly RGB32I: 0x8D83;\n    readonly RGBA16I: 0x8D88;\n    readonly RGB16I: 0x8D89;\n    readonly RGBA8I: 0x8D8E;\n    readonly RGB8I: 0x8D8F;\n    readonly RED_INTEGER: 0x8D94;\n    readonly RGB_INTEGER: 0x8D98;\n    readonly RGBA_INTEGER: 0x8D99;\n    readonly SAMPLER_2D_ARRAY: 0x8DC1;\n    readonly SAMPLER_2D_ARRAY_SHADOW: 0x8DC4;\n    readonly SAMPLER_CUBE_SHADOW: 0x8DC5;\n    readonly UNSIGNED_INT_VEC2: 0x8DC6;\n    readonly UNSIGNED_INT_VEC3: 0x8DC7;\n    readonly UNSIGNED_INT_VEC4: 0x8DC8;\n    readonly INT_SAMPLER_2D: 0x8DCA;\n    readonly INT_SAMPLER_3D: 0x8DCB;\n    readonly INT_SAMPLER_CUBE: 0x8DCC;\n    readonly INT_SAMPLER_2D_ARRAY: 0x8DCF;\n    readonly UNSIGNED_INT_SAMPLER_2D: 0x8DD2;\n    readonly UNSIGNED_INT_SAMPLER_3D: 0x8DD3;\n    readonly UNSIGNED_INT_SAMPLER_CUBE: 0x8DD4;\n    readonly UNSIGNED_INT_SAMPLER_2D_ARRAY: 0x8DD7;\n    readonly DEPTH_COMPONENT32F: 0x8CAC;\n    readonly DEPTH32F_STENCIL8: 0x8CAD;\n    readonly FLOAT_32_UNSIGNED_INT_24_8_REV: 0x8DAD;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: 0x8210;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: 0x8211;\n    readonly FRAMEBUFFER_ATTACHMENT_RED_SIZE: 0x8212;\n    readonly FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: 0x8213;\n    readonly FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: 0x8214;\n    readonly FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: 0x8215;\n    readonly FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: 0x8216;\n    readonly FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: 0x8217;\n    readonly FRAMEBUFFER_DEFAULT: 0x8218;\n    readonly UNSIGNED_INT_24_8: 0x84FA;\n    readonly DEPTH24_STENCIL8: 0x88F0;\n    readonly UNSIGNED_NORMALIZED: 0x8C17;\n    readonly DRAW_FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly READ_FRAMEBUFFER: 0x8CA8;\n    readonly DRAW_FRAMEBUFFER: 0x8CA9;\n    readonly READ_FRAMEBUFFER_BINDING: 0x8CAA;\n    readonly RENDERBUFFER_SAMPLES: 0x8CAB;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: 0x8CD4;\n    readonly MAX_COLOR_ATTACHMENTS: 0x8CDF;\n    readonly COLOR_ATTACHMENT1: 0x8CE1;\n    readonly COLOR_ATTACHMENT2: 0x8CE2;\n    readonly COLOR_ATTACHMENT3: 0x8CE3;\n    readonly COLOR_ATTACHMENT4: 0x8CE4;\n    readonly COLOR_ATTACHMENT5: 0x8CE5;\n    readonly COLOR_ATTACHMENT6: 0x8CE6;\n    readonly COLOR_ATTACHMENT7: 0x8CE7;\n    readonly COLOR_ATTACHMENT8: 0x8CE8;\n    readonly COLOR_ATTACHMENT9: 0x8CE9;\n    readonly COLOR_ATTACHMENT10: 0x8CEA;\n    readonly COLOR_ATTACHMENT11: 0x8CEB;\n    readonly COLOR_ATTACHMENT12: 0x8CEC;\n    readonly COLOR_ATTACHMENT13: 0x8CED;\n    readonly COLOR_ATTACHMENT14: 0x8CEE;\n    readonly COLOR_ATTACHMENT15: 0x8CEF;\n    readonly FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: 0x8D56;\n    readonly MAX_SAMPLES: 0x8D57;\n    readonly HALF_FLOAT: 0x140B;\n    readonly RG: 0x8227;\n    readonly RG_INTEGER: 0x8228;\n    readonly R8: 0x8229;\n    readonly RG8: 0x822B;\n    readonly R16F: 0x822D;\n    readonly R32F: 0x822E;\n    readonly RG16F: 0x822F;\n    readonly RG32F: 0x8230;\n    readonly R8I: 0x8231;\n    readonly R8UI: 0x8232;\n    readonly R16I: 0x8233;\n    readonly R16UI: 0x8234;\n    readonly R32I: 0x8235;\n    readonly R32UI: 0x8236;\n    readonly RG8I: 0x8237;\n    readonly RG8UI: 0x8238;\n    readonly RG16I: 0x8239;\n    readonly RG16UI: 0x823A;\n    readonly RG32I: 0x823B;\n    readonly RG32UI: 0x823C;\n    readonly VERTEX_ARRAY_BINDING: 0x85B5;\n    readonly R8_SNORM: 0x8F94;\n    readonly RG8_SNORM: 0x8F95;\n    readonly RGB8_SNORM: 0x8F96;\n    readonly RGBA8_SNORM: 0x8F97;\n    readonly SIGNED_NORMALIZED: 0x8F9C;\n    readonly COPY_READ_BUFFER: 0x8F36;\n    readonly COPY_WRITE_BUFFER: 0x8F37;\n    readonly COPY_READ_BUFFER_BINDING: 0x8F36;\n    readonly COPY_WRITE_BUFFER_BINDING: 0x8F37;\n    readonly UNIFORM_BUFFER: 0x8A11;\n    readonly UNIFORM_BUFFER_BINDING: 0x8A28;\n    readonly UNIFORM_BUFFER_START: 0x8A29;\n    readonly UNIFORM_BUFFER_SIZE: 0x8A2A;\n    readonly MAX_VERTEX_UNIFORM_BLOCKS: 0x8A2B;\n    readonly MAX_FRAGMENT_UNIFORM_BLOCKS: 0x8A2D;\n    readonly MAX_COMBINED_UNIFORM_BLOCKS: 0x8A2E;\n    readonly MAX_UNIFORM_BUFFER_BINDINGS: 0x8A2F;\n    readonly MAX_UNIFORM_BLOCK_SIZE: 0x8A30;\n    readonly MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: 0x8A31;\n    readonly MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: 0x8A33;\n    readonly UNIFORM_BUFFER_OFFSET_ALIGNMENT: 0x8A34;\n    readonly ACTIVE_UNIFORM_BLOCKS: 0x8A36;\n    readonly UNIFORM_TYPE: 0x8A37;\n    readonly UNIFORM_SIZE: 0x8A38;\n    readonly UNIFORM_BLOCK_INDEX: 0x8A3A;\n    readonly UNIFORM_OFFSET: 0x8A3B;\n    readonly UNIFORM_ARRAY_STRIDE: 0x8A3C;\n    readonly UNIFORM_MATRIX_STRIDE: 0x8A3D;\n    readonly UNIFORM_IS_ROW_MAJOR: 0x8A3E;\n    readonly UNIFORM_BLOCK_BINDING: 0x8A3F;\n    readonly UNIFORM_BLOCK_DATA_SIZE: 0x8A40;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORMS: 0x8A42;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: 0x8A43;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: 0x8A44;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: 0x8A46;\n    readonly INVALID_INDEX: 0xFFFFFFFF;\n    readonly MAX_VERTEX_OUTPUT_COMPONENTS: 0x9122;\n    readonly MAX_FRAGMENT_INPUT_COMPONENTS: 0x9125;\n    readonly MAX_SERVER_WAIT_TIMEOUT: 0x9111;\n    readonly OBJECT_TYPE: 0x9112;\n    readonly SYNC_CONDITION: 0x9113;\n    readonly SYNC_STATUS: 0x9114;\n    readonly SYNC_FLAGS: 0x9115;\n    readonly SYNC_FENCE: 0x9116;\n    readonly SYNC_GPU_COMMANDS_COMPLETE: 0x9117;\n    readonly UNSIGNALED: 0x9118;\n    readonly SIGNALED: 0x9119;\n    readonly ALREADY_SIGNALED: 0x911A;\n    readonly TIMEOUT_EXPIRED: 0x911B;\n    readonly CONDITION_SATISFIED: 0x911C;\n    readonly WAIT_FAILED: 0x911D;\n    readonly SYNC_FLUSH_COMMANDS_BIT: 0x00000001;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR: 0x88FE;\n    readonly ANY_SAMPLES_PASSED: 0x8C2F;\n    readonly ANY_SAMPLES_PASSED_CONSERVATIVE: 0x8D6A;\n    readonly SAMPLER_BINDING: 0x8919;\n    readonly RGB10_A2UI: 0x906F;\n    readonly INT_2_10_10_10_REV: 0x8D9F;\n    readonly TRANSFORM_FEEDBACK: 0x8E22;\n    readonly TRANSFORM_FEEDBACK_PAUSED: 0x8E23;\n    readonly TRANSFORM_FEEDBACK_ACTIVE: 0x8E24;\n    readonly TRANSFORM_FEEDBACK_BINDING: 0x8E25;\n    readonly TEXTURE_IMMUTABLE_FORMAT: 0x912F;\n    readonly MAX_ELEMENT_INDEX: 0x8D6B;\n    readonly TEXTURE_IMMUTABLE_LEVELS: 0x82DF;\n    readonly TIMEOUT_IGNORED: -1;\n    readonly MAX_CLIENT_WAIT_TIMEOUT_WEBGL: 0x9247;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n};\n\ninterface WebGL2RenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/beginQuery) */\n    beginQuery(target: GLenum, query: WebGLQuery): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/beginTransformFeedback) */\n    beginTransformFeedback(primitiveMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindBufferBase) */\n    bindBufferBase(target: GLenum, index: GLuint, buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindBufferRange) */\n    bindBufferRange(target: GLenum, index: GLuint, buffer: WebGLBuffer | null, offset: GLintptr, size: GLsizeiptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindSampler) */\n    bindSampler(unit: GLuint, sampler: WebGLSampler | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindTransformFeedback) */\n    bindTransformFeedback(target: GLenum, tf: WebGLTransformFeedback | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindVertexArray) */\n    bindVertexArray(array: WebGLVertexArrayObject | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/blitFramebuffer) */\n    blitFramebuffer(srcX0: GLint, srcY0: GLint, srcX1: GLint, srcY1: GLint, dstX0: GLint, dstY0: GLint, dstX1: GLint, dstY1: GLint, mask: GLbitfield, filter: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfi(buffer: GLenum, drawbuffer: GLint, depth: GLfloat, stencil: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Float32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Int32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */\n    clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */\n    compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */\n    compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyBufferSubData) */\n    copyBufferSubData(readTarget: GLenum, writeTarget: GLenum, readOffset: GLintptr, writeOffset: GLintptr, size: GLsizeiptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyTexSubImage3D) */\n    copyTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createQuery) */\n    createQuery(): WebGLQuery;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createSampler) */\n    createSampler(): WebGLSampler;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createTransformFeedback) */\n    createTransformFeedback(): WebGLTransformFeedback;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createVertexArray) */\n    createVertexArray(): WebGLVertexArrayObject;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteQuery) */\n    deleteQuery(query: WebGLQuery | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteSampler) */\n    deleteSampler(sampler: WebGLSampler | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteSync) */\n    deleteSync(sync: WebGLSync | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteTransformFeedback) */\n    deleteTransformFeedback(tf: WebGLTransformFeedback | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteVertexArray) */\n    deleteVertexArray(vertexArray: WebGLVertexArrayObject | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawArraysInstanced) */\n    drawArraysInstanced(mode: GLenum, first: GLint, count: GLsizei, instanceCount: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawBuffers) */\n    drawBuffers(buffers: GLenum[]): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawElementsInstanced) */\n    drawElementsInstanced(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr, instanceCount: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawRangeElements) */\n    drawRangeElements(mode: GLenum, start: GLuint, end: GLuint, count: GLsizei, type: GLenum, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/endQuery) */\n    endQuery(target: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/endTransformFeedback) */\n    endTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/fenceSync) */\n    fenceSync(condition: GLenum, flags: GLbitfield): WebGLSync | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/framebufferTextureLayer) */\n    framebufferTextureLayer(target: GLenum, attachment: GLenum, texture: WebGLTexture | null, level: GLint, layer: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniformBlockName) */\n    getActiveUniformBlockName(program: WebGLProgram, uniformBlockIndex: GLuint): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniformBlockParameter) */\n    getActiveUniformBlockParameter(program: WebGLProgram, uniformBlockIndex: GLuint, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */\n    getActiveUniforms(program: WebGLProgram, uniformIndices: GLuint[], pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getBufferSubData) */\n    getBufferSubData(target: GLenum, srcByteOffset: GLintptr, dstBuffer: ArrayBufferView<ArrayBufferLike>, dstOffset?: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getFragDataLocation) */\n    getFragDataLocation(program: WebGLProgram, name: string): GLint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getIndexedParameter) */\n    getIndexedParameter(target: GLenum, index: GLuint): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getInternalformatParameter) */\n    getInternalformatParameter(target: GLenum, internalformat: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getQuery) */\n    getQuery(target: GLenum, pname: GLenum): WebGLQuery | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getQueryParameter) */\n    getQueryParameter(query: WebGLQuery, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getSamplerParameter) */\n    getSamplerParameter(sampler: WebGLSampler, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getSyncParameter) */\n    getSyncParameter(sync: WebGLSync, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getTransformFeedbackVarying) */\n    getTransformFeedbackVarying(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformBlockIndex) */\n    getUniformBlockIndex(program: WebGLProgram, uniformBlockName: string): GLuint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */\n    getUniformIndices(program: WebGLProgram, uniformNames: string[]): GLuint[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */\n    invalidateFramebuffer(target: GLenum, attachments: GLenum[]): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */\n    invalidateSubFramebuffer(target: GLenum, attachments: GLenum[], x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isQuery) */\n    isQuery(query: WebGLQuery | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isSampler) */\n    isSampler(sampler: WebGLSampler | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isSync) */\n    isSync(sync: WebGLSync | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isTransformFeedback) */\n    isTransformFeedback(tf: WebGLTransformFeedback | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isVertexArray) */\n    isVertexArray(vertexArray: WebGLVertexArrayObject | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/pauseTransformFeedback) */\n    pauseTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/readBuffer) */\n    readBuffer(src: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/renderbufferStorageMultisample) */\n    renderbufferStorageMultisample(target: GLenum, samples: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/resumeTransformFeedback) */\n    resumeTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/samplerParameter) */\n    samplerParameterf(sampler: WebGLSampler, pname: GLenum, param: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/samplerParameter) */\n    samplerParameteri(sampler: WebGLSampler, pname: GLenum, param: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texImage3D) */\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage2D) */\n    texStorage2D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage3D) */\n    texStorage3D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texSubImage3D) */\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike> | null, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */\n    transformFeedbackVaryings(program: WebGLProgram, varyings: string[], bufferMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1ui(location: WebGLUniformLocation | null, v0: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint, v3: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformBlockBinding) */\n    uniformBlockBinding(program: WebGLProgram, uniformBlockIndex: GLuint, uniformBlockBinding: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribDivisor) */\n    vertexAttribDivisor(index: GLuint, divisor: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4i(index: GLuint, x: GLint, y: GLint, z: GLint, w: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4iv(index: GLuint, values: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4ui(index: GLuint, x: GLuint, y: GLuint, z: GLuint, w: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4uiv(index: GLuint, values: Uint32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribIPointer) */\n    vertexAttribIPointer(index: GLuint, size: GLint, type: GLenum, stride: GLsizei, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/waitSync) */\n    waitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLint64): void;\n    readonly READ_BUFFER: 0x0C02;\n    readonly UNPACK_ROW_LENGTH: 0x0CF2;\n    readonly UNPACK_SKIP_ROWS: 0x0CF3;\n    readonly UNPACK_SKIP_PIXELS: 0x0CF4;\n    readonly PACK_ROW_LENGTH: 0x0D02;\n    readonly PACK_SKIP_ROWS: 0x0D03;\n    readonly PACK_SKIP_PIXELS: 0x0D04;\n    readonly COLOR: 0x1800;\n    readonly DEPTH: 0x1801;\n    readonly STENCIL: 0x1802;\n    readonly RED: 0x1903;\n    readonly RGB8: 0x8051;\n    readonly RGB10_A2: 0x8059;\n    readonly TEXTURE_BINDING_3D: 0x806A;\n    readonly UNPACK_SKIP_IMAGES: 0x806D;\n    readonly UNPACK_IMAGE_HEIGHT: 0x806E;\n    readonly TEXTURE_3D: 0x806F;\n    readonly TEXTURE_WRAP_R: 0x8072;\n    readonly MAX_3D_TEXTURE_SIZE: 0x8073;\n    readonly UNSIGNED_INT_2_10_10_10_REV: 0x8368;\n    readonly MAX_ELEMENTS_VERTICES: 0x80E8;\n    readonly MAX_ELEMENTS_INDICES: 0x80E9;\n    readonly TEXTURE_MIN_LOD: 0x813A;\n    readonly TEXTURE_MAX_LOD: 0x813B;\n    readonly TEXTURE_BASE_LEVEL: 0x813C;\n    readonly TEXTURE_MAX_LEVEL: 0x813D;\n    readonly MIN: 0x8007;\n    readonly MAX: 0x8008;\n    readonly DEPTH_COMPONENT24: 0x81A6;\n    readonly MAX_TEXTURE_LOD_BIAS: 0x84FD;\n    readonly TEXTURE_COMPARE_MODE: 0x884C;\n    readonly TEXTURE_COMPARE_FUNC: 0x884D;\n    readonly CURRENT_QUERY: 0x8865;\n    readonly QUERY_RESULT: 0x8866;\n    readonly QUERY_RESULT_AVAILABLE: 0x8867;\n    readonly STREAM_READ: 0x88E1;\n    readonly STREAM_COPY: 0x88E2;\n    readonly STATIC_READ: 0x88E5;\n    readonly STATIC_COPY: 0x88E6;\n    readonly DYNAMIC_READ: 0x88E9;\n    readonly DYNAMIC_COPY: 0x88EA;\n    readonly MAX_DRAW_BUFFERS: 0x8824;\n    readonly DRAW_BUFFER0: 0x8825;\n    readonly DRAW_BUFFER1: 0x8826;\n    readonly DRAW_BUFFER2: 0x8827;\n    readonly DRAW_BUFFER3: 0x8828;\n    readonly DRAW_BUFFER4: 0x8829;\n    readonly DRAW_BUFFER5: 0x882A;\n    readonly DRAW_BUFFER6: 0x882B;\n    readonly DRAW_BUFFER7: 0x882C;\n    readonly DRAW_BUFFER8: 0x882D;\n    readonly DRAW_BUFFER9: 0x882E;\n    readonly DRAW_BUFFER10: 0x882F;\n    readonly DRAW_BUFFER11: 0x8830;\n    readonly DRAW_BUFFER12: 0x8831;\n    readonly DRAW_BUFFER13: 0x8832;\n    readonly DRAW_BUFFER14: 0x8833;\n    readonly DRAW_BUFFER15: 0x8834;\n    readonly MAX_FRAGMENT_UNIFORM_COMPONENTS: 0x8B49;\n    readonly MAX_VERTEX_UNIFORM_COMPONENTS: 0x8B4A;\n    readonly SAMPLER_3D: 0x8B5F;\n    readonly SAMPLER_2D_SHADOW: 0x8B62;\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT: 0x8B8B;\n    readonly PIXEL_PACK_BUFFER: 0x88EB;\n    readonly PIXEL_UNPACK_BUFFER: 0x88EC;\n    readonly PIXEL_PACK_BUFFER_BINDING: 0x88ED;\n    readonly PIXEL_UNPACK_BUFFER_BINDING: 0x88EF;\n    readonly FLOAT_MAT2x3: 0x8B65;\n    readonly FLOAT_MAT2x4: 0x8B66;\n    readonly FLOAT_MAT3x2: 0x8B67;\n    readonly FLOAT_MAT3x4: 0x8B68;\n    readonly FLOAT_MAT4x2: 0x8B69;\n    readonly FLOAT_MAT4x3: 0x8B6A;\n    readonly SRGB: 0x8C40;\n    readonly SRGB8: 0x8C41;\n    readonly SRGB8_ALPHA8: 0x8C43;\n    readonly COMPARE_REF_TO_TEXTURE: 0x884E;\n    readonly RGBA32F: 0x8814;\n    readonly RGB32F: 0x8815;\n    readonly RGBA16F: 0x881A;\n    readonly RGB16F: 0x881B;\n    readonly VERTEX_ATTRIB_ARRAY_INTEGER: 0x88FD;\n    readonly MAX_ARRAY_TEXTURE_LAYERS: 0x88FF;\n    readonly MIN_PROGRAM_TEXEL_OFFSET: 0x8904;\n    readonly MAX_PROGRAM_TEXEL_OFFSET: 0x8905;\n    readonly MAX_VARYING_COMPONENTS: 0x8B4B;\n    readonly TEXTURE_2D_ARRAY: 0x8C1A;\n    readonly TEXTURE_BINDING_2D_ARRAY: 0x8C1D;\n    readonly R11F_G11F_B10F: 0x8C3A;\n    readonly UNSIGNED_INT_10F_11F_11F_REV: 0x8C3B;\n    readonly RGB9_E5: 0x8C3D;\n    readonly UNSIGNED_INT_5_9_9_9_REV: 0x8C3E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_MODE: 0x8C7F;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: 0x8C80;\n    readonly TRANSFORM_FEEDBACK_VARYINGS: 0x8C83;\n    readonly TRANSFORM_FEEDBACK_BUFFER_START: 0x8C84;\n    readonly TRANSFORM_FEEDBACK_BUFFER_SIZE: 0x8C85;\n    readonly TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: 0x8C88;\n    readonly RASTERIZER_DISCARD: 0x8C89;\n    readonly MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: 0x8C8A;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: 0x8C8B;\n    readonly INTERLEAVED_ATTRIBS: 0x8C8C;\n    readonly SEPARATE_ATTRIBS: 0x8C8D;\n    readonly TRANSFORM_FEEDBACK_BUFFER: 0x8C8E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_BINDING: 0x8C8F;\n    readonly RGBA32UI: 0x8D70;\n    readonly RGB32UI: 0x8D71;\n    readonly RGBA16UI: 0x8D76;\n    readonly RGB16UI: 0x8D77;\n    readonly RGBA8UI: 0x8D7C;\n    readonly RGB8UI: 0x8D7D;\n    readonly RGBA32I: 0x8D82;\n    readonly RGB32I: 0x8D83;\n    readonly RGBA16I: 0x8D88;\n    readonly RGB16I: 0x8D89;\n    readonly RGBA8I: 0x8D8E;\n    readonly RGB8I: 0x8D8F;\n    readonly RED_INTEGER: 0x8D94;\n    readonly RGB_INTEGER: 0x8D98;\n    readonly RGBA_INTEGER: 0x8D99;\n    readonly SAMPLER_2D_ARRAY: 0x8DC1;\n    readonly SAMPLER_2D_ARRAY_SHADOW: 0x8DC4;\n    readonly SAMPLER_CUBE_SHADOW: 0x8DC5;\n    readonly UNSIGNED_INT_VEC2: 0x8DC6;\n    readonly UNSIGNED_INT_VEC3: 0x8DC7;\n    readonly UNSIGNED_INT_VEC4: 0x8DC8;\n    readonly INT_SAMPLER_2D: 0x8DCA;\n    readonly INT_SAMPLER_3D: 0x8DCB;\n    readonly INT_SAMPLER_CUBE: 0x8DCC;\n    readonly INT_SAMPLER_2D_ARRAY: 0x8DCF;\n    readonly UNSIGNED_INT_SAMPLER_2D: 0x8DD2;\n    readonly UNSIGNED_INT_SAMPLER_3D: 0x8DD3;\n    readonly UNSIGNED_INT_SAMPLER_CUBE: 0x8DD4;\n    readonly UNSIGNED_INT_SAMPLER_2D_ARRAY: 0x8DD7;\n    readonly DEPTH_COMPONENT32F: 0x8CAC;\n    readonly DEPTH32F_STENCIL8: 0x8CAD;\n    readonly FLOAT_32_UNSIGNED_INT_24_8_REV: 0x8DAD;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: 0x8210;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: 0x8211;\n    readonly FRAMEBUFFER_ATTACHMENT_RED_SIZE: 0x8212;\n    readonly FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: 0x8213;\n    readonly FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: 0x8214;\n    readonly FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: 0x8215;\n    readonly FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: 0x8216;\n    readonly FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: 0x8217;\n    readonly FRAMEBUFFER_DEFAULT: 0x8218;\n    readonly UNSIGNED_INT_24_8: 0x84FA;\n    readonly DEPTH24_STENCIL8: 0x88F0;\n    readonly UNSIGNED_NORMALIZED: 0x8C17;\n    readonly DRAW_FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly READ_FRAMEBUFFER: 0x8CA8;\n    readonly DRAW_FRAMEBUFFER: 0x8CA9;\n    readonly READ_FRAMEBUFFER_BINDING: 0x8CAA;\n    readonly RENDERBUFFER_SAMPLES: 0x8CAB;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: 0x8CD4;\n    readonly MAX_COLOR_ATTACHMENTS: 0x8CDF;\n    readonly COLOR_ATTACHMENT1: 0x8CE1;\n    readonly COLOR_ATTACHMENT2: 0x8CE2;\n    readonly COLOR_ATTACHMENT3: 0x8CE3;\n    readonly COLOR_ATTACHMENT4: 0x8CE4;\n    readonly COLOR_ATTACHMENT5: 0x8CE5;\n    readonly COLOR_ATTACHMENT6: 0x8CE6;\n    readonly COLOR_ATTACHMENT7: 0x8CE7;\n    readonly COLOR_ATTACHMENT8: 0x8CE8;\n    readonly COLOR_ATTACHMENT9: 0x8CE9;\n    readonly COLOR_ATTACHMENT10: 0x8CEA;\n    readonly COLOR_ATTACHMENT11: 0x8CEB;\n    readonly COLOR_ATTACHMENT12: 0x8CEC;\n    readonly COLOR_ATTACHMENT13: 0x8CED;\n    readonly COLOR_ATTACHMENT14: 0x8CEE;\n    readonly COLOR_ATTACHMENT15: 0x8CEF;\n    readonly FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: 0x8D56;\n    readonly MAX_SAMPLES: 0x8D57;\n    readonly HALF_FLOAT: 0x140B;\n    readonly RG: 0x8227;\n    readonly RG_INTEGER: 0x8228;\n    readonly R8: 0x8229;\n    readonly RG8: 0x822B;\n    readonly R16F: 0x822D;\n    readonly R32F: 0x822E;\n    readonly RG16F: 0x822F;\n    readonly RG32F: 0x8230;\n    readonly R8I: 0x8231;\n    readonly R8UI: 0x8232;\n    readonly R16I: 0x8233;\n    readonly R16UI: 0x8234;\n    readonly R32I: 0x8235;\n    readonly R32UI: 0x8236;\n    readonly RG8I: 0x8237;\n    readonly RG8UI: 0x8238;\n    readonly RG16I: 0x8239;\n    readonly RG16UI: 0x823A;\n    readonly RG32I: 0x823B;\n    readonly RG32UI: 0x823C;\n    readonly VERTEX_ARRAY_BINDING: 0x85B5;\n    readonly R8_SNORM: 0x8F94;\n    readonly RG8_SNORM: 0x8F95;\n    readonly RGB8_SNORM: 0x8F96;\n    readonly RGBA8_SNORM: 0x8F97;\n    readonly SIGNED_NORMALIZED: 0x8F9C;\n    readonly COPY_READ_BUFFER: 0x8F36;\n    readonly COPY_WRITE_BUFFER: 0x8F37;\n    readonly COPY_READ_BUFFER_BINDING: 0x8F36;\n    readonly COPY_WRITE_BUFFER_BINDING: 0x8F37;\n    readonly UNIFORM_BUFFER: 0x8A11;\n    readonly UNIFORM_BUFFER_BINDING: 0x8A28;\n    readonly UNIFORM_BUFFER_START: 0x8A29;\n    readonly UNIFORM_BUFFER_SIZE: 0x8A2A;\n    readonly MAX_VERTEX_UNIFORM_BLOCKS: 0x8A2B;\n    readonly MAX_FRAGMENT_UNIFORM_BLOCKS: 0x8A2D;\n    readonly MAX_COMBINED_UNIFORM_BLOCKS: 0x8A2E;\n    readonly MAX_UNIFORM_BUFFER_BINDINGS: 0x8A2F;\n    readonly MAX_UNIFORM_BLOCK_SIZE: 0x8A30;\n    readonly MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: 0x8A31;\n    readonly MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: 0x8A33;\n    readonly UNIFORM_BUFFER_OFFSET_ALIGNMENT: 0x8A34;\n    readonly ACTIVE_UNIFORM_BLOCKS: 0x8A36;\n    readonly UNIFORM_TYPE: 0x8A37;\n    readonly UNIFORM_SIZE: 0x8A38;\n    readonly UNIFORM_BLOCK_INDEX: 0x8A3A;\n    readonly UNIFORM_OFFSET: 0x8A3B;\n    readonly UNIFORM_ARRAY_STRIDE: 0x8A3C;\n    readonly UNIFORM_MATRIX_STRIDE: 0x8A3D;\n    readonly UNIFORM_IS_ROW_MAJOR: 0x8A3E;\n    readonly UNIFORM_BLOCK_BINDING: 0x8A3F;\n    readonly UNIFORM_BLOCK_DATA_SIZE: 0x8A40;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORMS: 0x8A42;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: 0x8A43;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: 0x8A44;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: 0x8A46;\n    readonly INVALID_INDEX: 0xFFFFFFFF;\n    readonly MAX_VERTEX_OUTPUT_COMPONENTS: 0x9122;\n    readonly MAX_FRAGMENT_INPUT_COMPONENTS: 0x9125;\n    readonly MAX_SERVER_WAIT_TIMEOUT: 0x9111;\n    readonly OBJECT_TYPE: 0x9112;\n    readonly SYNC_CONDITION: 0x9113;\n    readonly SYNC_STATUS: 0x9114;\n    readonly SYNC_FLAGS: 0x9115;\n    readonly SYNC_FENCE: 0x9116;\n    readonly SYNC_GPU_COMMANDS_COMPLETE: 0x9117;\n    readonly UNSIGNALED: 0x9118;\n    readonly SIGNALED: 0x9119;\n    readonly ALREADY_SIGNALED: 0x911A;\n    readonly TIMEOUT_EXPIRED: 0x911B;\n    readonly CONDITION_SATISFIED: 0x911C;\n    readonly WAIT_FAILED: 0x911D;\n    readonly SYNC_FLUSH_COMMANDS_BIT: 0x00000001;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR: 0x88FE;\n    readonly ANY_SAMPLES_PASSED: 0x8C2F;\n    readonly ANY_SAMPLES_PASSED_CONSERVATIVE: 0x8D6A;\n    readonly SAMPLER_BINDING: 0x8919;\n    readonly RGB10_A2UI: 0x906F;\n    readonly INT_2_10_10_10_REV: 0x8D9F;\n    readonly TRANSFORM_FEEDBACK: 0x8E22;\n    readonly TRANSFORM_FEEDBACK_PAUSED: 0x8E23;\n    readonly TRANSFORM_FEEDBACK_ACTIVE: 0x8E24;\n    readonly TRANSFORM_FEEDBACK_BINDING: 0x8E25;\n    readonly TEXTURE_IMMUTABLE_FORMAT: 0x912F;\n    readonly MAX_ELEMENT_INDEX: 0x8D6B;\n    readonly TEXTURE_IMMUTABLE_LEVELS: 0x82DF;\n    readonly TIMEOUT_IGNORED: -1;\n    readonly MAX_CLIENT_WAIT_TIMEOUT_WEBGL: 0x9247;\n}\n\ninterface WebGL2RenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferData) */\n    bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;\n    bufferData(target: GLenum, srcData: AllowSharedBufferSource | null, usage: GLenum): void;\n    bufferData(target: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, usage: GLenum, srcOffset: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferSubData) */\n    bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: AllowSharedBufferSource): void;\n    bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexSubImage2D) */\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/readPixels) */\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView<ArrayBufferLike> | null): void;\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, offset: GLintptr): void;\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView<ArrayBufferLike>, dstOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texImage2D) */\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texSubImage2D) */\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n}\n\n/**\n * The **WebGLActiveInfo** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo)\n */\ninterface WebGLActiveInfo {\n    /**\n     * The read-only **`WebGLActiveInfo.name`** property represents the name of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`WebGLActiveInfo.size`** property is a Number representing the size of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/size)\n     */\n    readonly size: GLint;\n    /**\n     * The read-only **`WebGLActiveInfo.type`** property represents the type of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/type)\n     */\n    readonly type: GLenum;\n}\n\ndeclare var WebGLActiveInfo: {\n    prototype: WebGLActiveInfo;\n    new(): WebGLActiveInfo;\n};\n\n/**\n * The **WebGLBuffer** interface is part of the WebGL API and represents an opaque buffer object storing data such as vertices or colors.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLBuffer)\n */\ninterface WebGLBuffer {\n}\n\ndeclare var WebGLBuffer: {\n    prototype: WebGLBuffer;\n    new(): WebGLBuffer;\n};\n\n/**\n * The **WebGLContextEvent** interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLContextEvent)\n */\ninterface WebGLContextEvent extends Event {\n    /**\n     * The read-only **`WebGLContextEvent.statusMessage`** property contains additional event status information, or is an empty string if no additional information is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLContextEvent/statusMessage)\n     */\n    readonly statusMessage: string;\n}\n\ndeclare var WebGLContextEvent: {\n    prototype: WebGLContextEvent;\n    new(type: string, eventInit?: WebGLContextEventInit): WebGLContextEvent;\n};\n\n/**\n * The **WebGLFramebuffer** interface is part of the WebGL API and represents a collection of buffers that serve as a rendering destination.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLFramebuffer)\n */\ninterface WebGLFramebuffer {\n}\n\ndeclare var WebGLFramebuffer: {\n    prototype: WebGLFramebuffer;\n    new(): WebGLFramebuffer;\n};\n\n/**\n * The **`WebGLProgram`** is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLProgram)\n */\ninterface WebGLProgram {\n}\n\ndeclare var WebGLProgram: {\n    prototype: WebGLProgram;\n    new(): WebGLProgram;\n};\n\n/**\n * The **`WebGLQuery`** interface is part of the WebGL 2 API and provides ways to asynchronously query for information.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLQuery)\n */\ninterface WebGLQuery {\n}\n\ndeclare var WebGLQuery: {\n    prototype: WebGLQuery;\n    new(): WebGLQuery;\n};\n\n/**\n * The **WebGLRenderbuffer** interface is part of the WebGL API and represents a buffer that can contain an image, or that can be a source or target of a rendering operation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderbuffer)\n */\ninterface WebGLRenderbuffer {\n}\n\ndeclare var WebGLRenderbuffer: {\n    prototype: WebGLRenderbuffer;\n    new(): WebGLRenderbuffer;\n};\n\n/**\n * The **`WebGLRenderingContext`** interface provides an interface to the OpenGL ES 2.0 graphics rendering context for the drawing surface of an HTML canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext)\n */\ninterface WebGLRenderingContext extends WebGLRenderingContextBase, WebGLRenderingContextOverloads {\n}\n\ndeclare var WebGLRenderingContext: {\n    prototype: WebGLRenderingContext;\n    new(): WebGLRenderingContext;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n};\n\ninterface WebGLRenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/canvas) */\n    readonly canvas: HTMLCanvasElement | OffscreenCanvas;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawingBufferColorSpace) */\n    drawingBufferColorSpace: PredefinedColorSpace;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferHeight) */\n    readonly drawingBufferHeight: GLsizei;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */\n    readonly drawingBufferWidth: GLsizei;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */\n    unpackColorSpace: PredefinedColorSpace;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */\n    activeTexture(texture: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/attachShader) */\n    attachShader(program: WebGLProgram, shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindAttribLocation) */\n    bindAttribLocation(program: WebGLProgram, index: GLuint, name: string): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindBuffer) */\n    bindBuffer(target: GLenum, buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindFramebuffer) */\n    bindFramebuffer(target: GLenum, framebuffer: WebGLFramebuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindRenderbuffer) */\n    bindRenderbuffer(target: GLenum, renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindTexture) */\n    bindTexture(target: GLenum, texture: WebGLTexture | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendColor) */\n    blendColor(red: GLclampf, green: GLclampf, blue: GLclampf, alpha: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendEquation) */\n    blendEquation(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendEquationSeparate) */\n    blendEquationSeparate(modeRGB: GLenum, modeAlpha: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendFunc) */\n    blendFunc(sfactor: GLenum, dfactor: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendFuncSeparate) */\n    blendFuncSeparate(srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/checkFramebufferStatus) */\n    checkFramebufferStatus(target: GLenum): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clear) */\n    clear(mask: GLbitfield): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearColor) */\n    clearColor(red: GLclampf, green: GLclampf, blue: GLclampf, alpha: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearDepth) */\n    clearDepth(depth: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearStencil) */\n    clearStencil(s: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/colorMask) */\n    colorMask(red: GLboolean, green: GLboolean, blue: GLboolean, alpha: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compileShader) */\n    compileShader(shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/copyTexImage2D) */\n    copyTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, x: GLint, y: GLint, width: GLsizei, height: GLsizei, border: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/copyTexSubImage2D) */\n    copyTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createBuffer) */\n    createBuffer(): WebGLBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createFramebuffer) */\n    createFramebuffer(): WebGLFramebuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createProgram) */\n    createProgram(): WebGLProgram;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createRenderbuffer) */\n    createRenderbuffer(): WebGLRenderbuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createShader) */\n    createShader(type: GLenum): WebGLShader | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createTexture) */\n    createTexture(): WebGLTexture;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/cullFace) */\n    cullFace(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteBuffer) */\n    deleteBuffer(buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteFramebuffer) */\n    deleteFramebuffer(framebuffer: WebGLFramebuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteProgram) */\n    deleteProgram(program: WebGLProgram | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteRenderbuffer) */\n    deleteRenderbuffer(renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteShader) */\n    deleteShader(shader: WebGLShader | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteTexture) */\n    deleteTexture(texture: WebGLTexture | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthFunc) */\n    depthFunc(func: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthMask) */\n    depthMask(flag: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthRange) */\n    depthRange(zNear: GLclampf, zFar: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/detachShader) */\n    detachShader(program: WebGLProgram, shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/disable) */\n    disable(cap: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/disableVertexAttribArray) */\n    disableVertexAttribArray(index: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawArrays) */\n    drawArrays(mode: GLenum, first: GLint, count: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawElements) */\n    drawElements(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/enable) */\n    enable(cap: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/enableVertexAttribArray) */\n    enableVertexAttribArray(index: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/finish) */\n    finish(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/flush) */\n    flush(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/framebufferRenderbuffer) */\n    framebufferRenderbuffer(target: GLenum, attachment: GLenum, renderbuffertarget: GLenum, renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/framebufferTexture2D) */\n    framebufferTexture2D(target: GLenum, attachment: GLenum, textarget: GLenum, texture: WebGLTexture | null, level: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/frontFace) */\n    frontFace(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/generateMipmap) */\n    generateMipmap(target: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getActiveAttrib) */\n    getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getActiveUniform) */\n    getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getAttachedShaders) */\n    getAttachedShaders(program: WebGLProgram): WebGLShader[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getAttribLocation) */\n    getAttribLocation(program: WebGLProgram, name: string): GLint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getBufferParameter) */\n    getBufferParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getContextAttributes) */\n    getContextAttributes(): WebGLContextAttributes | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */\n    getError(): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */\n    getExtension(extensionName: \"ANGLE_instanced_arrays\"): ANGLE_instanced_arrays | null;\n    getExtension(extensionName: \"EXT_blend_minmax\"): EXT_blend_minmax | null;\n    getExtension(extensionName: \"EXT_color_buffer_float\"): EXT_color_buffer_float | null;\n    getExtension(extensionName: \"EXT_color_buffer_half_float\"): EXT_color_buffer_half_float | null;\n    getExtension(extensionName: \"EXT_float_blend\"): EXT_float_blend | null;\n    getExtension(extensionName: \"EXT_frag_depth\"): EXT_frag_depth | null;\n    getExtension(extensionName: \"EXT_sRGB\"): EXT_sRGB | null;\n    getExtension(extensionName: \"EXT_shader_texture_lod\"): EXT_shader_texture_lod | null;\n    getExtension(extensionName: \"EXT_texture_compression_bptc\"): EXT_texture_compression_bptc | null;\n    getExtension(extensionName: \"EXT_texture_compression_rgtc\"): EXT_texture_compression_rgtc | null;\n    getExtension(extensionName: \"EXT_texture_filter_anisotropic\"): EXT_texture_filter_anisotropic | null;\n    getExtension(extensionName: \"KHR_parallel_shader_compile\"): KHR_parallel_shader_compile | null;\n    getExtension(extensionName: \"OES_element_index_uint\"): OES_element_index_uint | null;\n    getExtension(extensionName: \"OES_fbo_render_mipmap\"): OES_fbo_render_mipmap | null;\n    getExtension(extensionName: \"OES_standard_derivatives\"): OES_standard_derivatives | null;\n    getExtension(extensionName: \"OES_texture_float\"): OES_texture_float | null;\n    getExtension(extensionName: \"OES_texture_float_linear\"): OES_texture_float_linear | null;\n    getExtension(extensionName: \"OES_texture_half_float\"): OES_texture_half_float | null;\n    getExtension(extensionName: \"OES_texture_half_float_linear\"): OES_texture_half_float_linear | null;\n    getExtension(extensionName: \"OES_vertex_array_object\"): OES_vertex_array_object | null;\n    getExtension(extensionName: \"OVR_multiview2\"): OVR_multiview2 | null;\n    getExtension(extensionName: \"WEBGL_color_buffer_float\"): WEBGL_color_buffer_float | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_astc\"): WEBGL_compressed_texture_astc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_etc\"): WEBGL_compressed_texture_etc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_etc1\"): WEBGL_compressed_texture_etc1 | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_pvrtc\"): WEBGL_compressed_texture_pvrtc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_s3tc\"): WEBGL_compressed_texture_s3tc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_s3tc_srgb\"): WEBGL_compressed_texture_s3tc_srgb | null;\n    getExtension(extensionName: \"WEBGL_debug_renderer_info\"): WEBGL_debug_renderer_info | null;\n    getExtension(extensionName: \"WEBGL_debug_shaders\"): WEBGL_debug_shaders | null;\n    getExtension(extensionName: \"WEBGL_depth_texture\"): WEBGL_depth_texture | null;\n    getExtension(extensionName: \"WEBGL_draw_buffers\"): WEBGL_draw_buffers | null;\n    getExtension(extensionName: \"WEBGL_lose_context\"): WEBGL_lose_context | null;\n    getExtension(extensionName: \"WEBGL_multi_draw\"): WEBGL_multi_draw | null;\n    getExtension(name: string): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */\n    getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */\n    getParameter(pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getProgramInfoLog) */\n    getProgramInfoLog(program: WebGLProgram): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getProgramParameter) */\n    getProgramParameter(program: WebGLProgram, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getRenderbufferParameter) */\n    getRenderbufferParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderInfoLog) */\n    getShaderInfoLog(shader: WebGLShader): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderParameter) */\n    getShaderParameter(shader: WebGLShader, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderPrecisionFormat) */\n    getShaderPrecisionFormat(shadertype: GLenum, precisiontype: GLenum): WebGLShaderPrecisionFormat | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderSource) */\n    getShaderSource(shader: WebGLShader): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getSupportedExtensions) */\n    getSupportedExtensions(): string[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getTexParameter) */\n    getTexParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getUniform) */\n    getUniform(program: WebGLProgram, location: WebGLUniformLocation): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getUniformLocation) */\n    getUniformLocation(program: WebGLProgram, name: string): WebGLUniformLocation | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getVertexAttrib) */\n    getVertexAttrib(index: GLuint, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getVertexAttribOffset) */\n    getVertexAttribOffset(index: GLuint, pname: GLenum): GLintptr;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/hint) */\n    hint(target: GLenum, mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isBuffer) */\n    isBuffer(buffer: WebGLBuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isContextLost) */\n    isContextLost(): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isEnabled) */\n    isEnabled(cap: GLenum): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isFramebuffer) */\n    isFramebuffer(framebuffer: WebGLFramebuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isProgram) */\n    isProgram(program: WebGLProgram | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isRenderbuffer) */\n    isRenderbuffer(renderbuffer: WebGLRenderbuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isShader) */\n    isShader(shader: WebGLShader | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */\n    isTexture(texture: WebGLTexture | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */\n    lineWidth(width: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */\n    linkProgram(program: WebGLProgram): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/pixelStorei) */\n    pixelStorei(pname: GLenum, param: GLint | GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/polygonOffset) */\n    polygonOffset(factor: GLfloat, units: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/renderbufferStorage) */\n    renderbufferStorage(target: GLenum, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/sampleCoverage) */\n    sampleCoverage(value: GLclampf, invert: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/scissor) */\n    scissor(x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/shaderSource) */\n    shaderSource(shader: WebGLShader, source: string): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilFunc) */\n    stencilFunc(func: GLenum, ref: GLint, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilFuncSeparate) */\n    stencilFuncSeparate(face: GLenum, func: GLenum, ref: GLint, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilMask) */\n    stencilMask(mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilMaskSeparate) */\n    stencilMaskSeparate(face: GLenum, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilOp) */\n    stencilOp(fail: GLenum, zfail: GLenum, zpass: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilOpSeparate) */\n    stencilOpSeparate(face: GLenum, fail: GLenum, zfail: GLenum, zpass: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texParameter) */\n    texParameterf(target: GLenum, pname: GLenum, param: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texParameter) */\n    texParameteri(target: GLenum, pname: GLenum, param: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1f(location: WebGLUniformLocation | null, x: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1i(location: WebGLUniformLocation | null, x: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2i(location: WebGLUniformLocation | null, x: GLint, y: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat, z: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3i(location: WebGLUniformLocation | null, x: GLint, y: GLint, z: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat, z: GLfloat, w: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4i(location: WebGLUniformLocation | null, x: GLint, y: GLint, z: GLint, w: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/useProgram) */\n    useProgram(program: WebGLProgram | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/validateProgram) */\n    validateProgram(program: WebGLProgram): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1f(index: GLuint, x: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2f(index: GLuint, x: GLfloat, y: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3f(index: GLuint, x: GLfloat, y: GLfloat, z: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4f(index: GLuint, x: GLfloat, y: GLfloat, z: GLfloat, w: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttribPointer) */\n    vertexAttribPointer(index: GLuint, size: GLint, type: GLenum, normalized: GLboolean, stride: GLsizei, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/viewport) */\n    viewport(x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n}\n\ninterface WebGLRenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferData) */\n    bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;\n    bufferData(target: GLenum, data: AllowSharedBufferSource | null, usage: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferSubData) */\n    bufferSubData(target: GLenum, offset: GLintptr, data: AllowSharedBufferSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, data: ArrayBufferView<ArrayBufferLike>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexSubImage2D) */\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, data: ArrayBufferView<ArrayBufferLike>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/readPixels) */\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texImage2D) */\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texSubImage2D) */\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n}\n\n/**\n * The **`WebGLSampler`** interface is part of the WebGL 2 API and stores sampling parameters for WebGLTexture access inside of a shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSampler)\n */\ninterface WebGLSampler {\n}\n\ndeclare var WebGLSampler: {\n    prototype: WebGLSampler;\n    new(): WebGLSampler;\n};\n\n/**\n * The **WebGLShader** is part of the WebGL API and can either be a vertex or a fragment shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShader)\n */\ninterface WebGLShader {\n}\n\ndeclare var WebGLShader: {\n    prototype: WebGLShader;\n    new(): WebGLShader;\n};\n\n/**\n * The **WebGLShaderPrecisionFormat** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getShaderPrecisionFormat() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat)\n */\ninterface WebGLShaderPrecisionFormat {\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.precision`** property returns the number of bits of precision that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/precision)\n     */\n    readonly precision: GLint;\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.rangeMax`** property returns the base 2 log of the absolute value of the maximum value that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/rangeMax)\n     */\n    readonly rangeMax: GLint;\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.rangeMin`** property returns the base 2 log of the absolute value of the minimum value that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/rangeMin)\n     */\n    readonly rangeMin: GLint;\n}\n\ndeclare var WebGLShaderPrecisionFormat: {\n    prototype: WebGLShaderPrecisionFormat;\n    new(): WebGLShaderPrecisionFormat;\n};\n\n/**\n * The **`WebGLSync`** interface is part of the WebGL 2 API and is used to synchronize activities between the GPU and the application.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSync)\n */\ninterface WebGLSync {\n}\n\ndeclare var WebGLSync: {\n    prototype: WebGLSync;\n    new(): WebGLSync;\n};\n\n/**\n * The **WebGLTexture** interface is part of the WebGL API and represents an opaque texture object providing storage and state for texturing operations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTexture)\n */\ninterface WebGLTexture {\n}\n\ndeclare var WebGLTexture: {\n    prototype: WebGLTexture;\n    new(): WebGLTexture;\n};\n\n/**\n * The **`WebGLTransformFeedback`** interface is part of the WebGL 2 API and enables transform feedback, which is the process of capturing primitives generated by vertex processing.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTransformFeedback)\n */\ninterface WebGLTransformFeedback {\n}\n\ndeclare var WebGLTransformFeedback: {\n    prototype: WebGLTransformFeedback;\n    new(): WebGLTransformFeedback;\n};\n\n/**\n * The **WebGLUniformLocation** interface is part of the WebGL API and represents the location of a uniform variable in a shader program.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLUniformLocation)\n */\ninterface WebGLUniformLocation {\n}\n\ndeclare var WebGLUniformLocation: {\n    prototype: WebGLUniformLocation;\n    new(): WebGLUniformLocation;\n};\n\n/**\n * The **`WebGLVertexArrayObject`** interface is part of the WebGL 2 API, represents vertex array objects (VAOs) pointing to vertex array data, and provides names for different sets of vertex data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject)\n */\ninterface WebGLVertexArrayObject {\n}\n\ndeclare var WebGLVertexArrayObject: {\n    prototype: WebGLVertexArrayObject;\n    new(): WebGLVertexArrayObject;\n};\n\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */\ninterface WebGLVertexArrayObjectOES {\n}\n\ninterface WebSocketEventMap {\n    \"close\": CloseEvent;\n    \"error\": Event;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The `WebSocket` object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket)\n */\ninterface WebSocket extends EventTarget {\n    /**\n     * The **`WebSocket.binaryType`** property controls the type of binary data being received over the WebSocket connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/binaryType)\n     */\n    binaryType: BinaryType;\n    /**\n     * The **`WebSocket.bufferedAmount`** read-only property returns the number of bytes of data that have been queued using calls to `send()` but not yet transmitted to the network.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/bufferedAmount)\n     */\n    readonly bufferedAmount: number;\n    /**\n     * The **`WebSocket.extensions`** read-only property returns the extensions selected by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/extensions)\n     */\n    readonly extensions: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close_event) */\n    onclose: ((this: WebSocket, ev: CloseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/error_event) */\n    onerror: ((this: WebSocket, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/message_event) */\n    onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/open_event) */\n    onopen: ((this: WebSocket, ev: Event) => any) | null;\n    /**\n     * The **`WebSocket.protocol`** read-only property returns the name of the sub-protocol the server selected; this will be one of the strings specified in the `protocols` parameter when creating the WebSocket object, or the empty string if no connection is established.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/protocol)\n     */\n    readonly protocol: string;\n    /**\n     * The **`WebSocket.readyState`** read-only property returns the current state of the WebSocket connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/url)\n     */\n    readonly url: string;\n    /**\n     * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)\n     */\n    close(code?: number, reason?: string): void;\n    /**\n     * The **`WebSocket.send()`** method enqueues the specified data to be transmitted to the server over the WebSocket connection, increasing the value of `bufferedAmount` by the number of bytes needed to contain the data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/send)\n     */\n    send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSING: 2;\n    readonly CLOSED: 3;\n    addEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var WebSocket: {\n    prototype: WebSocket;\n    new(url: string | URL, protocols?: string | string[]): WebSocket;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSING: 2;\n    readonly CLOSED: 3;\n};\n\n/**\n * The **`WebTransport`** interface of the WebTransport API provides functionality to enable a user agent to connect to an HTTP/3 server, initiate reliable and unreliable transport in either or both directions, and close the connection once it is no longer needed.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport)\n */\ninterface WebTransport {\n    /**\n     * The **`closed`** read-only property of the WebTransport interface returns a promise that resolves when the transport is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/closed)\n     */\n    readonly closed: Promise<WebTransportCloseInfo>;\n    /**\n     * The **`datagrams`** read-only property of the WebTransport interface returns a WebTransportDatagramDuplexStream instance that can be used to send and receive datagrams — unreliable data transmission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/datagrams)\n     */\n    readonly datagrams: WebTransportDatagramDuplexStream;\n    /**\n     * The **`incomingBidirectionalStreams`** read-only property of the WebTransport interface represents one or more bidirectional streams opened by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/incomingBidirectionalStreams)\n     */\n    readonly incomingBidirectionalStreams: ReadableStream;\n    /**\n     * The **`incomingUnidirectionalStreams`** read-only property of the WebTransport interface represents one or more unidirectional streams opened by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/incomingUnidirectionalStreams)\n     */\n    readonly incomingUnidirectionalStreams: ReadableStream;\n    /**\n     * The **`ready`** read-only property of the WebTransport interface returns a promise that resolves when the transport is ready to use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`close()`** method of the WebTransport interface closes an ongoing WebTransport session.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/close)\n     */\n    close(closeInfo?: WebTransportCloseInfo): void;\n    /**\n     * The **`createBidirectionalStream()`** method of the WebTransport interface asynchronously opens and returns a bidirectional stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createBidirectionalStream)\n     */\n    createBidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WebTransportBidirectionalStream>;\n    /**\n     * The **`createUnidirectionalStream()`** method of the WebTransport interface asynchronously opens a unidirectional stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)\n     */\n    createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;\n}\n\ndeclare var WebTransport: {\n    prototype: WebTransport;\n    new(url: string | URL, options?: WebTransportOptions): WebTransport;\n};\n\n/**\n * The **`WebTransportBidirectionalStream`** interface of the WebTransport API represents a bidirectional stream created by a server or a client that can be used for reliable transport.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream)\n */\ninterface WebTransportBidirectionalStream {\n    /**\n     * The **`readable`** read-only property of the WebTransportBidirectionalStream interface returns a WebTransportReceiveStream instance that can be used to reliably read incoming data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream/readable)\n     */\n    readonly readable: ReadableStream;\n    /**\n     * The **`writable`** read-only property of the WebTransportBidirectionalStream interface returns a WebTransportSendStream instance that can be used to write outgoing data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream/writable)\n     */\n    readonly writable: WritableStream;\n}\n\ndeclare var WebTransportBidirectionalStream: {\n    prototype: WebTransportBidirectionalStream;\n    new(): WebTransportBidirectionalStream;\n};\n\n/**\n * The **`WebTransportDatagramDuplexStream`** interface of the WebTransport API represents a duplex stream that can be used for unreliable transport of datagrams between client and server.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)\n */\ninterface WebTransportDatagramDuplexStream {\n    /**\n     * The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)\n     */\n    incomingHighWaterMark: number;\n    /**\n     * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingMaxAge)\n     */\n    incomingMaxAge: number | null;\n    /**\n     * The **`maxDatagramSize`** read-only property of the WebTransportDatagramDuplexStream interface returns the maximum allowable size of outgoing datagrams, in bytes, that can be written to WebTransportDatagramDuplexStream.writable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)\n     */\n    readonly maxDatagramSize: number;\n    /**\n     * The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)\n     */\n    outgoingHighWaterMark: number;\n    /**\n     * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingMaxAge)\n     */\n    outgoingMaxAge: number | null;\n    /**\n     * The **`readable`** read-only property of the WebTransportDatagramDuplexStream interface returns a ReadableStream instance that can be used to unreliably read incoming datagrams from the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/readable)\n     */\n    readonly readable: ReadableStream;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable) */\n    readonly writable: WritableStream;\n}\n\ndeclare var WebTransportDatagramDuplexStream: {\n    prototype: WebTransportDatagramDuplexStream;\n    new(): WebTransportDatagramDuplexStream;\n};\n\n/**\n * The **`WebTransportError`** interface of the WebTransport API represents an error related to the API, which can arise from server errors, network connection problems, or client-initiated abort operations (for example, arising from a WritableStream.abort() call).\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError)\n */\ninterface WebTransportError extends DOMException {\n    /**\n     * The **`source`** read-only property of the WebTransportError interface returns an enumerated value indicating the source of the error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError/source)\n     */\n    readonly source: WebTransportErrorSource;\n    /**\n     * The **`streamErrorCode`** read-only property of the WebTransportError interface returns a number in the range 0-255 indicating the application protocol error code for this error, or `null` if one is not available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError/streamErrorCode)\n     */\n    readonly streamErrorCode: number | null;\n}\n\ndeclare var WebTransportError: {\n    prototype: WebTransportError;\n    new(message?: string, options?: WebTransportErrorOptions): WebTransportError;\n};\n\n/**\n * The **`WheelEvent`** interface represents events that occur due to the user moving a mouse wheel or similar input device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent)\n */\ninterface WheelEvent extends MouseEvent {\n    /**\n     * The **`WheelEvent.deltaMode`** read-only property returns an `unsigned long` representing the unit of the delta values scroll amount.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaMode)\n     */\n    readonly deltaMode: number;\n    /**\n     * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaX` value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX)\n     */\n    readonly deltaX: number;\n    /**\n     * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaY` value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaY)\n     */\n    readonly deltaY: number;\n    /**\n     * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the You must check the `deltaMode` property to determine the unit of the `deltaZ` value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaZ)\n     */\n    readonly deltaZ: number;\n    readonly DOM_DELTA_PIXEL: 0x00;\n    readonly DOM_DELTA_LINE: 0x01;\n    readonly DOM_DELTA_PAGE: 0x02;\n}\n\ndeclare var WheelEvent: {\n    prototype: WheelEvent;\n    new(type: string, eventInitDict?: WheelEventInit): WheelEvent;\n    readonly DOM_DELTA_PIXEL: 0x00;\n    readonly DOM_DELTA_LINE: 0x01;\n    readonly DOM_DELTA_PAGE: 0x02;\n};\n\ninterface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandlersEventMap {\n    \"DOMContentLoaded\": Event;\n    \"devicemotion\": DeviceMotionEvent;\n    \"deviceorientation\": DeviceOrientationEvent;\n    \"deviceorientationabsolute\": DeviceOrientationEvent;\n    \"gamepadconnected\": GamepadEvent;\n    \"gamepaddisconnected\": GamepadEvent;\n    \"orientationchange\": Event;\n}\n\n/**\n * The **`Window`** interface represents a window containing a DOM document; the `document` property points to the DOM document loaded in that window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window)\n */\ninterface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage {\n    /**\n     * @deprecated This is a legacy alias of `navigator`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/navigator)\n     */\n    readonly clientInformation: Navigator;\n    /**\n     * The **`Window.closed`** read-only property indicates whether the referenced window is closed or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)\n     */\n    readonly closed: boolean;\n    /**\n     * The **`cookieStore`** read-only property of the Window interface returns a reference to the CookieStore object for the current document context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore)\n     */\n    readonly cookieStore: CookieStore;\n    /**\n     * The **`customElements`** read-only property of the Window interface returns a reference to the CustomElementRegistry object, which can be used to register new custom elements and get information about previously registered custom elements.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/customElements)\n     */\n    readonly customElements: CustomElementRegistry;\n    /**\n     * The **`devicePixelRatio`** of Window interface returns the ratio of the resolution in _physical pixels_ to the resolution in _CSS pixels_ for the current display device.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/devicePixelRatio)\n     */\n    readonly devicePixelRatio: number;\n    /**\n     * **`window.document`** returns a reference to the document contained in the window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/document)\n     */\n    readonly document: Document;\n    /**\n     * The read-only Window property **`event`** returns the Event which is currently being handled by the site's code.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/event)\n     */\n    readonly event: Event | undefined;\n    /**\n     * The `external` property of the Window API returns an instance of the `External` interface, which was intended to contain functions related to adding external search providers to the browser.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/external)\n     */\n    readonly external: External;\n    /**\n     * The **`Window.frameElement`** property returns the element (such as iframe or object) in which the window is embedded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/frameElement)\n     */\n    readonly frameElement: Element | null;\n    /**\n     * Returns the window itself, which is an array-like object, listing the direct sub-frames of the current window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/frames)\n     */\n    readonly frames: WindowProxy;\n    /**\n     * The `Window.history` read-only property returns a reference to the History object, which provides an interface for manipulating the browser _session history_ (pages visited in the tab or frame that the current page is loaded in).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/history)\n     */\n    readonly history: History;\n    /**\n     * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)\n     */\n    readonly innerHeight: number;\n    /**\n     * The read-only Window property **`innerWidth`** returns the interior width of the window in pixels (that is, the width of the window's layout viewport).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerWidth)\n     */\n    readonly innerWidth: number;\n    /**\n     * Returns the number of frames (either frame or A number.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)\n     */\n    readonly length: number;\n    /**\n     * The **`Window.location`** read-only property returns a Location object with information about the current location of the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location)\n     */\n    get location(): Location;\n    set location(href: string);\n    /**\n     * Returns the `locationbar` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/locationbar)\n     */\n    readonly locationbar: BarProp;\n    /**\n     * Returns the `menubar` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/menubar)\n     */\n    readonly menubar: BarProp;\n    /**\n     * The `Window.name` property gets/sets the name of the window's browsing context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/name)\n     */\n    name: string;\n    /**\n     * The **`Window.navigator`** read-only property returns a reference to the Navigator object, which has methods and properties about the application running the script.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/navigator)\n     */\n    readonly navigator: Navigator;\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/devicemotion_event)\n     */\n    ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)\n     */\n    ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)\n     */\n    ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/orientationchange_event)\n     */\n    onorientationchange: ((this: Window, ev: Event) => any) | null;\n    /**\n     * The Window interface's **`opener`** property returns a reference to the window that opened the window, either with Window.open, or by navigating a link with a `target` attribute.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/opener)\n     */\n    opener: any;\n    /**\n     * Returns the orientation in degrees (in 90-degree increments) of the viewport relative to the device's natural orientation.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/orientation)\n     */\n    readonly orientation: number;\n    /**\n     * The **`originAgentCluster`** read-only property of the Window interface returns `true` if this window belongs to an _origin-keyed agent cluster_: this means that the operating system has provided dedicated resources (for example an operating system process) to this window's origin that are not shared with windows from other origins.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/originAgentCluster)\n     */\n    readonly originAgentCluster: boolean;\n    /**\n     * The **`Window.outerHeight`** read-only property returns the height in pixels of the whole browser window, including any sidebar, window chrome, and window-resizing borders/handles.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerHeight)\n     */\n    readonly outerHeight: number;\n    /**\n     * **`Window.outerWidth`** read-only property returns the width of the outside of the browser window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerWidth)\n     */\n    readonly outerWidth: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX) */\n    readonly pageXOffset: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY) */\n    readonly pageYOffset: number;\n    /**\n     * The **`Window.parent`** property is a reference to the parent of the current window or subframe.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/parent)\n     */\n    readonly parent: WindowProxy;\n    /**\n     * Returns the `personalbar` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/personalbar)\n     */\n    readonly personalbar: BarProp;\n    /**\n     * The Window property **`screen`** returns a reference to the screen object associated with the window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screen)\n     */\n    readonly screen: Screen;\n    /**\n     * The **`Window.screenLeft`** read-only property returns the horizontal distance, in CSS pixels, from the left border of the user's browser viewport to the left side of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenLeft)\n     */\n    readonly screenLeft: number;\n    /**\n     * The **`Window.screenTop`** read-only property returns the vertical distance, in CSS pixels, from the top border of the user's browser viewport to the top side of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenTop)\n     */\n    readonly screenTop: number;\n    /**\n     * The **`Window.screenX`** read-only property returns the horizontal distance, in CSS pixels, of the left border of the user's browser viewport to the left side of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenX)\n     */\n    readonly screenX: number;\n    /**\n     * The **`Window.screenY`** read-only property returns the vertical distance, in CSS pixels, of the top border of the user's browser viewport to the top edge of the screen.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenY)\n     */\n    readonly screenY: number;\n    /**\n     * The read-only **`scrollX`** property of the Window interface returns the number of pixels by which the document is currently scrolled horizontally.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX)\n     */\n    readonly scrollX: number;\n    /**\n     * The read-only **`scrollY`** property of the Window interface returns the number of pixels by which the document is currently scrolled vertically.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY)\n     */\n    readonly scrollY: number;\n    /**\n     * Returns the `scrollbars` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollbars)\n     */\n    readonly scrollbars: BarProp;\n    /**\n     * The **`Window.self`** read-only property returns the window itself, as a WindowProxy.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/self)\n     */\n    readonly self: Window & typeof globalThis;\n    /**\n     * The `speechSynthesis` read-only property of the Window object returns a SpeechSynthesis object, which is the entry point into using Web Speech API speech synthesis functionality.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/speechSynthesis)\n     */\n    readonly speechSynthesis: SpeechSynthesis;\n    /**\n     * The **`status`** property of the bar at the bottom of the browser window.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)\n     */\n    status: string;\n    /**\n     * Returns the `statusbar` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/statusbar)\n     */\n    readonly statusbar: BarProp;\n    /**\n     * Returns the `toolbar` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/toolbar)\n     */\n    readonly toolbar: BarProp;\n    /**\n     * Returns a reference to the topmost window in the window hierarchy.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/top)\n     */\n    readonly top: WindowProxy | null;\n    /**\n     * The **`visualViewport`** read-only property of the Window interface returns a VisualViewport object representing the visual viewport for a given window, or `null` if current document is not fully active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/visualViewport)\n     */\n    readonly visualViewport: VisualViewport | null;\n    /**\n     * The **`window`** property of a Window object points to the window object itself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/window)\n     */\n    readonly window: Window & typeof globalThis;\n    /**\n     * `window.alert()` instructs the browser to display a dialog with an optional message, and to wait until the user dismisses the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert)\n     */\n    alert(message?: any): void;\n    /**\n     * The **`Window.blur()`** method does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)\n     */\n    blur(): void;\n    /**\n     * The **`window.cancelIdleCallback()`** method cancels a callback previously scheduled with window.requestIdleCallback().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback)\n     */\n    cancelIdleCallback(handle: number): void;\n    /**\n     * The **`Window.captureEvents()`** method does nothing.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/captureEvents)\n     */\n    captureEvents(): void;\n    /**\n     * The **`Window.close()`** method closes the current window, or the window on which it was called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/close)\n     */\n    close(): void;\n    /**\n     * `window.confirm()` instructs the browser to display a dialog with an optional message, and to wait until the user either confirms or cancels the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/confirm)\n     */\n    confirm(message?: string): boolean;\n    /**\n     * Makes a request to bring the window to the front.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/focus)\n     */\n    focus(): void;\n    /**\n     * The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)\n     */\n    getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;\n    /**\n     * The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getSelection)\n     */\n    getSelection(): Selection | null;\n    /**\n     * The Window interface's **`matchMedia()`** method returns a new MediaQueryList object that can then be used to determine if the document matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/matchMedia)\n     */\n    matchMedia(query: string): MediaQueryList;\n    /**\n     * The **`moveBy()`** method of the Window interface moves the current window by a specified amount.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/moveBy)\n     */\n    moveBy(x: number, y: number): void;\n    /**\n     * The **`moveTo()`** method of the Window interface moves the current window to the specified coordinates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/moveTo)\n     */\n    moveTo(x: number, y: number): void;\n    /**\n     * The **`open()`** method of the `Window` interface loads a specified resource into a new or existing browsing context (that is, a tab, a window, or an iframe) under a specified name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/open)\n     */\n    open(url?: string | URL, target?: string, features?: string): WindowProxy | null;\n    /**\n     * The **`window.postMessage()`** method safely enables cross-origin communication between Window objects; _e.g.,_ between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/postMessage)\n     */\n    postMessage(message: any, targetOrigin: string, transfer?: Transferable[]): void;\n    postMessage(message: any, options?: WindowPostMessageOptions): void;\n    /**\n     * Opens the print dialog to print the current document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/print)\n     */\n    print(): void;\n    /**\n     * `window.prompt()` instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/prompt)\n     */\n    prompt(message?: string, _default?: string): string | null;\n    /**\n     * Releases the window from trapping events of a specific type.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/releaseEvents)\n     */\n    releaseEvents(): void;\n    /**\n     * The **`window.requestIdleCallback()`** method queues a function to be called during a browser's idle periods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/requestIdleCallback)\n     */\n    requestIdleCallback(callback: IdleRequestCallback, options?: IdleRequestOptions): number;\n    /**\n     * The **`Window.resizeBy()`** method resizes the current window by a specified amount.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/resizeBy)\n     */\n    resizeBy(x: number, y: number): void;\n    /**\n     * The **`Window.resizeTo()`** method dynamically resizes the window.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/resizeTo)\n     */\n    resizeTo(width: number, height: number): void;\n    /**\n     * The **`Window.scroll()`** method scrolls the window to a particular place in the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scroll)\n     */\n    scroll(options?: ScrollToOptions): void;\n    scroll(x: number, y: number): void;\n    /**\n     * The **`Window.scrollBy()`** method scrolls the document in the window by the given amount.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)\n     */\n    scrollBy(options?: ScrollToOptions): void;\n    scrollBy(x: number, y: number): void;\n    /**\n     * **`Window.scrollTo()`** scrolls to a particular set of coordinates in the document.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)\n     */\n    scrollTo(options?: ScrollToOptions): void;\n    scrollTo(x: number, y: number): void;\n    /**\n     * The **`window.stop()`** stops further resource loading in the current browsing context, equivalent to the stop button in the browser.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/stop)\n     */\n    stop(): void;\n    addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n    [index: number]: Window;\n}\n\ndeclare var Window: {\n    prototype: Window;\n    new(): Window;\n};\n\ninterface WindowEventHandlersEventMap {\n    \"afterprint\": Event;\n    \"beforeprint\": Event;\n    \"beforeunload\": BeforeUnloadEvent;\n    \"gamepadconnected\": GamepadEvent;\n    \"gamepaddisconnected\": GamepadEvent;\n    \"hashchange\": HashChangeEvent;\n    \"languagechange\": Event;\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n    \"offline\": Event;\n    \"online\": Event;\n    \"pagehide\": PageTransitionEvent;\n    \"pagereveal\": PageRevealEvent;\n    \"pageshow\": PageTransitionEvent;\n    \"pageswap\": PageSwapEvent;\n    \"popstate\": PopStateEvent;\n    \"rejectionhandled\": PromiseRejectionEvent;\n    \"storage\": StorageEvent;\n    \"unhandledrejection\": PromiseRejectionEvent;\n    \"unload\": Event;\n}\n\ninterface WindowEventHandlers {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/afterprint_event) */\n    onafterprint: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/beforeprint_event) */\n    onbeforeprint: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/beforeunload_event) */\n    onbeforeunload: ((this: WindowEventHandlers, ev: BeforeUnloadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/gamepadconnected_event) */\n    ongamepadconnected: ((this: WindowEventHandlers, ev: GamepadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/gamepaddisconnected_event) */\n    ongamepaddisconnected: ((this: WindowEventHandlers, ev: GamepadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/hashchange_event) */\n    onhashchange: ((this: WindowEventHandlers, ev: HashChangeEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/languagechange_event) */\n    onlanguagechange: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/message_event) */\n    onmessage: ((this: WindowEventHandlers, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/messageerror_event) */\n    onmessageerror: ((this: WindowEventHandlers, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/offline_event) */\n    onoffline: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/online_event) */\n    ononline: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagehide_event) */\n    onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagereveal_event) */\n    onpagereveal: ((this: WindowEventHandlers, ev: PageRevealEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageshow_event) */\n    onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageswap_event) */\n    onpageswap: ((this: WindowEventHandlers, ev: PageSwapEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/popstate_event) */\n    onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/rejectionhandled_event) */\n    onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/storage_event) */\n    onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */\n    onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)\n     */\n    onunload: ((this: WindowEventHandlers, ev: Event) => any) | null;\n    addEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WindowEventHandlersEventMap>(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ninterface WindowLocalStorage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */\n    readonly localStorage: Storage;\n}\n\ninterface WindowOrWorkerGlobalScope {\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)\n     */\n    readonly caches: CacheStorage;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */\n    readonly crossOriginIsolated: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */\n    readonly crypto: Crypto;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */\n    readonly indexedDB: IDBFactory;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */\n    readonly isSecureContext: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */\n    readonly origin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */\n    readonly performance: Performance;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */\n    atob(data: string): string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */\n    btoa(data: string): string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */\n    clearInterval(id: number | undefined): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */\n    clearTimeout(id: number | undefined): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */\n    createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n    createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */\n    fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */\n    queueMicrotask(callback: VoidFunction): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */\n    reportError(e: any): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */\n    setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */\n    setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */\n    structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;\n}\n\ninterface WindowSessionStorage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/sessionStorage) */\n    readonly sessionStorage: Storage;\n}\n\ninterface WorkerEventMap extends AbstractWorkerEventMap, MessageEventTargetEventMap {\n}\n\n/**\n * The **`Worker`** interface of the Web Workers API represents a background task that can be created via script, which can send messages back to its creator.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker)\n */\ninterface Worker extends EventTarget, AbstractWorker, MessageEventTarget<Worker> {\n    /**\n     * The **`postMessage()`** method of the Worker interface sends a message to the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    /**\n     * The **`terminate()`** method of the Worker interface immediately terminates the Worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/terminate)\n     */\n    terminate(): void;\n    addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Worker: {\n    prototype: Worker;\n    new(scriptURL: string | URL, options?: WorkerOptions): Worker;\n};\n\n/**\n * The **`Worklet`** interface is a lightweight version of Web Workers and gives developers access to low-level parts of the rendering pipeline.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet)\n */\ninterface Worklet {\n    /**\n     * The **`addModule()`** method of the adds it to the current `Worklet`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet/addModule)\n     */\n    addModule(moduleURL: string | URL, options?: WorkletOptions): Promise<void>;\n}\n\ndeclare var Worklet: {\n    prototype: Worklet;\n    new(): Worklet;\n};\n\n/**\n * The **`WritableStream`** interface of the Streams API provides a standard abstraction for writing streaming data to a destination, known as a sink.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream)\n */\ninterface WritableStream<W = any> {\n    /**\n     * The **`locked`** read-only property of the WritableStream interface returns a boolean indicating whether the `WritableStream` is locked to a writer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/locked)\n     */\n    readonly locked: boolean;\n    /**\n     * The **`abort()`** method of the WritableStream interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/abort)\n     */\n    abort(reason?: any): Promise<void>;\n    /**\n     * The **`close()`** method of the WritableStream interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The **`getWriter()`** method of the WritableStream interface returns a new instance of WritableStreamDefaultWriter and locks the stream to that instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/getWriter)\n     */\n    getWriter(): WritableStreamDefaultWriter<W>;\n}\n\ndeclare var WritableStream: {\n    prototype: WritableStream;\n    new<W = any>(underlyingSink?: UnderlyingSink<W>, strategy?: QueuingStrategy<W>): WritableStream<W>;\n};\n\n/**\n * The **`WritableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a WritableStream's state.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController)\n */\ninterface WritableStreamDefaultController {\n    /**\n     * The read-only **`signal`** property of the WritableStreamDefaultController interface returns the AbortSignal associated with the controller.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`error()`** method of the with the associated stream to error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var WritableStreamDefaultController: {\n    prototype: WritableStreamDefaultController;\n    new(): WritableStreamDefaultController;\n};\n\n/**\n * The **`WritableStreamDefaultWriter`** interface of the Streams API is the object returned by WritableStream.getWriter() and once created locks the writer to the `WritableStream` ensuring that no other streams can write to the underlying sink.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter)\n */\ninterface WritableStreamDefaultWriter<W = any> {\n    /**\n     * The **`closed`** read-only property of the the stream errors or the writer's lock is released.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)\n     */\n    readonly closed: Promise<void>;\n    /**\n     * The **`desiredSize`** read-only property of the to fill the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)\n     */\n    abort(reason?: any): Promise<void>;\n    /**\n     * The **`close()`** method of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The **`releaseLock()`** method of the corresponding stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)\n     */\n    releaseLock(): void;\n    /**\n     * The **`write()`** method of the operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)\n     */\n    write(chunk?: W): Promise<void>;\n}\n\ndeclare var WritableStreamDefaultWriter: {\n    prototype: WritableStreamDefaultWriter;\n    new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;\n};\n\n/**\n * The **XMLDocument** interface represents an XML document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLDocument)\n */\ninterface XMLDocument extends Document {\n    addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: XMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: XMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLDocument: {\n    prototype: XMLDocument;\n    new(): XMLDocument;\n};\n\ninterface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap {\n    \"readystatechange\": Event;\n}\n\n/**\n * `XMLHttpRequest` (XHR) objects are used to interact with servers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest)\n */\ninterface XMLHttpRequest extends XMLHttpRequestEventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/readystatechange_event) */\n    onreadystatechange: ((this: XMLHttpRequest, ev: Event) => any) | null;\n    /**\n     * The **XMLHttpRequest.readyState** property returns the state an XMLHttpRequest client is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The XMLHttpRequest **`response`** property returns the response's body content as an ArrayBuffer, a Blob, a Document, a JavaScript Object, or a string, depending on the value of the request's XMLHttpRequest.responseType property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/response)\n     */\n    readonly response: any;\n    /**\n     * The read-only XMLHttpRequest property **`responseText`** returns the text received from a server following a request being sent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseText)\n     */\n    readonly responseText: string;\n    /**\n     * The XMLHttpRequest property **`responseType`** is an enumerated string value specifying the type of data contained in the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseType)\n     */\n    responseType: XMLHttpRequestResponseType;\n    /**\n     * The read-only **`XMLHttpRequest.responseURL`** property returns the serialized URL of the response or the empty string if the URL is `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseURL)\n     */\n    readonly responseURL: string;\n    /**\n     * The **`XMLHttpRequest.responseXML`** read-only property returns a Document containing the HTML or XML retrieved by the request; or `null` if the request was unsuccessful, has not yet been sent, or if the data can't be parsed as XML or HTML.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseXML)\n     */\n    readonly responseXML: Document | null;\n    /**\n     * The read-only **`XMLHttpRequest.status`** property returns the numerical HTTP status code of the `XMLHttpRequest`'s response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/status)\n     */\n    readonly status: number;\n    /**\n     * The read-only **`XMLHttpRequest.statusText`** property returns a string containing the response's status message as returned by the HTTP server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/statusText)\n     */\n    readonly statusText: string;\n    /**\n     * The **`XMLHttpRequest.timeout`** property is an `unsigned long` representing the number of milliseconds a request can take before automatically being terminated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/timeout)\n     */\n    timeout: number;\n    /**\n     * The XMLHttpRequest `upload` property returns an XMLHttpRequestUpload object that can be observed to monitor an upload's progress.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/upload)\n     */\n    readonly upload: XMLHttpRequestUpload;\n    /**\n     * The **`XMLHttpRequest.withCredentials`** property is a boolean value that indicates whether or not cross-site `Access-Control` requests should be made using credentials such as cookies, authentication headers or TLS client certificates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/withCredentials)\n     */\n    withCredentials: boolean;\n    /**\n     * The **`XMLHttpRequest.abort()`** method aborts the request if it has already been sent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/abort)\n     */\n    abort(): void;\n    /**\n     * The XMLHttpRequest method **`getAllResponseHeaders()`** returns all the response headers, separated by CRLF, as a string, or returns `null` if no response has been received.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/getAllResponseHeaders)\n     */\n    getAllResponseHeaders(): string;\n    /**\n     * The XMLHttpRequest method **`getResponseHeader()`** returns the string containing the text of a particular header's value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/getResponseHeader)\n     */\n    getResponseHeader(name: string): string | null;\n    /**\n     * The XMLHttpRequest method **`open()`** initializes a newly-created request, or re-initializes an existing one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/open)\n     */\n    open(method: string, url: string | URL): void;\n    open(method: string, url: string | URL, async: boolean, username?: string | null, password?: string | null): void;\n    /**\n     * The XMLHttpRequest method **`overrideMimeType()`** specifies a MIME type other than the one provided by the server to be used instead when interpreting the data being transferred in a request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/overrideMimeType)\n     */\n    overrideMimeType(mime: string): void;\n    /**\n     * The XMLHttpRequest method **`send()`** sends the request to the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/send)\n     */\n    send(body?: Document | XMLHttpRequestBodyInit | null): void;\n    /**\n     * The XMLHttpRequest method **`setRequestHeader()`** sets the value of an HTTP request header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/setRequestHeader)\n     */\n    setRequestHeader(name: string, value: string): void;\n    readonly UNSENT: 0;\n    readonly OPENED: 1;\n    readonly HEADERS_RECEIVED: 2;\n    readonly LOADING: 3;\n    readonly DONE: 4;\n    addEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequest: {\n    prototype: XMLHttpRequest;\n    new(): XMLHttpRequest;\n    readonly UNSENT: 0;\n    readonly OPENED: 1;\n    readonly HEADERS_RECEIVED: 2;\n    readonly LOADING: 3;\n    readonly DONE: 4;\n};\n\ninterface XMLHttpRequestEventTargetEventMap {\n    \"abort\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"error\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"load\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"loadend\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"loadstart\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"progress\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"timeout\": ProgressEvent<XMLHttpRequestEventTarget>;\n}\n\n/**\n * `XMLHttpRequestEventTarget` is the interface that describes the event handlers shared on XMLHttpRequest and XMLHttpRequestUpload.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequestEventTarget)\n */\ninterface XMLHttpRequestEventTarget extends EventTarget {\n    onabort: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onerror: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onload: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onloadend: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onloadstart: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onprogress: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    ontimeout: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequestEventTarget: {\n    prototype: XMLHttpRequestEventTarget;\n    new(): XMLHttpRequestEventTarget;\n};\n\n/**\n * The **`XMLHttpRequestUpload`** interface represents the upload process for a specific XMLHttpRequest.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequestUpload)\n */\ninterface XMLHttpRequestUpload extends XMLHttpRequestEventTarget {\n    addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequestUpload: {\n    prototype: XMLHttpRequestUpload;\n    new(): XMLHttpRequestUpload;\n};\n\n/**\n * The `XMLSerializer` interface provides the XMLSerializer.serializeToString method to construct an XML string representing a DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLSerializer)\n */\ninterface XMLSerializer {\n    /**\n     * The XMLSerializer method **`serializeToString()`** constructs a string representing the specified DOM tree in XML form.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLSerializer/serializeToString)\n     */\n    serializeToString(root: Node): string;\n}\n\ndeclare var XMLSerializer: {\n    prototype: XMLSerializer;\n    new(): XMLSerializer;\n};\n\n/**\n * The `XPathEvaluator` interface allows to compile and evaluate XPath expressions.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathEvaluator)\n */\ninterface XPathEvaluator extends XPathEvaluatorBase {\n}\n\ndeclare var XPathEvaluator: {\n    prototype: XPathEvaluator;\n    new(): XPathEvaluator;\n};\n\ninterface XPathEvaluatorBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createExpression) */\n    createExpression(expression: string, resolver?: XPathNSResolver | null): XPathExpression;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNSResolver)\n     */\n    createNSResolver(nodeResolver: Node): Node;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/evaluate) */\n    evaluate(expression: string, contextNode: Node, resolver?: XPathNSResolver | null, type?: number, result?: XPathResult | null): XPathResult;\n}\n\n/**\n * This interface is a compiled XPath expression that can be evaluated on a document or specific node to return information from its DOM tree.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression)\n */\ninterface XPathExpression {\n    /**\n     * The **`evaluate()`** method of the returns an XPathResult.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression/evaluate)\n     */\n    evaluate(contextNode: Node, type?: number, result?: XPathResult | null): XPathResult;\n}\n\ndeclare var XPathExpression: {\n    prototype: XPathExpression;\n    new(): XPathExpression;\n};\n\n/**\n * The **`XPathResult`** interface represents the results generated by evaluating an XPath expression within the context of a given node.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult)\n */\ninterface XPathResult {\n    /**\n     * The read-only **`booleanValue`** property of the The return value is the boolean value of the `XPathResult` returned by In case XPathResult.resultType is not `BOOLEAN_TYPE`, a The following example shows the use of the `booleanValue` property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/booleanValue)\n     */\n    readonly booleanValue: boolean;\n    /**\n     * The read-only **`invalidIteratorState`** property of the is `true` if XPathResult.resultType is `UNORDERED_NODE_ITERATOR_TYPE` or `ORDERED_NODE_ITERATOR_TYPE` and the document has been modified since this result was returned.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/invalidIteratorState)\n     */\n    readonly invalidIteratorState: boolean;\n    /**\n     * The read-only **`numberValue`** property of the The return value is the numeric value of the `XPathResult` returned by In case XPathResult.resultType is not `NUMBER_TYPE`, a The following example shows the use of the `numberValue` property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/numberValue)\n     */\n    readonly numberValue: number;\n    /**\n     * The read-only **`resultType`** property of the the type constants.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/resultType)\n     */\n    readonly resultType: number;\n    /**\n     * The read-only **`singleNodeValue`** property of the `null` in case no node was matched of a result with `FIRST_ORDERED_NODE_TYPE`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/singleNodeValue)\n     */\n    readonly singleNodeValue: Node | null;\n    /**\n     * The read-only **`snapshotLength`** property of the snapshot.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotLength)\n     */\n    readonly snapshotLength: number;\n    /**\n     * The read-only **`stringValue`** property of the The return value is the string value of the `XPathResult` returned by In case XPathResult.resultType is not `STRING_TYPE`, a The following example shows the use of the `stringValue` property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/stringValue)\n     */\n    readonly stringValue: string;\n    /**\n     * The **`iterateNext()`** method of the next node from it or `null` if there are no more nodes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/iterateNext)\n     */\n    iterateNext(): Node | null;\n    /**\n     * The **`snapshotItem()`** method of the `null` in case the index is not within the range of nodes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotItem)\n     */\n    snapshotItem(index: number): Node | null;\n    readonly ANY_TYPE: 0;\n    readonly NUMBER_TYPE: 1;\n    readonly STRING_TYPE: 2;\n    readonly BOOLEAN_TYPE: 3;\n    readonly UNORDERED_NODE_ITERATOR_TYPE: 4;\n    readonly ORDERED_NODE_ITERATOR_TYPE: 5;\n    readonly UNORDERED_NODE_SNAPSHOT_TYPE: 6;\n    readonly ORDERED_NODE_SNAPSHOT_TYPE: 7;\n    readonly ANY_UNORDERED_NODE_TYPE: 8;\n    readonly FIRST_ORDERED_NODE_TYPE: 9;\n}\n\ndeclare var XPathResult: {\n    prototype: XPathResult;\n    new(): XPathResult;\n    readonly ANY_TYPE: 0;\n    readonly NUMBER_TYPE: 1;\n    readonly STRING_TYPE: 2;\n    readonly BOOLEAN_TYPE: 3;\n    readonly UNORDERED_NODE_ITERATOR_TYPE: 4;\n    readonly ORDERED_NODE_ITERATOR_TYPE: 5;\n    readonly UNORDERED_NODE_SNAPSHOT_TYPE: 6;\n    readonly ORDERED_NODE_SNAPSHOT_TYPE: 7;\n    readonly ANY_UNORDERED_NODE_TYPE: 8;\n    readonly FIRST_ORDERED_NODE_TYPE: 9;\n};\n\n/**\n * An **`XSLTProcessor`** applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor)\n */\ninterface XSLTProcessor {\n    /**\n     * The `clearParameters()` method of the XSLTProcessor interface removes all parameters (`<xsl:param>`) and their values from the stylesheet imported in the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/clearParameters)\n     */\n    clearParameters(): void;\n    /**\n     * The `getParameter()` method of the XSLTProcessor interface returns the value of a parameter (`<xsl:param>`) from the stylesheet imported in the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/getParameter)\n     */\n    getParameter(namespaceURI: string | null, localName: string): any;\n    /**\n     * The `importStylesheet()` method of the XSLTProcessor interface imports an XSLT stylesheet for the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/importStylesheet)\n     */\n    importStylesheet(style: Node): void;\n    /**\n     * The `removeParameter()` method of the XSLTProcessor interface removes the parameter (`<xsl:param>`) and its value from the stylesheet imported in the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/removeParameter)\n     */\n    removeParameter(namespaceURI: string | null, localName: string): void;\n    /**\n     * The `reset()` method of the XSLTProcessor interface removes all parameters (`<xsl:param>`) and the XSLT stylesheet from the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/reset)\n     */\n    reset(): void;\n    /**\n     * The `setParameter()` method of the XSLTProcessor interface sets the value of a parameter (`<xsl:param>`) in the stylesheet imported in the processor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/setParameter)\n     */\n    setParameter(namespaceURI: string | null, localName: string, value: any): void;\n    /**\n     * The `transformToDocument()` method of the XSLTProcessor interface transforms the provided Node source to a Document using the XSLT stylesheet associated with `XSLTProcessor`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/transformToDocument)\n     */\n    transformToDocument(source: Node): Document;\n    /**\n     * The `transformToFragment()` method of the XSLTProcessor interface transforms a provided Node source to a DocumentFragment using the XSLT stylesheet associated with the `XSLTProcessor`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XSLTProcessor/transformToFragment)\n     */\n    transformToFragment(source: Node, output: Document): DocumentFragment;\n}\n\ndeclare var XSLTProcessor: {\n    prototype: XSLTProcessor;\n    new(): XSLTProcessor;\n};\n\n/** The **`CSS`** interface holds useful CSS-related methods. */\ndeclare namespace CSS {\n    /**\n     * The static, read-only **`highlights`** property of the CSS interface provides access to the `HighlightRegistry` used to style arbitrary text ranges using the css_custom_highlight_api.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/highlights_static)\n     */\n    var highlights: HighlightRegistry;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function Hz(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function Q(value: number): CSSUnitValue;\n    function cap(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function ch(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cm(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqb(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqmax(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqmin(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function cqw(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function deg(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dpcm(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dpi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dppx(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvb(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvmax(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvmin(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function dvw(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function em(value: number): CSSUnitValue;\n    /**\n     * The **`CSS.escape()`** static method returns a string containing the escaped string passed as parameter, mostly for use as part of a CSS selector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static)\n     */\n    function escape(ident: string): string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function ex(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function fr(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function grad(value: number): CSSUnitValue;\n    function ic(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function kHz(value: number): CSSUnitValue;\n    function lh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvb(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvmax(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvmin(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function lvw(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function mm(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function ms(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function number(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function pc(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function percent(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function pt(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function px(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function rad(value: number): CSSUnitValue;\n    function rcap(value: number): CSSUnitValue;\n    function rch(value: number): CSSUnitValue;\n    /**\n     * The **`CSS.registerProperty()`** static method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/registerProperty_static)\n     */\n    function registerProperty(definition: PropertyDefinition): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function rem(value: number): CSSUnitValue;\n    function rex(value: number): CSSUnitValue;\n    function ric(value: number): CSSUnitValue;\n    function rlh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function s(value: number): CSSUnitValue;\n    /**\n     * The **`CSS.supports()`** static method returns a boolean value indicating if the browser supports a given CSS feature, or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/supports_static)\n     */\n    function supports(property: string, value: string): boolean;\n    function supports(conditionText: string): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svb(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svmax(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svmin(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function svw(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function turn(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vb(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vh(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vi(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vmax(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vmin(value: number): CSSUnitValue;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/factory_functions_static) */\n    function vw(value: number): CSSUnitValue;\n}\n\ndeclare namespace WebAssembly {\n    interface CompileError extends Error {\n    }\n\n    var CompileError: {\n        prototype: CompileError;\n        new(message?: string): CompileError;\n        (message?: string): CompileError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global) */\n    interface Global<T extends ValueType = ValueType> {\n        value: ValueTypeMap[T];\n        valueOf(): ValueTypeMap[T];\n    }\n\n    var Global: {\n        prototype: Global;\n        new<T extends ValueType = ValueType>(descriptor: GlobalDescriptor<T>, v?: ValueTypeMap[T]): Global<T>;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance) */\n    interface Instance {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance/exports) */\n        readonly exports: Exports;\n    }\n\n    var Instance: {\n        prototype: Instance;\n        new(module: Module, importObject?: Imports): Instance;\n    };\n\n    interface LinkError extends Error {\n    }\n\n    var LinkError: {\n        prototype: LinkError;\n        new(message?: string): LinkError;\n        (message?: string): LinkError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory) */\n    interface Memory {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/buffer) */\n        readonly buffer: ArrayBuffer;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow) */\n        grow(delta: number): number;\n    }\n\n    var Memory: {\n        prototype: Memory;\n        new(descriptor: MemoryDescriptor): Memory;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module) */\n    interface Module {\n    }\n\n    var Module: {\n        prototype: Module;\n        new(bytes: BufferSource): Module;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/customSections_static) */\n        customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/exports_static) */\n        exports(moduleObject: Module): ModuleExportDescriptor[];\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/imports_static) */\n        imports(moduleObject: Module): ModuleImportDescriptor[];\n    };\n\n    interface RuntimeError extends Error {\n    }\n\n    var RuntimeError: {\n        prototype: RuntimeError;\n        new(message?: string): RuntimeError;\n        (message?: string): RuntimeError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table) */\n    interface Table {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/length) */\n        readonly length: number;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/get) */\n        get(index: number): any;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/grow) */\n        grow(delta: number, value?: any): number;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/set) */\n        set(index: number, value?: any): void;\n    }\n\n    var Table: {\n        prototype: Table;\n        new(descriptor: TableDescriptor, value?: any): Table;\n    };\n\n    interface GlobalDescriptor<T extends ValueType = ValueType> {\n        mutable?: boolean;\n        value: T;\n    }\n\n    interface MemoryDescriptor {\n        initial: number;\n        maximum?: number;\n        shared?: boolean;\n    }\n\n    interface ModuleExportDescriptor {\n        kind: ImportExportKind;\n        name: string;\n    }\n\n    interface ModuleImportDescriptor {\n        kind: ImportExportKind;\n        module: string;\n        name: string;\n    }\n\n    interface TableDescriptor {\n        element: TableKind;\n        initial: number;\n        maximum?: number;\n    }\n\n    interface ValueTypeMap {\n        anyfunc: Function;\n        externref: any;\n        f32: number;\n        f64: number;\n        i32: number;\n        i64: bigint;\n        v128: never;\n    }\n\n    interface WebAssemblyInstantiatedSource {\n        instance: Instance;\n        module: Module;\n    }\n\n    type ImportExportKind = \"function\" | \"global\" | \"memory\" | \"table\";\n    type TableKind = \"anyfunc\" | \"externref\";\n    type ExportValue = Function | Global | Memory | Table;\n    type Exports = Record<string, ExportValue>;\n    type ImportValue = ExportValue | number;\n    type Imports = Record<string, ModuleImports>;\n    type ModuleImports = Record<string, ImportValue>;\n    type ValueType = keyof ValueTypeMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */\n    function compile(bytes: BufferSource): Promise<Module>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */\n    function compileStreaming(source: Response | PromiseLike<Response>): Promise<Module>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static) */\n    function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;\n    function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static) */\n    function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static) */\n    function validate(bytes: BufferSource): boolean;\n}\n\n/** The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). */\n/**\n * The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)\n */\ninterface Console {\n    /**\n     * The **`console.assert()`** static method writes an error message to the console if the assertion is false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static)\n     */\n    assert(condition?: boolean, ...data: any[]): void;\n    /**\n     * The **`console.clear()`** static method clears the console if possible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static)\n     */\n    clear(): void;\n    /**\n     * The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static)\n     */\n    count(label?: string): void;\n    /**\n     * The **`console.countReset()`** static method resets counter used with console/count_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static)\n     */\n    countReset(label?: string): void;\n    /**\n     * The **`console.debug()`** static method outputs a message to the console at the 'debug' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static)\n     */\n    debug(...data: any[]): void;\n    /**\n     * The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static)\n     */\n    dir(item?: any, options?: any): void;\n    /**\n     * The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static)\n     */\n    dirxml(...data: any[]): void;\n    /**\n     * The **`console.error()`** static method outputs a message to the console at the 'error' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static)\n     */\n    error(...data: any[]): void;\n    /**\n     * The **`console.group()`** static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static)\n     */\n    group(...data: any[]): void;\n    /**\n     * The **`console.groupCollapsed()`** static method creates a new inline group in the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static)\n     */\n    groupCollapsed(...data: any[]): void;\n    /**\n     * The **`console.groupEnd()`** static method exits the current inline group in the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static)\n     */\n    groupEnd(): void;\n    /**\n     * The **`console.info()`** static method outputs a message to the console at the 'info' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static)\n     */\n    info(...data: any[]): void;\n    /**\n     * The **`console.log()`** static method outputs a message to the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static)\n     */\n    log(...data: any[]): void;\n    /**\n     * The **`console.table()`** static method displays tabular data as a table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static)\n     */\n    table(tabularData?: any, properties?: string[]): void;\n    /**\n     * The **`console.time()`** static method starts a timer you can use to track how long an operation takes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static)\n     */\n    time(label?: string): void;\n    /**\n     * The **`console.timeEnd()`** static method stops a timer that was previously started by calling console/time_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static)\n     */\n    timeEnd(label?: string): void;\n    /**\n     * The **`console.timeLog()`** static method logs the current value of a timer that was previously started by calling console/time_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)\n     */\n    timeLog(label?: string, ...data: any[]): void;\n    timeStamp(label?: string): void;\n    /**\n     * The **`console.trace()`** static method outputs a stack trace to the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static)\n     */\n    trace(...data: any[]): void;\n    /**\n     * The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static)\n     */\n    warn(...data: any[]): void;\n}\n\ndeclare var console: Console;\n\ninterface AudioDataOutputCallback {\n    (output: AudioData): void;\n}\n\ninterface BlobCallback {\n    (blob: Blob | null): void;\n}\n\ninterface CustomElementConstructor {\n    new (...params: any[]): HTMLElement;\n}\n\ninterface DecodeErrorCallback {\n    (error: DOMException): void;\n}\n\ninterface DecodeSuccessCallback {\n    (decodedData: AudioBuffer): void;\n}\n\ninterface EncodedAudioChunkOutputCallback {\n    (output: EncodedAudioChunk, metadata?: EncodedAudioChunkMetadata): void;\n}\n\ninterface EncodedVideoChunkOutputCallback {\n    (chunk: EncodedVideoChunk, metadata?: EncodedVideoChunkMetadata): void;\n}\n\ninterface ErrorCallback {\n    (err: DOMException): void;\n}\n\ninterface FileCallback {\n    (file: File): void;\n}\n\ninterface FileSystemEntriesCallback {\n    (entries: FileSystemEntry[]): void;\n}\n\ninterface FileSystemEntryCallback {\n    (entry: FileSystemEntry): void;\n}\n\ninterface FrameRequestCallback {\n    (time: DOMHighResTimeStamp): void;\n}\n\ninterface FunctionStringCallback {\n    (data: string): void;\n}\n\ninterface IdleRequestCallback {\n    (deadline: IdleDeadline): void;\n}\n\ninterface IntersectionObserverCallback {\n    (entries: IntersectionObserverEntry[], observer: IntersectionObserver): void;\n}\n\ninterface LockGrantedCallback<T> {\n    (lock: Lock | null): T;\n}\n\ninterface MediaSessionActionHandler {\n    (details: MediaSessionActionDetails): void;\n}\n\ninterface MutationCallback {\n    (mutations: MutationRecord[], observer: MutationObserver): void;\n}\n\ninterface NotificationPermissionCallback {\n    (permission: NotificationPermission): void;\n}\n\ninterface OnBeforeUnloadEventHandlerNonNull {\n    (event: Event): string | null;\n}\n\ninterface OnErrorEventHandlerNonNull {\n    (event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error): any;\n}\n\ninterface PerformanceObserverCallback {\n    (entries: PerformanceObserverEntryList, observer: PerformanceObserver): void;\n}\n\ninterface PositionCallback {\n    (position: GeolocationPosition): void;\n}\n\ninterface PositionErrorCallback {\n    (positionError: GeolocationPositionError): void;\n}\n\ninterface QueuingStrategySize<T = any> {\n    (chunk: T): number;\n}\n\ninterface RTCPeerConnectionErrorCallback {\n    (error: DOMException): void;\n}\n\ninterface RTCSessionDescriptionCallback {\n    (description: RTCSessionDescriptionInit): void;\n}\n\ninterface RemotePlaybackAvailabilityCallback {\n    (available: boolean): void;\n}\n\ninterface ReportingObserverCallback {\n    (reports: Report[], observer: ReportingObserver): void;\n}\n\ninterface ResizeObserverCallback {\n    (entries: ResizeObserverEntry[], observer: ResizeObserver): void;\n}\n\ninterface TransformerFlushCallback<O> {\n    (controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n}\n\ninterface TransformerStartCallback<O> {\n    (controller: TransformStreamDefaultController<O>): any;\n}\n\ninterface TransformerTransformCallback<I, O> {\n    (chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkAbortCallback {\n    (reason?: any): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkCloseCallback {\n    (): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkStartCallback {\n    (controller: WritableStreamDefaultController): any;\n}\n\ninterface UnderlyingSinkWriteCallback<W> {\n    (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourceCancelCallback {\n    (reason?: any): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourcePullCallback<R> {\n    (controller: ReadableStreamController<R>): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourceStartCallback<R> {\n    (controller: ReadableStreamController<R>): any;\n}\n\ninterface VideoFrameOutputCallback {\n    (output: VideoFrame): void;\n}\n\ninterface VideoFrameRequestCallback {\n    (now: DOMHighResTimeStamp, metadata: VideoFrameCallbackMetadata): void;\n}\n\ninterface ViewTransitionUpdateCallback {\n    (): any;\n}\n\ninterface VoidFunction {\n    (): void;\n}\n\ninterface WebCodecsErrorCallback {\n    (error: DOMException): void;\n}\n\ninterface HTMLElementTagNameMap {\n    \"a\": HTMLAnchorElement;\n    \"abbr\": HTMLElement;\n    \"address\": HTMLElement;\n    \"area\": HTMLAreaElement;\n    \"article\": HTMLElement;\n    \"aside\": HTMLElement;\n    \"audio\": HTMLAudioElement;\n    \"b\": HTMLElement;\n    \"base\": HTMLBaseElement;\n    \"bdi\": HTMLElement;\n    \"bdo\": HTMLElement;\n    \"blockquote\": HTMLQuoteElement;\n    \"body\": HTMLBodyElement;\n    \"br\": HTMLBRElement;\n    \"button\": HTMLButtonElement;\n    \"canvas\": HTMLCanvasElement;\n    \"caption\": HTMLTableCaptionElement;\n    \"cite\": HTMLElement;\n    \"code\": HTMLElement;\n    \"col\": HTMLTableColElement;\n    \"colgroup\": HTMLTableColElement;\n    \"data\": HTMLDataElement;\n    \"datalist\": HTMLDataListElement;\n    \"dd\": HTMLElement;\n    \"del\": HTMLModElement;\n    \"details\": HTMLDetailsElement;\n    \"dfn\": HTMLElement;\n    \"dialog\": HTMLDialogElement;\n    \"div\": HTMLDivElement;\n    \"dl\": HTMLDListElement;\n    \"dt\": HTMLElement;\n    \"em\": HTMLElement;\n    \"embed\": HTMLEmbedElement;\n    \"fieldset\": HTMLFieldSetElement;\n    \"figcaption\": HTMLElement;\n    \"figure\": HTMLElement;\n    \"footer\": HTMLElement;\n    \"form\": HTMLFormElement;\n    \"h1\": HTMLHeadingElement;\n    \"h2\": HTMLHeadingElement;\n    \"h3\": HTMLHeadingElement;\n    \"h4\": HTMLHeadingElement;\n    \"h5\": HTMLHeadingElement;\n    \"h6\": HTMLHeadingElement;\n    \"head\": HTMLHeadElement;\n    \"header\": HTMLElement;\n    \"hgroup\": HTMLElement;\n    \"hr\": HTMLHRElement;\n    \"html\": HTMLHtmlElement;\n    \"i\": HTMLElement;\n    \"iframe\": HTMLIFrameElement;\n    \"img\": HTMLImageElement;\n    \"input\": HTMLInputElement;\n    \"ins\": HTMLModElement;\n    \"kbd\": HTMLElement;\n    \"label\": HTMLLabelElement;\n    \"legend\": HTMLLegendElement;\n    \"li\": HTMLLIElement;\n    \"link\": HTMLLinkElement;\n    \"main\": HTMLElement;\n    \"map\": HTMLMapElement;\n    \"mark\": HTMLElement;\n    \"menu\": HTMLMenuElement;\n    \"meta\": HTMLMetaElement;\n    \"meter\": HTMLMeterElement;\n    \"nav\": HTMLElement;\n    \"noscript\": HTMLElement;\n    \"object\": HTMLObjectElement;\n    \"ol\": HTMLOListElement;\n    \"optgroup\": HTMLOptGroupElement;\n    \"option\": HTMLOptionElement;\n    \"output\": HTMLOutputElement;\n    \"p\": HTMLParagraphElement;\n    \"picture\": HTMLPictureElement;\n    \"pre\": HTMLPreElement;\n    \"progress\": HTMLProgressElement;\n    \"q\": HTMLQuoteElement;\n    \"rp\": HTMLElement;\n    \"rt\": HTMLElement;\n    \"ruby\": HTMLElement;\n    \"s\": HTMLElement;\n    \"samp\": HTMLElement;\n    \"script\": HTMLScriptElement;\n    \"search\": HTMLElement;\n    \"section\": HTMLElement;\n    \"select\": HTMLSelectElement;\n    \"slot\": HTMLSlotElement;\n    \"small\": HTMLElement;\n    \"source\": HTMLSourceElement;\n    \"span\": HTMLSpanElement;\n    \"strong\": HTMLElement;\n    \"style\": HTMLStyleElement;\n    \"sub\": HTMLElement;\n    \"summary\": HTMLElement;\n    \"sup\": HTMLElement;\n    \"table\": HTMLTableElement;\n    \"tbody\": HTMLTableSectionElement;\n    \"td\": HTMLTableCellElement;\n    \"template\": HTMLTemplateElement;\n    \"textarea\": HTMLTextAreaElement;\n    \"tfoot\": HTMLTableSectionElement;\n    \"th\": HTMLTableCellElement;\n    \"thead\": HTMLTableSectionElement;\n    \"time\": HTMLTimeElement;\n    \"title\": HTMLTitleElement;\n    \"tr\": HTMLTableRowElement;\n    \"track\": HTMLTrackElement;\n    \"u\": HTMLElement;\n    \"ul\": HTMLUListElement;\n    \"var\": HTMLElement;\n    \"video\": HTMLVideoElement;\n    \"wbr\": HTMLElement;\n}\n\ninterface HTMLElementDeprecatedTagNameMap {\n    \"acronym\": HTMLElement;\n    \"applet\": HTMLUnknownElement;\n    \"basefont\": HTMLElement;\n    \"bgsound\": HTMLUnknownElement;\n    \"big\": HTMLElement;\n    \"blink\": HTMLUnknownElement;\n    \"center\": HTMLElement;\n    \"dir\": HTMLDirectoryElement;\n    \"font\": HTMLFontElement;\n    \"frame\": HTMLFrameElement;\n    \"frameset\": HTMLFrameSetElement;\n    \"isindex\": HTMLUnknownElement;\n    \"keygen\": HTMLUnknownElement;\n    \"listing\": HTMLPreElement;\n    \"marquee\": HTMLMarqueeElement;\n    \"menuitem\": HTMLElement;\n    \"multicol\": HTMLUnknownElement;\n    \"nextid\": HTMLUnknownElement;\n    \"nobr\": HTMLElement;\n    \"noembed\": HTMLElement;\n    \"noframes\": HTMLElement;\n    \"param\": HTMLParamElement;\n    \"plaintext\": HTMLElement;\n    \"rb\": HTMLElement;\n    \"rtc\": HTMLElement;\n    \"spacer\": HTMLUnknownElement;\n    \"strike\": HTMLElement;\n    \"tt\": HTMLElement;\n    \"xmp\": HTMLPreElement;\n}\n\ninterface SVGElementTagNameMap {\n    \"a\": SVGAElement;\n    \"animate\": SVGAnimateElement;\n    \"animateMotion\": SVGAnimateMotionElement;\n    \"animateTransform\": SVGAnimateTransformElement;\n    \"circle\": SVGCircleElement;\n    \"clipPath\": SVGClipPathElement;\n    \"defs\": SVGDefsElement;\n    \"desc\": SVGDescElement;\n    \"ellipse\": SVGEllipseElement;\n    \"feBlend\": SVGFEBlendElement;\n    \"feColorMatrix\": SVGFEColorMatrixElement;\n    \"feComponentTransfer\": SVGFEComponentTransferElement;\n    \"feComposite\": SVGFECompositeElement;\n    \"feConvolveMatrix\": SVGFEConvolveMatrixElement;\n    \"feDiffuseLighting\": SVGFEDiffuseLightingElement;\n    \"feDisplacementMap\": SVGFEDisplacementMapElement;\n    \"feDistantLight\": SVGFEDistantLightElement;\n    \"feDropShadow\": SVGFEDropShadowElement;\n    \"feFlood\": SVGFEFloodElement;\n    \"feFuncA\": SVGFEFuncAElement;\n    \"feFuncB\": SVGFEFuncBElement;\n    \"feFuncG\": SVGFEFuncGElement;\n    \"feFuncR\": SVGFEFuncRElement;\n    \"feGaussianBlur\": SVGFEGaussianBlurElement;\n    \"feImage\": SVGFEImageElement;\n    \"feMerge\": SVGFEMergeElement;\n    \"feMergeNode\": SVGFEMergeNodeElement;\n    \"feMorphology\": SVGFEMorphologyElement;\n    \"feOffset\": SVGFEOffsetElement;\n    \"fePointLight\": SVGFEPointLightElement;\n    \"feSpecularLighting\": SVGFESpecularLightingElement;\n    \"feSpotLight\": SVGFESpotLightElement;\n    \"feTile\": SVGFETileElement;\n    \"feTurbulence\": SVGFETurbulenceElement;\n    \"filter\": SVGFilterElement;\n    \"foreignObject\": SVGForeignObjectElement;\n    \"g\": SVGGElement;\n    \"image\": SVGImageElement;\n    \"line\": SVGLineElement;\n    \"linearGradient\": SVGLinearGradientElement;\n    \"marker\": SVGMarkerElement;\n    \"mask\": SVGMaskElement;\n    \"metadata\": SVGMetadataElement;\n    \"mpath\": SVGMPathElement;\n    \"path\": SVGPathElement;\n    \"pattern\": SVGPatternElement;\n    \"polygon\": SVGPolygonElement;\n    \"polyline\": SVGPolylineElement;\n    \"radialGradient\": SVGRadialGradientElement;\n    \"rect\": SVGRectElement;\n    \"script\": SVGScriptElement;\n    \"set\": SVGSetElement;\n    \"stop\": SVGStopElement;\n    \"style\": SVGStyleElement;\n    \"svg\": SVGSVGElement;\n    \"switch\": SVGSwitchElement;\n    \"symbol\": SVGSymbolElement;\n    \"text\": SVGTextElement;\n    \"textPath\": SVGTextPathElement;\n    \"title\": SVGTitleElement;\n    \"tspan\": SVGTSpanElement;\n    \"use\": SVGUseElement;\n    \"view\": SVGViewElement;\n}\n\ninterface MathMLElementTagNameMap {\n    \"annotation\": MathMLElement;\n    \"annotation-xml\": MathMLElement;\n    \"maction\": MathMLElement;\n    \"math\": MathMLElement;\n    \"merror\": MathMLElement;\n    \"mfrac\": MathMLElement;\n    \"mi\": MathMLElement;\n    \"mmultiscripts\": MathMLElement;\n    \"mn\": MathMLElement;\n    \"mo\": MathMLElement;\n    \"mover\": MathMLElement;\n    \"mpadded\": MathMLElement;\n    \"mphantom\": MathMLElement;\n    \"mprescripts\": MathMLElement;\n    \"mroot\": MathMLElement;\n    \"mrow\": MathMLElement;\n    \"ms\": MathMLElement;\n    \"mspace\": MathMLElement;\n    \"msqrt\": MathMLElement;\n    \"mstyle\": MathMLElement;\n    \"msub\": MathMLElement;\n    \"msubsup\": MathMLElement;\n    \"msup\": MathMLElement;\n    \"mtable\": MathMLElement;\n    \"mtd\": MathMLElement;\n    \"mtext\": MathMLElement;\n    \"mtr\": MathMLElement;\n    \"munder\": MathMLElement;\n    \"munderover\": MathMLElement;\n    \"semantics\": MathMLElement;\n}\n\n/** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */\ntype ElementTagNameMap = HTMLElementTagNameMap & Pick<SVGElementTagNameMap, Exclude<keyof SVGElementTagNameMap, keyof HTMLElementTagNameMap>>;\n\ndeclare var Audio: {\n    new(src?: string): HTMLAudioElement;\n};\ndeclare var Image: {\n    new(width?: number, height?: number): HTMLImageElement;\n};\ndeclare var Option: {\n    new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement;\n};\n/**\n * @deprecated This is a legacy alias of `navigator`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/navigator)\n */\ndeclare var clientInformation: Navigator;\n/**\n * The **`Window.closed`** read-only property indicates whether the referenced window is closed or not.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed)\n */\ndeclare var closed: boolean;\n/**\n * The **`cookieStore`** read-only property of the Window interface returns a reference to the CookieStore object for the current document context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore)\n */\ndeclare var cookieStore: CookieStore;\n/**\n * The **`customElements`** read-only property of the Window interface returns a reference to the CustomElementRegistry object, which can be used to register new custom elements and get information about previously registered custom elements.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/customElements)\n */\ndeclare var customElements: CustomElementRegistry;\n/**\n * The **`devicePixelRatio`** of Window interface returns the ratio of the resolution in _physical pixels_ to the resolution in _CSS pixels_ for the current display device.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/devicePixelRatio)\n */\ndeclare var devicePixelRatio: number;\n/**\n * **`window.document`** returns a reference to the document contained in the window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/document)\n */\ndeclare var document: Document;\n/**\n * The read-only Window property **`event`** returns the Event which is currently being handled by the site's code.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/event)\n */\ndeclare var event: Event | undefined;\n/**\n * The `external` property of the Window API returns an instance of the `External` interface, which was intended to contain functions related to adding external search providers to the browser.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/external)\n */\ndeclare var external: External;\n/**\n * The **`Window.frameElement`** property returns the element (such as iframe or object) in which the window is embedded.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/frameElement)\n */\ndeclare var frameElement: Element | null;\n/**\n * Returns the window itself, which is an array-like object, listing the direct sub-frames of the current window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/frames)\n */\ndeclare var frames: WindowProxy;\n/**\n * The `Window.history` read-only property returns a reference to the History object, which provides an interface for manipulating the browser _session history_ (pages visited in the tab or frame that the current page is loaded in).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/history)\n */\ndeclare var history: History;\n/**\n * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)\n */\ndeclare var innerHeight: number;\n/**\n * The read-only Window property **`innerWidth`** returns the interior width of the window in pixels (that is, the width of the window's layout viewport).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerWidth)\n */\ndeclare var innerWidth: number;\n/**\n * Returns the number of frames (either frame or A number.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)\n */\ndeclare var length: number;\n/**\n * The **`Window.location`** read-only property returns a Location object with information about the current location of the document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location)\n */\ndeclare var location: Location;\n/**\n * Returns the `locationbar` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/locationbar)\n */\ndeclare var locationbar: BarProp;\n/**\n * Returns the `menubar` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/menubar)\n */\ndeclare var menubar: BarProp;\n/**\n * The `Window.name` property gets/sets the name of the window's browsing context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/name)\n */\n/** @deprecated */\ndeclare const name: void;\n/**\n * The **`Window.navigator`** read-only property returns a reference to the Navigator object, which has methods and properties about the application running the script.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/navigator)\n */\ndeclare var navigator: Navigator;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/devicemotion_event)\n */\ndeclare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientation_event)\n */\ndeclare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/deviceorientationabsolute_event)\n */\ndeclare var ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;\n/**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/orientationchange_event)\n */\ndeclare var onorientationchange: ((this: Window, ev: Event) => any) | null;\n/**\n * The Window interface's **`opener`** property returns a reference to the window that opened the window, either with Window.open, or by navigating a link with a `target` attribute.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/opener)\n */\ndeclare var opener: any;\n/**\n * Returns the orientation in degrees (in 90-degree increments) of the viewport relative to the device's natural orientation.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/orientation)\n */\ndeclare var orientation: number;\n/**\n * The **`originAgentCluster`** read-only property of the Window interface returns `true` if this window belongs to an _origin-keyed agent cluster_: this means that the operating system has provided dedicated resources (for example an operating system process) to this window's origin that are not shared with windows from other origins.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/originAgentCluster)\n */\ndeclare var originAgentCluster: boolean;\n/**\n * The **`Window.outerHeight`** read-only property returns the height in pixels of the whole browser window, including any sidebar, window chrome, and window-resizing borders/handles.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerHeight)\n */\ndeclare var outerHeight: number;\n/**\n * **`Window.outerWidth`** read-only property returns the width of the outside of the browser window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerWidth)\n */\ndeclare var outerWidth: number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX) */\ndeclare var pageXOffset: number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY) */\ndeclare var pageYOffset: number;\n/**\n * The **`Window.parent`** property is a reference to the parent of the current window or subframe.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/parent)\n */\ndeclare var parent: WindowProxy;\n/**\n * Returns the `personalbar` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/personalbar)\n */\ndeclare var personalbar: BarProp;\n/**\n * The Window property **`screen`** returns a reference to the screen object associated with the window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screen)\n */\ndeclare var screen: Screen;\n/**\n * The **`Window.screenLeft`** read-only property returns the horizontal distance, in CSS pixels, from the left border of the user's browser viewport to the left side of the screen.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenLeft)\n */\ndeclare var screenLeft: number;\n/**\n * The **`Window.screenTop`** read-only property returns the vertical distance, in CSS pixels, from the top border of the user's browser viewport to the top side of the screen.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenTop)\n */\ndeclare var screenTop: number;\n/**\n * The **`Window.screenX`** read-only property returns the horizontal distance, in CSS pixels, of the left border of the user's browser viewport to the left side of the screen.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenX)\n */\ndeclare var screenX: number;\n/**\n * The **`Window.screenY`** read-only property returns the vertical distance, in CSS pixels, of the top border of the user's browser viewport to the top edge of the screen.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screenY)\n */\ndeclare var screenY: number;\n/**\n * The read-only **`scrollX`** property of the Window interface returns the number of pixels by which the document is currently scrolled horizontally.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX)\n */\ndeclare var scrollX: number;\n/**\n * The read-only **`scrollY`** property of the Window interface returns the number of pixels by which the document is currently scrolled vertically.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY)\n */\ndeclare var scrollY: number;\n/**\n * Returns the `scrollbars` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollbars)\n */\ndeclare var scrollbars: BarProp;\n/**\n * The **`Window.self`** read-only property returns the window itself, as a WindowProxy.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/self)\n */\ndeclare var self: Window & typeof globalThis;\n/**\n * The `speechSynthesis` read-only property of the Window object returns a SpeechSynthesis object, which is the entry point into using Web Speech API speech synthesis functionality.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/speechSynthesis)\n */\ndeclare var speechSynthesis: SpeechSynthesis;\n/**\n * The **`status`** property of the bar at the bottom of the browser window.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)\n */\ndeclare var status: string;\n/**\n * Returns the `statusbar` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/statusbar)\n */\ndeclare var statusbar: BarProp;\n/**\n * Returns the `toolbar` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/toolbar)\n */\ndeclare var toolbar: BarProp;\n/**\n * Returns a reference to the topmost window in the window hierarchy.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/top)\n */\ndeclare var top: WindowProxy | null;\n/**\n * The **`visualViewport`** read-only property of the Window interface returns a VisualViewport object representing the visual viewport for a given window, or `null` if current document is not fully active.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/visualViewport)\n */\ndeclare var visualViewport: VisualViewport | null;\n/**\n * The **`window`** property of a Window object points to the window object itself.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/window)\n */\ndeclare var window: Window & typeof globalThis;\n/**\n * `window.alert()` instructs the browser to display a dialog with an optional message, and to wait until the user dismisses the dialog.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/alert)\n */\ndeclare function alert(message?: any): void;\n/**\n * The **`Window.blur()`** method does nothing.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/blur)\n */\ndeclare function blur(): void;\n/**\n * The **`window.cancelIdleCallback()`** method cancels a callback previously scheduled with window.requestIdleCallback().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback)\n */\ndeclare function cancelIdleCallback(handle: number): void;\n/**\n * The **`Window.captureEvents()`** method does nothing.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/captureEvents)\n */\ndeclare function captureEvents(): void;\n/**\n * The **`Window.close()`** method closes the current window, or the window on which it was called.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/close)\n */\ndeclare function close(): void;\n/**\n * `window.confirm()` instructs the browser to display a dialog with an optional message, and to wait until the user either confirms or cancels the dialog.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/confirm)\n */\ndeclare function confirm(message?: string): boolean;\n/**\n * Makes a request to bring the window to the front.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/focus)\n */\ndeclare function focus(): void;\n/**\n * The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)\n */\ndeclare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration;\n/**\n * The **`getSelection()`** method of the Window interface returns the Selection object associated with the window's document, representing the range of text selected by the user or the current position of the caret.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/getSelection)\n */\ndeclare function getSelection(): Selection | null;\n/**\n * The Window interface's **`matchMedia()`** method returns a new MediaQueryList object that can then be used to determine if the document matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/matchMedia)\n */\ndeclare function matchMedia(query: string): MediaQueryList;\n/**\n * The **`moveBy()`** method of the Window interface moves the current window by a specified amount.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/moveBy)\n */\ndeclare function moveBy(x: number, y: number): void;\n/**\n * The **`moveTo()`** method of the Window interface moves the current window to the specified coordinates.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/moveTo)\n */\ndeclare function moveTo(x: number, y: number): void;\n/**\n * The **`open()`** method of the `Window` interface loads a specified resource into a new or existing browsing context (that is, a tab, a window, or an iframe) under a specified name.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/open)\n */\ndeclare function open(url?: string | URL, target?: string, features?: string): WindowProxy | null;\n/**\n * The **`window.postMessage()`** method safely enables cross-origin communication between Window objects; _e.g.,_ between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/postMessage)\n */\ndeclare function postMessage(message: any, targetOrigin: string, transfer?: Transferable[]): void;\ndeclare function postMessage(message: any, options?: WindowPostMessageOptions): void;\n/**\n * Opens the print dialog to print the current document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/print)\n */\ndeclare function print(): void;\n/**\n * `window.prompt()` instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/prompt)\n */\ndeclare function prompt(message?: string, _default?: string): string | null;\n/**\n * Releases the window from trapping events of a specific type.\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/releaseEvents)\n */\ndeclare function releaseEvents(): void;\n/**\n * The **`window.requestIdleCallback()`** method queues a function to be called during a browser's idle periods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/requestIdleCallback)\n */\ndeclare function requestIdleCallback(callback: IdleRequestCallback, options?: IdleRequestOptions): number;\n/**\n * The **`Window.resizeBy()`** method resizes the current window by a specified amount.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/resizeBy)\n */\ndeclare function resizeBy(x: number, y: number): void;\n/**\n * The **`Window.resizeTo()`** method dynamically resizes the window.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/resizeTo)\n */\ndeclare function resizeTo(width: number, height: number): void;\n/**\n * The **`Window.scroll()`** method scrolls the window to a particular place in the document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scroll)\n */\ndeclare function scroll(options?: ScrollToOptions): void;\ndeclare function scroll(x: number, y: number): void;\n/**\n * The **`Window.scrollBy()`** method scrolls the document in the window by the given amount.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)\n */\ndeclare function scrollBy(options?: ScrollToOptions): void;\ndeclare function scrollBy(x: number, y: number): void;\n/**\n * **`Window.scrollTo()`** scrolls to a particular set of coordinates in the document.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)\n */\ndeclare function scrollTo(options?: ScrollToOptions): void;\ndeclare function scrollTo(x: number, y: number): void;\n/**\n * The **`window.stop()`** stops further resource loading in the current browsing context, equivalent to the stop button in the browser.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/stop)\n */\ndeclare function stop(): void;\ndeclare function toString(): string;\n/**\n * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)\n */\ndeclare function dispatchEvent(event: Event): boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */\ndeclare function cancelAnimationFrame(handle: number): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */\ndeclare function requestAnimationFrame(callback: FrameRequestCallback): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/abort_event) */\ndeclare var onabort: ((this: Window, ev: UIEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationcancel_event) */\ndeclare var onanimationcancel: ((this: Window, ev: AnimationEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) */\ndeclare var onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) */\ndeclare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) */\ndeclare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) */\ndeclare var onauxclick: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) */\ndeclare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) */\ndeclare var onbeforematch: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */\ndeclare var onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event) */\ndeclare var onblur: ((this: Window, ev: FocusEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */\ndeclare var oncancel: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplay_event) */\ndeclare var oncanplay: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplaythrough_event) */\ndeclare var oncanplaythrough: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/change_event) */\ndeclare var onchange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/click_event) */\ndeclare var onclick: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */\ndeclare var onclose: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) */\ndeclare var oncontextlost: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event) */\ndeclare var oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) */\ndeclare var oncontextrestored: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) */\ndeclare var oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) */\ndeclare var oncuechange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/cut_event) */\ndeclare var oncut: ((this: Window, ev: ClipboardEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/dblclick_event) */\ndeclare var ondblclick: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drag_event) */\ndeclare var ondrag: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragend_event) */\ndeclare var ondragend: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragenter_event) */\ndeclare var ondragenter: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragleave_event) */\ndeclare var ondragleave: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragover_event) */\ndeclare var ondragover: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragstart_event) */\ndeclare var ondragstart: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drop_event) */\ndeclare var ondrop: ((this: Window, ev: DragEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/durationchange_event) */\ndeclare var ondurationchange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/emptied_event) */\ndeclare var onemptied: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ended_event) */\ndeclare var onended: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/error_event) */\ndeclare var onerror: OnErrorEventHandler;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/focus_event) */\ndeclare var onfocus: ((this: Window, ev: FocusEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/formdata_event) */\ndeclare var onformdata: ((this: Window, ev: FormDataEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) */\ndeclare var ongotpointercapture: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) */\ndeclare var oninput: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) */\ndeclare var oninvalid: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) */\ndeclare var onkeydown: ((this: Window, ev: KeyboardEvent) => any) | null;\n/**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keypress_event)\n */\ndeclare var onkeypress: ((this: Window, ev: KeyboardEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keyup_event) */\ndeclare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event) */\ndeclare var onload: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadeddata_event) */\ndeclare var onloadeddata: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadedmetadata_event) */\ndeclare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event) */\ndeclare var onloadstart: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */\ndeclare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousedown_event) */\ndeclare var onmousedown: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseenter_event) */\ndeclare var onmouseenter: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseleave_event) */\ndeclare var onmouseleave: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousemove_event) */\ndeclare var onmousemove: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseout_event) */\ndeclare var onmouseout: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseover_event) */\ndeclare var onmouseover: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseup_event) */\ndeclare var onmouseup: ((this: Window, ev: MouseEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/paste_event) */\ndeclare var onpaste: ((this: Window, ev: ClipboardEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause_event) */\ndeclare var onpause: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/play_event) */\ndeclare var onplay: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playing_event) */\ndeclare var onplaying: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointercancel_event) */\ndeclare var onpointercancel: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerdown_event) */\ndeclare var onpointerdown: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerenter_event) */\ndeclare var onpointerenter: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerleave_event) */\ndeclare var onpointerleave: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointermove_event) */\ndeclare var onpointermove: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerout_event) */\ndeclare var onpointerout: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) */\ndeclare var onpointerover: ((this: Window, ev: PointerEvent) => any) | null;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event)\n */\ndeclare var onpointerrawupdate: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) */\ndeclare var onpointerup: ((this: Window, ev: PointerEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/progress_event) */\ndeclare var onprogress: ((this: Window, ev: ProgressEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ratechange_event) */\ndeclare var onratechange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reset_event) */\ndeclare var onreset: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/resize_event) */\ndeclare var onresize: ((this: Window, ev: UIEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event) */\ndeclare var onscroll: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */\ndeclare var onscrollend: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */\ndeclare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeked_event) */\ndeclare var onseeked: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking_event) */\ndeclare var onseeking: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/select_event) */\ndeclare var onselect: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/selectionchange_event) */\ndeclare var onselectionchange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/selectstart_event) */\ndeclare var onselectstart: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/slotchange_event) */\ndeclare var onslotchange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/stalled_event) */\ndeclare var onstalled: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit_event) */\ndeclare var onsubmit: ((this: Window, ev: SubmitEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/suspend_event) */\ndeclare var onsuspend: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event) */\ndeclare var ontimeupdate: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) */\ndeclare var ontoggle: ((this: Window, ev: ToggleEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) */\ndeclare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchend_event) */\ndeclare var ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchmove_event) */\ndeclare var ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchstart_event) */\ndeclare var ontouchstart: ((this: Window, ev: TouchEvent) => any) | null | undefined;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitioncancel_event) */\ndeclare var ontransitioncancel: ((this: Window, ev: TransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) */\ndeclare var ontransitionend: ((this: Window, ev: TransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionrun_event) */\ndeclare var ontransitionrun: ((this: Window, ev: TransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionstart_event) */\ndeclare var ontransitionstart: ((this: Window, ev: TransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volumechange_event) */\ndeclare var onvolumechange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waiting_event) */\ndeclare var onwaiting: ((this: Window, ev: Event) => any) | null;\n/**\n * @deprecated This is a legacy alias of `onanimationend`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event)\n */\ndeclare var onwebkitanimationend: ((this: Window, ev: Event) => any) | null;\n/**\n * @deprecated This is a legacy alias of `onanimationiteration`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event)\n */\ndeclare var onwebkitanimationiteration: ((this: Window, ev: Event) => any) | null;\n/**\n * @deprecated This is a legacy alias of `onanimationstart`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event)\n */\ndeclare var onwebkitanimationstart: ((this: Window, ev: Event) => any) | null;\n/**\n * @deprecated This is a legacy alias of `ontransitionend`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event)\n */\ndeclare var onwebkittransitionend: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/wheel_event) */\ndeclare var onwheel: ((this: Window, ev: WheelEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/afterprint_event) */\ndeclare var onafterprint: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/beforeprint_event) */\ndeclare var onbeforeprint: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/beforeunload_event) */\ndeclare var onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/gamepadconnected_event) */\ndeclare var ongamepadconnected: ((this: Window, ev: GamepadEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/gamepaddisconnected_event) */\ndeclare var ongamepaddisconnected: ((this: Window, ev: GamepadEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/hashchange_event) */\ndeclare var onhashchange: ((this: Window, ev: HashChangeEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/languagechange_event) */\ndeclare var onlanguagechange: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/message_event) */\ndeclare var onmessage: ((this: Window, ev: MessageEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/messageerror_event) */\ndeclare var onmessageerror: ((this: Window, ev: MessageEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/offline_event) */\ndeclare var onoffline: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/online_event) */\ndeclare var ononline: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagehide_event) */\ndeclare var onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagereveal_event) */\ndeclare var onpagereveal: ((this: Window, ev: PageRevealEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageshow_event) */\ndeclare var onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageswap_event) */\ndeclare var onpageswap: ((this: Window, ev: PageSwapEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/popstate_event) */\ndeclare var onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/rejectionhandled_event) */\ndeclare var onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/storage_event) */\ndeclare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */\ndeclare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;\n/**\n * @deprecated\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)\n */\ndeclare var onunload: ((this: Window, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/localStorage) */\ndeclare var localStorage: Storage;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)\n */\ndeclare var caches: CacheStorage;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */\ndeclare var crossOriginIsolated: boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */\ndeclare var crypto: Crypto;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */\ndeclare var indexedDB: IDBFactory;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */\ndeclare var isSecureContext: boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */\ndeclare var origin: string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */\ndeclare var performance: Performance;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */\ndeclare function atob(data: string): string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */\ndeclare function btoa(data: string): string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */\ndeclare function clearInterval(id: number | undefined): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */\ndeclare function clearTimeout(id: number | undefined): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */\ndeclare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */\ndeclare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */\ndeclare function queueMicrotask(callback: VoidFunction): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */\ndeclare function reportError(e: any): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */\ndeclare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */\ndeclare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */\ndeclare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/sessionStorage) */\ndeclare var sessionStorage: Storage;\ndeclare function addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\ndeclare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\ndeclare function removeEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\ndeclare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\ntype AlgorithmIdentifier = Algorithm | string;\ntype AllowSharedBufferSource = ArrayBufferLike | ArrayBufferView<ArrayBufferLike>;\ntype AutoFill = AutoFillBase | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<AutoFillAddressKind>}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;\ntype AutoFillField = AutoFillNormalField | `${OptionalPrefixToken<AutoFillContactKind>}${AutoFillContactField}`;\ntype AutoFillSection = `section-${string}`;\ntype Base64URLString = string;\ntype BigInteger = Uint8Array<ArrayBuffer>;\ntype BlobPart = BufferSource | Blob | string;\ntype BodyInit = ReadableStream | XMLHttpRequestBodyInit;\ntype BufferSource = ArrayBufferView<ArrayBuffer> | ArrayBuffer;\ntype COSEAlgorithmIdentifier = number;\ntype CSSKeywordish = string | CSSKeywordValue;\ntype CSSNumberish = number | CSSNumericValue;\ntype CSSPerspectiveValue = CSSNumericValue | CSSKeywordish;\ntype CSSUnparsedSegment = string | CSSVariableReferenceValue;\ntype CanvasImageSource = HTMLOrSVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | OffscreenCanvas | VideoFrame;\ntype ClipboardItemData = Promise<string | Blob>;\ntype ClipboardItems = ClipboardItem[];\ntype ConstrainBoolean = boolean | ConstrainBooleanParameters;\ntype ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;\ntype ConstrainDouble = number | ConstrainDoubleRange;\ntype ConstrainULong = number | ConstrainULongRange;\ntype CookieList = CookieListItem[];\ntype DOMHighResTimeStamp = number;\ntype EpochTimeStamp = number;\ntype EventListenerOrEventListenerObject = EventListener | EventListenerObject;\ntype FileSystemWriteChunkType = BufferSource | Blob | string | WriteParams;\ntype Float32List = Float32Array<ArrayBufferLike> | GLfloat[];\ntype FormDataEntryValue = File | string;\ntype GLbitfield = number;\ntype GLboolean = boolean;\ntype GLclampf = number;\ntype GLenum = number;\ntype GLfloat = number;\ntype GLint = number;\ntype GLint64 = number;\ntype GLintptr = number;\ntype GLsizei = number;\ntype GLsizeiptr = number;\ntype GLuint = number;\ntype GLuint64 = number;\ntype HTMLOrSVGImageElement = HTMLImageElement | SVGImageElement;\ntype HTMLOrSVGScriptElement = HTMLScriptElement | SVGScriptElement;\ntype HashAlgorithmIdentifier = AlgorithmIdentifier;\ntype HeadersInit = [string, string][] | Record<string, string> | Headers;\ntype IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];\ntype ImageBitmapSource = CanvasImageSource | Blob | ImageData;\ntype ImageBufferSource = AllowSharedBufferSource | ReadableStream;\ntype ImageDataArray = Uint8ClampedArray<ArrayBuffer>;\ntype Int32List = Int32Array<ArrayBufferLike> | GLint[];\ntype LineAndPositionSetting = number | AutoKeyword;\ntype MediaProvider = MediaStream | MediaSource | Blob;\ntype MessageEventSource = WindowProxy | MessagePort | ServiceWorker;\ntype MutationRecordType = \"attributes\" | \"characterData\" | \"childList\";\ntype NamedCurve = string;\ntype OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;\ntype OnBeforeUnloadEventHandler = OnBeforeUnloadEventHandlerNonNull | null;\ntype OnErrorEventHandler = OnErrorEventHandlerNonNull | null;\ntype OptionalPostfixToken<T extends string> = ` ${T}` | \"\";\ntype OptionalPrefixToken<T extends string> = `${T} ` | \"\";\ntype PerformanceEntryList = PerformanceEntry[];\ntype PublicKeyCredentialClientCapabilities = Record<string, boolean>;\ntype PublicKeyCredentialJSON = any;\ntype RTCRtpTransform = RTCRtpScriptTransform;\ntype ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;\ntype ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;\ntype ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;\ntype RenderingContext = CanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;\ntype ReportList = Report[];\ntype RequestInfo = Request | string;\ntype TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;\ntype TimerHandler = string | Function;\ntype Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;\ntype Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];\ntype VibratePattern = number | number[];\ntype WindowProxy = Window;\ntype XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;\ntype AlignSetting = \"center\" | \"end\" | \"left\" | \"right\" | \"start\";\ntype AlphaOption = \"discard\" | \"keep\";\ntype AnimationPlayState = \"finished\" | \"idle\" | \"paused\" | \"running\";\ntype AnimationReplaceState = \"active\" | \"persisted\" | \"removed\";\ntype AppendMode = \"segments\" | \"sequence\";\ntype AttestationConveyancePreference = \"direct\" | \"enterprise\" | \"indirect\" | \"none\";\ntype AudioContextLatencyCategory = \"balanced\" | \"interactive\" | \"playback\";\ntype AudioContextState = \"closed\" | \"interrupted\" | \"running\" | \"suspended\";\ntype AudioSampleFormat = \"f32\" | \"f32-planar\" | \"s16\" | \"s16-planar\" | \"s32\" | \"s32-planar\" | \"u8\" | \"u8-planar\";\ntype AuthenticatorAttachment = \"cross-platform\" | \"platform\";\ntype AuthenticatorTransport = \"ble\" | \"hybrid\" | \"internal\" | \"nfc\" | \"usb\";\ntype AutoFillAddressKind = \"billing\" | \"shipping\";\ntype AutoFillBase = \"\" | \"off\" | \"on\";\ntype AutoFillContactField = \"email\" | \"tel\" | \"tel-area-code\" | \"tel-country-code\" | \"tel-extension\" | \"tel-local\" | \"tel-local-prefix\" | \"tel-local-suffix\" | \"tel-national\";\ntype AutoFillContactKind = \"home\" | \"mobile\" | \"work\";\ntype AutoFillCredentialField = \"webauthn\";\ntype AutoFillNormalField = \"additional-name\" | \"address-level1\" | \"address-level2\" | \"address-level3\" | \"address-level4\" | \"address-line1\" | \"address-line2\" | \"address-line3\" | \"bday-day\" | \"bday-month\" | \"bday-year\" | \"cc-csc\" | \"cc-exp\" | \"cc-exp-month\" | \"cc-exp-year\" | \"cc-family-name\" | \"cc-given-name\" | \"cc-name\" | \"cc-number\" | \"cc-type\" | \"country\" | \"country-name\" | \"current-password\" | \"family-name\" | \"given-name\" | \"honorific-prefix\" | \"honorific-suffix\" | \"name\" | \"new-password\" | \"one-time-code\" | \"organization\" | \"postal-code\" | \"street-address\" | \"transaction-amount\" | \"transaction-currency\" | \"username\";\ntype AutoKeyword = \"auto\";\ntype AutomationRate = \"a-rate\" | \"k-rate\";\ntype AvcBitstreamFormat = \"annexb\" | \"avc\";\ntype BinaryType = \"arraybuffer\" | \"blob\";\ntype BiquadFilterType = \"allpass\" | \"bandpass\" | \"highpass\" | \"highshelf\" | \"lowpass\" | \"lowshelf\" | \"notch\" | \"peaking\";\ntype BitrateMode = \"constant\" | \"variable\";\ntype CSSMathOperator = \"clamp\" | \"invert\" | \"max\" | \"min\" | \"negate\" | \"product\" | \"sum\";\ntype CSSNumericBaseType = \"angle\" | \"flex\" | \"frequency\" | \"length\" | \"percent\" | \"resolution\" | \"time\";\ntype CanPlayTypeResult = \"\" | \"maybe\" | \"probably\";\ntype CanvasDirection = \"inherit\" | \"ltr\" | \"rtl\";\ntype CanvasFillRule = \"evenodd\" | \"nonzero\";\ntype CanvasFontKerning = \"auto\" | \"none\" | \"normal\";\ntype CanvasFontStretch = \"condensed\" | \"expanded\" | \"extra-condensed\" | \"extra-expanded\" | \"normal\" | \"semi-condensed\" | \"semi-expanded\" | \"ultra-condensed\" | \"ultra-expanded\";\ntype CanvasFontVariantCaps = \"all-petite-caps\" | \"all-small-caps\" | \"normal\" | \"petite-caps\" | \"small-caps\" | \"titling-caps\" | \"unicase\";\ntype CanvasLineCap = \"butt\" | \"round\" | \"square\";\ntype CanvasLineJoin = \"bevel\" | \"miter\" | \"round\";\ntype CanvasTextAlign = \"center\" | \"end\" | \"left\" | \"right\" | \"start\";\ntype CanvasTextBaseline = \"alphabetic\" | \"bottom\" | \"hanging\" | \"ideographic\" | \"middle\" | \"top\";\ntype CanvasTextRendering = \"auto\" | \"geometricPrecision\" | \"optimizeLegibility\" | \"optimizeSpeed\";\ntype ChannelCountMode = \"clamped-max\" | \"explicit\" | \"max\";\ntype ChannelInterpretation = \"discrete\" | \"speakers\";\ntype ClientTypes = \"all\" | \"sharedworker\" | \"window\" | \"worker\";\ntype CodecState = \"closed\" | \"configured\" | \"unconfigured\";\ntype ColorGamut = \"p3\" | \"rec2020\" | \"srgb\";\ntype ColorSpaceConversion = \"default\" | \"none\";\ntype CompositeOperation = \"accumulate\" | \"add\" | \"replace\";\ntype CompositeOperationOrAuto = \"accumulate\" | \"add\" | \"auto\" | \"replace\";\ntype CompressionFormat = \"deflate\" | \"deflate-raw\" | \"gzip\";\ntype CookieSameSite = \"lax\" | \"none\" | \"strict\";\ntype CredentialMediationRequirement = \"conditional\" | \"optional\" | \"required\" | \"silent\";\ntype DOMParserSupportedType = \"application/xhtml+xml\" | \"application/xml\" | \"image/svg+xml\" | \"text/html\" | \"text/xml\";\ntype DirectionSetting = \"\" | \"lr\" | \"rl\";\ntype DisplayCaptureSurfaceType = \"browser\" | \"monitor\" | \"window\";\ntype DistanceModelType = \"exponential\" | \"inverse\" | \"linear\";\ntype DocumentReadyState = \"complete\" | \"interactive\" | \"loading\";\ntype DocumentVisibilityState = \"hidden\" | \"visible\";\ntype EncodedAudioChunkType = \"delta\" | \"key\";\ntype EncodedVideoChunkType = \"delta\" | \"key\";\ntype EndOfStreamError = \"decode\" | \"network\";\ntype EndingType = \"native\" | \"transparent\";\ntype FileSystemHandleKind = \"directory\" | \"file\";\ntype FillLightMode = \"auto\" | \"flash\" | \"off\";\ntype FillMode = \"auto\" | \"backwards\" | \"both\" | \"forwards\" | \"none\";\ntype FontDisplay = \"auto\" | \"block\" | \"fallback\" | \"optional\" | \"swap\";\ntype FontFaceLoadStatus = \"error\" | \"loaded\" | \"loading\" | \"unloaded\";\ntype FontFaceSetLoadStatus = \"loaded\" | \"loading\";\ntype FullscreenNavigationUI = \"auto\" | \"hide\" | \"show\";\ntype GamepadHapticEffectType = \"dual-rumble\" | \"trigger-rumble\";\ntype GamepadHapticsResult = \"complete\" | \"preempted\";\ntype GamepadMappingType = \"\" | \"standard\" | \"xr-standard\";\ntype GlobalCompositeOperation = \"color\" | \"color-burn\" | \"color-dodge\" | \"copy\" | \"darken\" | \"destination-atop\" | \"destination-in\" | \"destination-out\" | \"destination-over\" | \"difference\" | \"exclusion\" | \"hard-light\" | \"hue\" | \"lighten\" | \"lighter\" | \"luminosity\" | \"multiply\" | \"overlay\" | \"saturation\" | \"screen\" | \"soft-light\" | \"source-atop\" | \"source-in\" | \"source-out\" | \"source-over\" | \"xor\";\ntype HardwareAcceleration = \"no-preference\" | \"prefer-hardware\" | \"prefer-software\";\ntype HdrMetadataType = \"smpteSt2086\" | \"smpteSt2094-10\" | \"smpteSt2094-40\";\ntype HighlightType = \"grammar-error\" | \"highlight\" | \"spelling-error\";\ntype IDBCursorDirection = \"next\" | \"nextunique\" | \"prev\" | \"prevunique\";\ntype IDBRequestReadyState = \"done\" | \"pending\";\ntype IDBTransactionDurability = \"default\" | \"relaxed\" | \"strict\";\ntype IDBTransactionMode = \"readonly\" | \"readwrite\" | \"versionchange\";\ntype ImageOrientation = \"flipY\" | \"from-image\" | \"none\";\ntype ImageSmoothingQuality = \"high\" | \"low\" | \"medium\";\ntype InsertPosition = \"afterbegin\" | \"afterend\" | \"beforebegin\" | \"beforeend\";\ntype IterationCompositeOperation = \"accumulate\" | \"replace\";\ntype KeyFormat = \"jwk\" | \"pkcs8\" | \"raw\" | \"spki\";\ntype KeyType = \"private\" | \"public\" | \"secret\";\ntype KeyUsage = \"decrypt\" | \"deriveBits\" | \"deriveKey\" | \"encrypt\" | \"sign\" | \"unwrapKey\" | \"verify\" | \"wrapKey\";\ntype LatencyMode = \"quality\" | \"realtime\";\ntype LineAlignSetting = \"center\" | \"end\" | \"start\";\ntype LockMode = \"exclusive\" | \"shared\";\ntype LoginStatus = \"logged-in\" | \"logged-out\";\ntype MIDIPortConnectionState = \"closed\" | \"open\" | \"pending\";\ntype MIDIPortDeviceState = \"connected\" | \"disconnected\";\ntype MIDIPortType = \"input\" | \"output\";\ntype MediaDecodingType = \"file\" | \"media-source\" | \"webrtc\";\ntype MediaDeviceKind = \"audioinput\" | \"audiooutput\" | \"videoinput\";\ntype MediaEncodingType = \"record\" | \"webrtc\";\ntype MediaKeyMessageType = \"individualization-request\" | \"license-release\" | \"license-renewal\" | \"license-request\";\ntype MediaKeySessionClosedReason = \"closed-by-application\" | \"hardware-context-reset\" | \"internal-error\" | \"release-acknowledged\" | \"resource-evicted\";\ntype MediaKeySessionType = \"persistent-license\" | \"temporary\";\ntype MediaKeyStatus = \"expired\" | \"internal-error\" | \"output-downscaled\" | \"output-restricted\" | \"released\" | \"status-pending\" | \"usable\" | \"usable-in-future\";\ntype MediaKeysRequirement = \"not-allowed\" | \"optional\" | \"required\";\ntype MediaSessionAction = \"nexttrack\" | \"pause\" | \"play\" | \"previoustrack\" | \"seekbackward\" | \"seekforward\" | \"seekto\" | \"skipad\" | \"stop\";\ntype MediaSessionPlaybackState = \"none\" | \"paused\" | \"playing\";\ntype MediaStreamTrackState = \"ended\" | \"live\";\ntype NavigationTimingType = \"back_forward\" | \"navigate\" | \"prerender\" | \"reload\";\ntype NavigationType = \"push\" | \"reload\" | \"replace\" | \"traverse\";\ntype NotificationDirection = \"auto\" | \"ltr\" | \"rtl\";\ntype NotificationPermission = \"default\" | \"denied\" | \"granted\";\ntype OffscreenRenderingContextId = \"2d\" | \"bitmaprenderer\" | \"webgl\" | \"webgl2\" | \"webgpu\";\ntype OpusBitstreamFormat = \"ogg\" | \"opus\";\ntype OrientationType = \"landscape-primary\" | \"landscape-secondary\" | \"portrait-primary\" | \"portrait-secondary\";\ntype OscillatorType = \"custom\" | \"sawtooth\" | \"sine\" | \"square\" | \"triangle\";\ntype OverSampleType = \"2x\" | \"4x\" | \"none\";\ntype PanningModelType = \"HRTF\" | \"equalpower\";\ntype PaymentComplete = \"fail\" | \"success\" | \"unknown\";\ntype PaymentShippingType = \"delivery\" | \"pickup\" | \"shipping\";\ntype PermissionName = \"camera\" | \"geolocation\" | \"microphone\" | \"midi\" | \"notifications\" | \"persistent-storage\" | \"push\" | \"screen-wake-lock\" | \"storage-access\";\ntype PermissionState = \"denied\" | \"granted\" | \"prompt\";\ntype PlaybackDirection = \"alternate\" | \"alternate-reverse\" | \"normal\" | \"reverse\";\ntype PositionAlignSetting = \"auto\" | \"center\" | \"line-left\" | \"line-right\";\ntype PredefinedColorSpace = \"display-p3\" | \"srgb\";\ntype PremultiplyAlpha = \"default\" | \"none\" | \"premultiply\";\ntype PresentationStyle = \"attachment\" | \"inline\" | \"unspecified\";\ntype PublicKeyCredentialType = \"public-key\";\ntype PushEncryptionKeyName = \"auth\" | \"p256dh\";\ntype RTCBundlePolicy = \"balanced\" | \"max-bundle\" | \"max-compat\";\ntype RTCDataChannelState = \"closed\" | \"closing\" | \"connecting\" | \"open\";\ntype RTCDegradationPreference = \"balanced\" | \"maintain-framerate\" | \"maintain-resolution\";\ntype RTCDtlsRole = \"client\" | \"server\" | \"unknown\";\ntype RTCDtlsTransportState = \"closed\" | \"connected\" | \"connecting\" | \"failed\" | \"new\";\ntype RTCEncodedVideoFrameType = \"delta\" | \"empty\" | \"key\";\ntype RTCErrorDetailType = \"data-channel-failure\" | \"dtls-failure\" | \"fingerprint-failure\" | \"hardware-encoder-error\" | \"hardware-encoder-not-available\" | \"sctp-failure\" | \"sdp-syntax-error\";\ntype RTCIceCandidateType = \"host\" | \"prflx\" | \"relay\" | \"srflx\";\ntype RTCIceComponent = \"rtcp\" | \"rtp\";\ntype RTCIceConnectionState = \"checking\" | \"closed\" | \"completed\" | \"connected\" | \"disconnected\" | \"failed\" | \"new\";\ntype RTCIceGathererState = \"complete\" | \"gathering\" | \"new\";\ntype RTCIceGatheringState = \"complete\" | \"gathering\" | \"new\";\ntype RTCIceProtocol = \"tcp\" | \"udp\";\ntype RTCIceRole = \"controlled\" | \"controlling\" | \"unknown\";\ntype RTCIceTcpCandidateType = \"active\" | \"passive\" | \"so\";\ntype RTCIceTransportPolicy = \"all\" | \"relay\";\ntype RTCIceTransportState = \"checking\" | \"closed\" | \"completed\" | \"connected\" | \"disconnected\" | \"failed\" | \"new\";\ntype RTCPeerConnectionState = \"closed\" | \"connected\" | \"connecting\" | \"disconnected\" | \"failed\" | \"new\";\ntype RTCPriorityType = \"high\" | \"low\" | \"medium\" | \"very-low\";\ntype RTCQualityLimitationReason = \"bandwidth\" | \"cpu\" | \"none\" | \"other\";\ntype RTCRtcpMuxPolicy = \"require\";\ntype RTCRtpTransceiverDirection = \"inactive\" | \"recvonly\" | \"sendonly\" | \"sendrecv\" | \"stopped\";\ntype RTCSctpTransportState = \"closed\" | \"connected\" | \"connecting\";\ntype RTCSdpType = \"answer\" | \"offer\" | \"pranswer\" | \"rollback\";\ntype RTCSignalingState = \"closed\" | \"have-local-offer\" | \"have-local-pranswer\" | \"have-remote-offer\" | \"have-remote-pranswer\" | \"stable\";\ntype RTCStatsIceCandidatePairState = \"failed\" | \"frozen\" | \"in-progress\" | \"inprogress\" | \"succeeded\" | \"waiting\";\ntype RTCStatsType = \"candidate-pair\" | \"certificate\" | \"codec\" | \"data-channel\" | \"inbound-rtp\" | \"local-candidate\" | \"media-playout\" | \"media-source\" | \"outbound-rtp\" | \"peer-connection\" | \"remote-candidate\" | \"remote-inbound-rtp\" | \"remote-outbound-rtp\" | \"transport\";\ntype ReadableStreamReaderMode = \"byob\";\ntype ReadableStreamType = \"bytes\";\ntype ReadyState = \"closed\" | \"ended\" | \"open\";\ntype RecordingState = \"inactive\" | \"paused\" | \"recording\";\ntype RedEyeReduction = \"always\" | \"controllable\" | \"never\";\ntype ReferrerPolicy = \"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\";\ntype RemotePlaybackState = \"connected\" | \"connecting\" | \"disconnected\";\ntype RequestCache = \"default\" | \"force-cache\" | \"no-cache\" | \"no-store\" | \"only-if-cached\" | \"reload\";\ntype RequestCredentials = \"include\" | \"omit\" | \"same-origin\";\ntype RequestDestination = \"\" | \"audio\" | \"audioworklet\" | \"document\" | \"embed\" | \"font\" | \"frame\" | \"iframe\" | \"image\" | \"manifest\" | \"object\" | \"paintworklet\" | \"report\" | \"script\" | \"sharedworker\" | \"style\" | \"track\" | \"video\" | \"worker\" | \"xslt\";\ntype RequestMode = \"cors\" | \"navigate\" | \"no-cors\" | \"same-origin\";\ntype RequestPriority = \"auto\" | \"high\" | \"low\";\ntype RequestRedirect = \"error\" | \"follow\" | \"manual\";\ntype ResidentKeyRequirement = \"discouraged\" | \"preferred\" | \"required\";\ntype ResizeObserverBoxOptions = \"border-box\" | \"content-box\" | \"device-pixel-content-box\";\ntype ResizeQuality = \"high\" | \"low\" | \"medium\" | \"pixelated\";\ntype ResponseType = \"basic\" | \"cors\" | \"default\" | \"error\" | \"opaque\" | \"opaqueredirect\";\ntype ScrollBehavior = \"auto\" | \"instant\" | \"smooth\";\ntype ScrollLogicalPosition = \"center\" | \"end\" | \"nearest\" | \"start\";\ntype ScrollRestoration = \"auto\" | \"manual\";\ntype ScrollSetting = \"\" | \"up\";\ntype SecurityPolicyViolationEventDisposition = \"enforce\" | \"report\";\ntype SelectionMode = \"end\" | \"preserve\" | \"select\" | \"start\";\ntype ServiceWorkerState = \"activated\" | \"activating\" | \"installed\" | \"installing\" | \"parsed\" | \"redundant\";\ntype ServiceWorkerUpdateViaCache = \"all\" | \"imports\" | \"none\";\ntype ShadowRootMode = \"closed\" | \"open\";\ntype SlotAssignmentMode = \"manual\" | \"named\";\ntype SpeechSynthesisErrorCode = \"audio-busy\" | \"audio-hardware\" | \"canceled\" | \"interrupted\" | \"invalid-argument\" | \"language-unavailable\" | \"network\" | \"not-allowed\" | \"synthesis-failed\" | \"synthesis-unavailable\" | \"text-too-long\" | \"voice-unavailable\";\ntype TextTrackKind = \"captions\" | \"chapters\" | \"descriptions\" | \"metadata\" | \"subtitles\";\ntype TextTrackMode = \"disabled\" | \"hidden\" | \"showing\";\ntype TouchType = \"direct\" | \"stylus\";\ntype TransferFunction = \"hlg\" | \"pq\" | \"srgb\";\ntype UserVerificationRequirement = \"discouraged\" | \"preferred\" | \"required\";\ntype VideoColorPrimaries = \"bt470bg\" | \"bt709\" | \"smpte170m\";\ntype VideoEncoderBitrateMode = \"constant\" | \"quantizer\" | \"variable\";\ntype VideoFacingModeEnum = \"environment\" | \"left\" | \"right\" | \"user\";\ntype VideoMatrixCoefficients = \"bt470bg\" | \"bt709\" | \"rgb\" | \"smpte170m\";\ntype VideoPixelFormat = \"BGRA\" | \"BGRX\" | \"I420\" | \"I420A\" | \"I422\" | \"I444\" | \"NV12\" | \"RGBA\" | \"RGBX\";\ntype VideoTransferCharacteristics = \"bt709\" | \"iec61966-2-1\" | \"smpte170m\";\ntype WakeLockType = \"screen\";\ntype WebGLPowerPreference = \"default\" | \"high-performance\" | \"low-power\";\ntype WebTransportCongestionControl = \"default\" | \"low-latency\" | \"throughput\";\ntype WebTransportErrorSource = \"session\" | \"stream\";\ntype WorkerType = \"classic\" | \"module\";\ntype WriteCommandType = \"seek\" | \"truncate\" | \"write\";\ntype XMLHttpRequestResponseType = \"\" | \"arraybuffer\" | \"blob\" | \"document\" | \"json\" | \"text\";\n",
    "node_modules/typescript/lib/lib.dom.iterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Window Iterable APIs\n/////////////////////////////\n\ninterface AudioParam {\n    /**\n     * The **`setValueCurveAtTime()`** method of the following a curve defined by a list of values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime)\n     */\n    setValueCurveAtTime(values: Iterable<number>, startTime: number, duration: number): AudioParam;\n}\n\ninterface AudioParamMap extends ReadonlyMap<string, AudioParam> {\n}\n\ninterface BaseAudioContext {\n    /**\n     * The **`createIIRFilter()`** method of the BaseAudioContext interface creates an IIRFilterNode, which represents a general **infinite impulse response** (IIR) filter which can be configured to serve as various types of filter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createIIRFilter)\n     */\n    createIIRFilter(feedforward: Iterable<number>, feedback: Iterable<number>): IIRFilterNode;\n    /**\n     * The `createPeriodicWave()` method of the BaseAudioContext interface is used to create a PeriodicWave.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createPeriodicWave)\n     */\n    createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;\n}\n\ninterface CSSKeyframesRule {\n    [Symbol.iterator](): ArrayIterator<CSSKeyframeRule>;\n}\n\ninterface CSSNumericArray {\n    [Symbol.iterator](): ArrayIterator<CSSNumericValue>;\n    entries(): ArrayIterator<[number, CSSNumericValue]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSNumericValue>;\n}\n\ninterface CSSRuleList {\n    [Symbol.iterator](): ArrayIterator<CSSRule>;\n}\n\ninterface CSSStyleDeclaration {\n    [Symbol.iterator](): ArrayIterator<string>;\n}\n\ninterface CSSTransformValue {\n    [Symbol.iterator](): ArrayIterator<CSSTransformComponent>;\n    entries(): ArrayIterator<[number, CSSTransformComponent]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSTransformComponent>;\n}\n\ninterface CSSUnparsedValue {\n    [Symbol.iterator](): ArrayIterator<CSSUnparsedSegment>;\n    entries(): ArrayIterator<[number, CSSUnparsedSegment]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSUnparsedSegment>;\n}\n\ninterface Cache {\n    /**\n     * The **`addAll()`** method of the Cache interface takes an array of URLs, retrieves them, and adds the resulting response objects to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/addAll)\n     */\n    addAll(requests: Iterable<RequestInfo>): Promise<void>;\n}\n\ninterface CanvasPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/roundRect) */\n    roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;\n}\n\ninterface CanvasPathDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash) */\n    setLineDash(segments: Iterable<number>): void;\n}\n\ninterface CookieStoreManager {\n    /**\n     * The **`subscribe()`** method of the CookieStoreManager interface subscribes a ServiceWorkerRegistration to cookie change events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe)\n     */\n    subscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;\n    /**\n     * The **`unsubscribe()`** method of the CookieStoreManager interface stops the ServiceWorkerRegistration from receiving previously subscribed events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe)\n     */\n    unsubscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;\n}\n\ninterface CustomStateSet extends Set<string> {\n}\n\ninterface DOMRectList {\n    [Symbol.iterator](): ArrayIterator<DOMRect>;\n}\n\ninterface DOMStringList {\n    [Symbol.iterator](): ArrayIterator<string>;\n}\n\ninterface DOMTokenList {\n    [Symbol.iterator](): ArrayIterator<string>;\n    entries(): ArrayIterator<[number, string]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<string>;\n}\n\ninterface DataTransferItemList {\n    [Symbol.iterator](): ArrayIterator<DataTransferItem>;\n}\n\ninterface EventCounts extends ReadonlyMap<string, number> {\n}\n\ninterface FileList {\n    [Symbol.iterator](): ArrayIterator<File>;\n}\n\ninterface FontFaceSet extends Set<FontFace> {\n}\n\ninterface FormDataIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): FormDataIterator<T>;\n}\n\ninterface FormData {\n    [Symbol.iterator](): FormDataIterator<[string, FormDataEntryValue]>;\n    /** Returns an array of key, value pairs for every entry in the list. */\n    entries(): FormDataIterator<[string, FormDataEntryValue]>;\n    /** Returns a list of keys in the list. */\n    keys(): FormDataIterator<string>;\n    /** Returns a list of values in the list. */\n    values(): FormDataIterator<FormDataEntryValue>;\n}\n\ninterface HTMLAllCollection {\n    [Symbol.iterator](): ArrayIterator<Element>;\n}\n\ninterface HTMLCollectionBase {\n    [Symbol.iterator](): ArrayIterator<Element>;\n}\n\ninterface HTMLCollectionOf<T extends Element> {\n    [Symbol.iterator](): ArrayIterator<T>;\n}\n\ninterface HTMLFormElement {\n    [Symbol.iterator](): ArrayIterator<Element>;\n}\n\ninterface HTMLSelectElement {\n    [Symbol.iterator](): ArrayIterator<HTMLOptionElement>;\n}\n\ninterface HeadersIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): HeadersIterator<T>;\n}\n\ninterface Headers {\n    [Symbol.iterator](): HeadersIterator<[string, string]>;\n    /** Returns an iterator allowing to go through all key/value pairs contained in this object. */\n    entries(): HeadersIterator<[string, string]>;\n    /** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */\n    keys(): HeadersIterator<string>;\n    /** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */\n    values(): HeadersIterator<string>;\n}\n\ninterface Highlight extends Set<AbstractRange> {\n}\n\ninterface HighlightRegistry extends Map<string, Highlight> {\n}\n\ninterface IDBDatabase {\n    /**\n     * The **`transaction`** method of the IDBDatabase interface immediately returns a transaction object (IDBTransaction) containing the IDBTransaction.objectStore method, which you can use to access your object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/transaction)\n     */\n    transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction;\n}\n\ninterface IDBObjectStore {\n    /**\n     * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)\n     */\n    createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex;\n}\n\ninterface ImageTrackList {\n    [Symbol.iterator](): ArrayIterator<ImageTrack>;\n}\n\ninterface MIDIInputMap extends ReadonlyMap<string, MIDIInput> {\n}\n\ninterface MIDIOutput {\n    /**\n     * The **`send()`** method of the MIDIOutput interface queues messages for the corresponding MIDI port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIOutput/send)\n     */\n    send(data: Iterable<number>, timestamp?: DOMHighResTimeStamp): void;\n}\n\ninterface MIDIOutputMap extends ReadonlyMap<string, MIDIOutput> {\n}\n\ninterface MediaKeyStatusMapIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): MediaKeyStatusMapIterator<T>;\n}\n\ninterface MediaKeyStatusMap {\n    [Symbol.iterator](): MediaKeyStatusMapIterator<[BufferSource, MediaKeyStatus]>;\n    entries(): MediaKeyStatusMapIterator<[BufferSource, MediaKeyStatus]>;\n    keys(): MediaKeyStatusMapIterator<BufferSource>;\n    values(): MediaKeyStatusMapIterator<MediaKeyStatus>;\n}\n\ninterface MediaList {\n    [Symbol.iterator](): ArrayIterator<string>;\n}\n\ninterface MessageEvent<T = any> {\n    /** @deprecated */\n    initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;\n}\n\ninterface MimeTypeArray {\n    [Symbol.iterator](): ArrayIterator<MimeType>;\n}\n\ninterface NamedNodeMap {\n    [Symbol.iterator](): ArrayIterator<Attr>;\n}\n\ninterface Navigator {\n    /**\n     * The **`requestMediaKeySystemAccess()`** method of the Navigator interface returns a Promise which delivers a MediaKeySystemAccess object that can be used to access a particular media key system, which can in turn be used to create keys for decrypting a media stream.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/requestMediaKeySystemAccess)\n     */\n    requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: Iterable<MediaKeySystemConfiguration>): Promise<MediaKeySystemAccess>;\n    /**\n     * The **`vibrate()`** method of the Navigator interface pulses the vibration hardware on the device, if such hardware exists.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/vibrate)\n     */\n    vibrate(pattern: Iterable<number>): boolean;\n}\n\ninterface NodeList {\n    [Symbol.iterator](): ArrayIterator<Node>;\n    /** Returns an array of key, value pairs for every entry in the list. */\n    entries(): ArrayIterator<[number, Node]>;\n    /** Returns an list of keys in the list. */\n    keys(): ArrayIterator<number>;\n    /** Returns an list of values in the list. */\n    values(): ArrayIterator<Node>;\n}\n\ninterface NodeListOf<TNode extends Node> {\n    [Symbol.iterator](): ArrayIterator<TNode>;\n    /** Returns an array of key, value pairs for every entry in the list. */\n    entries(): ArrayIterator<[number, TNode]>;\n    /** Returns an list of keys in the list. */\n    keys(): ArrayIterator<number>;\n    /** Returns an list of values in the list. */\n    values(): ArrayIterator<TNode>;\n}\n\ninterface Plugin {\n    [Symbol.iterator](): ArrayIterator<MimeType>;\n}\n\ninterface PluginArray {\n    [Symbol.iterator](): ArrayIterator<Plugin>;\n}\n\ninterface RTCRtpTransceiver {\n    /**\n     * The **`setCodecPreferences()`** method of the RTCRtpTransceiver interface is used to set the codecs that the transceiver allows for decoding _received_ data, in order of decreasing preference.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/setCodecPreferences)\n     */\n    setCodecPreferences(codecs: Iterable<RTCRtpCodec>): void;\n}\n\ninterface RTCStatsReport extends ReadonlyMap<string, any> {\n}\n\ninterface SVGLengthList {\n    [Symbol.iterator](): ArrayIterator<SVGLength>;\n}\n\ninterface SVGNumberList {\n    [Symbol.iterator](): ArrayIterator<SVGNumber>;\n}\n\ninterface SVGPointList {\n    [Symbol.iterator](): ArrayIterator<DOMPoint>;\n}\n\ninterface SVGStringList {\n    [Symbol.iterator](): ArrayIterator<string>;\n}\n\ninterface SVGTransformList {\n    [Symbol.iterator](): ArrayIterator<SVGTransform>;\n}\n\ninterface SourceBufferList {\n    [Symbol.iterator](): ArrayIterator<SourceBuffer>;\n}\n\ninterface SpeechRecognitionResult {\n    [Symbol.iterator](): ArrayIterator<SpeechRecognitionAlternative>;\n}\n\ninterface SpeechRecognitionResultList {\n    [Symbol.iterator](): ArrayIterator<SpeechRecognitionResult>;\n}\n\ninterface StylePropertyMapReadOnlyIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): StylePropertyMapReadOnlyIterator<T>;\n}\n\ninterface StylePropertyMapReadOnly {\n    [Symbol.iterator](): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;\n    entries(): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;\n    keys(): StylePropertyMapReadOnlyIterator<string>;\n    values(): StylePropertyMapReadOnlyIterator<Iterable<CSSStyleValue>>;\n}\n\ninterface StyleSheetList {\n    [Symbol.iterator](): ArrayIterator<CSSStyleSheet>;\n}\n\ninterface SubtleCrypto {\n    /**\n     * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey)\n     */\n    deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n    /**\n     * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey)\n     */\n    generateKey(algorithm: \"Ed25519\" | { name: \"Ed25519\" }, extractable: boolean, keyUsages: ReadonlyArray<\"sign\" | \"verify\">): Promise<CryptoKeyPair>;\n    generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;\n    generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKeyPair | CryptoKey>;\n    /**\n     * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey)\n     */\n    importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    importKey(format: Exclude<KeyFormat, \"jwk\">, keyData: BufferSource, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n    /**\n     * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey)\n     */\n    unwrapKey(format: KeyFormat, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n}\n\ninterface TextTrackCueList {\n    [Symbol.iterator](): ArrayIterator<TextTrackCue>;\n}\n\ninterface TextTrackList {\n    [Symbol.iterator](): ArrayIterator<TextTrack>;\n}\n\ninterface TouchList {\n    [Symbol.iterator](): ArrayIterator<Touch>;\n}\n\ninterface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): URLSearchParamsIterator<T>;\n}\n\ninterface URLSearchParams {\n    [Symbol.iterator](): URLSearchParamsIterator<[string, string]>;\n    /** Returns an array of key, value pairs for every entry in the search params. */\n    entries(): URLSearchParamsIterator<[string, string]>;\n    /** Returns a list of keys in the search params. */\n    keys(): URLSearchParamsIterator<string>;\n    /** Returns a list of values in the search params. */\n    values(): URLSearchParamsIterator<string>;\n}\n\ninterface ViewTransitionTypeSet extends Set<string> {\n}\n\ninterface WEBGL_draw_buffers {\n    /**\n     * The **`WEBGL_draw_buffers.drawBuffersWEBGL()`** method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL)\n     */\n    drawBuffersWEBGL(buffers: Iterable<GLenum>): void;\n}\n\ninterface WEBGL_multi_draw {\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL)\n     */\n    multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL)\n     */\n    multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL)\n     */\n    multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL)\n     */\n    multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, drawcount: GLsizei): void;\n}\n\ninterface WebGL2RenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawBuffers) */\n    drawBuffers(buffers: Iterable<GLenum>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */\n    getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */\n    getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */\n    invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */\n    invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */\n    transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;\n}\n\ninterface WebGL2RenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n}\n\ninterface WebGLRenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4fv(index: GLuint, values: Iterable<GLfloat>): void;\n}\n\ninterface WebGLRenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n}\n",
    "node_modules/typescript/lib/lib.es2015.collection.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Map<K, V> {\n    clear(): void;\n    /**\n     * @returns true if an element in the Map existed and has been removed, or false if the element does not exist.\n     */\n    delete(key: K): boolean;\n    /**\n     * Executes a provided function once per each key/value pair in the Map, in insertion order.\n     */\n    forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;\n    /**\n     * Returns a specified element from the Map object. If the value that is associated to the provided key is an object, then you will get a reference to that object and any change made to that object will effectively modify it inside the Map.\n     * @returns Returns the element associated with the specified key. If no element is associated with the specified key, undefined is returned.\n     */\n    get(key: K): V | undefined;\n    /**\n     * @returns boolean indicating whether an element with the specified key exists or not.\n     */\n    has(key: K): boolean;\n    /**\n     * Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.\n     */\n    set(key: K, value: V): this;\n    /**\n     * @returns the number of elements in the Map.\n     */\n    readonly size: number;\n}\n\ninterface MapConstructor {\n    new (): Map<any, any>;\n    new <K, V>(entries?: readonly (readonly [K, V])[] | null): Map<K, V>;\n    readonly prototype: Map<any, any>;\n}\ndeclare var Map: MapConstructor;\n\ninterface ReadonlyMap<K, V> {\n    forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;\n    get(key: K): V | undefined;\n    has(key: K): boolean;\n    readonly size: number;\n}\n\ninterface WeakMap<K extends WeakKey, V> {\n    /**\n     * Removes the specified element from the WeakMap.\n     * @returns true if the element was successfully removed, or false if it was not present.\n     */\n    delete(key: K): boolean;\n    /**\n     * @returns a specified element.\n     */\n    get(key: K): V | undefined;\n    /**\n     * @returns a boolean indicating whether an element with the specified key exists or not.\n     */\n    has(key: K): boolean;\n    /**\n     * Adds a new element with a specified key and value.\n     * @param key Must be an object or symbol.\n     */\n    set(key: K, value: V): this;\n}\n\ninterface WeakMapConstructor {\n    new <K extends WeakKey = WeakKey, V = any>(entries?: readonly (readonly [K, V])[] | null): WeakMap<K, V>;\n    readonly prototype: WeakMap<WeakKey, any>;\n}\ndeclare var WeakMap: WeakMapConstructor;\n\ninterface Set<T> {\n    /**\n     * Appends a new element with a specified value to the end of the Set.\n     */\n    add(value: T): this;\n\n    clear(): void;\n    /**\n     * Removes a specified value from the Set.\n     * @returns Returns true if an element in the Set existed and has been removed, or false if the element does not exist.\n     */\n    delete(value: T): boolean;\n    /**\n     * Executes a provided function once per each value in the Set object, in insertion order.\n     */\n    forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void;\n    /**\n     * @returns a boolean indicating whether an element with the specified value exists in the Set or not.\n     */\n    has(value: T): boolean;\n    /**\n     * @returns the number of (unique) elements in Set.\n     */\n    readonly size: number;\n}\n\ninterface SetConstructor {\n    new <T = any>(values?: readonly T[] | null): Set<T>;\n    readonly prototype: Set<any>;\n}\ndeclare var Set: SetConstructor;\n\ninterface ReadonlySet<T> {\n    forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;\n    has(value: T): boolean;\n    readonly size: number;\n}\n\ninterface WeakSet<T extends WeakKey> {\n    /**\n     * Appends a new value to the end of the WeakSet.\n     */\n    add(value: T): this;\n    /**\n     * Removes the specified element from the WeakSet.\n     * @returns Returns true if the element existed and has been removed, or false if the element does not exist.\n     */\n    delete(value: T): boolean;\n    /**\n     * @returns a boolean indicating whether a value exists in the WeakSet or not.\n     */\n    has(value: T): boolean;\n}\n\ninterface WeakSetConstructor {\n    new <T extends WeakKey = WeakKey>(values?: readonly T[] | null): WeakSet<T>;\n    readonly prototype: WeakSet<WeakKey>;\n}\ndeclare var WeakSet: WeakSetConstructor;\n",
    "node_modules/typescript/lib/lib.es2015.core.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Array<T> {\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find<S extends T>(predicate: (value: T, index: number, obj: T[]) => value is S, thisArg?: any): S | undefined;\n    find(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): number;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: T, start?: number, end?: number): this;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;\n}\n\ninterface ArrayConstructor {\n    /**\n     * Creates an array from an array-like object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from<T>(arrayLike: ArrayLike<T>): T[];\n\n    /**\n     * Creates an array from an iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of<T>(...items: T[]): T[];\n}\n\ninterface DateConstructor {\n    new (value: number | string | Date): Date;\n}\n\ninterface Function {\n    /**\n     * Returns the name of the function. Function names are read-only and can not be changed.\n     */\n    readonly name: string;\n}\n\ninterface Math {\n    /**\n     * Returns the number of leading zero bits in the 32-bit binary representation of a number.\n     * @param x A numeric expression.\n     */\n    clz32(x: number): number;\n\n    /**\n     * Returns the result of 32-bit multiplication of two numbers.\n     * @param x First number\n     * @param y Second number\n     */\n    imul(x: number, y: number): number;\n\n    /**\n     * Returns the sign of the x, indicating whether x is positive, negative or zero.\n     * @param x The numeric expression to test\n     */\n    sign(x: number): number;\n\n    /**\n     * Returns the base 10 logarithm of a number.\n     * @param x A numeric expression.\n     */\n    log10(x: number): number;\n\n    /**\n     * Returns the base 2 logarithm of a number.\n     * @param x A numeric expression.\n     */\n    log2(x: number): number;\n\n    /**\n     * Returns the natural logarithm of 1 + x.\n     * @param x A numeric expression.\n     */\n    log1p(x: number): number;\n\n    /**\n     * Returns the result of (e^x - 1), which is an implementation-dependent approximation to\n     * subtracting 1 from the exponential function of x (e raised to the power of x, where e\n     * is the base of the natural logarithms).\n     * @param x A numeric expression.\n     */\n    expm1(x: number): number;\n\n    /**\n     * Returns the hyperbolic cosine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    cosh(x: number): number;\n\n    /**\n     * Returns the hyperbolic sine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    sinh(x: number): number;\n\n    /**\n     * Returns the hyperbolic tangent of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    tanh(x: number): number;\n\n    /**\n     * Returns the inverse hyperbolic cosine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    acosh(x: number): number;\n\n    /**\n     * Returns the inverse hyperbolic sine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    asinh(x: number): number;\n\n    /**\n     * Returns the inverse hyperbolic tangent of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    atanh(x: number): number;\n\n    /**\n     * Returns the square root of the sum of squares of its arguments.\n     * @param values Values to compute the square root for.\n     *     If no arguments are passed, the result is +0.\n     *     If there is only one argument, the result is the absolute value.\n     *     If any argument is +Infinity or -Infinity, the result is +Infinity.\n     *     If any argument is NaN, the result is NaN.\n     *     If all arguments are either +0 or −0, the result is +0.\n     */\n    hypot(...values: number[]): number;\n\n    /**\n     * Returns the integral part of the a numeric expression, x, removing any fractional digits.\n     * If x is already an integer, the result is x.\n     * @param x A numeric expression.\n     */\n    trunc(x: number): number;\n\n    /**\n     * Returns the nearest single precision float representation of a number.\n     * @param x A numeric expression.\n     */\n    fround(x: number): number;\n\n    /**\n     * Returns an implementation-dependent approximation to the cube root of number.\n     * @param x A numeric expression.\n     */\n    cbrt(x: number): number;\n}\n\ninterface NumberConstructor {\n    /**\n     * The value of Number.EPSILON is the difference between 1 and the smallest value greater than 1\n     * that is representable as a Number value, which is approximately:\n     * 2.2204460492503130808472633361816 x 10‍−‍16.\n     */\n    readonly EPSILON: number;\n\n    /**\n     * Returns true if passed value is finite.\n     * Unlike the global isFinite, Number.isFinite doesn't forcibly convert the parameter to a\n     * number. Only finite values of the type number, result in true.\n     * @param number A numeric value.\n     */\n    isFinite(number: unknown): boolean;\n\n    /**\n     * Returns true if the value passed is an integer, false otherwise.\n     * @param number A numeric value.\n     */\n    isInteger(number: unknown): boolean;\n\n    /**\n     * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a\n     * number). Unlike the global isNaN(), Number.isNaN() doesn't forcefully convert the parameter\n     * to a number. Only values of the type number, that are also NaN, result in true.\n     * @param number A numeric value.\n     */\n    isNaN(number: unknown): boolean;\n\n    /**\n     * Returns true if the value passed is a safe integer.\n     * @param number A numeric value.\n     */\n    isSafeInteger(number: unknown): boolean;\n\n    /**\n     * The value of the largest integer n such that n and n + 1 are both exactly representable as\n     * a Number value.\n     * The value of Number.MAX_SAFE_INTEGER is 9007199254740991 2^53 − 1.\n     */\n    readonly MAX_SAFE_INTEGER: number;\n\n    /**\n     * The value of the smallest integer n such that n and n − 1 are both exactly representable as\n     * a Number value.\n     * The value of Number.MIN_SAFE_INTEGER is −9007199254740991 (−(2^53 − 1)).\n     */\n    readonly MIN_SAFE_INTEGER: number;\n\n    /**\n     * Converts a string to a floating-point number.\n     * @param string A string that contains a floating-point number.\n     */\n    parseFloat(string: string): number;\n\n    /**\n     * Converts A string to an integer.\n     * @param string A string to convert into a number.\n     * @param radix A value between 2 and 36 that specifies the base of the number in `string`.\n     * If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.\n     * All other strings are considered decimal.\n     */\n    parseInt(string: string, radix?: number): number;\n}\n\ninterface ObjectConstructor {\n    /**\n     * Copy the values of all of the enumerable own properties from one or more source objects to a\n     * target object. Returns the target object.\n     * @param target The target object to copy to.\n     * @param source The source object from which to copy properties.\n     */\n    assign<T extends {}, U>(target: T, source: U): T & U;\n\n    /**\n     * Copy the values of all of the enumerable own properties from one or more source objects to a\n     * target object. Returns the target object.\n     * @param target The target object to copy to.\n     * @param source1 The first source object from which to copy properties.\n     * @param source2 The second source object from which to copy properties.\n     */\n    assign<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;\n\n    /**\n     * Copy the values of all of the enumerable own properties from one or more source objects to a\n     * target object. Returns the target object.\n     * @param target The target object to copy to.\n     * @param source1 The first source object from which to copy properties.\n     * @param source2 The second source object from which to copy properties.\n     * @param source3 The third source object from which to copy properties.\n     */\n    assign<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;\n\n    /**\n     * Copy the values of all of the enumerable own properties from one or more source objects to a\n     * target object. Returns the target object.\n     * @param target The target object to copy to.\n     * @param sources One or more source objects from which to copy properties\n     */\n    assign(target: object, ...sources: any[]): any;\n\n    /**\n     * Returns an array of all symbol properties found directly on object o.\n     * @param o Object to retrieve the symbols from.\n     */\n    getOwnPropertySymbols(o: any): symbol[];\n\n    /**\n     * Returns the names of the enumerable string properties and methods of an object.\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    keys(o: {}): string[];\n\n    /**\n     * Returns true if the values are the same value, false otherwise.\n     * @param value1 The first value.\n     * @param value2 The second value.\n     */\n    is(value1: any, value2: any): boolean;\n\n    /**\n     * Sets the prototype of a specified object o to object proto or null. Returns the object o.\n     * @param o The object to change its prototype.\n     * @param proto The value of the new prototype or null.\n     */\n    setPrototypeOf(o: any, proto: object | null): any;\n}\n\ninterface ReadonlyArray<T> {\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find<S extends T>(predicate: (value: T, index: number, obj: readonly T[]) => value is S, thisArg?: any): S | undefined;\n    find(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): T | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): number;\n\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;\n}\n\ninterface RegExp {\n    /**\n     * Returns a string indicating the flags of the regular expression in question. This field is read-only.\n     * The characters in this string are sequenced and concatenated in the following order:\n     *\n     *    - \"g\" for global\n     *    - \"i\" for ignoreCase\n     *    - \"m\" for multiline\n     *    - \"u\" for unicode\n     *    - \"y\" for sticky\n     *\n     * If no flags are set, the value is the empty string.\n     */\n    readonly flags: string;\n\n    /**\n     * Returns a Boolean value indicating the state of the sticky flag (y) used with a regular\n     * expression. Default is false. Read-only.\n     */\n    readonly sticky: boolean;\n\n    /**\n     * Returns a Boolean value indicating the state of the Unicode flag (u) used with a regular\n     * expression. Default is false. Read-only.\n     */\n    readonly unicode: boolean;\n}\n\ninterface RegExpConstructor {\n    new (pattern: RegExp | string, flags?: string): RegExp;\n    (pattern: RegExp | string, flags?: string): RegExp;\n}\n\ninterface String {\n    /**\n     * Returns a nonnegative integer Number less than 1114112 (0x110000) that is the code point\n     * value of the UTF-16 encoded code point starting at the string element at position pos in\n     * the String resulting from converting this object to a String.\n     * If there is no element at that position, the result is undefined.\n     * If a valid UTF-16 surrogate pair does not begin at pos, the result is the code unit at pos.\n     */\n    codePointAt(pos: number): number | undefined;\n\n    /**\n     * Returns true if searchString appears as a substring of the result of converting this\n     * object to a String, at one or more positions that are\n     * greater than or equal to position; otherwise, returns false.\n     * @param searchString search string\n     * @param position If position is undefined, 0 is assumed, so as to search all of the String.\n     */\n    includes(searchString: string, position?: number): boolean;\n\n    /**\n     * Returns true if the sequence of elements of searchString converted to a String is the\n     * same as the corresponding elements of this object (converted to a String) starting at\n     * endPosition – length(this). Otherwise returns false.\n     */\n    endsWith(searchString: string, endPosition?: number): boolean;\n\n    /**\n     * Returns the String value result of normalizing the string into the normalization form\n     * named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n     * @param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\n     * is \"NFC\"\n     */\n    normalize(form: \"NFC\" | \"NFD\" | \"NFKC\" | \"NFKD\"): string;\n\n    /**\n     * Returns the String value result of normalizing the string into the normalization form\n     * named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n     * @param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\n     * is \"NFC\"\n     */\n    normalize(form?: string): string;\n\n    /**\n     * Returns a String value that is made from count copies appended together. If count is 0,\n     * the empty string is returned.\n     * @param count number of copies to append\n     */\n    repeat(count: number): string;\n\n    /**\n     * Returns true if the sequence of elements of searchString converted to a String is the\n     * same as the corresponding elements of this object (converted to a String) starting at\n     * position. Otherwise returns false.\n     */\n    startsWith(searchString: string, position?: number): boolean;\n\n    /**\n     * Returns an `<a>` HTML anchor element and sets the name attribute to the text value\n     * @deprecated A legacy feature for browser compatibility\n     * @param name\n     */\n    anchor(name: string): string;\n\n    /**\n     * Returns a `<big>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    big(): string;\n\n    /**\n     * Returns a `<blink>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    blink(): string;\n\n    /**\n     * Returns a `<b>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    bold(): string;\n\n    /**\n     * Returns a `<tt>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    fixed(): string;\n\n    /**\n     * Returns a `<font>` HTML element and sets the color attribute value\n     * @deprecated A legacy feature for browser compatibility\n     */\n    fontcolor(color: string): string;\n\n    /**\n     * Returns a `<font>` HTML element and sets the size attribute value\n     * @deprecated A legacy feature for browser compatibility\n     */\n    fontsize(size: number): string;\n\n    /**\n     * Returns a `<font>` HTML element and sets the size attribute value\n     * @deprecated A legacy feature for browser compatibility\n     */\n    fontsize(size: string): string;\n\n    /**\n     * Returns an `<i>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    italics(): string;\n\n    /**\n     * Returns an `<a>` HTML element and sets the href attribute value\n     * @deprecated A legacy feature for browser compatibility\n     */\n    link(url: string): string;\n\n    /**\n     * Returns a `<small>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    small(): string;\n\n    /**\n     * Returns a `<strike>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    strike(): string;\n\n    /**\n     * Returns a `<sub>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    sub(): string;\n\n    /**\n     * Returns a `<sup>` HTML element\n     * @deprecated A legacy feature for browser compatibility\n     */\n    sup(): string;\n}\n\ninterface StringConstructor {\n    /**\n     * Return the String value whose elements are, in order, the elements in the List elements.\n     * If length is 0, the empty string is returned.\n     */\n    fromCodePoint(...codePoints: number[]): string;\n\n    /**\n     * String.raw is usually used as a tag function of a Tagged Template String. When called as\n     * such, the first argument will be a well formed template call site object and the rest\n     * parameter will contain the substitution values. It can also be called directly, for example,\n     * to interleave strings and values from your own tag function, and in this case the only thing\n     * it needs from the first argument is the raw property.\n     * @param template A well-formed template string call site representation.\n     * @param substitutions A set of substitution values.\n     */\n    raw(template: { raw: readonly string[] | ArrayLike<string>; }, ...substitutions: any[]): string;\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n",
    "node_modules/typescript/lib/lib.es2015.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es5\" />\n/// <reference lib=\"es2015.core\" />\n/// <reference lib=\"es2015.collection\" />\n/// <reference lib=\"es2015.iterable\" />\n/// <reference lib=\"es2015.generator\" />\n/// <reference lib=\"es2015.promise\" />\n/// <reference lib=\"es2015.proxy\" />\n/// <reference lib=\"es2015.reflect\" />\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"es2015.symbol.wellknown\" />\n",
    "node_modules/typescript/lib/lib.es2015.generator.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.iterable\" />\n\ninterface Generator<T = unknown, TReturn = any, TNext = any> extends IteratorObject<T, TReturn, TNext> {\n    // NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.\n    next(...[value]: [] | [TNext]): IteratorResult<T, TReturn>;\n    return(value: TReturn): IteratorResult<T, TReturn>;\n    throw(e: any): IteratorResult<T, TReturn>;\n    [Symbol.iterator](): Generator<T, TReturn, TNext>;\n}\n\ninterface GeneratorFunction {\n    /**\n     * Creates a new Generator object.\n     * @param args A list of arguments the function accepts.\n     */\n    new (...args: any[]): Generator;\n    /**\n     * Creates a new Generator object.\n     * @param args A list of arguments the function accepts.\n     */\n    (...args: any[]): Generator;\n    /**\n     * The length of the arguments.\n     */\n    readonly length: number;\n    /**\n     * Returns the name of the function.\n     */\n    readonly name: string;\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: Generator;\n}\n\ninterface GeneratorFunctionConstructor {\n    /**\n     * Creates a new Generator function.\n     * @param args A list of arguments the function accepts.\n     */\n    new (...args: string[]): GeneratorFunction;\n    /**\n     * Creates a new Generator function.\n     * @param args A list of arguments the function accepts.\n     */\n    (...args: string[]): GeneratorFunction;\n    /**\n     * The length of the arguments.\n     */\n    readonly length: number;\n    /**\n     * Returns the name of the function.\n     */\n    readonly name: string;\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: GeneratorFunction;\n}\n",
    "node_modules/typescript/lib/lib.es2015.iterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n\ninterface SymbolConstructor {\n    /**\n     * A method that returns the default iterator for an object. Called by the semantics of the\n     * for-of statement.\n     */\n    readonly iterator: unique symbol;\n}\n\ninterface IteratorYieldResult<TYield> {\n    done?: false;\n    value: TYield;\n}\n\ninterface IteratorReturnResult<TReturn> {\n    done: true;\n    value: TReturn;\n}\n\ntype IteratorResult<T, TReturn = any> = IteratorYieldResult<T> | IteratorReturnResult<TReturn>;\n\ninterface Iterator<T, TReturn = any, TNext = any> {\n    // NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.\n    next(...[value]: [] | [TNext]): IteratorResult<T, TReturn>;\n    return?(value?: TReturn): IteratorResult<T, TReturn>;\n    throw?(e?: any): IteratorResult<T, TReturn>;\n}\n\ninterface Iterable<T, TReturn = any, TNext = any> {\n    [Symbol.iterator](): Iterator<T, TReturn, TNext>;\n}\n\n/**\n * Describes a user-defined {@link Iterator} that is also iterable.\n */\ninterface IterableIterator<T, TReturn = any, TNext = any> extends Iterator<T, TReturn, TNext> {\n    [Symbol.iterator](): IterableIterator<T, TReturn, TNext>;\n}\n\n/**\n * Describes an {@link Iterator} produced by the runtime that inherits from the intrinsic `Iterator.prototype`.\n */\ninterface IteratorObject<T, TReturn = unknown, TNext = unknown> extends Iterator<T, TReturn, TNext> {\n    [Symbol.iterator](): IteratorObject<T, TReturn, TNext>;\n}\n\n/**\n * Defines the `TReturn` type used for built-in iterators produced by `Array`, `Map`, `Set`, and others.\n * This is `undefined` when `strictBuiltInIteratorReturn` is `true`; otherwise, this is `any`.\n */\ntype BuiltinIteratorReturn = intrinsic;\n\ninterface ArrayIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): ArrayIterator<T>;\n}\n\ninterface Array<T> {\n    /** Iterator */\n    [Symbol.iterator](): ArrayIterator<T>;\n\n    /**\n     * Returns an iterable of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, T]>;\n\n    /**\n     * Returns an iterable of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an iterable of values in the array\n     */\n    values(): ArrayIterator<T>;\n}\n\ninterface ArrayConstructor {\n    /**\n     * Creates an array from an iterable object.\n     * @param iterable An iterable object to convert to an array.\n     */\n    from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];\n\n    /**\n     * Creates an array from an iterable object.\n     * @param iterable An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];\n}\n\ninterface ReadonlyArray<T> {\n    /** Iterator of values in the array. */\n    [Symbol.iterator](): ArrayIterator<T>;\n\n    /**\n     * Returns an iterable of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, T]>;\n\n    /**\n     * Returns an iterable of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an iterable of values in the array\n     */\n    values(): ArrayIterator<T>;\n}\n\ninterface IArguments {\n    /** Iterator */\n    [Symbol.iterator](): ArrayIterator<any>;\n}\n\ninterface MapIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): MapIterator<T>;\n}\n\ninterface Map<K, V> {\n    /** Returns an iterable of entries in the map. */\n    [Symbol.iterator](): MapIterator<[K, V]>;\n\n    /**\n     * Returns an iterable of key, value pairs for every entry in the map.\n     */\n    entries(): MapIterator<[K, V]>;\n\n    /**\n     * Returns an iterable of keys in the map\n     */\n    keys(): MapIterator<K>;\n\n    /**\n     * Returns an iterable of values in the map\n     */\n    values(): MapIterator<V>;\n}\n\ninterface ReadonlyMap<K, V> {\n    /** Returns an iterable of entries in the map. */\n    [Symbol.iterator](): MapIterator<[K, V]>;\n\n    /**\n     * Returns an iterable of key, value pairs for every entry in the map.\n     */\n    entries(): MapIterator<[K, V]>;\n\n    /**\n     * Returns an iterable of keys in the map\n     */\n    keys(): MapIterator<K>;\n\n    /**\n     * Returns an iterable of values in the map\n     */\n    values(): MapIterator<V>;\n}\n\ninterface MapConstructor {\n    new (): Map<any, any>;\n    new <K, V>(iterable?: Iterable<readonly [K, V]> | null): Map<K, V>;\n}\n\ninterface WeakMap<K extends WeakKey, V> {}\n\ninterface WeakMapConstructor {\n    new <K extends WeakKey, V>(iterable: Iterable<readonly [K, V]>): WeakMap<K, V>;\n}\n\ninterface SetIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): SetIterator<T>;\n}\n\ninterface Set<T> {\n    /** Iterates over values in the set. */\n    [Symbol.iterator](): SetIterator<T>;\n\n    /**\n     * Returns an iterable of [v,v] pairs for every value `v` in the set.\n     */\n    entries(): SetIterator<[T, T]>;\n\n    /**\n     * Despite its name, returns an iterable of the values in the set.\n     */\n    keys(): SetIterator<T>;\n\n    /**\n     * Returns an iterable of values in the set.\n     */\n    values(): SetIterator<T>;\n}\n\ninterface ReadonlySet<T> {\n    /** Iterates over values in the set. */\n    [Symbol.iterator](): SetIterator<T>;\n\n    /**\n     * Returns an iterable of [v,v] pairs for every value `v` in the set.\n     */\n    entries(): SetIterator<[T, T]>;\n\n    /**\n     * Despite its name, returns an iterable of the values in the set.\n     */\n    keys(): SetIterator<T>;\n\n    /**\n     * Returns an iterable of values in the set.\n     */\n    values(): SetIterator<T>;\n}\n\ninterface SetConstructor {\n    new <T>(iterable?: Iterable<T> | null): Set<T>;\n}\n\ninterface WeakSet<T extends WeakKey> {}\n\ninterface WeakSetConstructor {\n    new <T extends WeakKey = WeakKey>(iterable: Iterable<T>): WeakSet<T>;\n}\n\ninterface Promise<T> {}\n\ninterface PromiseConstructor {\n    /**\n     * Creates a Promise that is resolved with an array of results when all of the provided Promises\n     * resolve, or rejected when any Promise is rejected.\n     * @param values An iterable of Promises.\n     * @returns A new Promise.\n     */\n    all<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>[]>;\n\n    /**\n     * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n     * or rejected.\n     * @param values An iterable of Promises.\n     * @returns A new Promise.\n     */\n    race<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>;\n}\n\ninterface StringIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): StringIterator<T>;\n}\n\ninterface String {\n    /** Iterator */\n    [Symbol.iterator](): StringIterator<string>;\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Int8ArrayConstructor {\n    new (elements: Iterable<number>): Int8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Int8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Int8Array<ArrayBuffer>;\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Uint8ArrayConstructor {\n    new (elements: Iterable<number>): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Uint8Array<ArrayBuffer>;\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Uint8ClampedArrayConstructor {\n    new (elements: Iterable<number>): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Uint8ClampedArray<ArrayBuffer>;\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Int16ArrayConstructor {\n    new (elements: Iterable<number>): Int16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Int16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Int16Array<ArrayBuffer>;\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Uint16ArrayConstructor {\n    new (elements: Iterable<number>): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Uint16Array<ArrayBuffer>;\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Int32ArrayConstructor {\n    new (elements: Iterable<number>): Int32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Int32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Int32Array<ArrayBuffer>;\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Uint32ArrayConstructor {\n    new (elements: Iterable<number>): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Uint32Array<ArrayBuffer>;\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Float32ArrayConstructor {\n    new (elements: Iterable<number>): Float32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Float32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Float32Array<ArrayBuffer>;\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n}\n\ninterface Float64ArrayConstructor {\n    new (elements: Iterable<number>): Float64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Float64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Float64Array<ArrayBuffer>;\n}\n",
    "node_modules/typescript/lib/lib.es2015.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface PromiseConstructor {\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: Promise<any>;\n\n    /**\n     * Creates a new Promise.\n     * @param executor A callback used to initialize the promise. This callback is passed two arguments:\n     * a resolve callback used to resolve the promise with a value or the result of another promise,\n     * and a reject callback used to reject the promise with a provided reason or error.\n     */\n    new <T>(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;\n\n    /**\n     * Creates a Promise that is resolved with an array of results when all of the provided Promises\n     * resolve, or rejected when any Promise is rejected.\n     * @param values An array of Promises.\n     * @returns A new Promise.\n     */\n    all<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: Awaited<T[P]>; }>;\n\n    // see: lib.es2015.iterable.d.ts\n    // all<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>[]>;\n\n    /**\n     * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n     * or rejected.\n     * @param values An array of Promises.\n     * @returns A new Promise.\n     */\n    race<T extends readonly unknown[] | []>(values: T): Promise<Awaited<T[number]>>;\n\n    // see: lib.es2015.iterable.d.ts\n    // race<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>;\n\n    /**\n     * Creates a new rejected promise for the provided reason.\n     * @param reason The reason the promise was rejected.\n     * @returns A new rejected Promise.\n     */\n    reject<T = never>(reason?: any): Promise<T>;\n\n    /**\n     * Creates a new resolved promise.\n     * @returns A resolved promise.\n     */\n    resolve(): Promise<void>;\n    /**\n     * Creates a new resolved promise for the provided value.\n     * @param value A promise.\n     * @returns A promise whose internal state matches the provided promise.\n     */\n    resolve<T>(value: T): Promise<Awaited<T>>;\n    /**\n     * Creates a new resolved promise for the provided value.\n     * @param value A promise.\n     * @returns A promise whose internal state matches the provided promise.\n     */\n    resolve<T>(value: T | PromiseLike<T>): Promise<Awaited<T>>;\n}\n\ndeclare var Promise: PromiseConstructor;\n",
    "node_modules/typescript/lib/lib.es2015.proxy.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ProxyHandler<T extends object> {\n    /**\n     * A trap method for a function call.\n     * @param target The original callable object which is being proxied.\n     */\n    apply?(target: T, thisArg: any, argArray: any[]): any;\n\n    /**\n     * A trap for the `new` operator.\n     * @param target The original object which is being proxied.\n     * @param newTarget The constructor that was originally called.\n     */\n    construct?(target: T, argArray: any[], newTarget: Function): object;\n\n    /**\n     * A trap for `Object.defineProperty()`.\n     * @param target The original object which is being proxied.\n     * @returns A `Boolean` indicating whether or not the property has been defined.\n     */\n    defineProperty?(target: T, property: string | symbol, attributes: PropertyDescriptor): boolean;\n\n    /**\n     * A trap for the `delete` operator.\n     * @param target The original object which is being proxied.\n     * @param p The name or `Symbol` of the property to delete.\n     * @returns A `Boolean` indicating whether or not the property was deleted.\n     */\n    deleteProperty?(target: T, p: string | symbol): boolean;\n\n    /**\n     * A trap for getting a property value.\n     * @param target The original object which is being proxied.\n     * @param p The name or `Symbol` of the property to get.\n     * @param receiver The proxy or an object that inherits from the proxy.\n     */\n    get?(target: T, p: string | symbol, receiver: any): any;\n\n    /**\n     * A trap for `Object.getOwnPropertyDescriptor()`.\n     * @param target The original object which is being proxied.\n     * @param p The name of the property whose description should be retrieved.\n     */\n    getOwnPropertyDescriptor?(target: T, p: string | symbol): PropertyDescriptor | undefined;\n\n    /**\n     * A trap for the `[[GetPrototypeOf]]` internal method.\n     * @param target The original object which is being proxied.\n     */\n    getPrototypeOf?(target: T): object | null;\n\n    /**\n     * A trap for the `in` operator.\n     * @param target The original object which is being proxied.\n     * @param p The name or `Symbol` of the property to check for existence.\n     */\n    has?(target: T, p: string | symbol): boolean;\n\n    /**\n     * A trap for `Object.isExtensible()`.\n     * @param target The original object which is being proxied.\n     */\n    isExtensible?(target: T): boolean;\n\n    /**\n     * A trap for `Reflect.ownKeys()`.\n     * @param target The original object which is being proxied.\n     */\n    ownKeys?(target: T): ArrayLike<string | symbol>;\n\n    /**\n     * A trap for `Object.preventExtensions()`.\n     * @param target The original object which is being proxied.\n     */\n    preventExtensions?(target: T): boolean;\n\n    /**\n     * A trap for setting a property value.\n     * @param target The original object which is being proxied.\n     * @param p The name or `Symbol` of the property to set.\n     * @param receiver The object to which the assignment was originally directed.\n     * @returns A `Boolean` indicating whether or not the property was set.\n     */\n    set?(target: T, p: string | symbol, newValue: any, receiver: any): boolean;\n\n    /**\n     * A trap for `Object.setPrototypeOf()`.\n     * @param target The original object which is being proxied.\n     * @param newPrototype The object's new prototype or `null`.\n     */\n    setPrototypeOf?(target: T, v: object | null): boolean;\n}\n\ninterface ProxyConstructor {\n    /**\n     * Creates a revocable Proxy object.\n     * @param target A target object to wrap with Proxy.\n     * @param handler An object whose properties define the behavior of Proxy when an operation is attempted on it.\n     */\n    revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; };\n\n    /**\n     * Creates a Proxy object. The Proxy object allows you to create an object that can be used in place of the\n     * original object, but which may redefine fundamental Object operations like getting, setting, and defining\n     * properties. Proxy objects are commonly used to log property accesses, validate, format, or sanitize inputs.\n     * @param target A target object to wrap with Proxy.\n     * @param handler An object whose properties define the behavior of Proxy when an operation is attempted on it.\n     */\n    new <T extends object>(target: T, handler: ProxyHandler<T>): T;\n}\ndeclare var Proxy: ProxyConstructor;\n",
    "node_modules/typescript/lib/lib.es2015.reflect.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Reflect {\n    /**\n     * Calls the function with the specified object as the this value\n     * and the elements of specified array as the arguments.\n     * @param target The function to call.\n     * @param thisArgument The object to be used as the this object.\n     * @param argumentsList An array of argument values to be passed to the function.\n     */\n    function apply<T, A extends readonly any[], R>(\n        target: (this: T, ...args: A) => R,\n        thisArgument: T,\n        argumentsList: Readonly<A>,\n    ): R;\n    function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;\n\n    /**\n     * Constructs the target with the elements of specified array as the arguments\n     * and the specified constructor as the `new.target` value.\n     * @param target The constructor to invoke.\n     * @param argumentsList An array of argument values to be passed to the constructor.\n     * @param newTarget The constructor to be used as the `new.target` object.\n     */\n    function construct<A extends readonly any[], R>(\n        target: new (...args: A) => R,\n        argumentsList: Readonly<A>,\n        newTarget?: new (...args: any) => any,\n    ): R;\n    function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: Function): any;\n\n    /**\n     * Adds a property to an object, or modifies attributes of an existing property.\n     * @param target Object on which to add or modify the property. This can be a native JavaScript object\n     *        (that is, a user-defined object or a built in object) or a DOM object.\n     * @param propertyKey The property name.\n     * @param attributes Descriptor for the property. It can be for a data property or an accessor property.\n     */\n    function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): boolean;\n\n    /**\n     * Removes a property from an object, equivalent to `delete target[propertyKey]`,\n     * except it won't throw if `target[propertyKey]` is non-configurable.\n     * @param target Object from which to remove the own property.\n     * @param propertyKey The property name.\n     */\n    function deleteProperty(target: object, propertyKey: PropertyKey): boolean;\n\n    /**\n     * Gets the property of target, equivalent to `target[propertyKey]` when `receiver === target`.\n     * @param target Object that contains the property on itself or in its prototype chain.\n     * @param propertyKey The property name.\n     * @param receiver The reference to use as the `this` value in the getter function,\n     *        if `target[propertyKey]` is an accessor property.\n     */\n    function get<T extends object, P extends PropertyKey>(\n        target: T,\n        propertyKey: P,\n        receiver?: unknown,\n    ): P extends keyof T ? T[P] : any;\n\n    /**\n     * Gets the own property descriptor of the specified object.\n     * An own property descriptor is one that is defined directly on the object and is not inherited from the object's prototype.\n     * @param target Object that contains the property.\n     * @param propertyKey The property name.\n     */\n    function getOwnPropertyDescriptor<T extends object, P extends PropertyKey>(\n        target: T,\n        propertyKey: P,\n    ): TypedPropertyDescriptor<P extends keyof T ? T[P] : any> | undefined;\n\n    /**\n     * Returns the prototype of an object.\n     * @param target The object that references the prototype.\n     */\n    function getPrototypeOf(target: object): object | null;\n\n    /**\n     * Equivalent to `propertyKey in target`.\n     * @param target Object that contains the property on itself or in its prototype chain.\n     * @param propertyKey Name of the property.\n     */\n    function has(target: object, propertyKey: PropertyKey): boolean;\n\n    /**\n     * Returns a value that indicates whether new properties can be added to an object.\n     * @param target Object to test.\n     */\n    function isExtensible(target: object): boolean;\n\n    /**\n     * Returns the string and symbol keys of the own properties of an object. The own properties of an object\n     * are those that are defined directly on that object, and are not inherited from the object's prototype.\n     * @param target Object that contains the own properties.\n     */\n    function ownKeys(target: object): (string | symbol)[];\n\n    /**\n     * Prevents the addition of new properties to an object.\n     * @param target Object to make non-extensible.\n     * @return Whether the object has been made non-extensible.\n     */\n    function preventExtensions(target: object): boolean;\n\n    /**\n     * Sets the property of target, equivalent to `target[propertyKey] = value` when `receiver === target`.\n     * @param target Object that contains the property on itself or in its prototype chain.\n     * @param propertyKey Name of the property.\n     * @param receiver The reference to use as the `this` value in the setter function,\n     *        if `target[propertyKey]` is an accessor property.\n     */\n    function set<T extends object, P extends PropertyKey>(\n        target: T,\n        propertyKey: P,\n        value: P extends keyof T ? T[P] : any,\n        receiver?: any,\n    ): boolean;\n    function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;\n\n    /**\n     * Sets the prototype of a specified object o to object proto or null.\n     * @param target The object to change its prototype.\n     * @param proto The value of the new prototype or null.\n     * @return Whether setting the prototype was successful.\n     */\n    function setPrototypeOf(target: object, proto: object | null): boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2015.symbol.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface SymbolConstructor {\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: Symbol;\n\n    /**\n     * Returns a new unique Symbol value.\n     * @param  description Description of the new Symbol object.\n     */\n    (description?: string | number): symbol;\n\n    /**\n     * Returns a Symbol object from the global symbol registry matching the given key if found.\n     * Otherwise, returns a new symbol with this key.\n     * @param key key to search for.\n     */\n    for(key: string): symbol;\n\n    /**\n     * Returns a key from the global symbol registry matching the given Symbol if found.\n     * Otherwise, returns a undefined.\n     * @param sym Symbol to find the key for.\n     */\n    keyFor(sym: symbol): string | undefined;\n}\n\ndeclare var Symbol: SymbolConstructor;\n",
    "node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n\ninterface SymbolConstructor {\n    /**\n     * A method that determines if a constructor object recognizes an object as one of the\n     * constructor’s instances. Called by the semantics of the instanceof operator.\n     */\n    readonly hasInstance: unique symbol;\n\n    /**\n     * A Boolean value that if true indicates that an object should flatten to its array elements\n     * by Array.prototype.concat.\n     */\n    readonly isConcatSpreadable: unique symbol;\n\n    /**\n     * A regular expression method that matches the regular expression against a string. Called\n     * by the String.prototype.match method.\n     */\n    readonly match: unique symbol;\n\n    /**\n     * A regular expression method that replaces matched substrings of a string. Called by the\n     * String.prototype.replace method.\n     */\n    readonly replace: unique symbol;\n\n    /**\n     * A regular expression method that returns the index within a string that matches the\n     * regular expression. Called by the String.prototype.search method.\n     */\n    readonly search: unique symbol;\n\n    /**\n     * A function valued property that is the constructor function that is used to create\n     * derived objects.\n     */\n    readonly species: unique symbol;\n\n    /**\n     * A regular expression method that splits a string at the indices that match the regular\n     * expression. Called by the String.prototype.split method.\n     */\n    readonly split: unique symbol;\n\n    /**\n     * A method that converts an object to a corresponding primitive value.\n     * Called by the ToPrimitive abstract operation.\n     */\n    readonly toPrimitive: unique symbol;\n\n    /**\n     * A String value that is used in the creation of the default string description of an object.\n     * Called by the built-in method Object.prototype.toString.\n     */\n    readonly toStringTag: unique symbol;\n\n    /**\n     * An Object whose truthy properties are properties that are excluded from the 'with'\n     * environment bindings of the associated objects.\n     */\n    readonly unscopables: unique symbol;\n}\n\ninterface Symbol {\n    /**\n     * Converts a Symbol object to a symbol.\n     */\n    [Symbol.toPrimitive](hint: string): symbol;\n\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Array<T> {\n    /**\n     * Is an object whose properties have the value 'true'\n     * when they will be absent when used in a 'with' statement.\n     */\n    readonly [Symbol.unscopables]: {\n        [K in keyof any[]]?: boolean;\n    };\n}\n\ninterface ReadonlyArray<T> {\n    /**\n     * Is an object whose properties have the value 'true'\n     * when they will be absent when used in a 'with' statement.\n     */\n    readonly [Symbol.unscopables]: {\n        [K in keyof readonly any[]]?: boolean;\n    };\n}\n\ninterface Date {\n    /**\n     * Converts a Date object to a string.\n     */\n    [Symbol.toPrimitive](hint: \"default\"): string;\n    /**\n     * Converts a Date object to a string.\n     */\n    [Symbol.toPrimitive](hint: \"string\"): string;\n    /**\n     * Converts a Date object to a number.\n     */\n    [Symbol.toPrimitive](hint: \"number\"): number;\n    /**\n     * Converts a Date object to a string or number.\n     *\n     * @param hint The strings \"number\", \"string\", or \"default\" to specify what primitive to return.\n     *\n     * @throws {TypeError} If 'hint' was given something other than \"number\", \"string\", or \"default\".\n     * @returns A number if 'hint' was \"number\", a string if 'hint' was \"string\" or \"default\".\n     */\n    [Symbol.toPrimitive](hint: string): string | number;\n}\n\ninterface Map<K, V> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface WeakMap<K extends WeakKey, V> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Set<T> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface WeakSet<T extends WeakKey> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface JSON {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Function {\n    /**\n     * Determines whether the given value inherits from this function if this function was used\n     * as a constructor function.\n     *\n     * A constructor function can control which objects are recognized as its instances by\n     * 'instanceof' by overriding this method.\n     */\n    [Symbol.hasInstance](value: any): boolean;\n}\n\ninterface GeneratorFunction {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Math {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Promise<T> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface PromiseConstructor {\n    readonly [Symbol.species]: PromiseConstructor;\n}\n\ninterface RegExp {\n    /**\n     * Matches a string with this regular expression, and returns an array containing the results of\n     * that search.\n     * @param string A string to search within.\n     */\n    [Symbol.match](string: string): RegExpMatchArray | null;\n\n    /**\n     * Replaces text in a string, using this regular expression.\n     * @param string A String object or string literal whose contents matching against\n     *               this regular expression will be replaced\n     * @param replaceValue A String object or string literal containing the text to replace for every\n     *                     successful match of this regular expression.\n     */\n    [Symbol.replace](string: string, replaceValue: string): string;\n\n    /**\n     * Replaces text in a string, using this regular expression.\n     * @param string A String object or string literal whose contents matching against\n     *               this regular expression will be replaced\n     * @param replacer A function that returns the replacement text.\n     */\n    [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;\n\n    /**\n     * Finds the position beginning first substring match in a regular expression search\n     * using this regular expression.\n     *\n     * @param string The string to search within.\n     */\n    [Symbol.search](string: string): number;\n\n    /**\n     * Returns an array of substrings that were delimited by strings in the original input that\n     * match against this regular expression.\n     *\n     * If the regular expression contains capturing parentheses, then each time this\n     * regular expression matches, the results (including any undefined results) of the\n     * capturing parentheses are spliced.\n     *\n     * @param string string value to split\n     * @param limit if not undefined, the output array is truncated so that it contains no more\n     * than 'limit' elements.\n     */\n    [Symbol.split](string: string, limit?: number): string[];\n}\n\ninterface RegExpConstructor {\n    readonly [Symbol.species]: RegExpConstructor;\n}\n\ninterface String {\n    /**\n     * Matches a string or an object that supports being matched against, and returns an array\n     * containing the results of that search, or null if no matches are found.\n     * @param matcher An object that supports being matched against.\n     */\n    match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;\n\n    /**\n     * Passes a string and {@linkcode replaceValue} to the `[Symbol.replace]` method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm.\n     * @param searchValue An object that supports searching for and replacing matches within a string.\n     * @param replaceValue The replacement text.\n     */\n    replace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValue: string): string;\n\n    /**\n     * Replaces text in a string, using an object that supports replacement within a string.\n     * @param searchValue A object can search for and replace matches within a string.\n     * @param replacer A function that returns the replacement text.\n     */\n    replace(searchValue: { [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string; }, replacer: (substring: string, ...args: any[]) => string): string;\n\n    /**\n     * Finds the first substring match in a regular expression search.\n     * @param searcher An object which supports searching within a string.\n     */\n    search(searcher: { [Symbol.search](string: string): number; }): number;\n\n    /**\n     * Split a string into substrings using the specified separator and return them as an array.\n     * @param splitter An object that can split a string.\n     * @param limit A value used to limit the number of elements returned in the array.\n     */\n    split(splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[];\n}\n\ninterface ArrayBuffer {\n    readonly [Symbol.toStringTag]: \"ArrayBuffer\";\n}\n\ninterface DataView<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Int8Array\";\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Uint8Array\";\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Uint8ClampedArray\";\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Int16Array\";\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Uint16Array\";\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Int32Array\";\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Uint32Array\";\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Float32Array\";\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    readonly [Symbol.toStringTag]: \"Float64Array\";\n}\n\ninterface ArrayConstructor {\n    readonly [Symbol.species]: ArrayConstructor;\n}\ninterface MapConstructor {\n    readonly [Symbol.species]: MapConstructor;\n}\ninterface SetConstructor {\n    readonly [Symbol.species]: SetConstructor;\n}\ninterface ArrayBufferConstructor {\n    readonly [Symbol.species]: ArrayBufferConstructor;\n}\n",
    "node_modules/typescript/lib/lib.es2016.array.include.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Array<T> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: T, fromIndex?: number): boolean;\n}\n\ninterface ReadonlyArray<T> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: T, fromIndex?: number): boolean;\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2016.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015\" />\n/// <reference lib=\"es2016.array.include\" />\n/// <reference lib=\"es2016.intl\" />\n",
    "node_modules/typescript/lib/lib.es2016.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2016\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n",
    "node_modules/typescript/lib/lib.es2016.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    /**\n     * The `Intl.getCanonicalLocales()` method returns an array containing\n     * the canonical locale names. Duplicates will be omitted and elements\n     * will be validated as structurally valid language tags.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/getCanonicalLocales)\n     *\n     * @param locale A list of String values for which to get the canonical locale names\n     * @returns An array containing the canonical and validated locale names.\n     */\n    function getCanonicalLocales(locale?: string | readonly string[]): string[];\n}\n",
    "node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ArrayBufferConstructor {\n    new (): ArrayBuffer;\n}\n",
    "node_modules/typescript/lib/lib.es2017.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2016\" />\n/// <reference lib=\"es2017.arraybuffer\" />\n/// <reference lib=\"es2017.date\" />\n/// <reference lib=\"es2017.intl\" />\n/// <reference lib=\"es2017.object\" />\n/// <reference lib=\"es2017.sharedmemory\" />\n/// <reference lib=\"es2017.string\" />\n/// <reference lib=\"es2017.typedarrays\" />\n",
    "node_modules/typescript/lib/lib.es2017.date.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface DateConstructor {\n    /**\n     * Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the specified date.\n     * @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.\n     * @param monthIndex The month as a number between 0 and 11 (January to December).\n     * @param date The date as a number between 1 and 31.\n     * @param hours Must be supplied if minutes is supplied. A number from 0 to 23 (midnight to 11pm) that specifies the hour.\n     * @param minutes Must be supplied if seconds is supplied. A number from 0 to 59 that specifies the minutes.\n     * @param seconds Must be supplied if milliseconds is supplied. A number from 0 to 59 that specifies the seconds.\n     * @param ms A number from 0 to 999 that specifies the milliseconds.\n     */\n    UTC(year: number, monthIndex?: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): number;\n}\n",
    "node_modules/typescript/lib/lib.es2017.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2017\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n",
    "node_modules/typescript/lib/lib.es2017.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    interface DateTimeFormatPartTypesRegistry {\n        day: any;\n        dayPeriod: any;\n        era: any;\n        hour: any;\n        literal: any;\n        minute: any;\n        month: any;\n        second: any;\n        timeZoneName: any;\n        weekday: any;\n        year: any;\n    }\n\n    type DateTimeFormatPartTypes = keyof DateTimeFormatPartTypesRegistry;\n\n    interface DateTimeFormatPart {\n        type: DateTimeFormatPartTypes;\n        value: string;\n    }\n\n    interface DateTimeFormat {\n        formatToParts(date?: Date | number): DateTimeFormatPart[];\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2017.object.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ObjectConstructor {\n    /**\n     * Returns an array of values of the enumerable own properties of an object\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[];\n\n    /**\n     * Returns an array of values of the enumerable own properties of an object\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    values(o: {}): any[];\n\n    /**\n     * Returns an array of key/values of the enumerable own properties of an object\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][];\n\n    /**\n     * Returns an array of key/values of the enumerable own properties of an object\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    entries(o: {}): [string, any][];\n\n    /**\n     * Returns an object containing all own property descriptors of an object\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & { [x: string]: PropertyDescriptor; };\n}\n",
    "node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"es2015.symbol.wellknown\" />\n\ninterface SharedArrayBuffer {\n    /**\n     * Read-only. The length of the ArrayBuffer (in bytes).\n     */\n    readonly byteLength: number;\n\n    /**\n     * Returns a section of an SharedArrayBuffer.\n     */\n    slice(begin?: number, end?: number): SharedArrayBuffer;\n    readonly [Symbol.toStringTag]: \"SharedArrayBuffer\";\n}\n\ninterface SharedArrayBufferConstructor {\n    readonly prototype: SharedArrayBuffer;\n    new (byteLength?: number): SharedArrayBuffer;\n    readonly [Symbol.species]: SharedArrayBufferConstructor;\n}\ndeclare var SharedArrayBuffer: SharedArrayBufferConstructor;\n\ninterface ArrayBufferTypes {\n    SharedArrayBuffer: SharedArrayBuffer;\n}\n\ninterface Atomics {\n    /**\n     * Adds a value to the value at the given position in the array, returning the original value.\n     * Until this atomic operation completes, any other read or write operation against the array\n     * will block.\n     */\n    add(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * Stores the bitwise AND of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or\n     * write operation against the array will block.\n     */\n    and(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * Replaces the value at the given position in the array if the original value equals the given\n     * expected value, returning the original value. Until this atomic operation completes, any\n     * other read or write operation against the array will block.\n     */\n    compareExchange(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, expectedValue: number, replacementValue: number): number;\n\n    /**\n     * Replaces the value at the given position in the array, returning the original value. Until\n     * this atomic operation completes, any other read or write operation against the array will\n     * block.\n     */\n    exchange(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * Returns a value indicating whether high-performance algorithms can use atomic operations\n     * (`true`) or must use locks (`false`) for the given number of bytes-per-element of a typed\n     * array.\n     */\n    isLockFree(size: number): boolean;\n\n    /**\n     * Returns the value at the given position in the array. Until this atomic operation completes,\n     * any other read or write operation against the array will block.\n     */\n    load(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number): number;\n\n    /**\n     * Stores the bitwise OR of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or write\n     * operation against the array will block.\n     */\n    or(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * Stores a value at the given position in the array, returning the new value. Until this\n     * atomic operation completes, any other read or write operation against the array will block.\n     */\n    store(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * Subtracts a value from the value at the given position in the array, returning the original\n     * value. Until this atomic operation completes, any other read or write operation against the\n     * array will block.\n     */\n    sub(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    /**\n     * If the value at the given position in the array is equal to the provided value, the current\n     * agent is put to sleep causing execution to suspend until the timeout expires (returning\n     * `\"timed-out\"`) or until the agent is awoken (returning `\"ok\"`); otherwise, returns\n     * `\"not-equal\"`.\n     */\n    wait(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\";\n\n    /**\n     * Wakes up sleeping agents that are waiting on the given index of the array, returning the\n     * number of agents that were awoken.\n     * @param typedArray A shared Int32Array<ArrayBufferLike>.\n     * @param index The position in the typedArray to wake up on.\n     * @param count The number of sleeping agents to notify. Defaults to +Infinity.\n     */\n    notify(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number;\n\n    /**\n     * Stores the bitwise XOR of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or write\n     * operation against the array will block.\n     */\n    xor(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;\n\n    readonly [Symbol.toStringTag]: \"Atomics\";\n}\n\ndeclare var Atomics: Atomics;\n",
    "node_modules/typescript/lib/lib.es2017.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface String {\n    /**\n     * Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\n     * The padding is applied from the start (left) of the current string.\n     *\n     * @param maxLength The length of the resulting string once the current string has been padded.\n     *        If this parameter is smaller than the current string's length, the current string will be returned as it is.\n     *\n     * @param fillString The string to pad the current string with.\n     *        If this string is too long, it will be truncated and the left-most part will be applied.\n     *        The default value for this parameter is \" \" (U+0020).\n     */\n    padStart(maxLength: number, fillString?: string): string;\n\n    /**\n     * Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\n     * The padding is applied from the end (right) of the current string.\n     *\n     * @param maxLength The length of the resulting string once the current string has been padded.\n     *        If this parameter is smaller than the current string's length, the current string will be returned as it is.\n     *\n     * @param fillString The string to pad the current string with.\n     *        If this string is too long, it will be truncated and the left-most part will be applied.\n     *        The default value for this parameter is \" \" (U+0020).\n     */\n    padEnd(maxLength: number, fillString?: string): string;\n}\n",
    "node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Int8ArrayConstructor {\n    new (): Int8Array<ArrayBuffer>;\n}\n\ninterface Uint8ArrayConstructor {\n    new (): Uint8Array<ArrayBuffer>;\n}\n\ninterface Uint8ClampedArrayConstructor {\n    new (): Uint8ClampedArray<ArrayBuffer>;\n}\n\ninterface Int16ArrayConstructor {\n    new (): Int16Array<ArrayBuffer>;\n}\n\ninterface Uint16ArrayConstructor {\n    new (): Uint16Array<ArrayBuffer>;\n}\n\ninterface Int32ArrayConstructor {\n    new (): Int32Array<ArrayBuffer>;\n}\n\ninterface Uint32ArrayConstructor {\n    new (): Uint32Array<ArrayBuffer>;\n}\n\ninterface Float32ArrayConstructor {\n    new (): Float32Array<ArrayBuffer>;\n}\n\ninterface Float64ArrayConstructor {\n    new (): Float64Array<ArrayBuffer>;\n}\n",
    "node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2018.asynciterable\" />\n\ninterface AsyncGenerator<T = unknown, TReturn = any, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> {\n    // NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.\n    next(...[value]: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;\n    return(value: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;\n    throw(e: any): Promise<IteratorResult<T, TReturn>>;\n    [Symbol.asyncIterator](): AsyncGenerator<T, TReturn, TNext>;\n}\n\ninterface AsyncGeneratorFunction {\n    /**\n     * Creates a new AsyncGenerator object.\n     * @param args A list of arguments the function accepts.\n     */\n    new (...args: any[]): AsyncGenerator;\n    /**\n     * Creates a new AsyncGenerator object.\n     * @param args A list of arguments the function accepts.\n     */\n    (...args: any[]): AsyncGenerator;\n    /**\n     * The length of the arguments.\n     */\n    readonly length: number;\n    /**\n     * Returns the name of the function.\n     */\n    readonly name: string;\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: AsyncGenerator;\n}\n\ninterface AsyncGeneratorFunctionConstructor {\n    /**\n     * Creates a new AsyncGenerator function.\n     * @param args A list of arguments the function accepts.\n     */\n    new (...args: string[]): AsyncGeneratorFunction;\n    /**\n     * Creates a new AsyncGenerator function.\n     * @param args A list of arguments the function accepts.\n     */\n    (...args: string[]): AsyncGeneratorFunction;\n    /**\n     * The length of the arguments.\n     */\n    readonly length: number;\n    /**\n     * Returns the name of the function.\n     */\n    readonly name: string;\n    /**\n     * A reference to the prototype.\n     */\n    readonly prototype: AsyncGeneratorFunction;\n}\n",
    "node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"es2015.iterable\" />\n\ninterface SymbolConstructor {\n    /**\n     * A method that returns the default async iterator for an object. Called by the semantics of\n     * the for-await-of statement.\n     */\n    readonly asyncIterator: unique symbol;\n}\n\ninterface AsyncIterator<T, TReturn = any, TNext = any> {\n    // NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.\n    next(...[value]: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;\n    return?(value?: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;\n    throw?(e?: any): Promise<IteratorResult<T, TReturn>>;\n}\n\ninterface AsyncIterable<T, TReturn = any, TNext = any> {\n    [Symbol.asyncIterator](): AsyncIterator<T, TReturn, TNext>;\n}\n\n/**\n * Describes a user-defined {@link AsyncIterator} that is also async iterable.\n */\ninterface AsyncIterableIterator<T, TReturn = any, TNext = any> extends AsyncIterator<T, TReturn, TNext> {\n    [Symbol.asyncIterator](): AsyncIterableIterator<T, TReturn, TNext>;\n}\n\n/**\n * Describes an {@link AsyncIterator} produced by the runtime that inherits from the intrinsic `AsyncIterator.prototype`.\n */\ninterface AsyncIteratorObject<T, TReturn = unknown, TNext = unknown> extends AsyncIterator<T, TReturn, TNext> {\n    [Symbol.asyncIterator](): AsyncIteratorObject<T, TReturn, TNext>;\n}\n",
    "node_modules/typescript/lib/lib.es2018.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2017\" />\n/// <reference lib=\"es2018.asynciterable\" />\n/// <reference lib=\"es2018.asyncgenerator\" />\n/// <reference lib=\"es2018.promise\" />\n/// <reference lib=\"es2018.regexp\" />\n/// <reference lib=\"es2018.intl\" />\n",
    "node_modules/typescript/lib/lib.es2018.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2018\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2018.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    // http://cldr.unicode.org/index/cldr-spec/plural-rules#TOC-Determining-Plural-Categories\n    type LDMLPluralRule = \"zero\" | \"one\" | \"two\" | \"few\" | \"many\" | \"other\";\n    type PluralRuleType = \"cardinal\" | \"ordinal\";\n\n    interface PluralRulesOptions {\n        localeMatcher?: \"lookup\" | \"best fit\" | undefined;\n        type?: PluralRuleType | undefined;\n        minimumIntegerDigits?: number | undefined;\n        minimumFractionDigits?: number | undefined;\n        maximumFractionDigits?: number | undefined;\n        minimumSignificantDigits?: number | undefined;\n        maximumSignificantDigits?: number | undefined;\n    }\n\n    interface ResolvedPluralRulesOptions {\n        locale: string;\n        pluralCategories: LDMLPluralRule[];\n        type: PluralRuleType;\n        minimumIntegerDigits: number;\n        minimumFractionDigits: number;\n        maximumFractionDigits: number;\n        minimumSignificantDigits?: number;\n        maximumSignificantDigits?: number;\n    }\n\n    interface PluralRules {\n        resolvedOptions(): ResolvedPluralRulesOptions;\n        select(n: number): LDMLPluralRule;\n    }\n\n    interface PluralRulesConstructor {\n        new (locales?: string | readonly string[], options?: PluralRulesOptions): PluralRules;\n        (locales?: string | readonly string[], options?: PluralRulesOptions): PluralRules;\n        supportedLocalesOf(locales: string | readonly string[], options?: { localeMatcher?: \"lookup\" | \"best fit\"; }): string[];\n    }\n\n    const PluralRules: PluralRulesConstructor;\n\n    interface NumberFormatPartTypeRegistry {\n        literal: never;\n        nan: never;\n        infinity: never;\n        percent: never;\n        integer: never;\n        group: never;\n        decimal: never;\n        fraction: never;\n        plusSign: never;\n        minusSign: never;\n        percentSign: never;\n        currency: never;\n    }\n\n    type NumberFormatPartTypes = keyof NumberFormatPartTypeRegistry;\n\n    interface NumberFormatPart {\n        type: NumberFormatPartTypes;\n        value: string;\n    }\n\n    interface NumberFormat {\n        formatToParts(number?: number | bigint): NumberFormatPart[];\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2018.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/**\n * Represents the completion of an asynchronous operation\n */\ninterface Promise<T> {\n    /**\n     * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The\n     * resolved value cannot be modified from the callback.\n     * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).\n     * @returns A Promise for the completion of the callback.\n     */\n    finally(onfinally?: (() => void) | undefined | null): Promise<T>;\n}\n",
    "node_modules/typescript/lib/lib.es2018.regexp.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface RegExpMatchArray {\n    groups?: {\n        [key: string]: string;\n    };\n}\n\ninterface RegExpExecArray {\n    groups?: {\n        [key: string]: string;\n    };\n}\n\ninterface RegExp {\n    /**\n     * Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression.\n     * Default is false. Read-only.\n     */\n    readonly dotAll: boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2019.array.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ntype FlatArray<Arr, Depth extends number> = {\n    done: Arr;\n    recur: Arr extends ReadonlyArray<infer InnerArr> ? FlatArray<InnerArr, [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][Depth]>\n        : Arr;\n}[Depth extends -1 ? \"done\" : \"recur\"];\n\ninterface ReadonlyArray<T> {\n    /**\n     * Calls a defined callback function on each element of an array. Then, flattens the result into\n     * a new array.\n     * This is identical to a map followed by flat with depth 1.\n     *\n     * @param callback A function that accepts up to three arguments. The flatMap method calls the\n     * callback function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callback function. If\n     * thisArg is omitted, undefined is used as the this value.\n     */\n    flatMap<U, This = undefined>(\n        callback: (this: This, value: T, index: number, array: T[]) => U | ReadonlyArray<U>,\n        thisArg?: This,\n    ): U[];\n\n    /**\n     * Returns a new array with all sub-array elements concatenated into it recursively up to the\n     * specified depth.\n     *\n     * @param depth The maximum recursion depth\n     */\n    flat<A, D extends number = 1>(\n        this: A,\n        depth?: D,\n    ): FlatArray<A, D>[];\n}\n\ninterface Array<T> {\n    /**\n     * Calls a defined callback function on each element of an array. Then, flattens the result into\n     * a new array.\n     * This is identical to a map followed by flat with depth 1.\n     *\n     * @param callback A function that accepts up to three arguments. The flatMap method calls the\n     * callback function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callback function. If\n     * thisArg is omitted, undefined is used as the this value.\n     */\n    flatMap<U, This = undefined>(\n        callback: (this: This, value: T, index: number, array: T[]) => U | ReadonlyArray<U>,\n        thisArg?: This,\n    ): U[];\n\n    /**\n     * Returns a new array with all sub-array elements concatenated into it recursively up to the\n     * specified depth.\n     *\n     * @param depth The maximum recursion depth\n     */\n    flat<A, D extends number = 1>(\n        this: A,\n        depth?: D,\n    ): FlatArray<A, D>[];\n}\n",
    "node_modules/typescript/lib/lib.es2019.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2018\" />\n/// <reference lib=\"es2019.array\" />\n/// <reference lib=\"es2019.object\" />\n/// <reference lib=\"es2019.string\" />\n/// <reference lib=\"es2019.symbol\" />\n/// <reference lib=\"es2019.intl\" />\n",
    "node_modules/typescript/lib/lib.es2019.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2019\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2019.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    interface DateTimeFormatPartTypesRegistry {\n        unknown: never;\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2019.object.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.iterable\" />\n\ninterface ObjectConstructor {\n    /**\n     * Returns an object created by key-value entries for properties and methods\n     * @param entries An iterable object that contains key-value entries for properties and methods.\n     */\n    fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): { [k: string]: T; };\n\n    /**\n     * Returns an object created by key-value entries for properties and methods\n     * @param entries An iterable object that contains key-value entries for properties and methods.\n     */\n    fromEntries(entries: Iterable<readonly any[]>): any;\n}\n",
    "node_modules/typescript/lib/lib.es2019.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface String {\n    /** Removes the trailing white space and line terminator characters from a string. */\n    trimEnd(): string;\n\n    /** Removes the leading white space and line terminator characters from a string. */\n    trimStart(): string;\n\n    /**\n     * Removes the leading white space and line terminator characters from a string.\n     * @deprecated A legacy feature for browser compatibility. Use `trimStart` instead\n     */\n    trimLeft(): string;\n\n    /**\n     * Removes the trailing white space and line terminator characters from a string.\n     * @deprecated A legacy feature for browser compatibility. Use `trimEnd` instead\n     */\n    trimRight(): string;\n}\n",
    "node_modules/typescript/lib/lib.es2019.symbol.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Symbol {\n    /**\n     * Expose the [[Description]] internal slot of a symbol directly.\n     */\n    readonly description: string | undefined;\n}\n",
    "node_modules/typescript/lib/lib.es2020.bigint.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020.intl\" />\n\ninterface BigIntToLocaleStringOptions {\n    /**\n     * The locale matching algorithm to use.The default is \"best fit\". For information about this option, see the {@link https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation Intl page}.\n     */\n    localeMatcher?: string;\n    /**\n     * The formatting style to use , the default is \"decimal\".\n     */\n    style?: string;\n\n    numberingSystem?: string;\n    /**\n     * The unit to use in unit formatting, Possible values are core unit identifiers, defined in UTS #35, Part 2, Section 6. A subset of units from the full list was selected for use in ECMAScript. Pairs of simple units can be concatenated with \"-per-\" to make a compound unit. There is no default value; if the style is \"unit\", the unit property must be provided.\n     */\n    unit?: string;\n\n    /**\n     * The unit formatting style to use in unit formatting, the defaults is \"short\".\n     */\n    unitDisplay?: string;\n\n    /**\n     * The currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as \"USD\" for the US dollar, \"EUR\" for the euro, or \"CNY\" for the Chinese RMB — see the Current currency & funds code list. There is no default value; if the style is \"currency\", the currency property must be provided. It is only used when [[Style]] has the value \"currency\".\n     */\n    currency?: string;\n\n    /**\n     * How to display the currency in currency formatting. It is only used when [[Style]] has the value \"currency\". The default is \"symbol\".\n     *\n     * \"symbol\" to use a localized currency symbol such as €,\n     *\n     * \"code\" to use the ISO currency code,\n     *\n     * \"name\" to use a localized currency name such as \"dollar\"\n     */\n    currencyDisplay?: string;\n\n    /**\n     * Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. The default is true.\n     */\n    useGrouping?: boolean;\n\n    /**\n     * The minimum number of integer digits to use. Possible values are from 1 to 21; the default is 1.\n     */\n    minimumIntegerDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;\n\n    /**\n     * The minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of minor unit digits provided by the {@link http://www.currency-iso.org/en/home/tables/table-a1.html ISO 4217 currency codes list} (2 if the list doesn't provide that information).\n     */\n    minimumFractionDigits?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20;\n\n    /**\n     * The maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting is the larger of minimumFractionDigits and the number of minor unit digits provided by the {@link http://www.currency-iso.org/en/home/tables/table-a1.html ISO 4217 currency codes list} (2 if the list doesn't provide that information); the default for percent formatting is the larger of minimumFractionDigits and 0.\n     */\n    maximumFractionDigits?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20;\n\n    /**\n     * The minimum number of significant digits to use. Possible values are from 1 to 21; the default is 1.\n     */\n    minimumSignificantDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;\n\n    /**\n     * The maximum number of significant digits to use. Possible values are from 1 to 21; the default is 21.\n     */\n    maximumSignificantDigits?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;\n\n    /**\n     * The formatting that should be displayed for the number, the defaults is \"standard\"\n     *\n     *     \"standard\" plain number formatting\n     *\n     *     \"scientific\" return the order-of-magnitude for formatted number.\n     *\n     *     \"engineering\" return the exponent of ten when divisible by three\n     *\n     *     \"compact\" string representing exponent, defaults is using the \"short\" form\n     */\n    notation?: string;\n\n    /**\n     * used only when notation is \"compact\"\n     */\n    compactDisplay?: string;\n}\n\ninterface BigInt {\n    /**\n     * Returns a string representation of an object.\n     * @param radix Specifies a radix for converting numeric values to strings.\n     */\n    toString(radix?: number): string;\n\n    /** Returns a string representation appropriate to the host environment's current locale. */\n    toLocaleString(locales?: Intl.LocalesArgument, options?: BigIntToLocaleStringOptions): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): bigint;\n\n    readonly [Symbol.toStringTag]: \"BigInt\";\n}\n\ninterface BigIntConstructor {\n    (value: bigint | boolean | number | string): bigint;\n    readonly prototype: BigInt;\n\n    /**\n     * Interprets the low bits of a BigInt as a 2's-complement signed integer.\n     * All higher bits are discarded.\n     * @param bits The number of low bits to use\n     * @param int The BigInt whose bits to extract\n     */\n    asIntN(bits: number, int: bigint): bigint;\n    /**\n     * Interprets the low bits of a BigInt as an unsigned integer.\n     * All higher bits are discarded.\n     * @param bits The number of low bits to use\n     * @param int The BigInt whose bits to extract\n     */\n    asUintN(bits: number, int: bigint): bigint;\n}\n\ndeclare var BigInt: BigIntConstructor;\n\n/**\n * A typed array of 64-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated, an exception is raised.\n */\ninterface BigInt64Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /** The size in bytes of each element in the array. */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /** The ArrayBuffer instance referenced by the array. */\n    readonly buffer: TArrayBuffer;\n\n    /** The length in bytes of the array. */\n    readonly byteLength: number;\n\n    /** The offset in bytes of the array. */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /** Yields index, value pairs for every entry in the array. */\n    entries(): ArrayIterator<[number, bigint]>;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns false,\n     * or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => boolean, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: bigint, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => any, thisArg?: any): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => boolean, thisArg?: any): bigint | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => void, thisArg?: any): void;\n\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: bigint, fromIndex?: number): boolean;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: bigint, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /** Yields each index in the array. */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: bigint, fromIndex?: number): number;\n\n    /** The length of the array. */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => bigint, thisArg?: any): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array<TArrayBuffer>) => bigint): bigint;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array<TArrayBuffer>) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array<TArrayBuffer>) => bigint): bigint;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array<TArrayBuffer>) => U, initialValue: U): U;\n\n    /** Reverses the elements in the array. */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<bigint>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array.\n     */\n    slice(start?: number, end?: number): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls the\n     * predicate function for each element in the array until the predicate returns true, or until\n     * the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: bigint, index: number, array: BigInt64Array<TArrayBuffer>) => boolean, thisArg?: any): boolean;\n\n    /**\n     * Sorts the array.\n     * @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.\n     */\n    sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;\n\n    /**\n     * Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): BigInt64Array<TArrayBuffer>;\n\n    /** Converts the array to a string by using the current locale. */\n    toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n\n    /** Returns a string representation of the array. */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): BigInt64Array<TArrayBuffer>;\n\n    /** Yields each value in the array. */\n    values(): ArrayIterator<bigint>;\n\n    [Symbol.iterator](): ArrayIterator<bigint>;\n\n    readonly [Symbol.toStringTag]: \"BigInt64Array\";\n\n    [index: number]: bigint;\n}\ninterface BigInt64ArrayConstructor {\n    readonly prototype: BigInt64Array<ArrayBufferLike>;\n    new (length?: number): BigInt64Array<ArrayBuffer>;\n    new (array: ArrayLike<bigint> | Iterable<bigint>): BigInt64Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): BigInt64Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): BigInt64Array<ArrayBuffer>;\n    new (array: ArrayLike<bigint> | ArrayBuffer): BigInt64Array<ArrayBuffer>;\n\n    /** The size in bytes of each element in the array. */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: bigint[]): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<bigint>): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<bigint>): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => bigint, thisArg?: any): BigInt64Array<ArrayBuffer>;\n}\ndeclare var BigInt64Array: BigInt64ArrayConstructor;\n\n/**\n * A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated, an exception is raised.\n */\ninterface BigUint64Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /** The size in bytes of each element in the array. */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /** The ArrayBuffer instance referenced by the array. */\n    readonly buffer: TArrayBuffer;\n\n    /** The length in bytes of the array. */\n    readonly byteLength: number;\n\n    /** The offset in bytes of the array. */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /** Yields index, value pairs for every entry in the array. */\n    entries(): ArrayIterator<[number, bigint]>;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns false,\n     * or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => boolean, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: bigint, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => any, thisArg?: any): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => boolean, thisArg?: any): bigint | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => void, thisArg?: any): void;\n\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: bigint, fromIndex?: number): boolean;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: bigint, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /** Yields each index in the array. */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: bigint, fromIndex?: number): number;\n\n    /** The length of the array. */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => bigint, thisArg?: any): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array<TArrayBuffer>) => bigint): bigint;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array<TArrayBuffer>) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array<TArrayBuffer>) => bigint): bigint;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array<TArrayBuffer>) => U, initialValue: U): U;\n\n    /** Reverses the elements in the array. */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<bigint>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array.\n     */\n    slice(start?: number, end?: number): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls the\n     * predicate function for each element in the array until the predicate returns true, or until\n     * the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: bigint, index: number, array: BigUint64Array<TArrayBuffer>) => boolean, thisArg?: any): boolean;\n\n    /**\n     * Sorts the array.\n     * @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.\n     */\n    sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;\n\n    /**\n     * Gets a new BigUint64Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): BigUint64Array<TArrayBuffer>;\n\n    /** Converts the array to a string by using the current locale. */\n    toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n\n    /** Returns a string representation of the array. */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): BigUint64Array<TArrayBuffer>;\n\n    /** Yields each value in the array. */\n    values(): ArrayIterator<bigint>;\n\n    [Symbol.iterator](): ArrayIterator<bigint>;\n\n    readonly [Symbol.toStringTag]: \"BigUint64Array\";\n\n    [index: number]: bigint;\n}\ninterface BigUint64ArrayConstructor {\n    readonly prototype: BigUint64Array<ArrayBufferLike>;\n    new (length?: number): BigUint64Array<ArrayBuffer>;\n    new (array: ArrayLike<bigint> | Iterable<bigint>): BigUint64Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): BigUint64Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): BigUint64Array<ArrayBuffer>;\n    new (array: ArrayLike<bigint> | ArrayBuffer): BigUint64Array<ArrayBuffer>;\n\n    /** The size in bytes of each element in the array. */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: bigint[]): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<bigint>): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<bigint>): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => bigint, thisArg?: any): BigUint64Array<ArrayBuffer>;\n}\ndeclare var BigUint64Array: BigUint64ArrayConstructor;\n\ninterface DataView<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Gets the BigInt64 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getBigInt64(byteOffset: number, littleEndian?: boolean): bigint;\n\n    /**\n     * Gets the BigUint64 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getBigUint64(byteOffset: number, littleEndian?: boolean): bigint;\n\n    /**\n     * Stores a BigInt64 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setBigInt64(byteOffset: number, value: bigint, littleEndian?: boolean): void;\n\n    /**\n     * Stores a BigUint64 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setBigUint64(byteOffset: number, value: bigint, littleEndian?: boolean): void;\n}\n\ndeclare namespace Intl {\n    interface NumberFormat {\n        format(value: number | bigint): string;\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2020.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2019\" />\n/// <reference lib=\"es2020.bigint\" />\n/// <reference lib=\"es2020.date\" />\n/// <reference lib=\"es2020.number\" />\n/// <reference lib=\"es2020.promise\" />\n/// <reference lib=\"es2020.sharedmemory\" />\n/// <reference lib=\"es2020.string\" />\n/// <reference lib=\"es2020.symbol.wellknown\" />\n/// <reference lib=\"es2020.intl\" />\n",
    "node_modules/typescript/lib/lib.es2020.date.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020.intl\" />\n\ninterface Date {\n    /**\n     * Converts a date and time to a string by using the current or specified locale.\n     * @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;\n\n    /**\n     * Converts a date to a string by using the current or specified locale.\n     * @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleDateString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;\n\n    /**\n     * Converts a time to a string by using the current or specified locale.\n     * @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleTimeString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;\n}\n",
    "node_modules/typescript/lib/lib.es2020.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2020.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2018.intl\" />\ndeclare namespace Intl {\n    /**\n     * A string that is a valid [Unicode BCP 47 Locale Identifier](https://unicode.org/reports/tr35/#Unicode_locale_identifier).\n     *\n     * For example: \"fa\", \"es-MX\", \"zh-Hant-TW\".\n     *\n     * See [MDN - Intl - locales argument](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).\n     */\n    type UnicodeBCP47LocaleIdentifier = string;\n\n    /**\n     * Unit to use in the relative time internationalized message.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format#Parameters).\n     */\n    type RelativeTimeFormatUnit =\n        | \"year\"\n        | \"years\"\n        | \"quarter\"\n        | \"quarters\"\n        | \"month\"\n        | \"months\"\n        | \"week\"\n        | \"weeks\"\n        | \"day\"\n        | \"days\"\n        | \"hour\"\n        | \"hours\"\n        | \"minute\"\n        | \"minutes\"\n        | \"second\"\n        | \"seconds\";\n\n    /**\n     * Value of the `unit` property in objects returned by\n     * `Intl.RelativeTimeFormat.prototype.formatToParts()`. `formatToParts` and\n     * `format` methods accept either singular or plural unit names as input,\n     * but `formatToParts` only outputs singular (e.g. \"day\") not plural (e.g.\n     * \"days\").\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).\n     */\n    type RelativeTimeFormatUnitSingular =\n        | \"year\"\n        | \"quarter\"\n        | \"month\"\n        | \"week\"\n        | \"day\"\n        | \"hour\"\n        | \"minute\"\n        | \"second\";\n\n    /**\n     * The locale matching algorithm to use.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation).\n     */\n    type RelativeTimeFormatLocaleMatcher = \"lookup\" | \"best fit\";\n\n    /**\n     * The format of output message.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).\n     */\n    type RelativeTimeFormatNumeric = \"always\" | \"auto\";\n\n    /**\n     * The length of the internationalized message.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).\n     */\n    type RelativeTimeFormatStyle = \"long\" | \"short\" | \"narrow\";\n\n    /**\n     * The locale or locales to use\n     *\n     * See [MDN - Intl - locales argument](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).\n     */\n    type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | readonly (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;\n\n    /**\n     * An object with some or all of properties of `options` parameter\n     * of `Intl.RelativeTimeFormat` constructor.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).\n     */\n    interface RelativeTimeFormatOptions {\n        /** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */\n        localeMatcher?: RelativeTimeFormatLocaleMatcher;\n        /** The format of output message. */\n        numeric?: RelativeTimeFormatNumeric;\n        /** The length of the internationalized message. */\n        style?: RelativeTimeFormatStyle;\n    }\n\n    /**\n     * An object with properties reflecting the locale\n     * and formatting options computed during initialization\n     * of the `Intl.RelativeTimeFormat` object\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions#Description).\n     */\n    interface ResolvedRelativeTimeFormatOptions {\n        locale: UnicodeBCP47LocaleIdentifier;\n        style: RelativeTimeFormatStyle;\n        numeric: RelativeTimeFormatNumeric;\n        numberingSystem: string;\n    }\n\n    /**\n     * An object representing the relative time format in parts\n     * that can be used for custom locale-aware formatting.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).\n     */\n    type RelativeTimeFormatPart =\n        | {\n            type: \"literal\";\n            value: string;\n        }\n        | {\n            type: Exclude<NumberFormatPartTypes, \"literal\">;\n            value: string;\n            unit: RelativeTimeFormatUnitSingular;\n        };\n\n    interface RelativeTimeFormat {\n        /**\n         * Formats a value and a unit according to the locale\n         * and formatting options of the given\n         * [`Intl.RelativeTimeFormat`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat)\n         * object.\n         *\n         * While this method automatically provides the correct plural forms,\n         * the grammatical form is otherwise as neutral as possible.\n         *\n         * It is the caller's responsibility to handle cut-off logic\n         * such as deciding between displaying \"in 7 days\" or \"in 1 week\".\n         * This API does not support relative dates involving compound units.\n         * e.g \"in 5 days and 4 hours\".\n         *\n         * @param value -  Numeric value to use in the internationalized relative time message\n         *\n         * @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message.\n         *\n         * @throws `RangeError` if `unit` was given something other than `unit` possible values\n         *\n         * @returns {string} Internationalized relative time message as string\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format).\n         */\n        format(value: number, unit: RelativeTimeFormatUnit): string;\n\n        /**\n         *  Returns an array of objects representing the relative time format in parts that can be used for custom locale-aware formatting.\n         *\n         *  @param value - Numeric value to use in the internationalized relative time message\n         *\n         *  @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message.\n         *\n         *  @throws `RangeError` if `unit` was given something other than `unit` possible values\n         *\n         *  [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts).\n         */\n        formatToParts(value: number, unit: RelativeTimeFormatUnit): RelativeTimeFormatPart[];\n\n        /**\n         * Provides access to the locale and options computed during initialization of this `Intl.RelativeTimeFormat` object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions).\n         */\n        resolvedOptions(): ResolvedRelativeTimeFormatOptions;\n    }\n\n    /**\n     * The [`Intl.RelativeTimeFormat`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat)\n     * object is a constructor for objects that enable language-sensitive relative time formatting.\n     *\n     * [Compatibility](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat#Browser_compatibility).\n     */\n    const RelativeTimeFormat: {\n        /**\n         * Creates [Intl.RelativeTimeFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) objects\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the locales argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)\n         *  with some or all of options of `RelativeTimeFormatOptions`.\n         *\n         * @returns [Intl.RelativeTimeFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat).\n         */\n        new (\n            locales?: LocalesArgument,\n            options?: RelativeTimeFormatOptions,\n        ): RelativeTimeFormat;\n\n        /**\n         * Returns an array containing those of the provided locales\n         * that are supported in date and time formatting\n         * without having to fall back to the runtime's default locale.\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the locales argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)\n         *  with some or all of options of the formatting.\n         *\n         * @returns An array containing those of the provided locales\n         *  that are supported in date and time formatting\n         *  without having to fall back to the runtime's default locale.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/supportedLocalesOf).\n         */\n        supportedLocalesOf(\n            locales?: LocalesArgument,\n            options?: RelativeTimeFormatOptions,\n        ): UnicodeBCP47LocaleIdentifier[];\n    };\n\n    interface NumberFormatOptionsStyleRegistry {\n        unit: never;\n    }\n\n    interface NumberFormatOptionsCurrencyDisplayRegistry {\n        narrowSymbol: never;\n    }\n\n    interface NumberFormatOptionsSignDisplayRegistry {\n        auto: never;\n        never: never;\n        always: never;\n        exceptZero: never;\n    }\n\n    type NumberFormatOptionsSignDisplay = keyof NumberFormatOptionsSignDisplayRegistry;\n\n    interface NumberFormatOptions {\n        numberingSystem?: string | undefined;\n        compactDisplay?: \"short\" | \"long\" | undefined;\n        notation?: \"standard\" | \"scientific\" | \"engineering\" | \"compact\" | undefined;\n        signDisplay?: NumberFormatOptionsSignDisplay | undefined;\n        unit?: string | undefined;\n        unitDisplay?: \"short\" | \"long\" | \"narrow\" | undefined;\n        currencySign?: \"standard\" | \"accounting\" | undefined;\n    }\n\n    interface ResolvedNumberFormatOptions {\n        compactDisplay?: \"short\" | \"long\";\n        notation: \"standard\" | \"scientific\" | \"engineering\" | \"compact\";\n        signDisplay: NumberFormatOptionsSignDisplay;\n        unit?: string;\n        unitDisplay?: \"short\" | \"long\" | \"narrow\";\n        currencySign?: \"standard\" | \"accounting\";\n    }\n\n    interface NumberFormatPartTypeRegistry {\n        compact: never;\n        exponentInteger: never;\n        exponentMinusSign: never;\n        exponentSeparator: never;\n        unit: never;\n        unknown: never;\n    }\n\n    interface DateTimeFormatOptions {\n        calendar?: string | undefined;\n        dayPeriod?: \"narrow\" | \"short\" | \"long\" | undefined;\n        numberingSystem?: string | undefined;\n\n        dateStyle?: \"full\" | \"long\" | \"medium\" | \"short\" | undefined;\n        timeStyle?: \"full\" | \"long\" | \"medium\" | \"short\" | undefined;\n        hourCycle?: \"h11\" | \"h12\" | \"h23\" | \"h24\" | undefined;\n    }\n\n    type LocaleHourCycleKey = \"h12\" | \"h23\" | \"h11\" | \"h24\";\n    type LocaleCollationCaseFirst = \"upper\" | \"lower\" | \"false\";\n\n    interface LocaleOptions {\n        /** A string containing the language, and the script and region if available. */\n        baseName?: string;\n        /** The part of the Locale that indicates the locale's calendar era. */\n        calendar?: string;\n        /** Flag that defines whether case is taken into account for the locale's collation rules. */\n        caseFirst?: LocaleCollationCaseFirst;\n        /** The collation type used for sorting */\n        collation?: string;\n        /** The time keeping format convention used by the locale. */\n        hourCycle?: LocaleHourCycleKey;\n        /** The primary language subtag associated with the locale. */\n        language?: string;\n        /** The numeral system used by the locale. */\n        numberingSystem?: string;\n        /** Flag that defines whether the locale has special collation handling for numeric characters. */\n        numeric?: boolean;\n        /** The region of the world (usually a country) associated with the locale. Possible values are region codes as defined by ISO 3166-1. */\n        region?: string;\n        /** The script used for writing the particular language used in the locale. Possible values are script codes as defined by ISO 15924. */\n        script?: string;\n    }\n\n    interface Locale extends LocaleOptions {\n        /** A string containing the language, and the script and region if available. */\n        baseName: string;\n        /** The primary language subtag associated with the locale. */\n        language: string;\n        /** Gets the most likely values for the language, script, and region of the locale based on existing values. */\n        maximize(): Locale;\n        /** Attempts to remove information about the locale that would be added by calling `Locale.maximize()`. */\n        minimize(): Locale;\n        /** Returns the locale's full locale identifier string. */\n        toString(): UnicodeBCP47LocaleIdentifier;\n    }\n\n    /**\n     * Constructor creates [Intl.Locale](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale)\n     * objects\n     *\n     * @param tag - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646).\n     *  For the general form and interpretation of the locales argument,\n     *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n     *\n     * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/Locale#Parameters) with some or all of options of the locale.\n     *\n     * @returns [Intl.Locale](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale) object.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale).\n     */\n    const Locale: {\n        new (tag: UnicodeBCP47LocaleIdentifier | Locale, options?: LocaleOptions): Locale;\n    };\n\n    type DisplayNamesFallback =\n        | \"code\"\n        | \"none\";\n\n    type DisplayNamesType =\n        | \"language\"\n        | \"region\"\n        | \"script\"\n        | \"calendar\"\n        | \"dateTimeField\"\n        | \"currency\";\n\n    type DisplayNamesLanguageDisplay =\n        | \"dialect\"\n        | \"standard\";\n\n    interface DisplayNamesOptions {\n        localeMatcher?: RelativeTimeFormatLocaleMatcher;\n        style?: RelativeTimeFormatStyle;\n        type: DisplayNamesType;\n        languageDisplay?: DisplayNamesLanguageDisplay;\n        fallback?: DisplayNamesFallback;\n    }\n\n    interface ResolvedDisplayNamesOptions {\n        locale: UnicodeBCP47LocaleIdentifier;\n        style: RelativeTimeFormatStyle;\n        type: DisplayNamesType;\n        fallback: DisplayNamesFallback;\n        languageDisplay?: DisplayNamesLanguageDisplay;\n    }\n\n    interface DisplayNames {\n        /**\n         * Receives a code and returns a string based on the locale and options provided when instantiating\n         * [`Intl.DisplayNames()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)\n         *\n         * @param code The `code` to provide depends on the `type` passed to display name during creation:\n         *  - If the type is `\"region\"`, code should be either an [ISO-3166 two letters region code](https://www.iso.org/iso-3166-country-codes.html),\n         *    or a [three digits UN M49 Geographic Regions](https://unstats.un.org/unsd/methodology/m49/).\n         *  - If the type is `\"script\"`, code should be an [ISO-15924 four letters script code](https://unicode.org/iso15924/iso15924-codes.html).\n         *  - If the type is `\"language\"`, code should be a `languageCode` [\"-\" `scriptCode`] [\"-\" `regionCode` ] *(\"-\" `variant` )\n         *    subsequence of the unicode_language_id grammar in [UTS 35's Unicode Language and Locale Identifiers grammar](https://unicode.org/reports/tr35/#Unicode_language_identifier).\n         *    `languageCode` is either a two letters ISO 639-1 language code or a three letters ISO 639-2 language code.\n         *  - If the type is `\"currency\"`, code should be a [3-letter ISO 4217 currency code](https://www.iso.org/iso-4217-currency-codes.html).\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/of).\n         */\n        of(code: string): string | undefined;\n        /**\n         * Returns a new object with properties reflecting the locale and style formatting options computed during the construction of the current\n         * [`Intl/DisplayNames`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames) object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/resolvedOptions).\n         */\n        resolvedOptions(): ResolvedDisplayNamesOptions;\n    }\n\n    /**\n     * The [`Intl.DisplayNames()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)\n     * object enables the consistent translation of language, region and script display names.\n     *\n     * [Compatibility](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames#browser_compatibility).\n     */\n    const DisplayNames: {\n        prototype: DisplayNames;\n\n        /**\n         * @param locales A string with a BCP 47 language tag, or an array of such strings.\n         *   For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)\n         *   page.\n         *\n         * @param options An object for setting up a display name.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames).\n         */\n        new (locales: LocalesArgument, options: DisplayNamesOptions): DisplayNames;\n\n        /**\n         * Returns an array containing those of the provided locales that are supported in display names without having to fall back to the runtime's default locale.\n         *\n         * @param locales A string with a BCP 47 language tag, or an array of such strings.\n         *   For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)\n         *   page.\n         *\n         * @param options An object with a locale matcher.\n         *\n         * @returns An array of strings representing a subset of the given locale tags that are supported in display names without having to fall back to the runtime's default locale.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/supportedLocalesOf).\n         */\n        supportedLocalesOf(locales?: LocalesArgument, options?: { localeMatcher?: RelativeTimeFormatLocaleMatcher; }): UnicodeBCP47LocaleIdentifier[];\n    };\n\n    interface CollatorConstructor {\n        new (locales?: LocalesArgument, options?: CollatorOptions): Collator;\n        (locales?: LocalesArgument, options?: CollatorOptions): Collator;\n        supportedLocalesOf(locales: LocalesArgument, options?: CollatorOptions): string[];\n    }\n\n    interface DateTimeFormatConstructor {\n        new (locales?: LocalesArgument, options?: DateTimeFormatOptions): DateTimeFormat;\n        (locales?: LocalesArgument, options?: DateTimeFormatOptions): DateTimeFormat;\n        supportedLocalesOf(locales: LocalesArgument, options?: DateTimeFormatOptions): string[];\n    }\n\n    interface NumberFormatConstructor {\n        new (locales?: LocalesArgument, options?: NumberFormatOptions): NumberFormat;\n        (locales?: LocalesArgument, options?: NumberFormatOptions): NumberFormat;\n        supportedLocalesOf(locales: LocalesArgument, options?: NumberFormatOptions): string[];\n    }\n\n    interface PluralRulesConstructor {\n        new (locales?: LocalesArgument, options?: PluralRulesOptions): PluralRules;\n        (locales?: LocalesArgument, options?: PluralRulesOptions): PluralRules;\n\n        supportedLocalesOf(locales: LocalesArgument, options?: { localeMatcher?: \"lookup\" | \"best fit\"; }): string[];\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2020.number.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020.intl\" />\n\ninterface Number {\n    /**\n     * Converts a number to a string by using the current or specified locale.\n     * @param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleString(locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;\n}\n",
    "node_modules/typescript/lib/lib.es2020.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface PromiseFulfilledResult<T> {\n    status: \"fulfilled\";\n    value: T;\n}\n\ninterface PromiseRejectedResult {\n    status: \"rejected\";\n    reason: any;\n}\n\ntype PromiseSettledResult<T> = PromiseFulfilledResult<T> | PromiseRejectedResult;\n\ninterface PromiseConstructor {\n    /**\n     * Creates a Promise that is resolved with an array of results when all\n     * of the provided Promises resolve or reject.\n     * @param values An array of Promises.\n     * @returns A new Promise.\n     */\n    allSettled<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: PromiseSettledResult<Awaited<T[P]>>; }>;\n\n    /**\n     * Creates a Promise that is resolved with an array of results when all\n     * of the provided Promises resolve or reject.\n     * @param values An array of Promises.\n     * @returns A new Promise.\n     */\n    allSettled<T>(values: Iterable<T | PromiseLike<T>>): Promise<PromiseSettledResult<Awaited<T>>[]>;\n}\n",
    "node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020.bigint\" />\n\ninterface Atomics {\n    /**\n     * Adds a value to the value at the given position in the array, returning the original value.\n     * Until this atomic operation completes, any other read or write operation against the array\n     * will block.\n     */\n    add(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * Stores the bitwise AND of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or\n     * write operation against the array will block.\n     */\n    and(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * Replaces the value at the given position in the array if the original value equals the given\n     * expected value, returning the original value. Until this atomic operation completes, any\n     * other read or write operation against the array will block.\n     */\n    compareExchange(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, expectedValue: bigint, replacementValue: bigint): bigint;\n\n    /**\n     * Replaces the value at the given position in the array, returning the original value. Until\n     * this atomic operation completes, any other read or write operation against the array will\n     * block.\n     */\n    exchange(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * Returns the value at the given position in the array. Until this atomic operation completes,\n     * any other read or write operation against the array will block.\n     */\n    load(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number): bigint;\n\n    /**\n     * Stores the bitwise OR of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or write\n     * operation against the array will block.\n     */\n    or(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * Stores a value at the given position in the array, returning the new value. Until this\n     * atomic operation completes, any other read or write operation against the array will block.\n     */\n    store(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * Subtracts a value from the value at the given position in the array, returning the original\n     * value. Until this atomic operation completes, any other read or write operation against the\n     * array will block.\n     */\n    sub(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n\n    /**\n     * If the value at the given position in the array is equal to the provided value, the current\n     * agent is put to sleep causing execution to suspend until the timeout expires (returning\n     * `\"timed-out\"`) or until the agent is awoken (returning `\"ok\"`); otherwise, returns\n     * `\"not-equal\"`.\n     */\n    wait(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): \"ok\" | \"not-equal\" | \"timed-out\";\n\n    /**\n     * Wakes up sleeping agents that are waiting on the given index of the array, returning the\n     * number of agents that were awoken.\n     * @param typedArray A shared BigInt64Array.\n     * @param index The position in the typedArray to wake up on.\n     * @param count The number of sleeping agents to notify. Defaults to +Infinity.\n     */\n    notify(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number;\n\n    /**\n     * Stores the bitwise XOR of a value with the value at the given position in the array,\n     * returning the original value. Until this atomic operation completes, any other read or write\n     * operation against the array will block.\n     */\n    xor(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;\n}\n",
    "node_modules/typescript/lib/lib.es2020.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.iterable\" />\n/// <reference lib=\"es2020.intl\" />\n/// <reference lib=\"es2020.symbol.wellknown\" />\n\ninterface String {\n    /**\n     * Matches a string with a regular expression, and returns an iterable of matches\n     * containing the results of that search.\n     * @param regexp A variable name or string literal containing the regular expression pattern and flags.\n     */\n    matchAll(regexp: RegExp): RegExpStringIterator<RegExpExecArray>;\n\n    /** Converts all alphabetic characters to lowercase, taking into account the host environment's current locale. */\n    toLocaleLowerCase(locales?: Intl.LocalesArgument): string;\n\n    /** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale. */\n    toLocaleUpperCase(locales?: Intl.LocalesArgument): string;\n\n    /**\n     * Determines whether two strings are equivalent in the current or specified locale.\n     * @param that String to compare to target string\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n     * @param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n     */\n    localeCompare(that: string, locales?: Intl.LocalesArgument, options?: Intl.CollatorOptions): number;\n}\n",
    "node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.iterable\" />\n/// <reference lib=\"es2015.symbol\" />\n\ninterface SymbolConstructor {\n    /**\n     * A regular expression method that matches the regular expression against a string. Called\n     * by the String.prototype.matchAll method.\n     */\n    readonly matchAll: unique symbol;\n}\n\ninterface RegExpStringIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): RegExpStringIterator<T>;\n}\n\ninterface RegExp {\n    /**\n     * Matches a string with this regular expression, and returns an iterable of matches\n     * containing the results of that search.\n     * @param string A string to search within.\n     */\n    [Symbol.matchAll](str: string): RegExpStringIterator<RegExpMatchArray>;\n}\n",
    "node_modules/typescript/lib/lib.es2021.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020\" />\n/// <reference lib=\"es2021.promise\" />\n/// <reference lib=\"es2021.string\" />\n/// <reference lib=\"es2021.weakref\" />\n/// <reference lib=\"es2021.intl\" />\n",
    "node_modules/typescript/lib/lib.es2021.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2021\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2021.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    interface DateTimeFormatPartTypesRegistry {\n        fractionalSecond: any;\n    }\n\n    interface DateTimeFormatOptions {\n        formatMatcher?: \"basic\" | \"best fit\" | \"best fit\" | undefined;\n        dateStyle?: \"full\" | \"long\" | \"medium\" | \"short\" | undefined;\n        timeStyle?: \"full\" | \"long\" | \"medium\" | \"short\" | undefined;\n        dayPeriod?: \"narrow\" | \"short\" | \"long\" | undefined;\n        fractionalSecondDigits?: 1 | 2 | 3 | undefined;\n    }\n\n    interface DateTimeRangeFormatPart extends DateTimeFormatPart {\n        source: \"startRange\" | \"endRange\" | \"shared\";\n    }\n\n    interface DateTimeFormat {\n        formatRange(startDate: Date | number | bigint, endDate: Date | number | bigint): string;\n        formatRangeToParts(startDate: Date | number | bigint, endDate: Date | number | bigint): DateTimeRangeFormatPart[];\n    }\n\n    interface ResolvedDateTimeFormatOptions {\n        formatMatcher?: \"basic\" | \"best fit\" | \"best fit\";\n        dateStyle?: \"full\" | \"long\" | \"medium\" | \"short\";\n        timeStyle?: \"full\" | \"long\" | \"medium\" | \"short\";\n        hourCycle?: \"h11\" | \"h12\" | \"h23\" | \"h24\";\n        dayPeriod?: \"narrow\" | \"short\" | \"long\";\n        fractionalSecondDigits?: 1 | 2 | 3;\n    }\n\n    /**\n     * The locale matching algorithm to use.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).\n     */\n    type ListFormatLocaleMatcher = \"lookup\" | \"best fit\";\n\n    /**\n     * The format of output message.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).\n     */\n    type ListFormatType = \"conjunction\" | \"disjunction\" | \"unit\";\n\n    /**\n     * The length of the formatted message.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).\n     */\n    type ListFormatStyle = \"long\" | \"short\" | \"narrow\";\n\n    /**\n     * An object with some or all properties of the `Intl.ListFormat` constructor `options` parameter.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).\n     */\n    interface ListFormatOptions {\n        /** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */\n        localeMatcher?: ListFormatLocaleMatcher | undefined;\n        /** The format of output message. */\n        type?: ListFormatType | undefined;\n        /** The length of the internationalized message. */\n        style?: ListFormatStyle | undefined;\n    }\n\n    interface ResolvedListFormatOptions {\n        locale: string;\n        style: ListFormatStyle;\n        type: ListFormatType;\n    }\n\n    interface ListFormat {\n        /**\n         * Returns a string with a language-specific representation of the list.\n         *\n         * @param list - An iterable object, such as an [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array).\n         *\n         * @throws `TypeError` if `list` includes something other than the possible values.\n         *\n         * @returns {string} A language-specific formatted string representing the elements of the list.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/format).\n         */\n        format(list: Iterable<string>): string;\n\n        /**\n         * Returns an Array of objects representing the different components that can be used to format a list of values in a locale-aware fashion.\n         *\n         * @param list - An iterable object, such as an [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array), to be formatted according to a locale.\n         *\n         * @throws `TypeError` if `list` includes something other than the possible values.\n         *\n         * @returns {{ type: \"element\" | \"literal\", value: string; }[]} An Array of components which contains the formatted parts from the list.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/formatToParts).\n         */\n        formatToParts(list: Iterable<string>): { type: \"element\" | \"literal\"; value: string; }[];\n\n        /**\n         * Returns a new object with properties reflecting the locale and style\n         * formatting options computed during the construction of the current\n         * `Intl.ListFormat` object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/resolvedOptions).\n         */\n        resolvedOptions(): ResolvedListFormatOptions;\n    }\n\n    const ListFormat: {\n        prototype: ListFormat;\n\n        /**\n         * Creates [Intl.ListFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) objects that\n         * enable language-sensitive list formatting.\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the `locales` argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters)\n         *  with some or all options of `ListFormatOptions`.\n         *\n         * @returns [Intl.ListFormatOptions](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat).\n         */\n        new (locales?: LocalesArgument, options?: ListFormatOptions): ListFormat;\n\n        /**\n         * Returns an array containing those of the provided locales that are\n         * supported in list formatting without having to fall back to the runtime's default locale.\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the `locales` argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf#parameters).\n         *  with some or all possible options.\n         *\n         * @returns An array of strings representing a subset of the given locale tags that are supported in list\n         *  formatting without having to fall back to the runtime's default locale.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf).\n         */\n        supportedLocalesOf(locales: LocalesArgument, options?: Pick<ListFormatOptions, \"localeMatcher\">): UnicodeBCP47LocaleIdentifier[];\n    };\n}\n",
    "node_modules/typescript/lib/lib.es2021.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface AggregateError extends Error {\n    errors: any[];\n}\n\ninterface AggregateErrorConstructor {\n    new (errors: Iterable<any>, message?: string): AggregateError;\n    (errors: Iterable<any>, message?: string): AggregateError;\n    readonly prototype: AggregateError;\n}\n\ndeclare var AggregateError: AggregateErrorConstructor;\n\n/**\n * Represents the completion of an asynchronous operation\n */\ninterface PromiseConstructor {\n    /**\n     * The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm.\n     * @param values An array or iterable of Promises.\n     * @returns A new Promise.\n     */\n    any<T extends readonly unknown[] | []>(values: T): Promise<Awaited<T[number]>>;\n\n    /**\n     * The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm.\n     * @param values An array or iterable of Promises.\n     * @returns A new Promise.\n     */\n    any<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>;\n}\n",
    "node_modules/typescript/lib/lib.es2021.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface String {\n    /**\n     * Replace all instances of a substring in a string, using a regular expression or search string.\n     * @param searchValue A string to search for.\n     * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n     */\n    replaceAll(searchValue: string | RegExp, replaceValue: string): string;\n\n    /**\n     * Replace all instances of a substring in a string, using a regular expression or search string.\n     * @param searchValue A string to search for.\n     * @param replacer A function that returns the replacement text.\n     */\n    replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;\n}\n",
    "node_modules/typescript/lib/lib.es2021.weakref.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol.wellknown\" />\n\ninterface WeakRef<T extends WeakKey> {\n    readonly [Symbol.toStringTag]: \"WeakRef\";\n\n    /**\n     * Returns the WeakRef instance's target value, or undefined if the target value has been\n     * reclaimed.\n     * In es2023 the value can be either a symbol or an object, in previous versions only object is permissible.\n     */\n    deref(): T | undefined;\n}\n\ninterface WeakRefConstructor {\n    readonly prototype: WeakRef<any>;\n\n    /**\n     * Creates a WeakRef instance for the given target value.\n     * In es2023 the value can be either a symbol or an object, in previous versions only object is permissible.\n     * @param target The target value for the WeakRef instance.\n     */\n    new <T extends WeakKey>(target: T): WeakRef<T>;\n}\n\ndeclare var WeakRef: WeakRefConstructor;\n\ninterface FinalizationRegistry<T> {\n    readonly [Symbol.toStringTag]: \"FinalizationRegistry\";\n\n    /**\n     * Registers a value with the registry.\n     * In es2023 the value can be either a symbol or an object, in previous versions only object is permissible.\n     * @param target The target value to register.\n     * @param heldValue The value to pass to the finalizer for this value. This cannot be the\n     * target value.\n     * @param unregisterToken The token to pass to the unregister method to unregister the target\n     * value. If not provided, the target cannot be unregistered.\n     */\n    register(target: WeakKey, heldValue: T, unregisterToken?: WeakKey): void;\n\n    /**\n     * Unregisters a value from the registry.\n     * In es2023 the value can be either a symbol or an object, in previous versions only object is permissible.\n     * @param unregisterToken The token that was used as the unregisterToken argument when calling\n     * register to register the target value.\n     */\n    unregister(unregisterToken: WeakKey): boolean;\n}\n\ninterface FinalizationRegistryConstructor {\n    readonly prototype: FinalizationRegistry<any>;\n\n    /**\n     * Creates a finalization registry with an associated cleanup callback\n     * @param cleanupCallback The callback to call after a value in the registry has been reclaimed.\n     */\n    new <T>(cleanupCallback: (heldValue: T) => void): FinalizationRegistry<T>;\n}\n\ndeclare var FinalizationRegistry: FinalizationRegistryConstructor;\n",
    "node_modules/typescript/lib/lib.es2022.array.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Array<T> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): T | undefined;\n}\n\ninterface ReadonlyArray<T> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): T | undefined;\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n}\n\ninterface BigInt64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): bigint | undefined;\n}\n\ninterface BigUint64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): bigint | undefined;\n}\n",
    "node_modules/typescript/lib/lib.es2022.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2021\" />\n/// <reference lib=\"es2022.array\" />\n/// <reference lib=\"es2022.error\" />\n/// <reference lib=\"es2022.intl\" />\n/// <reference lib=\"es2022.object\" />\n/// <reference lib=\"es2022.regexp\" />\n/// <reference lib=\"es2022.string\" />\n",
    "node_modules/typescript/lib/lib.es2022.error.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2021.promise\" />\n\ninterface ErrorOptions {\n    cause?: unknown;\n}\n\ninterface Error {\n    cause?: unknown;\n}\n\ninterface ErrorConstructor {\n    new (message?: string, options?: ErrorOptions): Error;\n    (message?: string, options?: ErrorOptions): Error;\n}\n\ninterface EvalErrorConstructor {\n    new (message?: string, options?: ErrorOptions): EvalError;\n    (message?: string, options?: ErrorOptions): EvalError;\n}\n\ninterface RangeErrorConstructor {\n    new (message?: string, options?: ErrorOptions): RangeError;\n    (message?: string, options?: ErrorOptions): RangeError;\n}\n\ninterface ReferenceErrorConstructor {\n    new (message?: string, options?: ErrorOptions): ReferenceError;\n    (message?: string, options?: ErrorOptions): ReferenceError;\n}\n\ninterface SyntaxErrorConstructor {\n    new (message?: string, options?: ErrorOptions): SyntaxError;\n    (message?: string, options?: ErrorOptions): SyntaxError;\n}\n\ninterface TypeErrorConstructor {\n    new (message?: string, options?: ErrorOptions): TypeError;\n    (message?: string, options?: ErrorOptions): TypeError;\n}\n\ninterface URIErrorConstructor {\n    new (message?: string, options?: ErrorOptions): URIError;\n    (message?: string, options?: ErrorOptions): URIError;\n}\n\ninterface AggregateErrorConstructor {\n    new (\n        errors: Iterable<any>,\n        message?: string,\n        options?: ErrorOptions,\n    ): AggregateError;\n    (\n        errors: Iterable<any>,\n        message?: string,\n        options?: ErrorOptions,\n    ): AggregateError;\n}\n",
    "node_modules/typescript/lib/lib.es2022.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2022\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2022.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    /**\n     * An object with some or all properties of the `Intl.Segmenter` constructor `options` parameter.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)\n     */\n    interface SegmenterOptions {\n        /** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */\n        localeMatcher?: \"best fit\" | \"lookup\" | undefined;\n        /** The type of input to be split */\n        granularity?: \"grapheme\" | \"word\" | \"sentence\" | undefined;\n    }\n\n    /**\n     * The `Intl.Segmenter` object enables locale-sensitive text segmentation, enabling you to get meaningful items (graphemes, words or sentences) from a string.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter)\n     */\n    interface Segmenter {\n        /**\n         * Returns `Segments` object containing the segments of the input string, using the segmenter's locale and granularity.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/segment)\n         *\n         * @param input - The text to be segmented as a `string`.\n         *\n         * @returns A new iterable Segments object containing the segments of the input string, using the segmenter's locale and granularity.\n         */\n        segment(input: string): Segments;\n        /**\n         * The `resolvedOptions()` method of `Intl.Segmenter` instances returns a new object with properties reflecting the options computed during initialization of this `Segmenter` object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/resolvedOptions)\n         */\n        resolvedOptions(): ResolvedSegmenterOptions;\n    }\n\n    interface ResolvedSegmenterOptions {\n        locale: string;\n        granularity: \"grapheme\" | \"word\" | \"sentence\";\n    }\n\n    interface SegmentIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n        [Symbol.iterator](): SegmentIterator<T>;\n    }\n\n    /**\n     * A `Segments` object is an iterable collection of the segments of a text string. It is returned by a call to the `segment()` method of an `Intl.Segmenter` object.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/segment/Segments)\n     */\n    interface Segments {\n        /**\n         * Returns an object describing the segment in the original string that includes the code unit at a specified index.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/segment/Segments/containing)\n         *\n         * @param codeUnitIndex - A number specifying the index of the code unit in the original input string. If the value is omitted, it defaults to `0`.\n         */\n        containing(codeUnitIndex?: number): SegmentData | undefined;\n\n        /** Returns an iterator to iterate over the segments. */\n        [Symbol.iterator](): SegmentIterator<SegmentData>;\n    }\n\n    interface SegmentData {\n        /** A string containing the segment extracted from the original input string. */\n        segment: string;\n        /** The code unit index in the original input string at which the segment begins. */\n        index: number;\n        /** The complete input string that was segmented. */\n        input: string;\n        /**\n         * A boolean value only if granularity is \"word\"; otherwise, undefined.\n         * If granularity is \"word\", then isWordLike is true when the segment is word-like (i.e., consists of letters/numbers/ideographs/etc.); otherwise, false.\n         */\n        isWordLike?: boolean;\n    }\n\n    /**\n     * The `Intl.Segmenter` object enables locale-sensitive text segmentation, enabling you to get meaningful items (graphemes, words or sentences) from a string.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter)\n     */\n    const Segmenter: {\n        prototype: Segmenter;\n\n        /**\n         * Creates a new `Intl.Segmenter` object.\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the `locales` argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)\n         *  with some or all options of `SegmenterOptions`.\n         *\n         * @returns [Intl.Segmenter](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments) object.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter).\n         */\n        new (locales?: LocalesArgument, options?: SegmenterOptions): Segmenter;\n\n        /**\n         * Returns an array containing those of the provided locales that are supported without having to fall back to the runtime's default locale.\n         *\n         * @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.\n         *  For the general form and interpretation of the `locales` argument,\n         *  see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).\n         *\n         * @param options An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf#parameters).\n         *  with some or all possible options.\n         *\n         * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf)\n         */\n        supportedLocalesOf(locales: LocalesArgument, options?: Pick<SegmenterOptions, \"localeMatcher\">): UnicodeBCP47LocaleIdentifier[];\n    };\n\n    /**\n     * Returns a sorted array of the supported collation, calendar, currency, numbering system, timezones, and units by the implementation.\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf)\n     *\n     * @param key A string indicating the category of values to return.\n     * @returns A sorted array of the supported values.\n     */\n    function supportedValuesOf(key: \"calendar\" | \"collation\" | \"currency\" | \"numberingSystem\" | \"timeZone\" | \"unit\"): string[];\n}\n",
    "node_modules/typescript/lib/lib.es2022.object.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ObjectConstructor {\n    /**\n     * Determines whether an object has a property with the specified name.\n     * @param o An object.\n     * @param v A property name.\n     */\n    hasOwn(o: object, v: PropertyKey): boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2022.regexp.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface RegExpMatchArray {\n    indices?: RegExpIndicesArray;\n}\n\ninterface RegExpExecArray {\n    indices?: RegExpIndicesArray;\n}\n\ninterface RegExpIndicesArray extends Array<[number, number]> {\n    groups?: {\n        [key: string]: [number, number];\n    };\n}\n\ninterface RegExp {\n    /**\n     * Returns a Boolean value indicating the state of the hasIndices flag (d) used with a regular expression.\n     * Default is false. Read-only.\n     */\n    readonly hasIndices: boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2022.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface String {\n    /**\n     * Returns a new String consisting of the single UTF-16 code unit located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): string | undefined;\n}\n",
    "node_modules/typescript/lib/lib.es2023.array.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Array<T> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S | undefined;\n    findLast(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): number;\n\n    /**\n     * Returns a copy of an array with its elements reversed.\n     */\n    toReversed(): T[];\n\n    /**\n     * Returns a copy of an array with its elements sorted.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending, UTF-16 code unit order.\n     * ```ts\n     * [11, 2, 22, 1].toSorted((a, b) => a - b) // [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: T, b: T) => number): T[];\n\n    /**\n     * Copies an array and removes elements and, if necessary, inserts new elements in their place. Returns the copied array.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove.\n     * @param items Elements to insert into the copied array in place of the deleted elements.\n     * @returns The copied array.\n     */\n    toSpliced(start: number, deleteCount: number, ...items: T[]): T[];\n\n    /**\n     * Copies an array and removes elements while returning the remaining elements.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove.\n     * @returns A copy of the original array with the remaining elements.\n     */\n    toSpliced(start: number, deleteCount?: number): T[];\n\n    /**\n     * Copies an array, then overwrites the value at the provided index with the\n     * given value. If the index is negative, then it replaces from the end\n     * of the array.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to write into the copied array.\n     * @returns The copied array with the updated value.\n     */\n    with(index: number, value: T): T[];\n}\n\ninterface ReadonlyArray<T> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends T>(\n        predicate: (value: T, index: number, array: readonly T[]) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (value: T, index: number, array: readonly T[]) => unknown,\n        thisArg?: any,\n    ): T | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (value: T, index: number, array: readonly T[]) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copied array with all of its elements reversed.\n     */\n    toReversed(): T[];\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending, UTF-16 code unit order.\n     * ```ts\n     * [11, 2, 22, 1].toSorted((a, b) => a - b) // [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: T, b: T) => number): T[];\n\n    /**\n     * Copies an array and removes elements while, if necessary, inserting new elements in their place, returning the remaining elements.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove.\n     * @param items Elements to insert into the copied array in place of the deleted elements.\n     * @returns A copy of the original array with the remaining elements.\n     */\n    toSpliced(start: number, deleteCount: number, ...items: T[]): T[];\n\n    /**\n     * Copies an array and removes elements while returning the remaining elements.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove.\n     * @returns A copy of the original array with the remaining elements.\n     */\n    toSpliced(start: number, deleteCount?: number): T[];\n\n    /**\n     * Copies an array, then overwrites the value at the provided index with the\n     * given value. If the index is negative, then it replaces from the end\n     * of the array\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: T): T[];\n}\n\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Int8Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Int8Array.from([11, 2, 22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Int8Array(4) [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Int8Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Int8Array<ArrayBuffer>;\n}\n\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Uint8Array.from([11, 2, 22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Uint8Array(4) [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Uint8Array<ArrayBuffer>;\n}\n\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Uint8ClampedArray.from([11, 2, 22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Uint8ClampedArray(4) [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Uint8ClampedArray<ArrayBuffer>;\n}\n\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Int16Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Int16Array.from([11, 2, -22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Int16Array(4) [-22, 1, 2, 11]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Int16Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Int16Array<ArrayBuffer>;\n}\n\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Uint16Array.from([11, 2, 22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Uint16Array(4) [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Uint16Array<ArrayBuffer>;\n}\n\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (value: number, index: number, array: this) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Int32Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Int32Array.from([11, 2, -22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Int32Array(4) [-22, 1, 2, 11]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Int32Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Int32Array<ArrayBuffer>;\n}\n\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Uint32Array.from([11, 2, 22, 1]);\n     * myNums.toSorted((a, b) => a - b) // Uint32Array(4) [1, 2, 11, 22]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Uint32Array<ArrayBuffer>;\n}\n\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Float32Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Float32Array.from([11.25, 2, -22.5, 1]);\n     * myNums.toSorted((a, b) => a - b) // Float32Array(4) [-22.5, 1, 2, 11.5]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Float32Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Float32Array<ArrayBuffer>;\n}\n\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Float64Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Float64Array.from([11.25, 2, -22.5, 1]);\n     * myNums.toSorted((a, b) => a - b) // Float64Array(4) [-22.5, 1, 2, 11.5]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Float64Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Float64Array<ArrayBuffer>;\n}\n\ninterface BigInt64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends bigint>(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): bigint | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = BigInt64Array.from([11n, 2n, -22n, 1n]);\n     * myNums.toSorted((a, b) => Number(a - b)) // BigInt64Array(4) [-22n, 1n, 2n, 11n]\n     * ```\n     */\n    toSorted(compareFn?: (a: bigint, b: bigint) => number): BigInt64Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given bigint at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: bigint): BigInt64Array<ArrayBuffer>;\n}\n\ninterface BigUint64Array<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends bigint>(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): bigint | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: bigint,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = BigUint64Array.from([11n, 2n, 22n, 1n]);\n     * myNums.toSorted((a, b) => Number(a - b)) // BigUint64Array(4) [1n, 2n, 11n, 22n]\n     * ```\n     */\n    toSorted(compareFn?: (a: bigint, b: bigint) => number): BigUint64Array<ArrayBuffer>;\n\n    /**\n     * Copies the array and inserts the given bigint at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: bigint): BigUint64Array<ArrayBuffer>;\n}\n",
    "node_modules/typescript/lib/lib.es2023.collection.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface WeakKeyTypes {\n    symbol: symbol;\n}\n",
    "node_modules/typescript/lib/lib.es2023.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2022\" />\n/// <reference lib=\"es2023.array\" />\n/// <reference lib=\"es2023.collection\" />\n/// <reference lib=\"es2023.intl\" />\n",
    "node_modules/typescript/lib/lib.es2023.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2023\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2023.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    interface NumberFormatOptionsUseGroupingRegistry {\n        min2: never;\n        auto: never;\n        always: never;\n    }\n\n    interface NumberFormatOptionsSignDisplayRegistry {\n        negative: never;\n    }\n\n    interface NumberFormatOptions {\n        roundingPriority?: \"auto\" | \"morePrecision\" | \"lessPrecision\" | undefined;\n        roundingIncrement?: 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000 | undefined;\n        roundingMode?: \"ceil\" | \"floor\" | \"expand\" | \"trunc\" | \"halfCeil\" | \"halfFloor\" | \"halfExpand\" | \"halfTrunc\" | \"halfEven\" | undefined;\n        trailingZeroDisplay?: \"auto\" | \"stripIfInteger\" | undefined;\n    }\n\n    interface ResolvedNumberFormatOptions {\n        roundingPriority: \"auto\" | \"morePrecision\" | \"lessPrecision\";\n        roundingMode: \"ceil\" | \"floor\" | \"expand\" | \"trunc\" | \"halfCeil\" | \"halfFloor\" | \"halfExpand\" | \"halfTrunc\" | \"halfEven\";\n        roundingIncrement: 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000;\n        trailingZeroDisplay: \"auto\" | \"stripIfInteger\";\n    }\n\n    interface NumberRangeFormatPart extends NumberFormatPart {\n        source: \"startRange\" | \"endRange\" | \"shared\";\n    }\n\n    type StringNumericLiteral = `${number}` | \"Infinity\" | \"-Infinity\" | \"+Infinity\";\n\n    interface NumberFormat {\n        format(value: number | bigint | StringNumericLiteral): string;\n        formatToParts(value: number | bigint | StringNumericLiteral): NumberFormatPart[];\n        formatRange(start: number | bigint | StringNumericLiteral, end: number | bigint | StringNumericLiteral): string;\n        formatRangeToParts(start: number | bigint | StringNumericLiteral, end: number | bigint | StringNumericLiteral): NumberRangeFormatPart[];\n    }\n}\n",
    "node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ArrayBuffer {\n    /**\n     * If this ArrayBuffer is resizable, returns the maximum byte length given during construction; returns the byte length if not.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/maxByteLength)\n     */\n    get maxByteLength(): number;\n\n    /**\n     * Returns true if this ArrayBuffer can be resized.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resizable)\n     */\n    get resizable(): boolean;\n\n    /**\n     * Resizes the ArrayBuffer to the specified size (in bytes).\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resize)\n     */\n    resize(newByteLength?: number): void;\n\n    /**\n     * Returns a boolean indicating whether or not this buffer has been detached (transferred).\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/detached)\n     */\n    get detached(): boolean;\n\n    /**\n     * Creates a new ArrayBuffer with the same byte content as this buffer, then detaches this buffer.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transfer)\n     */\n    transfer(newByteLength?: number): ArrayBuffer;\n\n    /**\n     * Creates a new non-resizable ArrayBuffer with the same byte content as this buffer, then detaches this buffer.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transferToFixedLength)\n     */\n    transferToFixedLength(newByteLength?: number): ArrayBuffer;\n}\n\ninterface ArrayBufferConstructor {\n    new (byteLength: number, options?: { maxByteLength?: number; }): ArrayBuffer;\n}\n",
    "node_modules/typescript/lib/lib.es2024.collection.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface MapConstructor {\n    /**\n     * Groups members of an iterable according to the return value of the passed callback.\n     * @param items An iterable.\n     * @param keySelector A callback which will be invoked for each item in items.\n     */\n    groupBy<K, T>(\n        items: Iterable<T>,\n        keySelector: (item: T, index: number) => K,\n    ): Map<K, T[]>;\n}\n",
    "node_modules/typescript/lib/lib.es2024.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2023\" />\n/// <reference lib=\"es2024.arraybuffer\" />\n/// <reference lib=\"es2024.collection\" />\n/// <reference lib=\"es2024.object\" />\n/// <reference lib=\"es2024.promise\" />\n/// <reference lib=\"es2024.regexp\" />\n/// <reference lib=\"es2024.sharedmemory\" />\n/// <reference lib=\"es2024.string\" />\n",
    "node_modules/typescript/lib/lib.es2024.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2024\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.es2024.object.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ObjectConstructor {\n    /**\n     * Groups members of an iterable according to the return value of the passed callback.\n     * @param items An iterable.\n     * @param keySelector A callback which will be invoked for each item in items.\n     */\n    groupBy<K extends PropertyKey, T>(\n        items: Iterable<T>,\n        keySelector: (item: T, index: number) => K,\n    ): Partial<Record<K, T[]>>;\n}\n",
    "node_modules/typescript/lib/lib.es2024.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface PromiseWithResolvers<T> {\n    promise: Promise<T>;\n    resolve: (value: T | PromiseLike<T>) => void;\n    reject: (reason?: any) => void;\n}\n\ninterface PromiseConstructor {\n    /**\n     * Creates a new Promise and returns it in an object, along with its resolve and reject functions.\n     * @returns An object with the properties `promise`, `resolve`, and `reject`.\n     *\n     * ```ts\n     * const { promise, resolve, reject } = Promise.withResolvers<T>();\n     * ```\n     */\n    withResolvers<T>(): PromiseWithResolvers<T>;\n}\n",
    "node_modules/typescript/lib/lib.es2024.regexp.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface RegExp {\n    /**\n     * Returns a Boolean value indicating the state of the unicodeSets flag (v) used with a regular expression.\n     * Default is false. Read-only.\n     */\n    readonly unicodeSets: boolean;\n}\n",
    "node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2020.bigint\" />\n\ninterface Atomics {\n    /**\n     * A non-blocking, asynchronous version of wait which is usable on the main thread.\n     * Waits asynchronously on a shared memory location and returns a Promise\n     * @param typedArray A shared Int32Array or BigInt64Array.\n     * @param index The position in the typedArray to wait on.\n     * @param value The expected value to test.\n     * @param [timeout] The expected value to test.\n     */\n    waitAsync(typedArray: Int32Array, index: number, value: number, timeout?: number): { async: false; value: \"not-equal\" | \"timed-out\"; } | { async: true; value: Promise<\"ok\" | \"timed-out\">; };\n\n    /**\n     * A non-blocking, asynchronous version of wait which is usable on the main thread.\n     * Waits asynchronously on a shared memory location and returns a Promise\n     * @param typedArray A shared Int32Array or BigInt64Array.\n     * @param index The position in the typedArray to wait on.\n     * @param value The expected value to test.\n     * @param [timeout] The expected value to test.\n     */\n    waitAsync(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): { async: false; value: \"not-equal\" | \"timed-out\"; } | { async: true; value: Promise<\"ok\" | \"timed-out\">; };\n}\n\ninterface SharedArrayBuffer {\n    /**\n     * Returns true if this SharedArrayBuffer can be grown.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/growable)\n     */\n    get growable(): boolean;\n\n    /**\n     * If this SharedArrayBuffer is growable, returns the maximum byte length given during construction; returns the byte length if not.\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/maxByteLength)\n     */\n    get maxByteLength(): number;\n\n    /**\n     * Grows the SharedArrayBuffer to the specified size (in bytes).\n     *\n     * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/grow)\n     */\n    grow(newByteLength?: number): void;\n}\n\ninterface SharedArrayBufferConstructor {\n    new (byteLength: number, options?: { maxByteLength?: number; }): SharedArrayBuffer;\n}\n",
    "node_modules/typescript/lib/lib.es2024.string.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface String {\n    /**\n     * Returns true if all leading surrogates and trailing surrogates appear paired and in order.\n     */\n    isWellFormed(): boolean;\n\n    /**\n     * Returns a string where all lone or out-of-order surrogates have been replaced by the Unicode replacement character (U+FFFD).\n     */\n    toWellFormed(): string;\n}\n",
    "node_modules/typescript/lib/lib.es5.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"decorators\" />\n/// <reference lib=\"decorators.legacy\" />\n\n/////////////////////////////\n/// ECMAScript APIs\n/////////////////////////////\n\ndeclare var NaN: number;\ndeclare var Infinity: number;\n\n/**\n * Evaluates JavaScript code and executes it.\n * @param x A String value that contains valid JavaScript code.\n */\ndeclare function eval(x: string): any;\n\n/**\n * Converts a string to an integer.\n * @param string A string to convert into a number.\n * @param radix A value between 2 and 36 that specifies the base of the number in `string`.\n * If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.\n * All other strings are considered decimal.\n */\ndeclare function parseInt(string: string, radix?: number): number;\n\n/**\n * Converts a string to a floating-point number.\n * @param string A string that contains a floating-point number.\n */\ndeclare function parseFloat(string: string): number;\n\n/**\n * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).\n * @param number A numeric value.\n */\ndeclare function isNaN(number: number): boolean;\n\n/**\n * Determines whether a supplied number is finite.\n * @param number Any numeric value.\n */\ndeclare function isFinite(number: number): boolean;\n\n/**\n * Gets the unencoded version of an encoded Uniform Resource Identifier (URI).\n * @param encodedURI A value representing an encoded URI.\n */\ndeclare function decodeURI(encodedURI: string): string;\n\n/**\n * Gets the unencoded version of an encoded component of a Uniform Resource Identifier (URI).\n * @param encodedURIComponent A value representing an encoded URI component.\n */\ndeclare function decodeURIComponent(encodedURIComponent: string): string;\n\n/**\n * Encodes a text string as a valid Uniform Resource Identifier (URI)\n * @param uri A value representing an unencoded URI.\n */\ndeclare function encodeURI(uri: string): string;\n\n/**\n * Encodes a text string as a valid component of a Uniform Resource Identifier (URI).\n * @param uriComponent A value representing an unencoded URI component.\n */\ndeclare function encodeURIComponent(uriComponent: string | number | boolean): string;\n\n/**\n * Computes a new string in which certain characters have been replaced by a hexadecimal escape sequence.\n * @deprecated A legacy feature for browser compatibility\n * @param string A string value\n */\ndeclare function escape(string: string): string;\n\n/**\n * Computes a new string in which hexadecimal escape sequences are replaced with the character that it represents.\n * @deprecated A legacy feature for browser compatibility\n * @param string A string value\n */\ndeclare function unescape(string: string): string;\n\ninterface Symbol {\n    /** Returns a string representation of an object. */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): symbol;\n}\n\ndeclare type PropertyKey = string | number | symbol;\n\ninterface PropertyDescriptor {\n    configurable?: boolean;\n    enumerable?: boolean;\n    value?: any;\n    writable?: boolean;\n    get?(): any;\n    set?(v: any): void;\n}\n\ninterface PropertyDescriptorMap {\n    [key: PropertyKey]: PropertyDescriptor;\n}\n\ninterface Object {\n    /** The initial value of Object.prototype.constructor is the standard built-in Object constructor. */\n    constructor: Function;\n\n    /** Returns a string representation of an object. */\n    toString(): string;\n\n    /** Returns a date converted to a string using the current locale. */\n    toLocaleString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): Object;\n\n    /**\n     * Determines whether an object has a property with the specified name.\n     * @param v A property name.\n     */\n    hasOwnProperty(v: PropertyKey): boolean;\n\n    /**\n     * Determines whether an object exists in another object's prototype chain.\n     * @param v Another object whose prototype chain is to be checked.\n     */\n    isPrototypeOf(v: Object): boolean;\n\n    /**\n     * Determines whether a specified property is enumerable.\n     * @param v A property name.\n     */\n    propertyIsEnumerable(v: PropertyKey): boolean;\n}\n\ninterface ObjectConstructor {\n    new (value?: any): Object;\n    (): any;\n    (value: any): any;\n\n    /** A reference to the prototype for a class of objects. */\n    readonly prototype: Object;\n\n    /**\n     * Returns the prototype of an object.\n     * @param o The object that references the prototype.\n     */\n    getPrototypeOf(o: any): any;\n\n    /**\n     * Gets the own property descriptor of the specified object.\n     * An own property descriptor is one that is defined directly on the object and is not inherited from the object's prototype.\n     * @param o Object that contains the property.\n     * @param p Name of the property.\n     */\n    getOwnPropertyDescriptor(o: any, p: PropertyKey): PropertyDescriptor | undefined;\n\n    /**\n     * Returns the names of the own properties of an object. The own properties of an object are those that are defined directly\n     * on that object, and are not inherited from the object's prototype. The properties of an object include both fields (objects) and functions.\n     * @param o Object that contains the own properties.\n     */\n    getOwnPropertyNames(o: any): string[];\n\n    /**\n     * Creates an object that has the specified prototype or that has null prototype.\n     * @param o Object to use as a prototype. May be null.\n     */\n    create(o: object | null): any;\n\n    /**\n     * Creates an object that has the specified prototype, and that optionally contains specified properties.\n     * @param o Object to use as a prototype. May be null\n     * @param properties JavaScript object that contains one or more property descriptors.\n     */\n    create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;\n\n    /**\n     * Adds a property to an object, or modifies attributes of an existing property.\n     * @param o Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object.\n     * @param p The property name.\n     * @param attributes Descriptor for the property. It can be for a data property or an accessor property.\n     */\n    defineProperty<T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): T;\n\n    /**\n     * Adds one or more properties to an object, and/or modifies attributes of existing properties.\n     * @param o Object on which to add or modify the properties. This can be a native JavaScript object or a DOM object.\n     * @param properties JavaScript object that contains one or more descriptor objects. Each descriptor object describes a data property or an accessor property.\n     */\n    defineProperties<T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T;\n\n    /**\n     * Prevents the modification of attributes of existing properties, and prevents the addition of new properties.\n     * @param o Object on which to lock the attributes.\n     */\n    seal<T>(o: T): T;\n\n    /**\n     * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n     * @param f Object on which to lock the attributes.\n     */\n    freeze<T extends Function>(f: T): T;\n\n    /**\n     * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n     * @param o Object on which to lock the attributes.\n     */\n    freeze<T extends { [idx: string]: U | null | undefined | object; }, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;\n\n    /**\n     * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n     * @param o Object on which to lock the attributes.\n     */\n    freeze<T>(o: T): Readonly<T>;\n\n    /**\n     * Prevents the addition of new properties to an object.\n     * @param o Object to make non-extensible.\n     */\n    preventExtensions<T>(o: T): T;\n\n    /**\n     * Returns true if existing property attributes cannot be modified in an object and new properties cannot be added to the object.\n     * @param o Object to test.\n     */\n    isSealed(o: any): boolean;\n\n    /**\n     * Returns true if existing property attributes and values cannot be modified in an object, and new properties cannot be added to the object.\n     * @param o Object to test.\n     */\n    isFrozen(o: any): boolean;\n\n    /**\n     * Returns a value that indicates whether new properties can be added to an object.\n     * @param o Object to test.\n     */\n    isExtensible(o: any): boolean;\n\n    /**\n     * Returns the names of the enumerable string properties and methods of an object.\n     * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n     */\n    keys(o: object): string[];\n}\n\n/**\n * Provides functionality common to all JavaScript objects.\n */\ndeclare var Object: ObjectConstructor;\n\n/**\n * Creates a new function.\n */\ninterface Function {\n    /**\n     * Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.\n     * @param thisArg The object to be used as the this object.\n     * @param argArray A set of arguments to be passed to the function.\n     */\n    apply(this: Function, thisArg: any, argArray?: any): any;\n\n    /**\n     * Calls a method of an object, substituting another object for the current object.\n     * @param thisArg The object to be used as the current object.\n     * @param argArray A list of arguments to be passed to the method.\n     */\n    call(this: Function, thisArg: any, ...argArray: any[]): any;\n\n    /**\n     * For a given function, creates a bound function that has the same body as the original function.\n     * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n     * @param thisArg An object to which the this keyword can refer inside the new function.\n     * @param argArray A list of arguments to be passed to the new function.\n     */\n    bind(this: Function, thisArg: any, ...argArray: any[]): any;\n\n    /** Returns a string representation of a function. */\n    toString(): string;\n\n    prototype: any;\n    readonly length: number;\n\n    // Non-standard extensions\n    arguments: any;\n    caller: Function;\n}\n\ninterface FunctionConstructor {\n    /**\n     * Creates a new function.\n     * @param args A list of arguments the function accepts.\n     */\n    new (...args: string[]): Function;\n    (...args: string[]): Function;\n    readonly prototype: Function;\n}\n\ndeclare var Function: FunctionConstructor;\n\n/**\n * Extracts the type of the 'this' parameter of a function type, or 'unknown' if the function type has no 'this' parameter.\n */\ntype ThisParameterType<T> = T extends (this: infer U, ...args: never) => any ? U : unknown;\n\n/**\n * Removes the 'this' parameter from a function type.\n */\ntype OmitThisParameter<T> = unknown extends ThisParameterType<T> ? T : T extends (...args: infer A) => infer R ? (...args: A) => R : T;\n\ninterface CallableFunction extends Function {\n    /**\n     * Calls the function with the specified object as the this value and the elements of specified array as the arguments.\n     * @param thisArg The object to be used as the this object.\n     */\n    apply<T, R>(this: (this: T) => R, thisArg: T): R;\n\n    /**\n     * Calls the function with the specified object as the this value and the elements of specified array as the arguments.\n     * @param thisArg The object to be used as the this object.\n     * @param args An array of argument values to be passed to the function.\n     */\n    apply<T, A extends any[], R>(this: (this: T, ...args: A) => R, thisArg: T, args: A): R;\n\n    /**\n     * Calls the function with the specified object as the this value and the specified rest arguments as the arguments.\n     * @param thisArg The object to be used as the this object.\n     * @param args Argument values to be passed to the function.\n     */\n    call<T, A extends any[], R>(this: (this: T, ...args: A) => R, thisArg: T, ...args: A): R;\n\n    /**\n     * For a given function, creates a bound function that has the same body as the original function.\n     * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n     * @param thisArg The object to be used as the this object.\n     */\n    bind<T>(this: T, thisArg: ThisParameterType<T>): OmitThisParameter<T>;\n\n    /**\n     * For a given function, creates a bound function that has the same body as the original function.\n     * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n     * @param thisArg The object to be used as the this object.\n     * @param args Arguments to bind to the parameters of the function.\n     */\n    bind<T, A extends any[], B extends any[], R>(this: (this: T, ...args: [...A, ...B]) => R, thisArg: T, ...args: A): (...args: B) => R;\n}\n\ninterface NewableFunction extends Function {\n    /**\n     * Calls the function with the specified object as the this value and the elements of specified array as the arguments.\n     * @param thisArg The object to be used as the this object.\n     */\n    apply<T>(this: new () => T, thisArg: T): void;\n    /**\n     * Calls the function with the specified object as the this value and the elements of specified array as the arguments.\n     * @param thisArg The object to be used as the this object.\n     * @param args An array of argument values to be passed to the function.\n     */\n    apply<T, A extends any[]>(this: new (...args: A) => T, thisArg: T, args: A): void;\n\n    /**\n     * Calls the function with the specified object as the this value and the specified rest arguments as the arguments.\n     * @param thisArg The object to be used as the this object.\n     * @param args Argument values to be passed to the function.\n     */\n    call<T, A extends any[]>(this: new (...args: A) => T, thisArg: T, ...args: A): void;\n\n    /**\n     * For a given function, creates a bound function that has the same body as the original function.\n     * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n     * @param thisArg The object to be used as the this object.\n     */\n    bind<T>(this: T, thisArg: any): T;\n\n    /**\n     * For a given function, creates a bound function that has the same body as the original function.\n     * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n     * @param thisArg The object to be used as the this object.\n     * @param args Arguments to bind to the parameters of the function.\n     */\n    bind<A extends any[], B extends any[], R>(this: new (...args: [...A, ...B]) => R, thisArg: any, ...args: A): new (...args: B) => R;\n}\n\ninterface IArguments {\n    [index: number]: any;\n    length: number;\n    callee: Function;\n}\n\ninterface String {\n    /** Returns a string representation of a string. */\n    toString(): string;\n\n    /**\n     * Returns the character at the specified index.\n     * @param pos The zero-based index of the desired character.\n     */\n    charAt(pos: number): string;\n\n    /**\n     * Returns the Unicode value of the character at the specified location.\n     * @param index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.\n     */\n    charCodeAt(index: number): number;\n\n    /**\n     * Returns a string that contains the concatenation of two or more strings.\n     * @param strings The strings to append to the end of the string.\n     */\n    concat(...strings: string[]): string;\n\n    /**\n     * Returns the position of the first occurrence of a substring.\n     * @param searchString The substring to search for in the string\n     * @param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.\n     */\n    indexOf(searchString: string, position?: number): number;\n\n    /**\n     * Returns the last occurrence of a substring in the string.\n     * @param searchString The substring to search for.\n     * @param position The index at which to begin searching. If omitted, the search begins at the end of the string.\n     */\n    lastIndexOf(searchString: string, position?: number): number;\n\n    /**\n     * Determines whether two strings are equivalent in the current locale.\n     * @param that String to compare to target string\n     */\n    localeCompare(that: string): number;\n\n    /**\n     * Matches a string with a regular expression, and returns an array containing the results of that search.\n     * @param regexp A variable name or string literal containing the regular expression pattern and flags.\n     */\n    match(regexp: string | RegExp): RegExpMatchArray | null;\n\n    /**\n     * Replaces text in a string, using a regular expression or search string.\n     * @param searchValue A string or regular expression to search for.\n     * @param replaceValue A string containing the text to replace. When the {@linkcode searchValue} is a `RegExp`, all matches are replaced if the `g` flag is set (or only those matches at the beginning, if the `y` flag is also present). Otherwise, only the first match of {@linkcode searchValue} is replaced.\n     */\n    replace(searchValue: string | RegExp, replaceValue: string): string;\n\n    /**\n     * Replaces text in a string, using a regular expression or search string.\n     * @param searchValue A string to search for.\n     * @param replacer A function that returns the replacement text.\n     */\n    replace(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;\n\n    /**\n     * Finds the first substring match in a regular expression search.\n     * @param regexp The regular expression pattern and applicable flags.\n     */\n    search(regexp: string | RegExp): number;\n\n    /**\n     * Returns a section of a string.\n     * @param start The index to the beginning of the specified portion of stringObj.\n     * @param end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\n     * If this value is not specified, the substring continues to the end of stringObj.\n     */\n    slice(start?: number, end?: number): string;\n\n    /**\n     * Split a string into substrings using the specified separator and return them as an array.\n     * @param separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.\n     * @param limit A value used to limit the number of elements returned in the array.\n     */\n    split(separator: string | RegExp, limit?: number): string[];\n\n    /**\n     * Returns the substring at the specified location within a String object.\n     * @param start The zero-based index number indicating the beginning of the substring.\n     * @param end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\n     * If end is omitted, the characters from start through the end of the original string are returned.\n     */\n    substring(start: number, end?: number): string;\n\n    /** Converts all the alphabetic characters in a string to lowercase. */\n    toLowerCase(): string;\n\n    /** Converts all alphabetic characters to lowercase, taking into account the host environment's current locale. */\n    toLocaleLowerCase(locales?: string | string[]): string;\n\n    /** Converts all the alphabetic characters in a string to uppercase. */\n    toUpperCase(): string;\n\n    /** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale. */\n    toLocaleUpperCase(locales?: string | string[]): string;\n\n    /** Removes the leading and trailing white space and line terminator characters from a string. */\n    trim(): string;\n\n    /** Returns the length of a String object. */\n    readonly length: number;\n\n    // IE extensions\n    /**\n     * Gets a substring beginning at the specified location and having the specified length.\n     * @deprecated A legacy feature for browser compatibility\n     * @param from The starting position of the desired substring. The index of the first character in the string is zero.\n     * @param length The number of characters to include in the returned substring.\n     */\n    substr(from: number, length?: number): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): string;\n\n    readonly [index: number]: string;\n}\n\ninterface StringConstructor {\n    new (value?: any): String;\n    (value?: any): string;\n    readonly prototype: String;\n    fromCharCode(...codes: number[]): string;\n}\n\n/**\n * Allows manipulation and formatting of text strings and determination and location of substrings within strings.\n */\ndeclare var String: StringConstructor;\n\ninterface Boolean {\n    /** Returns the primitive value of the specified object. */\n    valueOf(): boolean;\n}\n\ninterface BooleanConstructor {\n    new (value?: any): Boolean;\n    <T>(value?: T): boolean;\n    readonly prototype: Boolean;\n}\n\ndeclare var Boolean: BooleanConstructor;\n\ninterface Number {\n    /**\n     * Returns a string representation of an object.\n     * @param radix Specifies a radix for converting numeric values to strings. This value is only used for numbers.\n     */\n    toString(radix?: number): string;\n\n    /**\n     * Returns a string representing a number in fixed-point notation.\n     * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n     */\n    toFixed(fractionDigits?: number): string;\n\n    /**\n     * Returns a string containing a number represented in exponential notation.\n     * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n     */\n    toExponential(fractionDigits?: number): string;\n\n    /**\n     * Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.\n     * @param precision Number of significant digits. Must be in the range 1 - 21, inclusive.\n     */\n    toPrecision(precision?: number): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): number;\n}\n\ninterface NumberConstructor {\n    new (value?: any): Number;\n    (value?: any): number;\n    readonly prototype: Number;\n\n    /** The largest number that can be represented in JavaScript. Equal to approximately 1.79E+308. */\n    readonly MAX_VALUE: number;\n\n    /** The closest number to zero that can be represented in JavaScript. Equal to approximately 5.00E-324. */\n    readonly MIN_VALUE: number;\n\n    /**\n     * A value that is not a number.\n     * In equality comparisons, NaN does not equal any value, including itself. To test whether a value is equivalent to NaN, use the isNaN function.\n     */\n    readonly NaN: number;\n\n    /**\n     * A value that is less than the largest negative number that can be represented in JavaScript.\n     * JavaScript displays NEGATIVE_INFINITY values as -infinity.\n     */\n    readonly NEGATIVE_INFINITY: number;\n\n    /**\n     * A value greater than the largest number that can be represented in JavaScript.\n     * JavaScript displays POSITIVE_INFINITY values as infinity.\n     */\n    readonly POSITIVE_INFINITY: number;\n}\n\n/** An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers. */\ndeclare var Number: NumberConstructor;\n\ninterface TemplateStringsArray extends ReadonlyArray<string> {\n    readonly raw: readonly string[];\n}\n\n/**\n * The type of `import.meta`.\n *\n * If you need to declare that a given property exists on `import.meta`,\n * this type may be augmented via interface merging.\n */\ninterface ImportMeta {\n}\n\n/**\n * The type for the optional second argument to `import()`.\n *\n * If your host environment supports additional options, this type may be\n * augmented via interface merging.\n */\ninterface ImportCallOptions {\n    /** @deprecated*/ assert?: ImportAssertions;\n    with?: ImportAttributes;\n}\n\n/**\n * The type for the `assert` property of the optional second argument to `import()`.\n * @deprecated\n */\ninterface ImportAssertions {\n    [key: string]: string;\n}\n\n/**\n * The type for the `with` property of the optional second argument to `import()`.\n */\ninterface ImportAttributes {\n    [key: string]: string;\n}\n\ninterface Math {\n    /** The mathematical constant e. This is Euler's number, the base of natural logarithms. */\n    readonly E: number;\n    /** The natural logarithm of 10. */\n    readonly LN10: number;\n    /** The natural logarithm of 2. */\n    readonly LN2: number;\n    /** The base-2 logarithm of e. */\n    readonly LOG2E: number;\n    /** The base-10 logarithm of e. */\n    readonly LOG10E: number;\n    /** Pi. This is the ratio of the circumference of a circle to its diameter. */\n    readonly PI: number;\n    /** The square root of 0.5, or, equivalently, one divided by the square root of 2. */\n    readonly SQRT1_2: number;\n    /** The square root of 2. */\n    readonly SQRT2: number;\n    /**\n     * Returns the absolute value of a number (the value without regard to whether it is positive or negative).\n     * For example, the absolute value of -5 is the same as the absolute value of 5.\n     * @param x A numeric expression for which the absolute value is needed.\n     */\n    abs(x: number): number;\n    /**\n     * Returns the arc cosine (or inverse cosine) of a number.\n     * @param x A numeric expression.\n     */\n    acos(x: number): number;\n    /**\n     * Returns the arcsine of a number.\n     * @param x A numeric expression.\n     */\n    asin(x: number): number;\n    /**\n     * Returns the arctangent of a number.\n     * @param x A numeric expression for which the arctangent is needed.\n     */\n    atan(x: number): number;\n    /**\n     * Returns the angle (in radians) between the X axis and the line going through both the origin and the given point.\n     * @param y A numeric expression representing the cartesian y-coordinate.\n     * @param x A numeric expression representing the cartesian x-coordinate.\n     */\n    atan2(y: number, x: number): number;\n    /**\n     * Returns the smallest integer greater than or equal to its numeric argument.\n     * @param x A numeric expression.\n     */\n    ceil(x: number): number;\n    /**\n     * Returns the cosine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    cos(x: number): number;\n    /**\n     * Returns e (the base of natural logarithms) raised to a power.\n     * @param x A numeric expression representing the power of e.\n     */\n    exp(x: number): number;\n    /**\n     * Returns the greatest integer less than or equal to its numeric argument.\n     * @param x A numeric expression.\n     */\n    floor(x: number): number;\n    /**\n     * Returns the natural logarithm (base e) of a number.\n     * @param x A numeric expression.\n     */\n    log(x: number): number;\n    /**\n     * Returns the larger of a set of supplied numeric expressions.\n     * @param values Numeric expressions to be evaluated.\n     */\n    max(...values: number[]): number;\n    /**\n     * Returns the smaller of a set of supplied numeric expressions.\n     * @param values Numeric expressions to be evaluated.\n     */\n    min(...values: number[]): number;\n    /**\n     * Returns the value of a base expression taken to a specified power.\n     * @param x The base value of the expression.\n     * @param y The exponent value of the expression.\n     */\n    pow(x: number, y: number): number;\n    /** Returns a pseudorandom number between 0 and 1. */\n    random(): number;\n    /**\n     * Returns a supplied numeric expression rounded to the nearest integer.\n     * @param x The value to be rounded to the nearest integer.\n     */\n    round(x: number): number;\n    /**\n     * Returns the sine of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    sin(x: number): number;\n    /**\n     * Returns the square root of a number.\n     * @param x A numeric expression.\n     */\n    sqrt(x: number): number;\n    /**\n     * Returns the tangent of a number.\n     * @param x A numeric expression that contains an angle measured in radians.\n     */\n    tan(x: number): number;\n}\n/** An intrinsic object that provides basic mathematics functionality and constants. */\ndeclare var Math: Math;\n\n/** Enables basic storage and retrieval of dates and times. */\ninterface Date {\n    /** Returns a string representation of a date. The format of the string depends on the locale. */\n    toString(): string;\n    /** Returns a date as a string value. */\n    toDateString(): string;\n    /** Returns a time as a string value. */\n    toTimeString(): string;\n    /** Returns a value as a string value appropriate to the host environment's current locale. */\n    toLocaleString(): string;\n    /** Returns a date as a string value appropriate to the host environment's current locale. */\n    toLocaleDateString(): string;\n    /** Returns a time as a string value appropriate to the host environment's current locale. */\n    toLocaleTimeString(): string;\n    /** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */\n    valueOf(): number;\n    /** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */\n    getTime(): number;\n    /** Gets the year, using local time. */\n    getFullYear(): number;\n    /** Gets the year using Universal Coordinated Time (UTC). */\n    getUTCFullYear(): number;\n    /** Gets the month, using local time. */\n    getMonth(): number;\n    /** Gets the month of a Date object using Universal Coordinated Time (UTC). */\n    getUTCMonth(): number;\n    /** Gets the day-of-the-month, using local time. */\n    getDate(): number;\n    /** Gets the day-of-the-month, using Universal Coordinated Time (UTC). */\n    getUTCDate(): number;\n    /** Gets the day of the week, using local time. */\n    getDay(): number;\n    /** Gets the day of the week using Universal Coordinated Time (UTC). */\n    getUTCDay(): number;\n    /** Gets the hours in a date, using local time. */\n    getHours(): number;\n    /** Gets the hours value in a Date object using Universal Coordinated Time (UTC). */\n    getUTCHours(): number;\n    /** Gets the minutes of a Date object, using local time. */\n    getMinutes(): number;\n    /** Gets the minutes of a Date object using Universal Coordinated Time (UTC). */\n    getUTCMinutes(): number;\n    /** Gets the seconds of a Date object, using local time. */\n    getSeconds(): number;\n    /** Gets the seconds of a Date object using Universal Coordinated Time (UTC). */\n    getUTCSeconds(): number;\n    /** Gets the milliseconds of a Date, using local time. */\n    getMilliseconds(): number;\n    /** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */\n    getUTCMilliseconds(): number;\n    /** Gets the difference in minutes between Universal Coordinated Time (UTC) and the time on the local computer. */\n    getTimezoneOffset(): number;\n    /**\n     * Sets the date and time value in the Date object.\n     * @param time A numeric value representing the number of elapsed milliseconds since midnight, January 1, 1970 GMT.\n     */\n    setTime(time: number): number;\n    /**\n     * Sets the milliseconds value in the Date object using local time.\n     * @param ms A numeric value equal to the millisecond value.\n     */\n    setMilliseconds(ms: number): number;\n    /**\n     * Sets the milliseconds value in the Date object using Universal Coordinated Time (UTC).\n     * @param ms A numeric value equal to the millisecond value.\n     */\n    setUTCMilliseconds(ms: number): number;\n\n    /**\n     * Sets the seconds value in the Date object using local time.\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setSeconds(sec: number, ms?: number): number;\n    /**\n     * Sets the seconds value in the Date object using Universal Coordinated Time (UTC).\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setUTCSeconds(sec: number, ms?: number): number;\n    /**\n     * Sets the minutes value in the Date object using local time.\n     * @param min A numeric value equal to the minutes value.\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setMinutes(min: number, sec?: number, ms?: number): number;\n    /**\n     * Sets the minutes value in the Date object using Universal Coordinated Time (UTC).\n     * @param min A numeric value equal to the minutes value.\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setUTCMinutes(min: number, sec?: number, ms?: number): number;\n    /**\n     * Sets the hour value in the Date object using local time.\n     * @param hours A numeric value equal to the hours value.\n     * @param min A numeric value equal to the minutes value.\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setHours(hours: number, min?: number, sec?: number, ms?: number): number;\n    /**\n     * Sets the hours value in the Date object using Universal Coordinated Time (UTC).\n     * @param hours A numeric value equal to the hours value.\n     * @param min A numeric value equal to the minutes value.\n     * @param sec A numeric value equal to the seconds value.\n     * @param ms A numeric value equal to the milliseconds value.\n     */\n    setUTCHours(hours: number, min?: number, sec?: number, ms?: number): number;\n    /**\n     * Sets the numeric day-of-the-month value of the Date object using local time.\n     * @param date A numeric value equal to the day of the month.\n     */\n    setDate(date: number): number;\n    /**\n     * Sets the numeric day of the month in the Date object using Universal Coordinated Time (UTC).\n     * @param date A numeric value equal to the day of the month.\n     */\n    setUTCDate(date: number): number;\n    /**\n     * Sets the month value in the Date object using local time.\n     * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n     * @param date A numeric value representing the day of the month. If this value is not supplied, the value from a call to the getDate method is used.\n     */\n    setMonth(month: number, date?: number): number;\n    /**\n     * Sets the month value in the Date object using Universal Coordinated Time (UTC).\n     * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n     * @param date A numeric value representing the day of the month. If it is not supplied, the value from a call to the getUTCDate method is used.\n     */\n    setUTCMonth(month: number, date?: number): number;\n    /**\n     * Sets the year of the Date object using local time.\n     * @param year A numeric value for the year.\n     * @param month A zero-based numeric value for the month (0 for January, 11 for December). Must be specified if numDate is specified.\n     * @param date A numeric value equal for the day of the month.\n     */\n    setFullYear(year: number, month?: number, date?: number): number;\n    /**\n     * Sets the year value in the Date object using Universal Coordinated Time (UTC).\n     * @param year A numeric value equal to the year.\n     * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively. Must be supplied if numDate is supplied.\n     * @param date A numeric value equal to the day of the month.\n     */\n    setUTCFullYear(year: number, month?: number, date?: number): number;\n    /** Returns a date converted to a string using Universal Coordinated Time (UTC). */\n    toUTCString(): string;\n    /** Returns a date as a string value in ISO format. */\n    toISOString(): string;\n    /** Used by the JSON.stringify method to enable the transformation of an object's data for JavaScript Object Notation (JSON) serialization. */\n    toJSON(key?: any): string;\n}\n\ninterface DateConstructor {\n    new (): Date;\n    new (value: number | string): Date;\n    /**\n     * Creates a new Date.\n     * @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.\n     * @param monthIndex The month as a number between 0 and 11 (January to December).\n     * @param date The date as a number between 1 and 31.\n     * @param hours Must be supplied if minutes is supplied. A number from 0 to 23 (midnight to 11pm) that specifies the hour.\n     * @param minutes Must be supplied if seconds is supplied. A number from 0 to 59 that specifies the minutes.\n     * @param seconds Must be supplied if milliseconds is supplied. A number from 0 to 59 that specifies the seconds.\n     * @param ms A number from 0 to 999 that specifies the milliseconds.\n     */\n    new (year: number, monthIndex: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): Date;\n    (): string;\n    readonly prototype: Date;\n    /**\n     * Parses a string containing a date, and returns the number of milliseconds between that date and midnight, January 1, 1970.\n     * @param s A date string\n     */\n    parse(s: string): number;\n    /**\n     * Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the specified date.\n     * @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.\n     * @param monthIndex The month as a number between 0 and 11 (January to December).\n     * @param date The date as a number between 1 and 31.\n     * @param hours Must be supplied if minutes is supplied. A number from 0 to 23 (midnight to 11pm) that specifies the hour.\n     * @param minutes Must be supplied if seconds is supplied. A number from 0 to 59 that specifies the minutes.\n     * @param seconds Must be supplied if milliseconds is supplied. A number from 0 to 59 that specifies the seconds.\n     * @param ms A number from 0 to 999 that specifies the milliseconds.\n     */\n    UTC(year: number, monthIndex: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): number;\n    /** Returns the number of milliseconds elapsed since midnight, January 1, 1970 Universal Coordinated Time (UTC). */\n    now(): number;\n}\n\ndeclare var Date: DateConstructor;\n\ninterface RegExpMatchArray extends Array<string> {\n    /**\n     * The index of the search at which the result was found.\n     */\n    index?: number;\n    /**\n     * A copy of the search string.\n     */\n    input?: string;\n    /**\n     * The first match. This will always be present because `null` will be returned if there are no matches.\n     */\n    0: string;\n}\n\ninterface RegExpExecArray extends Array<string> {\n    /**\n     * The index of the search at which the result was found.\n     */\n    index: number;\n    /**\n     * A copy of the search string.\n     */\n    input: string;\n    /**\n     * The first match. This will always be present because `null` will be returned if there are no matches.\n     */\n    0: string;\n}\n\ninterface RegExp {\n    /**\n     * Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search.\n     * @param string The String object or string literal on which to perform the search.\n     */\n    exec(string: string): RegExpExecArray | null;\n\n    /**\n     * Returns a Boolean value that indicates whether or not a pattern exists in a searched string.\n     * @param string String on which to perform the search.\n     */\n    test(string: string): boolean;\n\n    /** Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal. */\n    readonly source: string;\n\n    /** Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only. */\n    readonly global: boolean;\n\n    /** Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only. */\n    readonly ignoreCase: boolean;\n\n    /** Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only. */\n    readonly multiline: boolean;\n\n    lastIndex: number;\n\n    // Non-standard extensions\n    /** @deprecated A legacy feature for browser compatibility */\n    compile(pattern: string, flags?: string): this;\n}\n\ninterface RegExpConstructor {\n    new (pattern: RegExp | string): RegExp;\n    new (pattern: string, flags?: string): RegExp;\n    (pattern: RegExp | string): RegExp;\n    (pattern: string, flags?: string): RegExp;\n    readonly \"prototype\": RegExp;\n\n    // Non-standard extensions\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$1\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$2\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$3\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$4\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$5\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$6\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$7\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$8\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$9\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"input\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$_\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"lastMatch\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$&\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"lastParen\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$+\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"leftContext\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$`\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"rightContext\": string;\n    /** @deprecated A legacy feature for browser compatibility */\n    \"$'\": string;\n}\n\ndeclare var RegExp: RegExpConstructor;\n\ninterface Error {\n    name: string;\n    message: string;\n    stack?: string;\n}\n\ninterface ErrorConstructor {\n    new (message?: string): Error;\n    (message?: string): Error;\n    readonly prototype: Error;\n}\n\ndeclare var Error: ErrorConstructor;\n\ninterface EvalError extends Error {\n}\n\ninterface EvalErrorConstructor extends ErrorConstructor {\n    new (message?: string): EvalError;\n    (message?: string): EvalError;\n    readonly prototype: EvalError;\n}\n\ndeclare var EvalError: EvalErrorConstructor;\n\ninterface RangeError extends Error {\n}\n\ninterface RangeErrorConstructor extends ErrorConstructor {\n    new (message?: string): RangeError;\n    (message?: string): RangeError;\n    readonly prototype: RangeError;\n}\n\ndeclare var RangeError: RangeErrorConstructor;\n\ninterface ReferenceError extends Error {\n}\n\ninterface ReferenceErrorConstructor extends ErrorConstructor {\n    new (message?: string): ReferenceError;\n    (message?: string): ReferenceError;\n    readonly prototype: ReferenceError;\n}\n\ndeclare var ReferenceError: ReferenceErrorConstructor;\n\ninterface SyntaxError extends Error {\n}\n\ninterface SyntaxErrorConstructor extends ErrorConstructor {\n    new (message?: string): SyntaxError;\n    (message?: string): SyntaxError;\n    readonly prototype: SyntaxError;\n}\n\ndeclare var SyntaxError: SyntaxErrorConstructor;\n\ninterface TypeError extends Error {\n}\n\ninterface TypeErrorConstructor extends ErrorConstructor {\n    new (message?: string): TypeError;\n    (message?: string): TypeError;\n    readonly prototype: TypeError;\n}\n\ndeclare var TypeError: TypeErrorConstructor;\n\ninterface URIError extends Error {\n}\n\ninterface URIErrorConstructor extends ErrorConstructor {\n    new (message?: string): URIError;\n    (message?: string): URIError;\n    readonly prototype: URIError;\n}\n\ndeclare var URIError: URIErrorConstructor;\n\ninterface JSON {\n    /**\n     * Converts a JavaScript Object Notation (JSON) string into an object.\n     * @param text A valid JSON string.\n     * @param reviver A function that transforms the results. This function is called for each member of the object.\n     * If a member contains nested objects, the nested objects are transformed before the parent object is.\n     * @throws {SyntaxError} If `text` is not valid JSON.\n     */\n    parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;\n    /**\n     * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n     * @param value A JavaScript value, usually an object or array, to be converted.\n     * @param replacer A function that transforms the results.\n     * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n     * @throws {TypeError} If a circular reference or a BigInt value is found.\n     */\n    stringify(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;\n    /**\n     * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n     * @param value A JavaScript value, usually an object or array, to be converted.\n     * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.\n     * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n     * @throws {TypeError} If a circular reference or a BigInt value is found.\n     */\n    stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;\n}\n\n/**\n * An intrinsic object that provides functions to convert JavaScript values to and from the JavaScript Object Notation (JSON) format.\n */\ndeclare var JSON: JSON;\n\n/////////////////////////////\n/// ECMAScript Array API (specially handled by compiler)\n/////////////////////////////\n\ninterface ReadonlyArray<T> {\n    /**\n     * Gets the length of the array. This is a number one higher than the highest element defined in an array.\n     */\n    readonly length: number;\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n    /**\n     * Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.\n     */\n    toLocaleString(): string;\n    /**\n     * Combines two or more arrays.\n     * @param items Additional items to add to the end of array1.\n     */\n    concat(...items: ConcatArray<T>[]): T[];\n    /**\n     * Combines two or more arrays.\n     * @param items Additional items to add to the end of array1.\n     */\n    concat(...items: (T | ConcatArray<T>)[]): T[];\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): T[];\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n     */\n    indexOf(searchElement: T, fromIndex?: number): number;\n    /**\n     * Returns the index of the last occurrence of a specified value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\n     */\n    lastIndexOf(searchElement: T, fromIndex?: number): number;\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every<S extends T>(predicate: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): this is readonly S[];\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: T, index: number, array: readonly T[]) => void, thisArg?: any): void;\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n     */\n    map<U>(callbackfn: (value: T, index: number, array: readonly T[]) => U, thisArg?: any): U[];\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n     */\n    filter<S extends T>(predicate: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): S[];\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): T[];\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T): T;\n    reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T, initialValue: T): T;\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: readonly T[]) => U, initialValue: U): U;\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T): T;\n    reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T, initialValue: T): T;\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: readonly T[]) => U, initialValue: U): U;\n\n    readonly [n: number]: T;\n}\n\ninterface ConcatArray<T> {\n    readonly length: number;\n    readonly [n: number]: T;\n    join(separator?: string): string;\n    slice(start?: number, end?: number): T[];\n}\n\ninterface Array<T> {\n    /**\n     * Gets or sets the length of the array. This is a number one higher than the highest index in the array.\n     */\n    length: number;\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n    /**\n     * Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.\n     */\n    toLocaleString(): string;\n    /**\n     * Removes the last element from an array and returns it.\n     * If the array is empty, undefined is returned and the array is not modified.\n     */\n    pop(): T | undefined;\n    /**\n     * Appends new elements to the end of an array, and returns the new length of the array.\n     * @param items New elements to add to the array.\n     */\n    push(...items: T[]): number;\n    /**\n     * Combines two or more arrays.\n     * This method returns a new array without modifying any existing arrays.\n     * @param items Additional arrays and/or items to add to the end of the array.\n     */\n    concat(...items: ConcatArray<T>[]): T[];\n    /**\n     * Combines two or more arrays.\n     * This method returns a new array without modifying any existing arrays.\n     * @param items Additional arrays and/or items to add to the end of the array.\n     */\n    concat(...items: (T | ConcatArray<T>)[]): T[];\n    /**\n     * Adds all the elements of an array into a string, separated by the specified separator string.\n     * @param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n    /**\n     * Reverses the elements in an array in place.\n     * This method mutates the array and returns a reference to the same array.\n     */\n    reverse(): T[];\n    /**\n     * Removes the first element from an array and returns it.\n     * If the array is empty, undefined is returned and the array is not modified.\n     */\n    shift(): T | undefined;\n    /**\n     * Returns a copy of a section of an array.\n     * For both start and end, a negative index can be used to indicate an offset from the end of the array.\n     * For example, -2 refers to the second to last element of the array.\n     * @param start The beginning index of the specified portion of the array.\n     * If start is undefined, then the slice begins at index 0.\n     * @param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     * If end is undefined, then the slice extends to the end of the array.\n     */\n    slice(start?: number, end?: number): T[];\n    /**\n     * Sorts an array in place.\n     * This method mutates the array and returns a reference to the same array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending, UTF-16 code unit order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: T, b: T) => number): this;\n    /**\n     * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove. Omitting this argument will remove all elements from the start\n     * paramater location to end of the array. If value of this argument is either a negative number, zero, undefined, or a type\n     * that cannot be converted to an integer, the function will evaluate the argument as zero and not remove any elements.\n     * @returns An array containing the elements that were deleted.\n     */\n    splice(start: number, deleteCount?: number): T[];\n    /**\n     * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n     * @param start The zero-based location in the array from which to start removing elements.\n     * @param deleteCount The number of elements to remove. If value of this argument is either a negative number, zero,\n     * undefined, or a type that cannot be converted to an integer, the function will evaluate the argument as zero and\n     * not remove any elements.\n     * @param items Elements to insert into the array in place of the deleted elements.\n     * @returns An array containing the elements that were deleted.\n     */\n    splice(start: number, deleteCount: number, ...items: T[]): T[];\n    /**\n     * Inserts new elements at the start of an array, and returns the new length of the array.\n     * @param items Elements to insert at the start of the array.\n     */\n    unshift(...items: T[]): number;\n    /**\n     * Returns the index of the first occurrence of a value in an array, or -1 if it is not present.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n     */\n    indexOf(searchElement: T, fromIndex?: number): number;\n    /**\n     * Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.\n     */\n    lastIndexOf(searchElement: T, fromIndex?: number): number;\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): this is S[];\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n     */\n    map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n     */\n    filter<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;\n    reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;\n    reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n\n    [n: number]: T;\n}\n\ninterface ArrayConstructor {\n    new (arrayLength?: number): any[];\n    new <T>(arrayLength: number): T[];\n    new <T>(...items: T[]): T[];\n    (arrayLength?: number): any[];\n    <T>(arrayLength: number): T[];\n    <T>(...items: T[]): T[];\n    isArray(arg: any): arg is any[];\n    readonly prototype: any[];\n}\n\ndeclare var Array: ArrayConstructor;\n\ninterface TypedPropertyDescriptor<T> {\n    enumerable?: boolean;\n    configurable?: boolean;\n    writable?: boolean;\n    value?: T;\n    get?: () => T;\n    set?: (value: T) => void;\n}\n\ndeclare type PromiseConstructorLike = new <T>(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;\n\ninterface PromiseLike<T> {\n    /**\n     * Attaches callbacks for the resolution and/or rejection of the Promise.\n     * @param onfulfilled The callback to execute when the Promise is resolved.\n     * @param onrejected The callback to execute when the Promise is rejected.\n     * @returns A Promise for the completion of which ever callback is executed.\n     */\n    then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;\n}\n\n/**\n * Represents the completion of an asynchronous operation\n */\ninterface Promise<T> {\n    /**\n     * Attaches callbacks for the resolution and/or rejection of the Promise.\n     * @param onfulfilled The callback to execute when the Promise is resolved.\n     * @param onrejected The callback to execute when the Promise is rejected.\n     * @returns A Promise for the completion of which ever callback is executed.\n     */\n    then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<TResult1 | TResult2>;\n\n    /**\n     * Attaches a callback for only the rejection of the Promise.\n     * @param onrejected The callback to execute when the Promise is rejected.\n     * @returns A Promise for the completion of the callback.\n     */\n    catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<T | TResult>;\n}\n\n/**\n * Recursively unwraps the \"awaited type\" of a type. Non-promise \"thenables\" should resolve to `never`. This emulates the behavior of `await`.\n */\ntype Awaited<T> = T extends null | undefined ? T : // special case for `null | undefined` when not in `--strictNullChecks` mode\n    T extends object & { then(onfulfilled: infer F, ...args: infer _): any; } ? // `await` only unwraps object types with a callable `then`. Non-object types are not unwrapped\n        F extends ((value: infer V, ...args: infer _) => any) ? // if the argument to `then` is callable, extracts the first argument\n            Awaited<V> : // recursively unwrap the value\n        never : // the argument to `then` was not callable\n    T; // non-object or non-thenable\n\ninterface ArrayLike<T> {\n    readonly length: number;\n    readonly [n: number]: T;\n}\n\n/**\n * Make all properties in T optional\n */\ntype Partial<T> = {\n    [P in keyof T]?: T[P];\n};\n\n/**\n * Make all properties in T required\n */\ntype Required<T> = {\n    [P in keyof T]-?: T[P];\n};\n\n/**\n * Make all properties in T readonly\n */\ntype Readonly<T> = {\n    readonly [P in keyof T]: T[P];\n};\n\n/**\n * From T, pick a set of properties whose keys are in the union K\n */\ntype Pick<T, K extends keyof T> = {\n    [P in K]: T[P];\n};\n\n/**\n * Construct a type with a set of properties K of type T\n */\ntype Record<K extends keyof any, T> = {\n    [P in K]: T;\n};\n\n/**\n * Exclude from T those types that are assignable to U\n */\ntype Exclude<T, U> = T extends U ? never : T;\n\n/**\n * Extract from T those types that are assignable to U\n */\ntype Extract<T, U> = T extends U ? T : never;\n\n/**\n * Construct a type with the properties of T except for those in type K.\n */\ntype Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;\n\n/**\n * Exclude null and undefined from T\n */\ntype NonNullable<T> = T & {};\n\n/**\n * Obtain the parameters of a function type in a tuple\n */\ntype Parameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? P : never;\n\n/**\n * Obtain the parameters of a constructor function type in a tuple\n */\ntype ConstructorParameters<T extends abstract new (...args: any) => any> = T extends abstract new (...args: infer P) => any ? P : never;\n\n/**\n * Obtain the return type of a function type\n */\ntype ReturnType<T extends (...args: any) => any> = T extends (...args: any) => infer R ? R : any;\n\n/**\n * Obtain the return type of a constructor function type\n */\ntype InstanceType<T extends abstract new (...args: any) => any> = T extends abstract new (...args: any) => infer R ? R : any;\n\n/**\n * Convert string literal type to uppercase\n */\ntype Uppercase<S extends string> = intrinsic;\n\n/**\n * Convert string literal type to lowercase\n */\ntype Lowercase<S extends string> = intrinsic;\n\n/**\n * Convert first character of string literal type to uppercase\n */\ntype Capitalize<S extends string> = intrinsic;\n\n/**\n * Convert first character of string literal type to lowercase\n */\ntype Uncapitalize<S extends string> = intrinsic;\n\n/**\n * Marker for non-inference type position\n */\ntype NoInfer<T> = intrinsic;\n\n/**\n * Marker for contextual 'this' type\n */\ninterface ThisType<T> {}\n\n/**\n * Stores types to be used with WeakSet, WeakMap, WeakRef, and FinalizationRegistry\n */\ninterface WeakKeyTypes {\n    object: object;\n}\n\ntype WeakKey = WeakKeyTypes[keyof WeakKeyTypes];\n\n/**\n * Represents a raw buffer of binary data, which is used to store data for the\n * different typed arrays. ArrayBuffers cannot be read from or written to directly,\n * but can be passed to a typed array or DataView Object to interpret the raw\n * buffer as needed.\n */\ninterface ArrayBuffer {\n    /**\n     * Read-only. The length of the ArrayBuffer (in bytes).\n     */\n    readonly byteLength: number;\n\n    /**\n     * Returns a section of an ArrayBuffer.\n     */\n    slice(begin?: number, end?: number): ArrayBuffer;\n}\n\n/**\n * Allowed ArrayBuffer types for the buffer of an ArrayBufferView and related Typed Arrays.\n */\ninterface ArrayBufferTypes {\n    ArrayBuffer: ArrayBuffer;\n}\ntype ArrayBufferLike = ArrayBufferTypes[keyof ArrayBufferTypes];\n\ninterface ArrayBufferConstructor {\n    readonly prototype: ArrayBuffer;\n    new (byteLength: number): ArrayBuffer;\n    isView(arg: any): arg is ArrayBufferView;\n}\ndeclare var ArrayBuffer: ArrayBufferConstructor;\n\ninterface ArrayBufferView<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n}\n\ninterface DataView<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    readonly buffer: TArrayBuffer;\n    readonly byteLength: number;\n    readonly byteOffset: number;\n    /**\n     * Gets the Float32 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getFloat32(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Gets the Float64 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getFloat64(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Gets the Int8 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     */\n    getInt8(byteOffset: number): number;\n\n    /**\n     * Gets the Int16 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getInt16(byteOffset: number, littleEndian?: boolean): number;\n    /**\n     * Gets the Int32 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getInt32(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Gets the Uint8 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     */\n    getUint8(byteOffset: number): number;\n\n    /**\n     * Gets the Uint16 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getUint16(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Gets the Uint32 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getUint32(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Stores an Float32 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setFloat32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n    /**\n     * Stores an Float64 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setFloat64(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n    /**\n     * Stores an Int8 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     */\n    setInt8(byteOffset: number, value: number): void;\n\n    /**\n     * Stores an Int16 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setInt16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n    /**\n     * Stores an Int32 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setInt32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n    /**\n     * Stores an Uint8 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     */\n    setUint8(byteOffset: number, value: number): void;\n\n    /**\n     * Stores an Uint16 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setUint16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n    /**\n     * Stores an Uint32 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setUint32(byteOffset: number, value: number, littleEndian?: boolean): void;\n}\ninterface DataViewConstructor {\n    readonly prototype: DataView<ArrayBufferLike>;\n    new <TArrayBuffer extends ArrayBufferLike & { BYTES_PER_ELEMENT?: never; }>(buffer: TArrayBuffer, byteOffset?: number, byteLength?: number): DataView<TArrayBuffer>;\n}\ndeclare var DataView: DataViewConstructor;\n\n/**\n * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Int8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Int8Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Int8Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Int8Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Int8Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Int8Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Int8ArrayConstructor {\n    readonly prototype: Int8Array<ArrayBufferLike>;\n    new (length: number): Int8Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Int8Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Int8Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Int8Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Int8Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Int8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Int8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int8Array<ArrayBuffer>;\n}\ndeclare var Int8Array: Int8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Uint8Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Uint8ArrayConstructor {\n    readonly prototype: Uint8Array<ArrayBufferLike>;\n    new (length: number): Uint8Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Uint8Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Uint8Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Uint8Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Uint8Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Uint8Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Uint8Array<ArrayBuffer>;\n}\ndeclare var Uint8Array: Uint8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0.\n * If the requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Uint8ClampedArray view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Uint8ClampedArray<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Uint8ClampedArrayConstructor {\n    readonly prototype: Uint8ClampedArray<ArrayBufferLike>;\n    new (length: number): Uint8ClampedArray<ArrayBuffer>;\n    new (array: ArrayLike<number>): Uint8ClampedArray<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Uint8ClampedArray<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Uint8ClampedArray<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Uint8ClampedArray<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Uint8ClampedArray<ArrayBuffer>;\n}\ndeclare var Uint8ClampedArray: Uint8ClampedArrayConstructor;\n\n/**\n * A typed array of 16-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Int16Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Int16Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Int16Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Int16Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Int16Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Int16ArrayConstructor {\n    readonly prototype: Int16Array<ArrayBufferLike>;\n    new (length: number): Int16Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Int16Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Int16Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Int16Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Int16Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Int16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Int16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int16Array<ArrayBuffer>;\n}\ndeclare var Int16Array: Int16ArrayConstructor;\n\n/**\n * A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Uint16Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Uint16Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Uint16ArrayConstructor {\n    readonly prototype: Uint16Array<ArrayBufferLike>;\n    new (length: number): Uint16Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Uint16Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Uint16Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Uint16Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Uint16Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Uint16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Uint16Array<ArrayBuffer>;\n}\ndeclare var Uint16Array: Uint16ArrayConstructor;\n/**\n * A typed array of 32-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Int32Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Int32Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Int32Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Int32Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Int32Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Int32ArrayConstructor {\n    readonly prototype: Int32Array<ArrayBufferLike>;\n    new (length: number): Int32Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Int32Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Int32Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Int32Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Int32Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Int32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Int32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int32Array<ArrayBuffer>;\n}\ndeclare var Int32Array: Int32ArrayConstructor;\n\n/**\n * A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Uint32Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Uint32Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Uint32ArrayConstructor {\n    readonly prototype: Uint32Array<ArrayBufferLike>;\n    new (length: number): Uint32Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Uint32Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Uint32Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Uint32Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Uint32Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Uint32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Uint32Array<ArrayBuffer>;\n}\ndeclare var Uint32Array: Uint32ArrayConstructor;\n\n/**\n * A typed array of 32-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Float32Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Float32Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Float32Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Float32Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Float32Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Float32ArrayConstructor {\n    readonly prototype: Float32Array<ArrayBufferLike>;\n    new (length: number): Float32Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Float32Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Float32Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Float32Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Float32Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Float32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Float32Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float32Array<ArrayBuffer>;\n}\ndeclare var Float32Array: Float32ArrayConstructor;\n\n/**\n * A typed array of 64-bit float values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Float64Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Float64Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Float64Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Float64Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Float64Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(): string;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    [index: number]: number;\n}\ninterface Float64ArrayConstructor {\n    readonly prototype: Float64Array<ArrayBufferLike>;\n    new (length: number): Float64Array<ArrayBuffer>;\n    new (array: ArrayLike<number>): Float64Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Float64Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Float64Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Float64Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Float64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Float64Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float64Array<ArrayBuffer>;\n}\ndeclare var Float64Array: Float64ArrayConstructor;\n\n/////////////////////////////\n/// ECMAScript Internationalization API\n/////////////////////////////\n\ndeclare namespace Intl {\n    interface CollatorOptions {\n        usage?: \"sort\" | \"search\" | undefined;\n        localeMatcher?: \"lookup\" | \"best fit\" | undefined;\n        numeric?: boolean | undefined;\n        caseFirst?: \"upper\" | \"lower\" | \"false\" | undefined;\n        sensitivity?: \"base\" | \"accent\" | \"case\" | \"variant\" | undefined;\n        collation?: \"big5han\" | \"compat\" | \"dict\" | \"direct\" | \"ducet\" | \"emoji\" | \"eor\" | \"gb2312\" | \"phonebk\" | \"phonetic\" | \"pinyin\" | \"reformed\" | \"searchjl\" | \"stroke\" | \"trad\" | \"unihan\" | \"zhuyin\" | undefined;\n        ignorePunctuation?: boolean | undefined;\n    }\n\n    interface ResolvedCollatorOptions {\n        locale: string;\n        usage: string;\n        sensitivity: string;\n        ignorePunctuation: boolean;\n        collation: string;\n        caseFirst: string;\n        numeric: boolean;\n    }\n\n    interface Collator {\n        compare(x: string, y: string): number;\n        resolvedOptions(): ResolvedCollatorOptions;\n    }\n\n    interface CollatorConstructor {\n        new (locales?: string | string[], options?: CollatorOptions): Collator;\n        (locales?: string | string[], options?: CollatorOptions): Collator;\n        supportedLocalesOf(locales: string | string[], options?: CollatorOptions): string[];\n    }\n\n    var Collator: CollatorConstructor;\n\n    interface NumberFormatOptionsStyleRegistry {\n        decimal: never;\n        percent: never;\n        currency: never;\n    }\n\n    type NumberFormatOptionsStyle = keyof NumberFormatOptionsStyleRegistry;\n\n    interface NumberFormatOptionsCurrencyDisplayRegistry {\n        code: never;\n        symbol: never;\n        name: never;\n    }\n\n    type NumberFormatOptionsCurrencyDisplay = keyof NumberFormatOptionsCurrencyDisplayRegistry;\n\n    interface NumberFormatOptionsUseGroupingRegistry {}\n\n    type NumberFormatOptionsUseGrouping = {} extends NumberFormatOptionsUseGroupingRegistry ? boolean : keyof NumberFormatOptionsUseGroupingRegistry | \"true\" | \"false\" | boolean;\n    type ResolvedNumberFormatOptionsUseGrouping = {} extends NumberFormatOptionsUseGroupingRegistry ? boolean : keyof NumberFormatOptionsUseGroupingRegistry | false;\n\n    interface NumberFormatOptions {\n        localeMatcher?: \"lookup\" | \"best fit\" | undefined;\n        style?: NumberFormatOptionsStyle | undefined;\n        currency?: string | undefined;\n        currencyDisplay?: NumberFormatOptionsCurrencyDisplay | undefined;\n        useGrouping?: NumberFormatOptionsUseGrouping | undefined;\n        minimumIntegerDigits?: number | undefined;\n        minimumFractionDigits?: number | undefined;\n        maximumFractionDigits?: number | undefined;\n        minimumSignificantDigits?: number | undefined;\n        maximumSignificantDigits?: number | undefined;\n    }\n\n    interface ResolvedNumberFormatOptions {\n        locale: string;\n        numberingSystem: string;\n        style: NumberFormatOptionsStyle;\n        currency?: string;\n        currencyDisplay?: NumberFormatOptionsCurrencyDisplay;\n        minimumIntegerDigits: number;\n        minimumFractionDigits?: number;\n        maximumFractionDigits?: number;\n        minimumSignificantDigits?: number;\n        maximumSignificantDigits?: number;\n        useGrouping: ResolvedNumberFormatOptionsUseGrouping;\n    }\n\n    interface NumberFormat {\n        format(value: number): string;\n        resolvedOptions(): ResolvedNumberFormatOptions;\n    }\n\n    interface NumberFormatConstructor {\n        new (locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n        (locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n        supportedLocalesOf(locales: string | string[], options?: NumberFormatOptions): string[];\n        readonly prototype: NumberFormat;\n    }\n\n    var NumberFormat: NumberFormatConstructor;\n\n    interface DateTimeFormatOptions {\n        localeMatcher?: \"best fit\" | \"lookup\" | undefined;\n        weekday?: \"long\" | \"short\" | \"narrow\" | undefined;\n        era?: \"long\" | \"short\" | \"narrow\" | undefined;\n        year?: \"numeric\" | \"2-digit\" | undefined;\n        month?: \"numeric\" | \"2-digit\" | \"long\" | \"short\" | \"narrow\" | undefined;\n        day?: \"numeric\" | \"2-digit\" | undefined;\n        hour?: \"numeric\" | \"2-digit\" | undefined;\n        minute?: \"numeric\" | \"2-digit\" | undefined;\n        second?: \"numeric\" | \"2-digit\" | undefined;\n        timeZoneName?: \"short\" | \"long\" | \"shortOffset\" | \"longOffset\" | \"shortGeneric\" | \"longGeneric\" | undefined;\n        formatMatcher?: \"best fit\" | \"basic\" | undefined;\n        hour12?: boolean | undefined;\n        timeZone?: string | undefined;\n    }\n\n    interface ResolvedDateTimeFormatOptions {\n        locale: string;\n        calendar: string;\n        numberingSystem: string;\n        timeZone: string;\n        hour12?: boolean;\n        weekday?: string;\n        era?: string;\n        year?: string;\n        month?: string;\n        day?: string;\n        hour?: string;\n        minute?: string;\n        second?: string;\n        timeZoneName?: string;\n    }\n\n    interface DateTimeFormat {\n        format(date?: Date | number): string;\n        resolvedOptions(): ResolvedDateTimeFormatOptions;\n    }\n\n    interface DateTimeFormatConstructor {\n        new (locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n        (locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n        supportedLocalesOf(locales: string | string[], options?: DateTimeFormatOptions): string[];\n        readonly prototype: DateTimeFormat;\n    }\n\n    var DateTimeFormat: DateTimeFormatConstructor;\n}\n\ninterface String {\n    /**\n     * Determines whether two strings are equivalent in the current or specified locale.\n     * @param that String to compare to target string\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n     * @param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n     */\n    localeCompare(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;\n}\n\ninterface Number {\n    /**\n     * Converts a number to a string by using the current or specified locale.\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Date {\n    /**\n     * Converts a date and time to a string by using the current or specified locale.\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n    /**\n     * Converts a date to a string by using the current or specified locale.\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleDateString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n\n    /**\n     * Converts a time to a string by using the current or specified locale.\n     * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n     * @param options An object that contains one or more properties that specify comparison options.\n     */\n    toLocaleTimeString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n}\n",
    "node_modules/typescript/lib/lib.es6.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n",
    "node_modules/typescript/lib/lib.esnext.array.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ArrayConstructor {\n    /**\n     * Creates an array from an async iterator or iterable object.\n     * @param iterableOrArrayLike An async iterator or array-like object to convert to an array.\n     */\n    fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;\n\n    /**\n     * Creates an array from an async iterator or iterable object.\n     *\n     * @param iterableOrArrayLike An async iterator or array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of itarableOrArrayLike.\n     *      Each return value is awaited before being added to result array.\n     * @param thisArg Value of 'this' used when executing mapfn.\n     */\n    fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;\n}\n",
    "node_modules/typescript/lib/lib.esnext.collection.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2024.collection\" />\n\ninterface ReadonlySetLike<T> {\n    /**\n     * Despite its name, returns an iterator of the values in the set-like.\n     */\n    keys(): Iterator<T>;\n    /**\n     * @returns a boolean indicating whether an element with the specified value exists in the set-like or not.\n     */\n    has(value: T): boolean;\n    /**\n     * @returns the number of (unique) elements in the set-like.\n     */\n    readonly size: number;\n}\n\ninterface Set<T> {\n    /**\n     * @returns a new Set containing all the elements in this Set and also all the elements in the argument.\n     */\n    union<U>(other: ReadonlySetLike<U>): Set<T | U>;\n    /**\n     * @returns a new Set containing all the elements which are both in this Set and in the argument.\n     */\n    intersection<U>(other: ReadonlySetLike<U>): Set<T & U>;\n    /**\n     * @returns a new Set containing all the elements in this Set which are not also in the argument.\n     */\n    difference<U>(other: ReadonlySetLike<U>): Set<T>;\n    /**\n     * @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.\n     */\n    symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;\n    /**\n     * @returns a boolean indicating whether all the elements in this Set are also in the argument.\n     */\n    isSubsetOf(other: ReadonlySetLike<unknown>): boolean;\n    /**\n     * @returns a boolean indicating whether all the elements in the argument are also in this Set.\n     */\n    isSupersetOf(other: ReadonlySetLike<unknown>): boolean;\n    /**\n     * @returns a boolean indicating whether this Set has no elements in common with the argument.\n     */\n    isDisjointFrom(other: ReadonlySetLike<unknown>): boolean;\n}\n\ninterface ReadonlySet<T> {\n    /**\n     * @returns a new Set containing all the elements in this Set and also all the elements in the argument.\n     */\n    union<U>(other: ReadonlySetLike<U>): Set<T | U>;\n    /**\n     * @returns a new Set containing all the elements which are both in this Set and in the argument.\n     */\n    intersection<U>(other: ReadonlySetLike<U>): Set<T & U>;\n    /**\n     * @returns a new Set containing all the elements in this Set which are not also in the argument.\n     */\n    difference<U>(other: ReadonlySetLike<U>): Set<T>;\n    /**\n     * @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.\n     */\n    symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;\n    /**\n     * @returns a boolean indicating whether all the elements in this Set are also in the argument.\n     */\n    isSubsetOf(other: ReadonlySetLike<unknown>): boolean;\n    /**\n     * @returns a boolean indicating whether all the elements in the argument are also in this Set.\n     */\n    isSupersetOf(other: ReadonlySetLike<unknown>): boolean;\n    /**\n     * @returns a boolean indicating whether this Set has no elements in common with the argument.\n     */\n    isDisjointFrom(other: ReadonlySetLike<unknown>): boolean;\n}\n",
    "node_modules/typescript/lib/lib.esnext.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2024\" />\n/// <reference lib=\"esnext.intl\" />\n/// <reference lib=\"esnext.decorators\" />\n/// <reference lib=\"esnext.disposable\" />\n/// <reference lib=\"esnext.collection\" />\n/// <reference lib=\"esnext.array\" />\n/// <reference lib=\"esnext.iterator\" />\n/// <reference lib=\"esnext.promise\" />\n/// <reference lib=\"esnext.float16\" />\n/// <reference lib=\"esnext.error\" />\n/// <reference lib=\"esnext.sharedmemory\" />\n",
    "node_modules/typescript/lib/lib.esnext.decorators.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"decorators\" />\n\ninterface SymbolConstructor {\n    readonly metadata: unique symbol;\n}\n\ninterface Function {\n    [Symbol.metadata]: DecoratorMetadata | null;\n}\n",
    "node_modules/typescript/lib/lib.esnext.disposable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"es2015.iterable\" />\n/// <reference lib=\"es2018.asynciterable\" />\n\ninterface SymbolConstructor {\n    /**\n     * A method that is used to release resources held by an object. Called by the semantics of the `using` statement.\n     */\n    readonly dispose: unique symbol;\n\n    /**\n     * A method that is used to asynchronously release resources held by an object. Called by the semantics of the `await using` statement.\n     */\n    readonly asyncDispose: unique symbol;\n}\n\ninterface Disposable {\n    [Symbol.dispose](): void;\n}\n\ninterface AsyncDisposable {\n    [Symbol.asyncDispose](): PromiseLike<void>;\n}\n\ninterface SuppressedError extends Error {\n    error: any;\n    suppressed: any;\n}\n\ninterface SuppressedErrorConstructor {\n    new (error: any, suppressed: any, message?: string): SuppressedError;\n    (error: any, suppressed: any, message?: string): SuppressedError;\n    readonly prototype: SuppressedError;\n}\ndeclare var SuppressedError: SuppressedErrorConstructor;\n\ninterface DisposableStack {\n    /**\n     * Returns a value indicating whether this stack has been disposed.\n     */\n    readonly disposed: boolean;\n    /**\n     * Disposes each resource in the stack in the reverse order that they were added.\n     */\n    dispose(): void;\n    /**\n     * Adds a disposable resource to the stack, returning the resource.\n     * @param value The resource to add. `null` and `undefined` will not be added, but will be returned.\n     * @returns The provided {@link value}.\n     */\n    use<T extends Disposable | null | undefined>(value: T): T;\n    /**\n     * Adds a value and associated disposal callback as a resource to the stack.\n     * @param value The value to add.\n     * @param onDispose The callback to use in place of a `[Symbol.dispose]()` method. Will be invoked with `value`\n     * as the first parameter.\n     * @returns The provided {@link value}.\n     */\n    adopt<T>(value: T, onDispose: (value: T) => void): T;\n    /**\n     * Adds a callback to be invoked when the stack is disposed.\n     */\n    defer(onDispose: () => void): void;\n    /**\n     * Move all resources out of this stack and into a new `DisposableStack`, and marks this stack as disposed.\n     * @example\n     * ```ts\n     * class C {\n     *   #res1: Disposable;\n     *   #res2: Disposable;\n     *   #disposables: DisposableStack;\n     *   constructor() {\n     *     // stack will be disposed when exiting constructor for any reason\n     *     using stack = new DisposableStack();\n     *\n     *     // get first resource\n     *     this.#res1 = stack.use(getResource1());\n     *\n     *     // get second resource. If this fails, both `stack` and `#res1` will be disposed.\n     *     this.#res2 = stack.use(getResource2());\n     *\n     *     // all operations succeeded, move resources out of `stack` so that they aren't disposed\n     *     // when constructor exits\n     *     this.#disposables = stack.move();\n     *   }\n     *\n     *   [Symbol.dispose]() {\n     *     this.#disposables.dispose();\n     *   }\n     * }\n     * ```\n     */\n    move(): DisposableStack;\n    [Symbol.dispose](): void;\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface DisposableStackConstructor {\n    new (): DisposableStack;\n    readonly prototype: DisposableStack;\n}\ndeclare var DisposableStack: DisposableStackConstructor;\n\ninterface AsyncDisposableStack {\n    /**\n     * Returns a value indicating whether this stack has been disposed.\n     */\n    readonly disposed: boolean;\n    /**\n     * Disposes each resource in the stack in the reverse order that they were added.\n     */\n    disposeAsync(): Promise<void>;\n    /**\n     * Adds a disposable resource to the stack, returning the resource.\n     * @param value The resource to add. `null` and `undefined` will not be added, but will be returned.\n     * @returns The provided {@link value}.\n     */\n    use<T extends AsyncDisposable | Disposable | null | undefined>(value: T): T;\n    /**\n     * Adds a value and associated disposal callback as a resource to the stack.\n     * @param value The value to add.\n     * @param onDisposeAsync The callback to use in place of a `[Symbol.asyncDispose]()` method. Will be invoked with `value`\n     * as the first parameter.\n     * @returns The provided {@link value}.\n     */\n    adopt<T>(value: T, onDisposeAsync: (value: T) => PromiseLike<void> | void): T;\n    /**\n     * Adds a callback to be invoked when the stack is disposed.\n     */\n    defer(onDisposeAsync: () => PromiseLike<void> | void): void;\n    /**\n     * Move all resources out of this stack and into a new `DisposableStack`, and marks this stack as disposed.\n     * @example\n     * ```ts\n     * class C {\n     *   #res1: Disposable;\n     *   #res2: Disposable;\n     *   #disposables: DisposableStack;\n     *   constructor() {\n     *     // stack will be disposed when exiting constructor for any reason\n     *     using stack = new DisposableStack();\n     *\n     *     // get first resource\n     *     this.#res1 = stack.use(getResource1());\n     *\n     *     // get second resource. If this fails, both `stack` and `#res1` will be disposed.\n     *     this.#res2 = stack.use(getResource2());\n     *\n     *     // all operations succeeded, move resources out of `stack` so that they aren't disposed\n     *     // when constructor exits\n     *     this.#disposables = stack.move();\n     *   }\n     *\n     *   [Symbol.dispose]() {\n     *     this.#disposables.dispose();\n     *   }\n     * }\n     * ```\n     */\n    move(): AsyncDisposableStack;\n    [Symbol.asyncDispose](): Promise<void>;\n    readonly [Symbol.toStringTag]: string;\n}\n\ninterface AsyncDisposableStackConstructor {\n    new (): AsyncDisposableStack;\n    readonly prototype: AsyncDisposableStack;\n}\ndeclare var AsyncDisposableStack: AsyncDisposableStackConstructor;\n\ninterface IteratorObject<T, TReturn, TNext> extends Disposable {\n}\n\ninterface AsyncIteratorObject<T, TReturn, TNext> extends AsyncDisposable {\n}\n",
    "node_modules/typescript/lib/lib.esnext.error.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface ErrorConstructor {\n    /**\n     * Indicates whether the argument provided is a built-in Error instance or not.\n     */\n    isError(error: unknown): error is Error;\n}\n",
    "node_modules/typescript/lib/lib.esnext.float16.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.symbol\" />\n/// <reference lib=\"es2015.iterable\" />\n\n/**\n * A typed array of 16-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * The ArrayBuffer instance referenced by the array.\n     */\n    readonly buffer: TArrayBuffer;\n\n    /**\n     * The length in bytes of the array.\n     */\n    readonly byteLength: number;\n\n    /**\n     * The offset in bytes of the array.\n     */\n    readonly byteOffset: number;\n\n    /**\n     * Returns the item located at the specified index.\n     * @param index The zero-based index of the desired code unit. A negative index will count back from the last item.\n     */\n    at(index: number): number | undefined;\n\n    /**\n     * Returns the this object after copying a section of the array identified by start and end\n     * to the same array starting at position target\n     * @param target If target is negative, it is treated as length+target where length is the\n     * length of the array.\n     * @param start If start is negative, it is treated as length+start. If end is negative, it\n     * is treated as length+end.\n     * @param end If not specified, length of the this object is used as its default value.\n     */\n    copyWithin(target: number, start: number, end?: number): this;\n\n    /**\n     * Determines whether all the members of an array satisfy the specified test.\n     * @param predicate A function that accepts up to three arguments. The every method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value false, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    every(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array\n     * @param value value to fill array section with\n     * @param start index to start filling the array at. If start is negative, it is treated as\n     * length+start where length is the length of the array.\n     * @param end index to stop filling the array at. If end is negative, it is treated as\n     * length+end.\n     */\n    fill(value: number, start?: number, end?: number): this;\n\n    /**\n     * Returns the elements of an array that meet the condition specified in a callback function.\n     * @param predicate A function that accepts up to three arguments. The filter method calls\n     * the predicate function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    filter(predicate: (value: number, index: number, array: this) => any, thisArg?: any): Float16Array<ArrayBuffer>;\n\n    /**\n     * Returns the value of the first element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found, find\n     * immediately returns that element value. Otherwise, find returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    find(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number | undefined;\n\n    /**\n     * Returns the index of the first element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate find calls predicate once for each element of the array, in ascending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findIndex(predicate: (value: number, index: number, obj: this) => boolean, thisArg?: any): number;\n\n    /**\n     * Returns the value of the last element in the array where predicate is true, and undefined\n     * otherwise.\n     * @param predicate findLast calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found, findLast\n     * immediately returns that element value. Otherwise, findLast returns undefined.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLast<S extends number>(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => value is S,\n        thisArg?: any,\n    ): S | undefined;\n    findLast(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number | undefined;\n\n    /**\n     * Returns the index of the last element in the array where predicate is true, and -1\n     * otherwise.\n     * @param predicate findLastIndex calls predicate once for each element of the array, in descending\n     * order, until it finds one where predicate returns true. If such an element is found,\n     * findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.\n     * @param thisArg If provided, it will be used as the this value for each invocation of\n     * predicate. If it is not provided, undefined is used instead.\n     */\n    findLastIndex(\n        predicate: (\n            value: number,\n            index: number,\n            array: this,\n        ) => unknown,\n        thisArg?: any,\n    ): number;\n\n    /**\n     * Performs the specified action for each element in an array.\n     * @param callbackfn A function that accepts up to three arguments. forEach calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    forEach(callbackfn: (value: number, index: number, array: this) => void, thisArg?: any): void;\n\n    /**\n     * Determines whether an array includes a certain element, returning true or false as appropriate.\n     * @param searchElement The element to search for.\n     * @param fromIndex The position in this array at which to begin searching for searchElement.\n     */\n    includes(searchElement: number, fromIndex?: number): boolean;\n\n    /**\n     * Returns the index of the first occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    indexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * Adds all the elements of an array separated by the specified separator string.\n     * @param separator A string used to separate one element of an array from the next in the\n     * resulting String. If omitted, the array elements are separated with a comma.\n     */\n    join(separator?: string): string;\n\n    /**\n     * Returns the index of the last occurrence of a value in an array.\n     * @param searchElement The value to locate in the array.\n     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n     * search starts at index 0.\n     */\n    lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n    /**\n     * The length of the array.\n     */\n    readonly length: number;\n\n    /**\n     * Calls a defined callback function on each element of an array, and returns an array that\n     * contains the results.\n     * @param callbackfn A function that accepts up to three arguments. The map method calls the\n     * callbackfn function one time for each element in the array.\n     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    map(callbackfn: (value: number, index: number, array: this) => number, thisArg?: any): Float16Array<ArrayBuffer>;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array. The return value of\n     * the callback function is the accumulated result, and is provided as an argument in the next\n     * call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n     * callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an\n     * argument instead of an array value.\n     */\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;\n    reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number, initialValue: number): number;\n\n    /**\n     * Calls the specified callback function for all the elements in an array, in descending order.\n     * The return value of the callback function is the accumulated result, and is provided as an\n     * argument in the next call to the callback function.\n     * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n     * the callbackfn function one time for each element in the array.\n     * @param initialValue If initialValue is specified, it is used as the initial value to start\n     * the accumulation. The first call to the callbackfn function provides this value as an argument\n     * instead of an array value.\n     */\n    reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U, initialValue: U): U;\n\n    /**\n     * Reverses the elements in an Array.\n     */\n    reverse(): this;\n\n    /**\n     * Sets a value or an array of values.\n     * @param array A typed or untyped array of values to set.\n     * @param offset The index in the current array at which the values are to be written.\n     */\n    set(array: ArrayLike<number>, offset?: number): void;\n\n    /**\n     * Returns a section of an array.\n     * @param start The beginning of the specified portion of the array.\n     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\n     */\n    slice(start?: number, end?: number): Float16Array<ArrayBuffer>;\n\n    /**\n     * Determines whether the specified callback function returns true for any element of an array.\n     * @param predicate A function that accepts up to three arguments. The some method calls\n     * the predicate function for each element in the array until the predicate returns a value\n     * which is coercible to the Boolean value true, or until the end of the array.\n     * @param thisArg An object to which the this keyword can refer in the predicate function.\n     * If thisArg is omitted, undefined is used as the this value.\n     */\n    some(predicate: (value: number, index: number, array: this) => unknown, thisArg?: any): boolean;\n\n    /**\n     * Sorts an array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if first argument is less than second argument, zero if they're equal and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * [11,2,22,1].sort((a, b) => a - b)\n     * ```\n     */\n    sort(compareFn?: (a: number, b: number) => number): this;\n\n    /**\n     * Gets a new Float16Array view of the ArrayBuffer store for this array, referencing the elements\n     * at begin, inclusive, up to end, exclusive.\n     * @param begin The index of the beginning of the array.\n     * @param end The index of the end of the array.\n     */\n    subarray(begin?: number, end?: number): Float16Array<TArrayBuffer>;\n\n    /**\n     * Converts a number to a string by using the current locale.\n     */\n    toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n\n    /**\n     * Copies the array and returns the copy with the elements in reverse order.\n     */\n    toReversed(): Float16Array<ArrayBuffer>;\n\n    /**\n     * Copies and sorts the array.\n     * @param compareFn Function used to determine the order of the elements. It is expected to return\n     * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive\n     * value otherwise. If omitted, the elements are sorted in ascending order.\n     * ```ts\n     * const myNums = Float16Array.from([11.25, 2, -22.5, 1]);\n     * myNums.toSorted((a, b) => a - b) // Float16Array(4) [-22.5, 1, 2, 11.5]\n     * ```\n     */\n    toSorted(compareFn?: (a: number, b: number) => number): Float16Array<ArrayBuffer>;\n\n    /**\n     * Returns a string representation of an array.\n     */\n    toString(): string;\n\n    /** Returns the primitive value of the specified object. */\n    valueOf(): this;\n\n    /**\n     * Copies the array and inserts the given number at the provided index.\n     * @param index The index of the value to overwrite. If the index is\n     * negative, then it replaces from the end of the array.\n     * @param value The value to insert into the copied array.\n     * @returns A copy of the original array with the inserted value.\n     */\n    with(index: number, value: number): Float16Array<ArrayBuffer>;\n\n    [index: number]: number;\n\n    [Symbol.iterator](): ArrayIterator<number>;\n\n    /**\n     * Returns an array of key, value pairs for every entry in the array\n     */\n    entries(): ArrayIterator<[number, number]>;\n\n    /**\n     * Returns an list of keys in the array\n     */\n    keys(): ArrayIterator<number>;\n\n    /**\n     * Returns an list of values in the array\n     */\n    values(): ArrayIterator<number>;\n\n    readonly [Symbol.toStringTag]: \"Float16Array\";\n}\n\ninterface Float16ArrayConstructor {\n    readonly prototype: Float16Array<ArrayBufferLike>;\n    new (length?: number): Float16Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | Iterable<number>): Float16Array<ArrayBuffer>;\n    new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): Float16Array<TArrayBuffer>;\n    new (buffer: ArrayBuffer, byteOffset?: number, length?: number): Float16Array<ArrayBuffer>;\n    new (array: ArrayLike<number> | ArrayBuffer): Float16Array<ArrayBuffer>;\n\n    /**\n     * The size in bytes of each element in the array.\n     */\n    readonly BYTES_PER_ELEMENT: number;\n\n    /**\n     * Returns a new array from a set of elements.\n     * @param items A set of elements to include in the new array object.\n     */\n    of(...items: number[]): Float16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     */\n    from(arrayLike: ArrayLike<number>): Float16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param arrayLike An array-like object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     */\n    from(elements: Iterable<number>): Float16Array<ArrayBuffer>;\n\n    /**\n     * Creates an array from an array-like or iterable object.\n     * @param elements An iterable object to convert to an array.\n     * @param mapfn A mapping function to call on every element of the array.\n     * @param thisArg Value of 'this' used to invoke the mapfn.\n     */\n    from<T>(elements: Iterable<T>, mapfn?: (v: T, k: number) => number, thisArg?: any): Float16Array<ArrayBuffer>;\n}\ndeclare var Float16Array: Float16ArrayConstructor;\n\ninterface Math {\n    /**\n     * Returns the nearest half precision float representation of a number.\n     * @param x A numeric expression.\n     */\n    f16round(x: number): number;\n}\n\ninterface DataView<TArrayBuffer extends ArrayBufferLike> {\n    /**\n     * Gets the Float16 value at the specified byte offset from the start of the view. There is\n     * no alignment constraint; multi-byte values may be fetched from any offset.\n     * @param byteOffset The place in the buffer at which the value should be retrieved.\n     * @param littleEndian If false or undefined, a big-endian value should be read.\n     */\n    getFloat16(byteOffset: number, littleEndian?: boolean): number;\n\n    /**\n     * Stores an Float16 value at the specified byte offset from the start of the view.\n     * @param byteOffset The place in the buffer at which the value should be set.\n     * @param value The value to set.\n     * @param littleEndian If false or undefined, a big-endian value should be written.\n     */\n    setFloat16(byteOffset: number, value: number, littleEndian?: boolean): void;\n}\n",
    "node_modules/typescript/lib/lib.esnext.full.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"esnext\" />\n/// <reference lib=\"dom\" />\n/// <reference lib=\"webworker.importscripts\" />\n/// <reference lib=\"scripthost\" />\n/// <reference lib=\"dom.iterable\" />\n/// <reference lib=\"dom.asynciterable\" />\n",
    "node_modules/typescript/lib/lib.esnext.intl.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ndeclare namespace Intl {\n    // Empty\n}\n",
    "node_modules/typescript/lib/lib.esnext.iterator.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/// <reference lib=\"es2015.iterable\" />\n\n// NOTE: This is specified as what is essentially an unreachable module. All actual global declarations can be found\n//       in the `declare global` section, below. This is necessary as there is currently no way to declare an `abstract`\n//       member without declaring a `class`, but declaring `class Iterator<T>` globally would conflict with TypeScript's\n//       general purpose `Iterator<T>` interface.\nexport {};\n\n// Abstract type that allows us to mark `next` as `abstract`\ndeclare abstract class Iterator<T, TResult = undefined, TNext = unknown> { // eslint-disable-line @typescript-eslint/no-unsafe-declaration-merging\n    abstract next(value?: TNext): IteratorResult<T, TResult>;\n}\n\n// Merge all members of `IteratorObject<T>` into `Iterator<T>`\ninterface Iterator<T, TResult, TNext> extends globalThis.IteratorObject<T, TResult, TNext> {}\n\n// Capture the `Iterator` constructor in a type we can use in the `extends` clause of `IteratorConstructor`.\ntype IteratorObjectConstructor = typeof Iterator;\n\ndeclare global {\n    // Global `IteratorObject<T, TReturn, TNext>` interface that can be augmented by polyfills\n    interface IteratorObject<T, TReturn, TNext> {\n        /**\n         * Returns this iterator.\n         */\n        [Symbol.iterator](): IteratorObject<T, TReturn, TNext>;\n\n        /**\n         * Creates an iterator whose values are the result of applying the callback to the values from this iterator.\n         * @param callbackfn A function that accepts up to two arguments to be used to transform values from the underlying iterator.\n         */\n        map<U>(callbackfn: (value: T, index: number) => U): IteratorObject<U, undefined, unknown>;\n\n        /**\n         * Creates an iterator whose values are those from this iterator for which the provided predicate returns true.\n         * @param predicate A function that accepts up to two arguments to be used to test values from the underlying iterator.\n         */\n        filter<S extends T>(predicate: (value: T, index: number) => value is S): IteratorObject<S, undefined, unknown>;\n\n        /**\n         * Creates an iterator whose values are those from this iterator for which the provided predicate returns true.\n         * @param predicate A function that accepts up to two arguments to be used to test values from the underlying iterator.\n         */\n        filter(predicate: (value: T, index: number) => unknown): IteratorObject<T, undefined, unknown>;\n\n        /**\n         * Creates an iterator whose values are the values from this iterator, stopping once the provided limit is reached.\n         * @param limit The maximum number of values to yield.\n         */\n        take(limit: number): IteratorObject<T, undefined, unknown>;\n\n        /**\n         * Creates an iterator whose values are the values from this iterator after skipping the provided count.\n         * @param count The number of values to drop.\n         */\n        drop(count: number): IteratorObject<T, undefined, unknown>;\n\n        /**\n         * Creates an iterator whose values are the result of applying the callback to the values from this iterator and then flattening the resulting iterators or iterables.\n         * @param callback A function that accepts up to two arguments to be used to transform values from the underlying iterator into new iterators or iterables to be flattened into the result.\n         */\n        flatMap<U>(callback: (value: T, index: number) => Iterator<U, unknown, undefined> | Iterable<U, unknown, undefined>): IteratorObject<U, undefined, unknown>;\n\n        /**\n         * Calls the specified callback function for all the elements in this iterator. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n         * @param callbackfn A function that accepts up to three arguments. The reduce method calls the callbackfn function one time for each element in the iterator.\n         * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of a value from the iterator.\n         */\n        reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T): T;\n        reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T, initialValue: T): T;\n\n        /**\n         * Calls the specified callback function for all the elements in this iterator. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n         * @param callbackfn A function that accepts up to three arguments. The reduce method calls the callbackfn function one time for each element in the iterator.\n         * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of a value from the iterator.\n         */\n        reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number) => U, initialValue: U): U;\n\n        /**\n         * Creates a new array from the values yielded by this iterator.\n         */\n        toArray(): T[];\n\n        /**\n         * Performs the specified action for each element in the iterator.\n         * @param callbackfn A function that accepts up to two arguments. forEach calls the callbackfn function one time for each element in the iterator.\n         */\n        forEach(callbackfn: (value: T, index: number) => void): void;\n\n        /**\n         * Determines whether the specified callback function returns true for any element of this iterator.\n         * @param predicate A function that accepts up to two arguments. The some method calls\n         * the predicate function for each element in this iterator until the predicate returns a value\n         * true, or until the end of the iterator.\n         */\n        some(predicate: (value: T, index: number) => unknown): boolean;\n\n        /**\n         * Determines whether all the members of this iterator satisfy the specified test.\n         * @param predicate A function that accepts up to two arguments. The every method calls\n         * the predicate function for each element in this iterator until the predicate returns\n         * false, or until the end of this iterator.\n         */\n        every(predicate: (value: T, index: number) => unknown): boolean;\n\n        /**\n         * Returns the value of the first element in this iterator where predicate is true, and undefined\n         * otherwise.\n         * @param predicate find calls predicate once for each element of this iterator, in\n         * order, until it finds one where predicate returns true. If such an element is found, find\n         * immediately returns that element value. Otherwise, find returns undefined.\n         */\n        find<S extends T>(predicate: (value: T, index: number) => value is S): S | undefined;\n        find(predicate: (value: T, index: number) => unknown): T | undefined;\n\n        readonly [Symbol.toStringTag]: string;\n    }\n\n    // Global `IteratorConstructor` interface that can be augmented by polyfills\n    interface IteratorConstructor extends IteratorObjectConstructor {\n        /**\n         * Creates a native iterator from an iterator or iterable object.\n         * Returns its input if the input already inherits from the built-in Iterator class.\n         * @param value An iterator or iterable object to convert a native iterator.\n         */\n        from<T>(value: Iterator<T, unknown, undefined> | Iterable<T, unknown, undefined>): IteratorObject<T, undefined, unknown>;\n    }\n\n    var Iterator: IteratorConstructor;\n}\n",
    "node_modules/typescript/lib/lib.esnext.promise.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface PromiseConstructor {\n    /**\n     * Takes a callback of any kind (returns or throws, synchronously or asynchronously) and wraps its result\n     * in a Promise.\n     *\n     * @param callbackFn A function that is called synchronously. It can do anything: either return\n     * a value, throw an error, or return a promise.\n     * @param args Additional arguments, that will be passed to the callback.\n     *\n     * @returns A Promise that is:\n     * - Already fulfilled, if the callback synchronously returns a value.\n     * - Already rejected, if the callback synchronously throws an error.\n     * - Asynchronously fulfilled or rejected, if the callback returns a promise.\n     */\n    try<T, U extends unknown[]>(callbackFn: (...args: U) => T | PromiseLike<T>, ...args: U): Promise<Awaited<T>>;\n}\n",
    "node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\ninterface Atomics {\n    /**\n     * Performs a finite-time microwait by signaling to the operating system or\n     * CPU that the current executing code is in a spin-wait loop.\n     */\n    pause(n?: number): void;\n}\n",
    "node_modules/typescript/lib/lib.scripthost.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Windows Script Host APIS\n/////////////////////////////\n\ninterface ActiveXObject {\n    new (s: string): any;\n}\ndeclare var ActiveXObject: ActiveXObject;\n\ninterface ITextWriter {\n    Write(s: string): void;\n    WriteLine(s: string): void;\n    Close(): void;\n}\n\ninterface TextStreamBase {\n    /**\n     * The column number of the current character position in an input stream.\n     */\n    Column: number;\n\n    /**\n     * The current line number in an input stream.\n     */\n    Line: number;\n\n    /**\n     * Closes a text stream.\n     * It is not necessary to close standard streams; they close automatically when the process ends. If\n     * you close a standard stream, be aware that any other pointers to that standard stream become invalid.\n     */\n    Close(): void;\n}\n\ninterface TextStreamWriter extends TextStreamBase {\n    /**\n     * Sends a string to an output stream.\n     */\n    Write(s: string): void;\n\n    /**\n     * Sends a specified number of blank lines (newline characters) to an output stream.\n     */\n    WriteBlankLines(intLines: number): void;\n\n    /**\n     * Sends a string followed by a newline character to an output stream.\n     */\n    WriteLine(s: string): void;\n}\n\ninterface TextStreamReader extends TextStreamBase {\n    /**\n     * Returns a specified number of characters from an input stream, starting at the current pointer position.\n     * Does not return until the ENTER key is pressed.\n     * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n     */\n    Read(characters: number): string;\n\n    /**\n     * Returns all characters from an input stream.\n     * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n     */\n    ReadAll(): string;\n\n    /**\n     * Returns an entire line from an input stream.\n     * Although this method extracts the newline character, it does not add it to the returned string.\n     * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n     */\n    ReadLine(): string;\n\n    /**\n     * Skips a specified number of characters when reading from an input text stream.\n     * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n     * @param characters Positive number of characters to skip forward. (Backward skipping is not supported.)\n     */\n    Skip(characters: number): void;\n\n    /**\n     * Skips the next line when reading from an input text stream.\n     * Can only be used on a stream in reading mode, not writing or appending mode.\n     */\n    SkipLine(): void;\n\n    /**\n     * Indicates whether the stream pointer position is at the end of a line.\n     */\n    AtEndOfLine: boolean;\n\n    /**\n     * Indicates whether the stream pointer position is at the end of a stream.\n     */\n    AtEndOfStream: boolean;\n}\n\ndeclare var WScript: {\n    /**\n     * Outputs text to either a message box (under WScript.exe) or the command console window followed by\n     * a newline (under CScript.exe).\n     */\n    Echo(s: any): void;\n\n    /**\n     * Exposes the write-only error output stream for the current script.\n     * Can be accessed only while using CScript.exe.\n     */\n    StdErr: TextStreamWriter;\n\n    /**\n     * Exposes the write-only output stream for the current script.\n     * Can be accessed only while using CScript.exe.\n     */\n    StdOut: TextStreamWriter;\n    Arguments: { length: number; Item(n: number): string; };\n\n    /**\n     *  The full path of the currently running script.\n     */\n    ScriptFullName: string;\n\n    /**\n     * Forces the script to stop immediately, with an optional exit code.\n     */\n    Quit(exitCode?: number): number;\n\n    /**\n     * The Windows Script Host build version number.\n     */\n    BuildVersion: number;\n\n    /**\n     * Fully qualified path of the host executable.\n     */\n    FullName: string;\n\n    /**\n     * Gets/sets the script mode - interactive(true) or batch(false).\n     */\n    Interactive: boolean;\n\n    /**\n     * The name of the host executable (WScript.exe or CScript.exe).\n     */\n    Name: string;\n\n    /**\n     * Path of the directory containing the host executable.\n     */\n    Path: string;\n\n    /**\n     * The filename of the currently running script.\n     */\n    ScriptName: string;\n\n    /**\n     * Exposes the read-only input stream for the current script.\n     * Can be accessed only while using CScript.exe.\n     */\n    StdIn: TextStreamReader;\n\n    /**\n     * Windows Script Host version\n     */\n    Version: string;\n\n    /**\n     * Connects a COM object's event sources to functions named with a given prefix, in the form prefix_event.\n     */\n    ConnectObject(objEventSource: any, strPrefix: string): void;\n\n    /**\n     * Creates a COM object.\n     * @param strProgiID\n     * @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.\n     */\n    CreateObject(strProgID: string, strPrefix?: string): any;\n\n    /**\n     * Disconnects a COM object from its event sources.\n     */\n    DisconnectObject(obj: any): void;\n\n    /**\n     * Retrieves an existing object with the specified ProgID from memory, or creates a new one from a file.\n     * @param strPathname Fully qualified path to the file containing the object persisted to disk.\n     *                       For objects in memory, pass a zero-length string.\n     * @param strProgID\n     * @param strPrefix Function names in the form prefix_event will be bound to this object's COM events.\n     */\n    GetObject(strPathname: string, strProgID?: string, strPrefix?: string): any;\n\n    /**\n     * Suspends script execution for a specified length of time, then continues execution.\n     * @param intTime Interval (in milliseconds) to suspend script execution.\n     */\n    Sleep(intTime: number): void;\n};\n\n/**\n * WSH is an alias for WScript under Windows Script Host\n */\ndeclare var WSH: typeof WScript;\n\n/**\n * Represents an Automation SAFEARRAY\n */\ndeclare class SafeArray<T = any> {\n    private constructor();\n    private SafeArray_typekey: SafeArray<T>;\n}\n\n/**\n * Allows enumerating over a COM collection, which may not have indexed item access.\n */\ninterface Enumerator<T = any> {\n    /**\n     * Returns true if the current item is the last one in the collection, or the collection is empty,\n     * or the current item is undefined.\n     */\n    atEnd(): boolean;\n\n    /**\n     * Returns the current item in the collection\n     */\n    item(): T;\n\n    /**\n     * Resets the current item in the collection to the first item. If there are no items in the collection,\n     * the current item is set to undefined.\n     */\n    moveFirst(): void;\n\n    /**\n     * Moves the current item to the next item in the collection. If the enumerator is at the end of\n     * the collection or the collection is empty, the current item is set to undefined.\n     */\n    moveNext(): void;\n}\n\ninterface EnumeratorConstructor {\n    new <T = any>(safearray: SafeArray<T>): Enumerator<T>;\n    new <T = any>(collection: { Item(index: any): T; }): Enumerator<T>;\n    new <T = any>(collection: any): Enumerator<T>;\n}\n\ndeclare var Enumerator: EnumeratorConstructor;\n\n/**\n * Enables reading from a COM safe array, which might have an alternate lower bound, or multiple dimensions.\n */\ninterface VBArray<T = any> {\n    /**\n     * Returns the number of dimensions (1-based).\n     */\n    dimensions(): number;\n\n    /**\n     * Takes an index for each dimension in the array, and returns the item at the corresponding location.\n     */\n    getItem(dimension1Index: number, ...dimensionNIndexes: number[]): T;\n\n    /**\n     * Returns the smallest available index for a given dimension.\n     * @param dimension 1-based dimension (defaults to 1)\n     */\n    lbound(dimension?: number): number;\n\n    /**\n     * Returns the largest available index for a given dimension.\n     * @param dimension 1-based dimension (defaults to 1)\n     */\n    ubound(dimension?: number): number;\n\n    /**\n     * Returns a Javascript array with all the elements in the VBArray. If there are multiple dimensions,\n     * each successive dimension is appended to the end of the array.\n     * Example: [[1,2,3],[4,5,6]] becomes [1,2,3,4,5,6]\n     */\n    toArray(): T[];\n}\n\ninterface VBArrayConstructor {\n    new <T = any>(safeArray: SafeArray<T>): VBArray<T>;\n}\n\ndeclare var VBArray: VBArrayConstructor;\n\n/**\n * Automation date (VT_DATE)\n */\ndeclare class VarDate {\n    private constructor();\n    private VarDate_typekey: VarDate;\n}\n\ninterface DateConstructor {\n    new (vd: VarDate): Date;\n}\n\ninterface Date {\n    getVarDate: () => VarDate;\n}\n",
    "node_modules/typescript/lib/lib.webworker.asynciterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Worker Async Iterable APIs\n/////////////////////////////\n\ninterface FileSystemDirectoryHandleAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<T>;\n}\n\ninterface FileSystemDirectoryHandle {\n    [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;\n    entries(): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;\n    keys(): FileSystemDirectoryHandleAsyncIterator<string>;\n    values(): FileSystemDirectoryHandleAsyncIterator<FileSystemHandle>;\n}\n\ninterface ReadableStreamAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;\n}\n\ninterface ReadableStream<R = any> {\n    [Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;\n    values(options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;\n}\n",
    "node_modules/typescript/lib/lib.webworker.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Worker APIs\n/////////////////////////////\n\ninterface AddEventListenerOptions extends EventListenerOptions {\n    once?: boolean;\n    passive?: boolean;\n    signal?: AbortSignal;\n}\n\ninterface AesCbcParams extends Algorithm {\n    iv: BufferSource;\n}\n\ninterface AesCtrParams extends Algorithm {\n    counter: BufferSource;\n    length: number;\n}\n\ninterface AesDerivedKeyParams extends Algorithm {\n    length: number;\n}\n\ninterface AesGcmParams extends Algorithm {\n    additionalData?: BufferSource;\n    iv: BufferSource;\n    tagLength?: number;\n}\n\ninterface AesKeyAlgorithm extends KeyAlgorithm {\n    length: number;\n}\n\ninterface AesKeyGenParams extends Algorithm {\n    length: number;\n}\n\ninterface Algorithm {\n    name: string;\n}\n\ninterface AudioConfiguration {\n    bitrate?: number;\n    channels?: string;\n    contentType: string;\n    samplerate?: number;\n    spatialRendering?: boolean;\n}\n\ninterface AudioDataCopyToOptions {\n    format?: AudioSampleFormat;\n    frameCount?: number;\n    frameOffset?: number;\n    planeIndex: number;\n}\n\ninterface AudioDataInit {\n    data: BufferSource;\n    format: AudioSampleFormat;\n    numberOfChannels: number;\n    numberOfFrames: number;\n    sampleRate: number;\n    timestamp: number;\n    transfer?: ArrayBuffer[];\n}\n\ninterface AudioDecoderConfig {\n    codec: string;\n    description?: AllowSharedBufferSource;\n    numberOfChannels: number;\n    sampleRate: number;\n}\n\ninterface AudioDecoderInit {\n    error: WebCodecsErrorCallback;\n    output: AudioDataOutputCallback;\n}\n\ninterface AudioDecoderSupport {\n    config?: AudioDecoderConfig;\n    supported?: boolean;\n}\n\ninterface AudioEncoderConfig {\n    bitrate?: number;\n    bitrateMode?: BitrateMode;\n    codec: string;\n    numberOfChannels: number;\n    opus?: OpusEncoderConfig;\n    sampleRate: number;\n}\n\ninterface AudioEncoderInit {\n    error: WebCodecsErrorCallback;\n    output: EncodedAudioChunkOutputCallback;\n}\n\ninterface AudioEncoderSupport {\n    config?: AudioEncoderConfig;\n    supported?: boolean;\n}\n\ninterface AvcEncoderConfig {\n    format?: AvcBitstreamFormat;\n}\n\ninterface BlobPropertyBag {\n    endings?: EndingType;\n    type?: string;\n}\n\ninterface CSSMatrixComponentOptions {\n    is2D?: boolean;\n}\n\ninterface CSSNumericType {\n    angle?: number;\n    flex?: number;\n    frequency?: number;\n    length?: number;\n    percent?: number;\n    percentHint?: CSSNumericBaseType;\n    resolution?: number;\n    time?: number;\n}\n\ninterface CacheQueryOptions {\n    ignoreMethod?: boolean;\n    ignoreSearch?: boolean;\n    ignoreVary?: boolean;\n}\n\ninterface ClientQueryOptions {\n    includeUncontrolled?: boolean;\n    type?: ClientTypes;\n}\n\ninterface CloseEventInit extends EventInit {\n    code?: number;\n    reason?: string;\n    wasClean?: boolean;\n}\n\ninterface CookieInit {\n    domain?: string | null;\n    expires?: DOMHighResTimeStamp | null;\n    name: string;\n    partitioned?: boolean;\n    path?: string;\n    sameSite?: CookieSameSite;\n    value: string;\n}\n\ninterface CookieListItem {\n    name?: string;\n    value?: string;\n}\n\ninterface CookieStoreDeleteOptions {\n    domain?: string | null;\n    name: string;\n    partitioned?: boolean;\n    path?: string;\n}\n\ninterface CookieStoreGetOptions {\n    name?: string;\n    url?: string;\n}\n\ninterface CryptoKeyPair {\n    privateKey: CryptoKey;\n    publicKey: CryptoKey;\n}\n\ninterface CustomEventInit<T = any> extends EventInit {\n    detail?: T;\n}\n\ninterface DOMMatrix2DInit {\n    a?: number;\n    b?: number;\n    c?: number;\n    d?: number;\n    e?: number;\n    f?: number;\n    m11?: number;\n    m12?: number;\n    m21?: number;\n    m22?: number;\n    m41?: number;\n    m42?: number;\n}\n\ninterface DOMMatrixInit extends DOMMatrix2DInit {\n    is2D?: boolean;\n    m13?: number;\n    m14?: number;\n    m23?: number;\n    m24?: number;\n    m31?: number;\n    m32?: number;\n    m33?: number;\n    m34?: number;\n    m43?: number;\n    m44?: number;\n}\n\ninterface DOMPointInit {\n    w?: number;\n    x?: number;\n    y?: number;\n    z?: number;\n}\n\ninterface DOMQuadInit {\n    p1?: DOMPointInit;\n    p2?: DOMPointInit;\n    p3?: DOMPointInit;\n    p4?: DOMPointInit;\n}\n\ninterface DOMRectInit {\n    height?: number;\n    width?: number;\n    x?: number;\n    y?: number;\n}\n\ninterface EcKeyGenParams extends Algorithm {\n    namedCurve: NamedCurve;\n}\n\ninterface EcKeyImportParams extends Algorithm {\n    namedCurve: NamedCurve;\n}\n\ninterface EcdhKeyDeriveParams extends Algorithm {\n    public: CryptoKey;\n}\n\ninterface EcdsaParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface EncodedAudioChunkInit {\n    data: AllowSharedBufferSource;\n    duration?: number;\n    timestamp: number;\n    transfer?: ArrayBuffer[];\n    type: EncodedAudioChunkType;\n}\n\ninterface EncodedAudioChunkMetadata {\n    decoderConfig?: AudioDecoderConfig;\n}\n\ninterface EncodedVideoChunkInit {\n    data: AllowSharedBufferSource;\n    duration?: number;\n    timestamp: number;\n    type: EncodedVideoChunkType;\n}\n\ninterface EncodedVideoChunkMetadata {\n    decoderConfig?: VideoDecoderConfig;\n}\n\ninterface ErrorEventInit extends EventInit {\n    colno?: number;\n    error?: any;\n    filename?: string;\n    lineno?: number;\n    message?: string;\n}\n\ninterface EventInit {\n    bubbles?: boolean;\n    cancelable?: boolean;\n    composed?: boolean;\n}\n\ninterface EventListenerOptions {\n    capture?: boolean;\n}\n\ninterface EventSourceInit {\n    withCredentials?: boolean;\n}\n\ninterface ExtendableCookieChangeEventInit extends ExtendableEventInit {\n    changed?: CookieList;\n    deleted?: CookieList;\n}\n\ninterface ExtendableEventInit extends EventInit {\n}\n\ninterface ExtendableMessageEventInit extends ExtendableEventInit {\n    data?: any;\n    lastEventId?: string;\n    origin?: string;\n    ports?: MessagePort[];\n    source?: Client | ServiceWorker | MessagePort | null;\n}\n\ninterface FetchEventInit extends ExtendableEventInit {\n    clientId?: string;\n    handled?: Promise<void>;\n    preloadResponse?: Promise<any>;\n    request: Request;\n    resultingClientId?: string;\n}\n\ninterface FilePropertyBag extends BlobPropertyBag {\n    lastModified?: number;\n}\n\ninterface FileSystemCreateWritableOptions {\n    keepExistingData?: boolean;\n}\n\ninterface FileSystemGetDirectoryOptions {\n    create?: boolean;\n}\n\ninterface FileSystemGetFileOptions {\n    create?: boolean;\n}\n\ninterface FileSystemReadWriteOptions {\n    at?: number;\n}\n\ninterface FileSystemRemoveOptions {\n    recursive?: boolean;\n}\n\ninterface FontFaceDescriptors {\n    ascentOverride?: string;\n    descentOverride?: string;\n    display?: FontDisplay;\n    featureSettings?: string;\n    lineGapOverride?: string;\n    stretch?: string;\n    style?: string;\n    unicodeRange?: string;\n    weight?: string;\n}\n\ninterface FontFaceSetLoadEventInit extends EventInit {\n    fontfaces?: FontFace[];\n}\n\ninterface GetNotificationOptions {\n    tag?: string;\n}\n\ninterface HkdfParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    info: BufferSource;\n    salt: BufferSource;\n}\n\ninterface HmacImportParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    length?: number;\n}\n\ninterface HmacKeyGenParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    length?: number;\n}\n\ninterface IDBDatabaseInfo {\n    name?: string;\n    version?: number;\n}\n\ninterface IDBIndexParameters {\n    multiEntry?: boolean;\n    unique?: boolean;\n}\n\ninterface IDBObjectStoreParameters {\n    autoIncrement?: boolean;\n    keyPath?: string | string[] | null;\n}\n\ninterface IDBTransactionOptions {\n    durability?: IDBTransactionDurability;\n}\n\ninterface IDBVersionChangeEventInit extends EventInit {\n    newVersion?: number | null;\n    oldVersion?: number;\n}\n\ninterface ImageBitmapOptions {\n    colorSpaceConversion?: ColorSpaceConversion;\n    imageOrientation?: ImageOrientation;\n    premultiplyAlpha?: PremultiplyAlpha;\n    resizeHeight?: number;\n    resizeQuality?: ResizeQuality;\n    resizeWidth?: number;\n}\n\ninterface ImageBitmapRenderingContextSettings {\n    alpha?: boolean;\n}\n\ninterface ImageDataSettings {\n    colorSpace?: PredefinedColorSpace;\n}\n\ninterface ImageDecodeOptions {\n    completeFramesOnly?: boolean;\n    frameIndex?: number;\n}\n\ninterface ImageDecodeResult {\n    complete: boolean;\n    image: VideoFrame;\n}\n\ninterface ImageDecoderInit {\n    colorSpaceConversion?: ColorSpaceConversion;\n    data: ImageBufferSource;\n    desiredHeight?: number;\n    desiredWidth?: number;\n    preferAnimation?: boolean;\n    transfer?: ArrayBuffer[];\n    type: string;\n}\n\ninterface ImageEncodeOptions {\n    quality?: number;\n    type?: string;\n}\n\ninterface JsonWebKey {\n    alg?: string;\n    crv?: string;\n    d?: string;\n    dp?: string;\n    dq?: string;\n    e?: string;\n    ext?: boolean;\n    k?: string;\n    key_ops?: string[];\n    kty?: string;\n    n?: string;\n    oth?: RsaOtherPrimesInfo[];\n    p?: string;\n    q?: string;\n    qi?: string;\n    use?: string;\n    x?: string;\n    y?: string;\n}\n\ninterface KeyAlgorithm {\n    name: string;\n}\n\ninterface KeySystemTrackConfiguration {\n    robustness?: string;\n}\n\ninterface LockInfo {\n    clientId?: string;\n    mode?: LockMode;\n    name?: string;\n}\n\ninterface LockManagerSnapshot {\n    held?: LockInfo[];\n    pending?: LockInfo[];\n}\n\ninterface LockOptions {\n    ifAvailable?: boolean;\n    mode?: LockMode;\n    signal?: AbortSignal;\n    steal?: boolean;\n}\n\ninterface MediaCapabilitiesDecodingInfo extends MediaCapabilitiesInfo {\n}\n\ninterface MediaCapabilitiesEncodingInfo extends MediaCapabilitiesInfo {\n}\n\ninterface MediaCapabilitiesInfo {\n    powerEfficient: boolean;\n    smooth: boolean;\n    supported: boolean;\n}\n\ninterface MediaCapabilitiesKeySystemConfiguration {\n    audio?: KeySystemTrackConfiguration;\n    distinctiveIdentifier?: MediaKeysRequirement;\n    initDataType?: string;\n    keySystem: string;\n    persistentState?: MediaKeysRequirement;\n    sessionTypes?: string[];\n    video?: KeySystemTrackConfiguration;\n}\n\ninterface MediaConfiguration {\n    audio?: AudioConfiguration;\n    video?: VideoConfiguration;\n}\n\ninterface MediaDecodingConfiguration extends MediaConfiguration {\n    keySystemConfiguration?: MediaCapabilitiesKeySystemConfiguration;\n    type: MediaDecodingType;\n}\n\ninterface MediaEncodingConfiguration extends MediaConfiguration {\n    type: MediaEncodingType;\n}\n\ninterface MediaStreamTrackProcessorInit {\n    maxBufferSize?: number;\n}\n\ninterface MessageEventInit<T = any> extends EventInit {\n    data?: T;\n    lastEventId?: string;\n    origin?: string;\n    ports?: MessagePort[];\n    source?: MessageEventSource | null;\n}\n\ninterface MultiCacheQueryOptions extends CacheQueryOptions {\n    cacheName?: string;\n}\n\ninterface NavigationPreloadState {\n    enabled?: boolean;\n    headerValue?: string;\n}\n\ninterface NotificationEventInit extends ExtendableEventInit {\n    action?: string;\n    notification: Notification;\n}\n\ninterface NotificationOptions {\n    badge?: string;\n    body?: string;\n    data?: any;\n    dir?: NotificationDirection;\n    icon?: string;\n    lang?: string;\n    requireInteraction?: boolean;\n    silent?: boolean | null;\n    tag?: string;\n}\n\ninterface OpusEncoderConfig {\n    complexity?: number;\n    format?: OpusBitstreamFormat;\n    frameDuration?: number;\n    packetlossperc?: number;\n    usedtx?: boolean;\n    useinbandfec?: boolean;\n}\n\ninterface Pbkdf2Params extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n    iterations: number;\n    salt: BufferSource;\n}\n\ninterface PerformanceMarkOptions {\n    detail?: any;\n    startTime?: DOMHighResTimeStamp;\n}\n\ninterface PerformanceMeasureOptions {\n    detail?: any;\n    duration?: DOMHighResTimeStamp;\n    end?: string | DOMHighResTimeStamp;\n    start?: string | DOMHighResTimeStamp;\n}\n\ninterface PerformanceObserverInit {\n    buffered?: boolean;\n    entryTypes?: string[];\n    type?: string;\n}\n\ninterface PermissionDescriptor {\n    name: PermissionName;\n}\n\ninterface PlaneLayout {\n    offset: number;\n    stride: number;\n}\n\ninterface ProgressEventInit extends EventInit {\n    lengthComputable?: boolean;\n    loaded?: number;\n    total?: number;\n}\n\ninterface PromiseRejectionEventInit extends EventInit {\n    promise: Promise<any>;\n    reason?: any;\n}\n\ninterface PushEventInit extends ExtendableEventInit {\n    data?: PushMessageDataInit;\n}\n\ninterface PushSubscriptionChangeEventInit extends ExtendableEventInit {\n    newSubscription?: PushSubscription;\n    oldSubscription?: PushSubscription;\n}\n\ninterface PushSubscriptionJSON {\n    endpoint?: string;\n    expirationTime?: EpochTimeStamp | null;\n    keys?: Record<string, string>;\n}\n\ninterface PushSubscriptionOptionsInit {\n    applicationServerKey?: BufferSource | string | null;\n    userVisibleOnly?: boolean;\n}\n\ninterface QueuingStrategy<T = any> {\n    highWaterMark?: number;\n    size?: QueuingStrategySize<T>;\n}\n\ninterface QueuingStrategyInit {\n    /**\n     * Creates a new ByteLengthQueuingStrategy with the provided high water mark.\n     *\n     * Note that the provided high water mark will not be validated ahead of time. Instead, if it is negative, NaN, or not a number, the resulting ByteLengthQueuingStrategy will cause the corresponding stream constructor to throw.\n     */\n    highWaterMark: number;\n}\n\ninterface RTCEncodedAudioFrameMetadata extends RTCEncodedFrameMetadata {\n    sequenceNumber?: number;\n}\n\ninterface RTCEncodedFrameMetadata {\n    contributingSources?: number[];\n    mimeType?: string;\n    payloadType?: number;\n    rtpTimestamp?: number;\n    synchronizationSource?: number;\n}\n\ninterface RTCEncodedVideoFrameMetadata extends RTCEncodedFrameMetadata {\n    dependencies?: number[];\n    frameId?: number;\n    height?: number;\n    spatialIndex?: number;\n    temporalIndex?: number;\n    timestamp?: number;\n    width?: number;\n}\n\ninterface ReadableStreamGetReaderOptions {\n    /**\n     * Creates a ReadableStreamBYOBReader and locks the stream to the new reader.\n     *\n     * This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle \"bring your own buffer\" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation.\n     */\n    mode?: ReadableStreamReaderMode;\n}\n\ninterface ReadableStreamIteratorOptions {\n    /**\n     * Asynchronously iterates over the chunks in the stream's internal queue.\n     *\n     * Asynchronously iterating over the stream will lock it, preventing any other consumer from acquiring a reader. The lock will be released if the async iterator's return() method is called, e.g. by breaking out of the loop.\n     *\n     * By default, calling the async iterator's return() method will also cancel the stream. To prevent this, use the stream's values() method, passing true for the preventCancel option.\n     */\n    preventCancel?: boolean;\n}\n\ninterface ReadableStreamReadDoneResult<T> {\n    done: true;\n    value: T | undefined;\n}\n\ninterface ReadableStreamReadValueResult<T> {\n    done: false;\n    value: T;\n}\n\ninterface ReadableWritablePair<R = any, W = any> {\n    readable: ReadableStream<R>;\n    /**\n     * Provides a convenient, chainable way of piping this readable stream through a transform stream (or any other { writable, readable } pair). It simply pipes the stream into the writable side of the supplied pair, and returns the readable side for further use.\n     *\n     * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader.\n     */\n    writable: WritableStream<W>;\n}\n\ninterface RegistrationOptions {\n    scope?: string;\n    type?: WorkerType;\n    updateViaCache?: ServiceWorkerUpdateViaCache;\n}\n\ninterface ReportingObserverOptions {\n    buffered?: boolean;\n    types?: string[];\n}\n\ninterface RequestInit {\n    /** A BodyInit object or null to set request's body. */\n    body?: BodyInit | null;\n    /** A string indicating how the request will interact with the browser's cache to set request's cache. */\n    cache?: RequestCache;\n    /** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */\n    credentials?: RequestCredentials;\n    /** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */\n    headers?: HeadersInit;\n    /** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */\n    integrity?: string;\n    /** A boolean to set request's keepalive. */\n    keepalive?: boolean;\n    /** A string to set request's method. */\n    method?: string;\n    /** A string to indicate whether the request will use CORS, or will be restricted to same-origin URLs. Sets request's mode. */\n    mode?: RequestMode;\n    priority?: RequestPriority;\n    /** A string indicating whether request follows redirects, results in an error upon encountering a redirect, or returns the redirect (in an opaque fashion). Sets request's redirect. */\n    redirect?: RequestRedirect;\n    /** A string whose value is a same-origin URL, \"about:client\", or the empty string, to set request's referrer. */\n    referrer?: string;\n    /** A referrer policy to set request's referrerPolicy. */\n    referrerPolicy?: ReferrerPolicy;\n    /** An AbortSignal to set request's signal. */\n    signal?: AbortSignal | null;\n    /** Can only be null. Used to disassociate request from any Window. */\n    window?: null;\n}\n\ninterface ResponseInit {\n    headers?: HeadersInit;\n    status?: number;\n    statusText?: string;\n}\n\ninterface RsaHashedImportParams extends Algorithm {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface RsaHashedKeyGenParams extends RsaKeyGenParams {\n    hash: HashAlgorithmIdentifier;\n}\n\ninterface RsaKeyGenParams extends Algorithm {\n    modulusLength: number;\n    publicExponent: BigInteger;\n}\n\ninterface RsaOaepParams extends Algorithm {\n    label?: BufferSource;\n}\n\ninterface RsaOtherPrimesInfo {\n    d?: string;\n    r?: string;\n    t?: string;\n}\n\ninterface RsaPssParams extends Algorithm {\n    saltLength: number;\n}\n\ninterface SecurityPolicyViolationEventInit extends EventInit {\n    blockedURI?: string;\n    columnNumber?: number;\n    disposition?: SecurityPolicyViolationEventDisposition;\n    documentURI?: string;\n    effectiveDirective?: string;\n    lineNumber?: number;\n    originalPolicy?: string;\n    referrer?: string;\n    sample?: string;\n    sourceFile?: string;\n    statusCode?: number;\n    violatedDirective?: string;\n}\n\ninterface StorageEstimate {\n    quota?: number;\n    usage?: number;\n}\n\ninterface StreamPipeOptions {\n    preventAbort?: boolean;\n    preventCancel?: boolean;\n    /**\n     * Pipes this readable stream to a given writable stream destination. The way in which the piping process behaves under various error conditions can be customized with a number of passed options. It returns a promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered.\n     *\n     * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader.\n     *\n     * Errors and closures of the source and destination streams propagate as follows:\n     *\n     * An error in this source readable stream will abort destination, unless preventAbort is truthy. The returned promise will be rejected with the source's error, or with any error that occurs during aborting the destination.\n     *\n     * An error in destination will cancel this source readable stream, unless preventCancel is truthy. The returned promise will be rejected with the destination's error, or with any error that occurs during canceling the source.\n     *\n     * When this source readable stream closes, destination will be closed, unless preventClose is truthy. The returned promise will be fulfilled once this process completes, unless an error is encountered while closing the destination, in which case it will be rejected with that error.\n     *\n     * If destination starts out closed or closing, this source readable stream will be canceled, unless preventCancel is true. The returned promise will be rejected with an error indicating piping to a closed stream failed, or with any error that occurs during canceling the source.\n     *\n     * The signal option can be set to an AbortSignal to allow aborting an ongoing pipe operation via the corresponding AbortController. In this case, this source readable stream will be canceled, and destination aborted, unless the respective options preventCancel or preventAbort are set.\n     */\n    preventClose?: boolean;\n    signal?: AbortSignal;\n}\n\ninterface StructuredSerializeOptions {\n    transfer?: Transferable[];\n}\n\ninterface TextDecodeOptions {\n    stream?: boolean;\n}\n\ninterface TextDecoderOptions {\n    fatal?: boolean;\n    ignoreBOM?: boolean;\n}\n\ninterface TextEncoderEncodeIntoResult {\n    read: number;\n    written: number;\n}\n\ninterface Transformer<I = any, O = any> {\n    flush?: TransformerFlushCallback<O>;\n    readableType?: undefined;\n    start?: TransformerStartCallback<O>;\n    transform?: TransformerTransformCallback<I, O>;\n    writableType?: undefined;\n}\n\ninterface UnderlyingByteSource {\n    autoAllocateChunkSize?: number;\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: (controller: ReadableByteStreamController) => void | PromiseLike<void>;\n    start?: (controller: ReadableByteStreamController) => any;\n    type: \"bytes\";\n}\n\ninterface UnderlyingDefaultSource<R = any> {\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: (controller: ReadableStreamDefaultController<R>) => void | PromiseLike<void>;\n    start?: (controller: ReadableStreamDefaultController<R>) => any;\n    type?: undefined;\n}\n\ninterface UnderlyingSink<W = any> {\n    abort?: UnderlyingSinkAbortCallback;\n    close?: UnderlyingSinkCloseCallback;\n    start?: UnderlyingSinkStartCallback;\n    type?: undefined;\n    write?: UnderlyingSinkWriteCallback<W>;\n}\n\ninterface UnderlyingSource<R = any> {\n    autoAllocateChunkSize?: number;\n    cancel?: UnderlyingSourceCancelCallback;\n    pull?: UnderlyingSourcePullCallback<R>;\n    start?: UnderlyingSourceStartCallback<R>;\n    type?: ReadableStreamType;\n}\n\ninterface VideoColorSpaceInit {\n    fullRange?: boolean | null;\n    matrix?: VideoMatrixCoefficients | null;\n    primaries?: VideoColorPrimaries | null;\n    transfer?: VideoTransferCharacteristics | null;\n}\n\ninterface VideoConfiguration {\n    bitrate: number;\n    colorGamut?: ColorGamut;\n    contentType: string;\n    framerate: number;\n    hasAlphaChannel?: boolean;\n    hdrMetadataType?: HdrMetadataType;\n    height: number;\n    scalabilityMode?: string;\n    transferFunction?: TransferFunction;\n    width: number;\n}\n\ninterface VideoDecoderConfig {\n    codec: string;\n    codedHeight?: number;\n    codedWidth?: number;\n    colorSpace?: VideoColorSpaceInit;\n    description?: AllowSharedBufferSource;\n    displayAspectHeight?: number;\n    displayAspectWidth?: number;\n    hardwareAcceleration?: HardwareAcceleration;\n    optimizeForLatency?: boolean;\n}\n\ninterface VideoDecoderInit {\n    error: WebCodecsErrorCallback;\n    output: VideoFrameOutputCallback;\n}\n\ninterface VideoDecoderSupport {\n    config?: VideoDecoderConfig;\n    supported?: boolean;\n}\n\ninterface VideoEncoderConfig {\n    alpha?: AlphaOption;\n    avc?: AvcEncoderConfig;\n    bitrate?: number;\n    bitrateMode?: VideoEncoderBitrateMode;\n    codec: string;\n    contentHint?: string;\n    displayHeight?: number;\n    displayWidth?: number;\n    framerate?: number;\n    hardwareAcceleration?: HardwareAcceleration;\n    height: number;\n    latencyMode?: LatencyMode;\n    scalabilityMode?: string;\n    width: number;\n}\n\ninterface VideoEncoderEncodeOptions {\n    avc?: VideoEncoderEncodeOptionsForAvc;\n    keyFrame?: boolean;\n}\n\ninterface VideoEncoderEncodeOptionsForAvc {\n    quantizer?: number | null;\n}\n\ninterface VideoEncoderInit {\n    error: WebCodecsErrorCallback;\n    output: EncodedVideoChunkOutputCallback;\n}\n\ninterface VideoEncoderSupport {\n    config?: VideoEncoderConfig;\n    supported?: boolean;\n}\n\ninterface VideoFrameBufferInit {\n    codedHeight: number;\n    codedWidth: number;\n    colorSpace?: VideoColorSpaceInit;\n    displayHeight?: number;\n    displayWidth?: number;\n    duration?: number;\n    format: VideoPixelFormat;\n    layout?: PlaneLayout[];\n    timestamp: number;\n    visibleRect?: DOMRectInit;\n}\n\ninterface VideoFrameCopyToOptions {\n    colorSpace?: PredefinedColorSpace;\n    format?: VideoPixelFormat;\n    layout?: PlaneLayout[];\n    rect?: DOMRectInit;\n}\n\ninterface VideoFrameInit {\n    alpha?: AlphaOption;\n    displayHeight?: number;\n    displayWidth?: number;\n    duration?: number;\n    timestamp?: number;\n    visibleRect?: DOMRectInit;\n}\n\ninterface WebGLContextAttributes {\n    alpha?: boolean;\n    antialias?: boolean;\n    depth?: boolean;\n    desynchronized?: boolean;\n    failIfMajorPerformanceCaveat?: boolean;\n    powerPreference?: WebGLPowerPreference;\n    premultipliedAlpha?: boolean;\n    preserveDrawingBuffer?: boolean;\n    stencil?: boolean;\n}\n\ninterface WebGLContextEventInit extends EventInit {\n    statusMessage?: string;\n}\n\ninterface WebTransportCloseInfo {\n    closeCode?: number;\n    reason?: string;\n}\n\ninterface WebTransportErrorOptions {\n    source?: WebTransportErrorSource;\n    streamErrorCode?: number | null;\n}\n\ninterface WebTransportHash {\n    algorithm?: string;\n    value?: BufferSource;\n}\n\ninterface WebTransportOptions {\n    allowPooling?: boolean;\n    congestionControl?: WebTransportCongestionControl;\n    requireUnreliable?: boolean;\n    serverCertificateHashes?: WebTransportHash[];\n}\n\ninterface WebTransportSendOptions {\n    sendOrder?: number;\n}\n\ninterface WebTransportSendStreamOptions extends WebTransportSendOptions {\n}\n\ninterface WorkerOptions {\n    credentials?: RequestCredentials;\n    name?: string;\n    type?: WorkerType;\n}\n\ninterface WriteParams {\n    data?: BufferSource | Blob | string | null;\n    position?: number | null;\n    size?: number | null;\n    type: WriteCommandType;\n}\n\n/**\n * The **`ANGLE_instanced_arrays`** extension is part of the WebGL API and allows to draw the same object, or groups of similar objects multiple times, if they share the same vertex data, primitive count and type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays)\n */\ninterface ANGLE_instanced_arrays {\n    /**\n     * The **`ANGLE_instanced_arrays.drawArraysInstancedANGLE()`** method of the WebGL API renders primitives from array data like the WebGLRenderingContext.drawArrays() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawArraysInstancedANGLE)\n     */\n    drawArraysInstancedANGLE(mode: GLenum, first: GLint, count: GLsizei, primcount: GLsizei): void;\n    /**\n     * The **`ANGLE_instanced_arrays.drawElementsInstancedANGLE()`** method of the WebGL API renders primitives from array data like the WebGLRenderingContext.drawElements() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/drawElementsInstancedANGLE)\n     */\n    drawElementsInstancedANGLE(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr, primcount: GLsizei): void;\n    /**\n     * The **ANGLE_instanced_arrays.vertexAttribDivisorANGLE()** method of the WebGL API modifies the rate at which generic vertex attributes advance when rendering multiple instances of primitives with ANGLE_instanced_arrays.drawArraysInstancedANGLE() and ANGLE_instanced_arrays.drawElementsInstancedANGLE().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays/vertexAttribDivisorANGLE)\n     */\n    vertexAttribDivisorANGLE(index: GLuint, divisor: GLuint): void;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: 0x88FE;\n}\n\n/**\n * The **`AbortController`** interface represents a controller object that allows you to abort one or more Web requests as and when desired.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController)\n */\ninterface AbortController {\n    /**\n     * The **`signal`** read-only property of the AbortController interface returns an AbortSignal object instance, which can be used to communicate with/abort an asynchronous operation as desired.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`abort()`** method of the AbortController interface aborts an asynchronous operation before it has completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/abort)\n     */\n    abort(reason?: any): void;\n}\n\ndeclare var AbortController: {\n    prototype: AbortController;\n    new(): AbortController;\n};\n\ninterface AbortSignalEventMap {\n    \"abort\": Event;\n}\n\n/**\n * The **`AbortSignal`** interface represents a signal object that allows you to communicate with an asynchronous operation (such as a fetch request) and abort it if required via an AbortController object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal)\n */\ninterface AbortSignal extends EventTarget {\n    /**\n     * The **`aborted`** read-only property returns a value that indicates whether the asynchronous operations the signal is communicating with are aborted (`true`) or not (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/aborted)\n     */\n    readonly aborted: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_event) */\n    onabort: ((this: AbortSignal, ev: Event) => any) | null;\n    /**\n     * The **`reason`** read-only property returns a JavaScript value that indicates the abort reason.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/reason)\n     */\n    readonly reason: any;\n    /**\n     * The **`throwIfAborted()`** method throws the signal's abort AbortSignal.reason if the signal has been aborted; otherwise it does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/throwIfAborted)\n     */\n    throwIfAborted(): void;\n    addEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AbortSignal: {\n    prototype: AbortSignal;\n    new(): AbortSignal;\n    /**\n     * The **`AbortSignal.abort()`** static method returns an AbortSignal that is already set as aborted (and which does not trigger an AbortSignal/abort_event event).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static)\n     */\n    abort(reason?: any): AbortSignal;\n    /**\n     * The **`AbortSignal.any()`** static method takes an iterable of abort signals and returns an AbortSignal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static)\n     */\n    any(signals: AbortSignal[]): AbortSignal;\n    /**\n     * The **`AbortSignal.timeout()`** static method returns an AbortSignal that will automatically abort after a specified time.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static)\n     */\n    timeout(milliseconds: number): AbortSignal;\n};\n\ninterface AbstractWorkerEventMap {\n    \"error\": ErrorEvent;\n}\n\ninterface AbstractWorker {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/error_event) */\n    onerror: ((this: AbstractWorker, ev: ErrorEvent) => any) | null;\n    addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ninterface AnimationFrameProvider {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */\n    cancelAnimationFrame(handle: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */\n    requestAnimationFrame(callback: FrameRequestCallback): number;\n}\n\n/**\n * The **`AudioData`** interface of the WebCodecs API represents an audio sample.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData)\n */\ninterface AudioData {\n    /**\n     * The **`duration`** read-only property of the AudioData interface returns the duration in microseconds of this `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/duration)\n     */\n    readonly duration: number;\n    /**\n     * The **`format`** read-only property of the AudioData interface returns the sample format of the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/format)\n     */\n    readonly format: AudioSampleFormat | null;\n    /**\n     * The **`numberOfChannels`** read-only property of the AudioData interface returns the number of channels in the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/numberOfChannels)\n     */\n    readonly numberOfChannels: number;\n    /**\n     * The **`numberOfFrames`** read-only property of the AudioData interface returns the number of frames in the `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/numberOfFrames)\n     */\n    readonly numberOfFrames: number;\n    /**\n     * The **`sampleRate`** read-only property of the AudioData interface returns the sample rate in Hz.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/sampleRate)\n     */\n    readonly sampleRate: number;\n    /**\n     * The **`timestamp`** read-only property of the AudioData interface returns the timestamp of this `AudioData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`allocationSize()`** method of the AudioData interface returns the size in bytes required to hold the current sample as filtered by options passed into the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/allocationSize)\n     */\n    allocationSize(options: AudioDataCopyToOptions): number;\n    /**\n     * The **`clone()`** method of the AudioData interface creates a new `AudioData` object with reference to the same media resource as the original.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/clone)\n     */\n    clone(): AudioData;\n    /**\n     * The **`close()`** method of the AudioData interface clears all states and releases the reference to the media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/close)\n     */\n    close(): void;\n    /**\n     * The **`copyTo()`** method of the AudioData interface copies a plane of an `AudioData` object to a destination buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioData/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource, options: AudioDataCopyToOptions): void;\n}\n\ndeclare var AudioData: {\n    prototype: AudioData;\n    new(init: AudioDataInit): AudioData;\n};\n\ninterface AudioDecoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`AudioDecoder`** interface of the WebCodecs API decodes chunks of audio.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder)\n */\ninterface AudioDecoder extends EventTarget {\n    /**\n     * The **`decodeQueueSize`** read-only property of the AudioDecoder interface returns the number of pending decode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/decodeQueueSize)\n     */\n    readonly decodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/dequeue_event) */\n    ondequeue: ((this: AudioDecoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the AudioDecoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the AudioDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the AudioDecoder interface enqueues a control message to configure the audio decoder for decoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/configure)\n     */\n    configure(config: AudioDecoderConfig): void;\n    /**\n     * The **`decode()`** method of the AudioDecoder interface enqueues a control message to decode a given chunk of audio.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/decode)\n     */\n    decode(chunk: EncodedAudioChunk): void;\n    /**\n     * The **`flush()`** method of the AudioDecoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the AudioDecoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof AudioDecoderEventMap>(type: K, listener: (this: AudioDecoder, ev: AudioDecoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioDecoderEventMap>(type: K, listener: (this: AudioDecoder, ev: AudioDecoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioDecoder: {\n    prototype: AudioDecoder;\n    new(init: AudioDecoderInit): AudioDecoder;\n    /**\n     * The **`isConfigSupported()`** static method of the AudioDecoder interface checks if the given config is supported (that is, if AudioDecoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioDecoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;\n};\n\ninterface AudioEncoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`AudioEncoder`** interface of the WebCodecs API encodes AudioData objects.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder)\n */\ninterface AudioEncoder extends EventTarget {\n    /**\n     * The **`encodeQueueSize`** read-only property of the AudioEncoder interface returns the number of pending encode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/encodeQueueSize)\n     */\n    readonly encodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/dequeue_event) */\n    ondequeue: ((this: AudioEncoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the AudioEncoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the AudioEncoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the AudioEncoder interface enqueues a control message to configure the audio encoder for encoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/configure)\n     */\n    configure(config: AudioEncoderConfig): void;\n    /**\n     * The **`encode()`** method of the AudioEncoder interface enqueues a control message to encode a given AudioData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/encode)\n     */\n    encode(data: AudioData): void;\n    /**\n     * The **`flush()`** method of the AudioEncoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the AudioEncoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof AudioEncoderEventMap>(type: K, listener: (this: AudioEncoder, ev: AudioEncoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof AudioEncoderEventMap>(type: K, listener: (this: AudioEncoder, ev: AudioEncoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var AudioEncoder: {\n    prototype: AudioEncoder;\n    new(init: AudioEncoderInit): AudioEncoder;\n    /**\n     * The **`isConfigSupported()`** static method of the AudioEncoder interface checks if the given config is supported (that is, if AudioEncoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioEncoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;\n};\n\n/**\n * The **`Blob`** interface represents a blob, which is a file-like object of immutable, raw data; they can be read as text or binary data, or converted into a ReadableStream so its methods can be used for processing the data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob)\n */\ninterface Blob {\n    /**\n     * The **`size`** read-only property of the Blob interface returns the size of the Blob or File in bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size)\n     */\n    readonly size: number;\n    /**\n     * The **`type`** read-only property of the Blob interface returns the MIME type of the file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type)\n     */\n    readonly type: string;\n    /**\n     * The **`arrayBuffer()`** method of the Blob interface returns a Promise that resolves with the contents of the blob as binary data contained in an ArrayBuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer)\n     */\n    arrayBuffer(): Promise<ArrayBuffer>;\n    /**\n     * The **`bytes()`** method of the Blob interface returns a Promise that resolves with a Uint8Array containing the contents of the blob as an array of bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/bytes)\n     */\n    bytes(): Promise<Uint8Array<ArrayBuffer>>;\n    /**\n     * The **`slice()`** method of the Blob interface creates and returns a new `Blob` object which contains data from a subset of the blob on which it's called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice)\n     */\n    slice(start?: number, end?: number, contentType?: string): Blob;\n    /**\n     * The **`stream()`** method of the Blob interface returns a ReadableStream which upon reading returns the data contained within the `Blob`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/stream)\n     */\n    stream(): ReadableStream<Uint8Array<ArrayBuffer>>;\n    /**\n     * The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text)\n     */\n    text(): Promise<string>;\n}\n\ndeclare var Blob: {\n    prototype: Blob;\n    new(blobParts?: BlobPart[], options?: BlobPropertyBag): Blob;\n};\n\ninterface Body {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */\n    readonly body: ReadableStream<Uint8Array<ArrayBuffer>> | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */\n    readonly bodyUsed: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */\n    arrayBuffer(): Promise<ArrayBuffer>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/blob) */\n    blob(): Promise<Blob>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes) */\n    bytes(): Promise<Uint8Array<ArrayBuffer>>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/formData) */\n    formData(): Promise<FormData>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/json) */\n    json(): Promise<any>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */\n    text(): Promise<string>;\n}\n\ninterface BroadcastChannelEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`BroadcastChannel`** interface represents a named channel that any browsing context of a given origin can subscribe to.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel)\n */\ninterface BroadcastChannel extends EventTarget {\n    /**\n     * The **`name`** read-only property of the BroadcastChannel interface returns a string, which uniquely identifies the given channel with its name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/message_event) */\n    onmessage: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/messageerror_event) */\n    onmessageerror: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;\n    /**\n     * The **`close()`** method of the BroadcastChannel interface terminates the connection to the underlying channel, allowing the object to be garbage collected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/close)\n     */\n    close(): void;\n    /**\n     * The **`postMessage()`** method of the BroadcastChannel interface sends a message, which can be of any kind of Object, to each listener in any browsing context with the same origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel/postMessage)\n     */\n    postMessage(message: any): void;\n    addEventListener<K extends keyof BroadcastChannelEventMap>(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof BroadcastChannelEventMap>(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var BroadcastChannel: {\n    prototype: BroadcastChannel;\n    new(name: string): BroadcastChannel;\n};\n\n/**\n * The **`ByteLengthQueuingStrategy`** interface of the Streams API provides a built-in byte length queuing strategy that can be used when constructing streams.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy)\n */\ninterface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {\n    /**\n     * The read-only **`ByteLengthQueuingStrategy.highWaterMark`** property returns the total number of bytes that can be contained in the internal queue before backpressure is applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark)\n     */\n    readonly highWaterMark: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/size) */\n    readonly size: QueuingStrategySize<ArrayBufferView>;\n}\n\ndeclare var ByteLengthQueuingStrategy: {\n    prototype: ByteLengthQueuingStrategy;\n    new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;\n};\n\n/**\n * The **`CSSImageValue`** interface of the CSS Typed Object Model API represents values for properties that take an image, for example background-image, list-style-image, or border-image-source.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImageValue)\n */\ninterface CSSImageValue extends CSSStyleValue {\n}\n\ndeclare var CSSImageValue: {\n    prototype: CSSImageValue;\n    new(): CSSImageValue;\n};\n\n/**\n * The **`CSSKeywordValue`** interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue)\n */\ninterface CSSKeywordValue extends CSSStyleValue {\n    /**\n     * The **`value`** property of the `CSSKeywordValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)\n     */\n    value: string;\n}\n\ndeclare var CSSKeywordValue: {\n    prototype: CSSKeywordValue;\n    new(value: string): CSSKeywordValue;\n};\n\ninterface CSSMathClamp extends CSSMathValue {\n    readonly lower: CSSNumericValue;\n    readonly upper: CSSNumericValue;\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathClamp: {\n    prototype: CSSMathClamp;\n    new(lower: CSSNumberish, value: CSSNumberish, upper: CSSNumberish): CSSMathClamp;\n};\n\n/**\n * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>)`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)\n */\ninterface CSSMathInvert extends CSSMathValue {\n    /**\n     * The CSSMathInvert.value read-only property of the A CSSNumericValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)\n     */\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathInvert: {\n    prototype: CSSMathInvert;\n    new(arg: CSSNumberish): CSSMathInvert;\n};\n\n/**\n * The **`CSSMathMax`** interface of the CSS Typed Object Model API represents the CSS max function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax)\n */\ninterface CSSMathMax extends CSSMathValue {\n    /**\n     * The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathMax: {\n    prototype: CSSMathMax;\n    new(...args: CSSNumberish[]): CSSMathMax;\n};\n\n/**\n * The **`CSSMathMin`** interface of the CSS Typed Object Model API represents the CSS min function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin)\n */\ninterface CSSMathMin extends CSSMathValue {\n    /**\n     * The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathMin: {\n    prototype: CSSMathMin;\n    new(...args: CSSNumberish[]): CSSMathMin;\n};\n\n/**\n * The **`CSSMathNegate`** interface of the CSS Typed Object Model API negates the value passed into it.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate)\n */\ninterface CSSMathNegate extends CSSMathValue {\n    /**\n     * The CSSMathNegate.value read-only property of the A CSSNumericValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)\n     */\n    readonly value: CSSNumericValue;\n}\n\ndeclare var CSSMathNegate: {\n    prototype: CSSMathNegate;\n    new(arg: CSSNumberish): CSSMathNegate;\n};\n\n/**\n * The **`CSSMathProduct`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct)\n */\ninterface CSSMathProduct extends CSSMathValue {\n    /**\n     * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a A CSSNumericArray.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathProduct: {\n    prototype: CSSMathProduct;\n    new(...args: CSSNumberish[]): CSSMathProduct;\n};\n\n/**\n * The **`CSSMathSum`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum)\n */\ninterface CSSMathSum extends CSSMathValue {\n    /**\n     * The **`CSSMathSum.values`** read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum/values)\n     */\n    readonly values: CSSNumericArray;\n}\n\ndeclare var CSSMathSum: {\n    prototype: CSSMathSum;\n    new(...args: CSSNumberish[]): CSSMathSum;\n};\n\n/**\n * The **`CSSMathValue`** interface of the CSS Typed Object Model API a base class for classes representing complex numeric values.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue)\n */\ninterface CSSMathValue extends CSSNumericValue {\n    /**\n     * The **`CSSMathValue.operator`** read-only property of the CSSMathValue interface indicates the operator that the current subtype represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue/operator)\n     */\n    readonly operator: CSSMathOperator;\n}\n\ndeclare var CSSMathValue: {\n    prototype: CSSMathValue;\n    new(): CSSMathValue;\n};\n\n/**\n * The **`CSSMatrixComponent`** interface of the CSS Typed Object Model API represents the matrix() and matrix3d() values of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent)\n */\ninterface CSSMatrixComponent extends CSSTransformComponent {\n    /**\n     * The **`matrix`** property of the See the matrix() and matrix3d() pages for examples.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)\n     */\n    matrix: DOMMatrix;\n}\n\ndeclare var CSSMatrixComponent: {\n    prototype: CSSMatrixComponent;\n    new(matrix: DOMMatrixReadOnly, options?: CSSMatrixComponentOptions): CSSMatrixComponent;\n};\n\n/**\n * The **`CSSNumericArray`** interface of the CSS Typed Object Model API contains a list of CSSNumericValue objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray)\n */\ninterface CSSNumericArray {\n    /**\n     * The read-only **`length`** property of the An integer representing the number of CSSNumericValue objects in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)\n     */\n    readonly length: number;\n    forEach(callbackfn: (value: CSSNumericValue, key: number, parent: CSSNumericArray) => void, thisArg?: any): void;\n    [index: number]: CSSNumericValue;\n}\n\ndeclare var CSSNumericArray: {\n    prototype: CSSNumericArray;\n    new(): CSSNumericArray;\n};\n\n/**\n * The **`CSSNumericValue`** interface of the CSS Typed Object Model API represents operations that all numeric values can perform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue)\n */\ninterface CSSNumericValue extends CSSStyleValue {\n    /**\n     * The **`add()`** method of the `CSSNumericValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)\n     */\n    add(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`div()`** method of the supplied value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)\n     */\n    div(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`equals()`** method of the value are strictly equal.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)\n     */\n    equals(...value: CSSNumberish[]): boolean;\n    /**\n     * The **`max()`** method of the passed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)\n     */\n    max(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`min()`** method of the values passed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)\n     */\n    min(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`mul()`** method of the the supplied value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)\n     */\n    mul(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`sub()`** method of the `CSSNumericValue`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)\n     */\n    sub(...values: CSSNumberish[]): CSSNumericValue;\n    /**\n     * The **`to()`** method of the another.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)\n     */\n    to(unit: string): CSSUnitValue;\n    /**\n     * The **`toSum()`** method of the ```js-nolint toSum(units) ``` - `units` - : The units to convert to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)\n     */\n    toSum(...units: string[]): CSSMathSum;\n    /**\n     * The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)\n     */\n    type(): CSSNumericType;\n}\n\ndeclare var CSSNumericValue: {\n    prototype: CSSNumericValue;\n    new(): CSSNumericValue;\n};\n\n/**\n * The **`CSSPerspective`** interface of the CSS Typed Object Model API represents the perspective() value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective)\n */\ninterface CSSPerspective extends CSSTransformComponent {\n    /**\n     * The **`length`** property of the It is used to apply a perspective transform to the element and its content.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)\n     */\n    length: CSSPerspectiveValue;\n}\n\ndeclare var CSSPerspective: {\n    prototype: CSSPerspective;\n    new(length: CSSPerspectiveValue): CSSPerspective;\n};\n\n/**\n * The **`CSSRotate`** interface of the CSS Typed Object Model API represents the rotate value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate)\n */\ninterface CSSRotate extends CSSTransformComponent {\n    /**\n     * The **`angle`** property of the denotes a clockwise rotation, a negative angle a counter-clockwise one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)\n     */\n    angle: CSSNumericValue;\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)\n     */\n    x: CSSNumberish;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)\n     */\n    y: CSSNumberish;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)\n     */\n    z: CSSNumberish;\n}\n\ndeclare var CSSRotate: {\n    prototype: CSSRotate;\n    new(angle: CSSNumericValue): CSSRotate;\n    new(x: CSSNumberish, y: CSSNumberish, z: CSSNumberish, angle: CSSNumericValue): CSSRotate;\n};\n\n/**\n * The **`CSSScale`** interface of the CSS Typed Object Model API represents the scale() and scale3d() values of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale)\n */\ninterface CSSScale extends CSSTransformComponent {\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)\n     */\n    x: CSSNumberish;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)\n     */\n    y: CSSNumberish;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)\n     */\n    z: CSSNumberish;\n}\n\ndeclare var CSSScale: {\n    prototype: CSSScale;\n    new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;\n};\n\n/**\n * The **`CSSSkew`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew)\n */\ninterface CSSSkew extends CSSTransformComponent {\n    /**\n     * The **`ax`** property of the along the x-axis (or abscissa).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)\n     */\n    ax: CSSNumericValue;\n    /**\n     * The **`ay`** property of the along the y-axis (or ordinate).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)\n     */\n    ay: CSSNumericValue;\n}\n\ndeclare var CSSSkew: {\n    prototype: CSSSkew;\n    new(ax: CSSNumericValue, ay: CSSNumericValue): CSSSkew;\n};\n\n/**\n * The **`CSSSkewX`** interface of the CSS Typed Object Model API represents the `skewX()` value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX)\n */\ninterface CSSSkewX extends CSSTransformComponent {\n    /**\n     * The **`ax`** property of the along the x-axis (or abscissa).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)\n     */\n    ax: CSSNumericValue;\n}\n\ndeclare var CSSSkewX: {\n    prototype: CSSSkewX;\n    new(ax: CSSNumericValue): CSSSkewX;\n};\n\n/**\n * The **`CSSSkewY`** interface of the CSS Typed Object Model API represents the `skewY()` value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY)\n */\ninterface CSSSkewY extends CSSTransformComponent {\n    /**\n     * The **`ay`** property of the along the y-axis (or ordinate).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)\n     */\n    ay: CSSNumericValue;\n}\n\ndeclare var CSSSkewY: {\n    prototype: CSSSkewY;\n    new(ay: CSSNumericValue): CSSSkewY;\n};\n\n/**\n * The **`CSSStyleValue`** interface of the CSS Typed Object Model API is the base class of all CSS values accessible through the Typed OM API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue)\n */\ninterface CSSStyleValue {\n    toString(): string;\n}\n\ndeclare var CSSStyleValue: {\n    prototype: CSSStyleValue;\n    new(): CSSStyleValue;\n};\n\n/**\n * The **`CSSTransformComponent`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent)\n */\ninterface CSSTransformComponent {\n    /**\n     * The **`is2D`** read-only property of the CSSTransformComponent interface indicates where the transform is 2D or 3D.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/is2D)\n     */\n    is2D: boolean;\n    /**\n     * The **`toMatrix()`** method of the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)\n     */\n    toMatrix(): DOMMatrix;\n    toString(): string;\n}\n\ndeclare var CSSTransformComponent: {\n    prototype: CSSTransformComponent;\n    new(): CSSTransformComponent;\n};\n\n/**\n * The **`CSSTransformValue`** interface of the CSS Typed Object Model API represents `transform-list` values as used by the CSS transform property.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue)\n */\ninterface CSSTransformValue extends CSSStyleValue {\n    /**\n     * The read-only **`is2D`** property of the In the case of the `CSSTransformValue` this property returns true unless any of the individual functions return false for `Is2D`, in which case it returns false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)\n     */\n    readonly is2D: boolean;\n    /**\n     * The read-only **`length`** property of the the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)\n     */\n    readonly length: number;\n    /**\n     * The **`toMatrix()`** method of the ```js-nolint toMatrix() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)\n     */\n    toMatrix(): DOMMatrix;\n    forEach(callbackfn: (value: CSSTransformComponent, key: number, parent: CSSTransformValue) => void, thisArg?: any): void;\n    [index: number]: CSSTransformComponent;\n}\n\ndeclare var CSSTransformValue: {\n    prototype: CSSTransformValue;\n    new(transforms: CSSTransformComponent[]): CSSTransformValue;\n};\n\n/**\n * The **`CSSTranslate`** interface of the CSS Typed Object Model API represents the translate() value of the individual transform property in CSS.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate)\n */\ninterface CSSTranslate extends CSSTransformComponent {\n    /**\n     * The **`x`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)\n     */\n    x: CSSNumericValue;\n    /**\n     * The **`y`** property of the translating vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)\n     */\n    y: CSSNumericValue;\n    /**\n     * The **`z`** property of the vector.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)\n     */\n    z: CSSNumericValue;\n}\n\ndeclare var CSSTranslate: {\n    prototype: CSSTranslate;\n    new(x: CSSNumericValue, y: CSSNumericValue, z?: CSSNumericValue): CSSTranslate;\n};\n\n/**\n * The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue)\n */\ninterface CSSUnitValue extends CSSNumericValue {\n    /**\n     * The **`CSSUnitValue.unit`** read-only property of the CSSUnitValue interface returns a string indicating the type of unit.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/unit)\n     */\n    readonly unit: string;\n    /**\n     * The **`CSSUnitValue.value`** property of the A double.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)\n     */\n    value: number;\n}\n\ndeclare var CSSUnitValue: {\n    prototype: CSSUnitValue;\n    new(value: number, unit: string): CSSUnitValue;\n};\n\n/**\n * The **`CSSUnparsedValue`** interface of the CSS Typed Object Model API represents property values that reference custom properties.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue)\n */\ninterface CSSUnparsedValue extends CSSStyleValue {\n    /**\n     * The **`length`** read-only property of the An integer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)\n     */\n    readonly length: number;\n    forEach(callbackfn: (value: CSSUnparsedSegment, key: number, parent: CSSUnparsedValue) => void, thisArg?: any): void;\n    [index: number]: CSSUnparsedSegment;\n}\n\ndeclare var CSSUnparsedValue: {\n    prototype: CSSUnparsedValue;\n    new(members: CSSUnparsedSegment[]): CSSUnparsedValue;\n};\n\n/**\n * The **`CSSVariableReferenceValue`** interface of the CSS Typed Object Model API allows you to create a custom name for a built-in CSS value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue)\n */\ninterface CSSVariableReferenceValue {\n    /**\n     * The **`fallback`** read-only property of the A CSSUnparsedValue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)\n     */\n    readonly fallback: CSSUnparsedValue | null;\n    /**\n     * The **`variable`** property of the A string beginning with `--` (that is, a custom property name).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)\n     */\n    variable: string;\n}\n\ndeclare var CSSVariableReferenceValue: {\n    prototype: CSSVariableReferenceValue;\n    new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;\n};\n\n/**\n * The **`Cache`** interface provides a persistent storage mechanism for Request / Response object pairs that are cached in long lived memory.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache)\n */\ninterface Cache {\n    /**\n     * The **`add()`** method of the Cache interface takes a URL, retrieves it, and adds the resulting response object to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/add)\n     */\n    add(request: RequestInfo | URL): Promise<void>;\n    /**\n     * The **`addAll()`** method of the Cache interface takes an array of URLs, retrieves them, and adds the resulting response objects to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/addAll)\n     */\n    addAll(requests: RequestInfo[]): Promise<void>;\n    /**\n     * The **`delete()`** method of the Cache interface finds the Cache entry whose key is the request, and if found, deletes the Cache entry and returns a Promise that resolves to `true`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/delete)\n     */\n    delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;\n    /**\n     * The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)\n     */\n    keys(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Request>>;\n    /**\n     * The **`match()`** method of the Cache interface returns a Promise that resolves to the Response associated with the first matching request in the Cache object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/match)\n     */\n    match(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<Response | undefined>;\n    /**\n     * The **`matchAll()`** method of the Cache interface returns a Promise that resolves to an array of all matching responses in the Cache object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/matchAll)\n     */\n    matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;\n    /**\n     * The **`put()`** method of the Often, you will just want to Window/fetch one or more requests, then add the result straight to your cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)\n     */\n    put(request: RequestInfo | URL, response: Response): Promise<void>;\n}\n\ndeclare var Cache: {\n    prototype: Cache;\n    new(): Cache;\n};\n\n/**\n * The **`CacheStorage`** interface represents the storage for Cache objects.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage)\n */\ninterface CacheStorage {\n    /**\n     * The **`delete()`** method of the CacheStorage interface finds the Cache object matching the `cacheName`, and if found, deletes the Cache object and returns a Promise that resolves to `true`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/delete)\n     */\n    delete(cacheName: string): Promise<boolean>;\n    /**\n     * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a You can access `CacheStorage` through the Window.caches property in windows or through the WorkerGlobalScope.caches property in workers.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)\n     */\n    has(cacheName: string): Promise<boolean>;\n    /**\n     * The **`keys()`** method of the CacheStorage interface returns a Promise that will resolve with an array containing strings corresponding to all of the named Cache objects tracked by the CacheStorage object in the order they were created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/keys)\n     */\n    keys(): Promise<string[]>;\n    /**\n     * The **`match()`** method of the CacheStorage interface checks if a given Request or URL string is a key for a stored Response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/match)\n     */\n    match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;\n    /**\n     * The **`open()`** method of the the Cache object matching the `cacheName`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)\n     */\n    open(cacheName: string): Promise<Cache>;\n}\n\ndeclare var CacheStorage: {\n    prototype: CacheStorage;\n    new(): CacheStorage;\n};\n\ninterface CanvasCompositing {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/globalAlpha) */\n    globalAlpha: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation) */\n    globalCompositeOperation: GlobalCompositeOperation;\n}\n\ninterface CanvasDrawImage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/drawImage) */\n    drawImage(image: CanvasImageSource, dx: number, dy: number): void;\n    drawImage(image: CanvasImageSource, dx: number, dy: number, dw: number, dh: number): void;\n    drawImage(image: CanvasImageSource, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void;\n}\n\ninterface CanvasDrawPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/beginPath) */\n    beginPath(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/clip) */\n    clip(fillRule?: CanvasFillRule): void;\n    clip(path: Path2D, fillRule?: CanvasFillRule): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fill) */\n    fill(fillRule?: CanvasFillRule): void;\n    fill(path: Path2D, fillRule?: CanvasFillRule): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isPointInPath) */\n    isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean;\n    isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isPointInStroke) */\n    isPointInStroke(x: number, y: number): boolean;\n    isPointInStroke(path: Path2D, x: number, y: number): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/stroke) */\n    stroke(): void;\n    stroke(path: Path2D): void;\n}\n\ninterface CanvasFillStrokeStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillStyle) */\n    fillStyle: string | CanvasGradient | CanvasPattern;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeStyle) */\n    strokeStyle: string | CanvasGradient | CanvasPattern;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createConicGradient) */\n    createConicGradient(startAngle: number, x: number, y: number): CanvasGradient;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createLinearGradient) */\n    createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createPattern) */\n    createPattern(image: CanvasImageSource, repetition: string | null): CanvasPattern | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createRadialGradient) */\n    createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;\n}\n\ninterface CanvasFilters {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/filter) */\n    filter: string;\n}\n\n/**\n * The **`CanvasGradient`** interface represents an opaque object describing a gradient.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasGradient)\n */\ninterface CanvasGradient {\n    /**\n     * The **`CanvasGradient.addColorStop()`** method adds a new color stop, defined by an `offset` and a `color`, to a given canvas gradient.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasGradient/addColorStop)\n     */\n    addColorStop(offset: number, color: string): void;\n}\n\ndeclare var CanvasGradient: {\n    prototype: CanvasGradient;\n    new(): CanvasGradient;\n};\n\ninterface CanvasImageData {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/createImageData) */\n    createImageData(sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    createImageData(imageData: ImageData): ImageData;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getImageData) */\n    getImageData(sx: number, sy: number, sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/putImageData) */\n    putImageData(imageData: ImageData, dx: number, dy: number): void;\n    putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void;\n}\n\ninterface CanvasImageSmoothing {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/imageSmoothingEnabled) */\n    imageSmoothingEnabled: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/imageSmoothingQuality) */\n    imageSmoothingQuality: ImageSmoothingQuality;\n}\n\ninterface CanvasPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/arc) */\n    arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/arcTo) */\n    arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/bezierCurveTo) */\n    bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/closePath) */\n    closePath(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/ellipse) */\n    ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineTo) */\n    lineTo(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/moveTo) */\n    moveTo(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/quadraticCurveTo) */\n    quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/rect) */\n    rect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/roundRect) */\n    roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;\n}\n\ninterface CanvasPathDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineCap) */\n    lineCap: CanvasLineCap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineDashOffset) */\n    lineDashOffset: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineJoin) */\n    lineJoin: CanvasLineJoin;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/lineWidth) */\n    lineWidth: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/miterLimit) */\n    miterLimit: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getLineDash) */\n    getLineDash(): number[];\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash) */\n    setLineDash(segments: number[]): void;\n}\n\n/**\n * The **`CanvasPattern`** interface represents an opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasPattern)\n */\ninterface CanvasPattern {\n    /**\n     * The **`CanvasPattern.setTransform()`** method uses a DOMMatrix object as the pattern's transformation matrix and invokes it on the pattern.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasPattern/setTransform)\n     */\n    setTransform(transform?: DOMMatrix2DInit): void;\n}\n\ndeclare var CanvasPattern: {\n    prototype: CanvasPattern;\n    new(): CanvasPattern;\n};\n\ninterface CanvasRect {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/clearRect) */\n    clearRect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillRect) */\n    fillRect(x: number, y: number, w: number, h: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeRect) */\n    strokeRect(x: number, y: number, w: number, h: number): void;\n}\n\ninterface CanvasShadowStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowBlur) */\n    shadowBlur: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowColor) */\n    shadowColor: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowOffsetX) */\n    shadowOffsetX: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/shadowOffsetY) */\n    shadowOffsetY: number;\n}\n\ninterface CanvasState {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/isContextLost) */\n    isContextLost(): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/reset) */\n    reset(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/restore) */\n    restore(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/save) */\n    save(): void;\n}\n\ninterface CanvasText {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fillText) */\n    fillText(text: string, x: number, y: number, maxWidth?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/measureText) */\n    measureText(text: string): TextMetrics;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/strokeText) */\n    strokeText(text: string, x: number, y: number, maxWidth?: number): void;\n}\n\ninterface CanvasTextDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/direction) */\n    direction: CanvasDirection;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/font) */\n    font: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */\n    fontKerning: CanvasFontKerning;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontStretch) */\n    fontStretch: CanvasFontStretch;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontVariantCaps) */\n    fontVariantCaps: CanvasFontVariantCaps;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */\n    letterSpacing: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */\n    textAlign: CanvasTextAlign;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */\n    textBaseline: CanvasTextBaseline;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textRendering) */\n    textRendering: CanvasTextRendering;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */\n    wordSpacing: string;\n}\n\ninterface CanvasTransform {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/getTransform) */\n    getTransform(): DOMMatrix;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/resetTransform) */\n    resetTransform(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/rotate) */\n    rotate(angle: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/scale) */\n    scale(x: number, y: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setTransform) */\n    setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;\n    setTransform(transform?: DOMMatrix2DInit): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/transform) */\n    transform(a: number, b: number, c: number, d: number, e: number, f: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/translate) */\n    translate(x: number, y: number): void;\n}\n\n/**\n * The `Client` interface represents an executable context such as a Worker, or a SharedWorker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client)\n */\ninterface Client {\n    /**\n     * The **`frameType`** read-only property of the Client interface indicates the type of browsing context of the current Client.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client/frameType)\n     */\n    readonly frameType: FrameType;\n    /**\n     * The **`id`** read-only property of the Client interface returns the universally unique identifier of the Client object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client/id)\n     */\n    readonly id: string;\n    /**\n     * The **`type`** read-only property of the Client interface indicates the type of client the service worker is controlling.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client/type)\n     */\n    readonly type: ClientTypes;\n    /**\n     * The **`url`** read-only property of the Client interface returns the URL of the current service worker client.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client/url)\n     */\n    readonly url: string;\n    /**\n     * The **`postMessage()`** method of the (a Window, Worker, or SharedWorker).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n}\n\ndeclare var Client: {\n    prototype: Client;\n    new(): Client;\n};\n\n/**\n * The `Clients` interface provides access to Client objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients)\n */\ninterface Clients {\n    /**\n     * The **`claim()`** method of the Clients interface allows an active service worker to set itself as the ServiceWorkerContainer.controller for all clients within its ServiceWorkerRegistration.scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients/claim)\n     */\n    claim(): Promise<void>;\n    /**\n     * The **`get()`** method of the `id` and returns it in a Promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients/get)\n     */\n    get(id: string): Promise<Client | undefined>;\n    /**\n     * The **`matchAll()`** method of the Clients interface returns a Promise for a list of service worker clients whose origin is the same as the associated service worker's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients/matchAll)\n     */\n    matchAll<T extends ClientQueryOptions>(options?: T): Promise<ReadonlyArray<T[\"type\"] extends \"window\" ? WindowClient : Client>>;\n    /**\n     * The **`openWindow()`** method of the Clients interface creates a new top level browsing context and loads a given URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients/openWindow)\n     */\n    openWindow(url: string | URL): Promise<WindowClient | null>;\n}\n\ndeclare var Clients: {\n    prototype: Clients;\n    new(): Clients;\n};\n\n/**\n * A `CloseEvent` is sent to clients using WebSockets when the connection is closed.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent)\n */\ninterface CloseEvent extends Event {\n    /**\n     * The **`code`** read-only property of the CloseEvent interface returns a WebSocket connection close code indicating the reason the connection was closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/code)\n     */\n    readonly code: number;\n    /**\n     * The **`reason`** read-only property of the CloseEvent interface returns the WebSocket connection close reason the server gave for closing the connection; that is, a concise human-readable prose explanation for the closure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/reason)\n     */\n    readonly reason: string;\n    /**\n     * The **`wasClean`** read-only property of the CloseEvent interface returns `true` if the connection closed cleanly.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/wasClean)\n     */\n    readonly wasClean: boolean;\n}\n\ndeclare var CloseEvent: {\n    prototype: CloseEvent;\n    new(type: string, eventInitDict?: CloseEventInit): CloseEvent;\n};\n\n/**\n * The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)\n */\ninterface CompressionStream extends GenericTransformStream {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var CompressionStream: {\n    prototype: CompressionStream;\n    new(format: CompressionFormat): CompressionStream;\n};\n\n/**\n * The **`CookieStore`** interface of the Cookie Store API provides methods for getting and setting cookies asynchronously from either a page or a service worker.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore)\n */\ninterface CookieStore extends EventTarget {\n    /**\n     * The **`delete()`** method of the CookieStore interface deletes a cookie that matches the given `name` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/delete)\n     */\n    delete(name: string): Promise<void>;\n    delete(options: CookieStoreDeleteOptions): Promise<void>;\n    /**\n     * The **`get()`** method of the CookieStore interface returns a Promise that resolves to a single cookie matching the given `name` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/get)\n     */\n    get(name: string): Promise<CookieListItem | null>;\n    get(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;\n    /**\n     * The **`getAll()`** method of the CookieStore interface returns a Promise that resolves as an array of cookies that match the `name` or `options` passed to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/getAll)\n     */\n    getAll(name: string): Promise<CookieList>;\n    getAll(options?: CookieStoreGetOptions): Promise<CookieList>;\n    /**\n     * The **`set()`** method of the CookieStore interface sets a cookie with the given `name` and `value` or `options` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore/set)\n     */\n    set(name: string, value: string): Promise<void>;\n    set(options: CookieInit): Promise<void>;\n}\n\ndeclare var CookieStore: {\n    prototype: CookieStore;\n    new(): CookieStore;\n};\n\n/**\n * The **`CookieStoreManager`** interface of the Cookie Store API allows service workers to subscribe to cookie change events.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager)\n */\ninterface CookieStoreManager {\n    /**\n     * The **`getSubscriptions()`** method of the CookieStoreManager interface returns a list of all the cookie change subscriptions for this ServiceWorkerRegistration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/getSubscriptions)\n     */\n    getSubscriptions(): Promise<CookieStoreGetOptions[]>;\n    /**\n     * The **`subscribe()`** method of the CookieStoreManager interface subscribes a ServiceWorkerRegistration to cookie change events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe)\n     */\n    subscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;\n    /**\n     * The **`unsubscribe()`** method of the CookieStoreManager interface stops the ServiceWorkerRegistration from receiving previously subscribed events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe)\n     */\n    unsubscribe(subscriptions: CookieStoreGetOptions[]): Promise<void>;\n}\n\ndeclare var CookieStoreManager: {\n    prototype: CookieStoreManager;\n    new(): CookieStoreManager;\n};\n\n/**\n * The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy)\n */\ninterface CountQueuingStrategy extends QueuingStrategy {\n    /**\n     * The read-only **`CountQueuingStrategy.highWaterMark`** property returns the total number of chunks that can be contained in the internal queue before backpressure is applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/highWaterMark)\n     */\n    readonly highWaterMark: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/size) */\n    readonly size: QueuingStrategySize;\n}\n\ndeclare var CountQueuingStrategy: {\n    prototype: CountQueuingStrategy;\n    new(init: QueuingStrategyInit): CountQueuingStrategy;\n};\n\n/**\n * The **`Crypto`** interface represents basic cryptography features available in the current context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto)\n */\ninterface Crypto {\n    /**\n     * The **`Crypto.subtle`** read-only property returns a cryptographic operations.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)\n     */\n    readonly subtle: SubtleCrypto;\n    /**\n     * The **`Crypto.getRandomValues()`** method lets you get cryptographically strong random values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/getRandomValues)\n     */\n    getRandomValues<T extends ArrayBufferView>(array: T): T;\n    /**\n     * The **`randomUUID()`** method of the Crypto interface is used to generate a v4 UUID using a cryptographically secure random number generator.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/randomUUID)\n     */\n    randomUUID(): `${string}-${string}-${string}-${string}-${string}`;\n}\n\ndeclare var Crypto: {\n    prototype: Crypto;\n    new(): Crypto;\n};\n\n/**\n * The **`CryptoKey`** interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods SubtleCrypto.generateKey, SubtleCrypto.deriveKey, SubtleCrypto.importKey, or SubtleCrypto.unwrapKey.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey)\n */\ninterface CryptoKey {\n    /**\n     * The read-only **`algorithm`** property of the CryptoKey interface returns an object describing the algorithm for which this key can be used, and any associated extra parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/algorithm)\n     */\n    readonly algorithm: KeyAlgorithm;\n    /**\n     * The read-only **`extractable`** property of the CryptoKey interface indicates whether or not the key may be extracted using `SubtleCrypto.exportKey()` or `SubtleCrypto.wrapKey()`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/extractable)\n     */\n    readonly extractable: boolean;\n    /**\n     * The read-only **`type`** property of the CryptoKey interface indicates which kind of key is represented by the object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/type)\n     */\n    readonly type: KeyType;\n    /**\n     * The read-only **`usages`** property of the CryptoKey interface indicates what can be done with the key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/usages)\n     */\n    readonly usages: KeyUsage[];\n}\n\ndeclare var CryptoKey: {\n    prototype: CryptoKey;\n    new(): CryptoKey;\n};\n\n/**\n * The **`CustomEvent`** interface represents events initialized by an application for any purpose.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)\n */\ninterface CustomEvent<T = any> extends Event {\n    /**\n     * The read-only **`detail`** property of the CustomEvent interface returns any data passed when initializing the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent/detail)\n     */\n    readonly detail: T;\n    /**\n     * The **`CustomEvent.initCustomEvent()`** method initializes a CustomEvent object.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent/initCustomEvent)\n     */\n    initCustomEvent(type: string, bubbles?: boolean, cancelable?: boolean, detail?: T): void;\n}\n\ndeclare var CustomEvent: {\n    prototype: CustomEvent;\n    new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;\n};\n\n/**\n * The **`DOMException`** interface represents an abnormal event (called an **exception**) that occurs as a result of calling a method or accessing a property of a web API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException)\n */\ninterface DOMException extends Error {\n    /**\n     * The **`code`** read-only property of the DOMException interface returns one of the legacy error code constants, or `0` if none match.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/code)\n     */\n    readonly code: number;\n    /**\n     * The **`message`** read-only property of the a message or description associated with the given error name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)\n     */\n    readonly message: string;\n    /**\n     * The **`name`** read-only property of the one of the strings associated with an error name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)\n     */\n    readonly name: string;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n}\n\ndeclare var DOMException: {\n    prototype: DOMException;\n    new(message?: string, name?: string): DOMException;\n    readonly INDEX_SIZE_ERR: 1;\n    readonly DOMSTRING_SIZE_ERR: 2;\n    readonly HIERARCHY_REQUEST_ERR: 3;\n    readonly WRONG_DOCUMENT_ERR: 4;\n    readonly INVALID_CHARACTER_ERR: 5;\n    readonly NO_DATA_ALLOWED_ERR: 6;\n    readonly NO_MODIFICATION_ALLOWED_ERR: 7;\n    readonly NOT_FOUND_ERR: 8;\n    readonly NOT_SUPPORTED_ERR: 9;\n    readonly INUSE_ATTRIBUTE_ERR: 10;\n    readonly INVALID_STATE_ERR: 11;\n    readonly SYNTAX_ERR: 12;\n    readonly INVALID_MODIFICATION_ERR: 13;\n    readonly NAMESPACE_ERR: 14;\n    readonly INVALID_ACCESS_ERR: 15;\n    readonly VALIDATION_ERR: 16;\n    readonly TYPE_MISMATCH_ERR: 17;\n    readonly SECURITY_ERR: 18;\n    readonly NETWORK_ERR: 19;\n    readonly ABORT_ERR: 20;\n    readonly URL_MISMATCH_ERR: 21;\n    readonly QUOTA_EXCEEDED_ERR: 22;\n    readonly TIMEOUT_ERR: 23;\n    readonly INVALID_NODE_TYPE_ERR: 24;\n    readonly DATA_CLONE_ERR: 25;\n};\n\n/**\n * The **`DOMMatrix`** interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix)\n */\ninterface DOMMatrix extends DOMMatrixReadOnly {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    a: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    b: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    c: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    d: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    e: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    f: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m11: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m12: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m13: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m14: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m21: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m22: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m23: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m24: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m31: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m32: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m33: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m34: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m41: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m42: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m43: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */\n    m44: number;\n    /**\n     * The **`invertSelf()`** method of the DOMMatrix interface inverts the original matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf)\n     */\n    invertSelf(): DOMMatrix;\n    /**\n     * The **`multiplySelf()`** method of the DOMMatrix interface multiplies a matrix by the `otherMatrix` parameter, computing the dot product of the original matrix and the specified matrix: `A⋅B`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf)\n     */\n    multiplySelf(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The **`preMultiplySelf()`** method of the DOMMatrix interface modifies the matrix by pre-multiplying it with the specified `DOMMatrix`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf)\n     */\n    preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The `rotateAxisAngleSelf()` method of the DOMMatrix interface is a transformation method that rotates the source matrix by the given vector and angle, returning the altered matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf)\n     */\n    rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;\n    /**\n     * The `rotateFromVectorSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by rotating the matrix by the angle between the specified vector and `(1, 0)`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf)\n     */\n    rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;\n    /**\n     * The `rotateSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf)\n     */\n    rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;\n    /**\n     * The **`scale3dSelf()`** method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by applying a specified scaling factor to all three axes, centered on the given origin, with a default origin of `(0, 0, 0)`, returning the 3D-scaled matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf)\n     */\n    scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The **`scaleSelf()`** method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by applying a specified scaling factor, centered on the given origin, with a default origin of `(0, 0)`, returning the scaled matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scaleSelf)\n     */\n    scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The `skewXSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf)\n     */\n    skewXSelf(sx?: number): DOMMatrix;\n    /**\n     * The `skewYSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf)\n     */\n    skewYSelf(sy?: number): DOMMatrix;\n    /**\n     * The `translateSelf()` method of the DOMMatrix interface is a mutable transformation method that modifies a matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf)\n     */\n    translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;\n}\n\ndeclare var DOMMatrix: {\n    prototype: DOMMatrix;\n    new(init?: string | number[]): DOMMatrix;\n    fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;\n    fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;\n    fromMatrix(other?: DOMMatrixInit): DOMMatrix;\n};\n\n/**\n * The **`DOMMatrixReadOnly`** interface represents a read-only 4×4 matrix, suitable for 2D and 3D operations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)\n */\ninterface DOMMatrixReadOnly {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly a: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly b: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly c: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly d: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly e: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly f: number;\n    /**\n     * The readonly **`is2D`** property of the DOMMatrixReadOnly interface is a Boolean flag that is `true` when the matrix is 2D.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D)\n     */\n    readonly is2D: boolean;\n    /**\n     * The readonly **`isIdentity`** property of the DOMMatrixReadOnly interface is a Boolean whose value is `true` if the matrix is the identity matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity)\n     */\n    readonly isIdentity: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m11: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m12: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m13: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m14: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m21: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m22: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m23: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m24: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m31: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m32: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m33: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m34: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m41: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m42: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m43: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */\n    readonly m44: number;\n    /**\n     * The **`flipX()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the x-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX)\n     */\n    flipX(): DOMMatrix;\n    /**\n     * The **`flipY()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix flipped about the y-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY)\n     */\n    flipY(): DOMMatrix;\n    /**\n     * The **`inverse()`** method of the DOMMatrixReadOnly interface creates a new matrix which is the inverse of the original matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse)\n     */\n    inverse(): DOMMatrix;\n    /**\n     * The **`multiply()`** method of the DOMMatrixReadOnly interface creates and returns a new matrix which is the dot product of the matrix and the `otherMatrix` parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply)\n     */\n    multiply(other?: DOMMatrixInit): DOMMatrix;\n    /**\n     * The `rotate()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by rotating the source matrix around each of its axes by the specified number of degrees.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate)\n     */\n    rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;\n    /**\n     * The `rotateAxisAngle()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by rotating the source matrix by the given vector and angle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle)\n     */\n    rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;\n    /**\n     * The `rotateFromVector()` method of the DOMMatrixReadOnly interface is returns a new DOMMatrix created by rotating the source matrix by the angle between the specified vector and `(1, 0)`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector)\n     */\n    rotateFromVector(x?: number, y?: number): DOMMatrix;\n    /**\n     * The **`scale()`** method of the original matrix with a scale transform applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)\n     */\n    scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /**\n     * The **`scale3d()`** method of the DOMMatrixReadOnly interface creates a new matrix which is the result of a 3D scale transform being applied to the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d)\n     */\n    scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;\n    /** @deprecated */\n    scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;\n    /**\n     * The `skewX()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its x-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX)\n     */\n    skewX(sx?: number): DOMMatrix;\n    /**\n     * The `skewY()` method of the DOMMatrixReadOnly interface returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its y-axis.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY)\n     */\n    skewY(sy?: number): DOMMatrix;\n    /**\n     * The **`toFloat32Array()`** method of the DOMMatrixReadOnly interface returns a new Float32Array containing all 16 elements (`m11`, `m12`, `m13`, `m14`, `m21`, `m22`, `m23`, `m24`, `m31`, `m32`, `m33`, `m34`, `m41`, `m42`, `m43`, `m44`) which comprise the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array)\n     */\n    toFloat32Array(): Float32Array<ArrayBuffer>;\n    /**\n     * The **`toFloat64Array()`** method of the DOMMatrixReadOnly interface returns a new Float64Array containing all 16 elements (`m11`, `m12`, `m13`, `m14`, `m21`, `m22`, `m23`, `m24`, `m31`, `m32`, `m33`, `m34`, `m41`, `m42`, `m43`, `m44`) which comprise the matrix.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array)\n     */\n    toFloat64Array(): Float64Array<ArrayBuffer>;\n    /**\n     * The **`toJSON()`** method of the DOMMatrixReadOnly interface creates and returns a JSON object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON)\n     */\n    toJSON(): any;\n    /**\n     * The **`transformPoint`** method of the You can also create a new `DOMPoint` by applying a matrix to a point with the DOMPointReadOnly.matrixTransform() method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)\n     */\n    transformPoint(point?: DOMPointInit): DOMPoint;\n    /**\n     * The `translate()` method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a translation applied.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate)\n     */\n    translate(tx?: number, ty?: number, tz?: number): DOMMatrix;\n}\n\ndeclare var DOMMatrixReadOnly: {\n    prototype: DOMMatrixReadOnly;\n    new(init?: string | number[]): DOMMatrixReadOnly;\n    fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;\n    fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;\n    fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;\n};\n\n/**\n * A **`DOMPoint`** object represents a 2D or 3D point in a coordinate system; it includes values for the coordinates in up to three dimensions, as well as an optional perspective value.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint)\n */\ninterface DOMPoint extends DOMPointReadOnly {\n    /**\n     * The **`DOMPoint`** interface's **`w`** property holds the point's perspective value, w, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/w)\n     */\n    w: number;\n    /**\n     * The **`DOMPoint`** interface's **`x`** property holds the horizontal coordinate, x, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/x)\n     */\n    x: number;\n    /**\n     * The **`DOMPoint`** interface's **`y`** property holds the vertical coordinate, _y_, for a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/y)\n     */\n    y: number;\n    /**\n     * The **`DOMPoint`** interface's **`z`** property specifies the depth coordinate of a point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/z)\n     */\n    z: number;\n}\n\ndeclare var DOMPoint: {\n    prototype: DOMPoint;\n    new(x?: number, y?: number, z?: number, w?: number): DOMPoint;\n    /**\n     * The **`fromPoint()`** static method of the DOMPoint interface creates and returns a new mutable `DOMPoint` object given a source point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/fromPoint_static)\n     */\n    fromPoint(other?: DOMPointInit): DOMPoint;\n};\n\n/**\n * The **`DOMPointReadOnly`** interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly)\n */\ninterface DOMPointReadOnly {\n    /**\n     * The **`DOMPointReadOnly`** interface's **`w`** property holds the point's perspective value, `w`, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/w)\n     */\n    readonly w: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`x`** property holds the horizontal coordinate, x, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/x)\n     */\n    readonly x: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`y`** property holds the vertical coordinate, y, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/y)\n     */\n    readonly y: number;\n    /**\n     * The **`DOMPointReadOnly`** interface's **`z`** property holds the depth coordinate, z, for a read-only point in space.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z)\n     */\n    readonly z: number;\n    /**\n     * The **`matrixTransform()`** method of the DOMPointReadOnly interface applies a matrix transform specified as an object to the DOMPointReadOnly object, creating and returning a new `DOMPointReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform)\n     */\n    matrixTransform(matrix?: DOMMatrixInit): DOMPoint;\n    /**\n     * The DOMPointReadOnly method `toJSON()` returns an object giving the ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMPointReadOnly: {\n    prototype: DOMPointReadOnly;\n    new(x?: number, y?: number, z?: number, w?: number): DOMPointReadOnly;\n    /**\n     * The static **DOMPointReadOnly** method `fromPoint()` creates and returns a new `DOMPointReadOnly` object given a source point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/fromPoint_static)\n     */\n    fromPoint(other?: DOMPointInit): DOMPointReadOnly;\n};\n\n/**\n * A `DOMQuad` is a collection of four `DOMPoint`s defining the corners of an arbitrary quadrilateral.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad)\n */\ninterface DOMQuad {\n    /**\n     * The **`DOMQuad`** interface's **`p1`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1)\n     */\n    readonly p1: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p2`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2)\n     */\n    readonly p2: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p3`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3)\n     */\n    readonly p3: DOMPoint;\n    /**\n     * The **`DOMQuad`** interface's **`p4`** property holds the DOMPoint object that represents one of the four corners of the `DOMQuad`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4)\n     */\n    readonly p4: DOMPoint;\n    /**\n     * The DOMQuad method `getBounds()` returns a DOMRect object representing the smallest rectangle that fully contains the `DOMQuad` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds)\n     */\n    getBounds(): DOMRect;\n    /**\n     * The DOMQuad method `toJSON()` returns a ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMQuad: {\n    prototype: DOMQuad;\n    new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;\n    fromQuad(other?: DOMQuadInit): DOMQuad;\n    fromRect(other?: DOMRectInit): DOMQuad;\n};\n\n/**\n * A **`DOMRect`** describes the size and position of a rectangle.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect)\n */\ninterface DOMRect extends DOMRectReadOnly {\n    /**\n     * The **`height`** property of the DOMRect interface represents the height of the rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/height)\n     */\n    height: number;\n    /**\n     * The **`width`** property of the DOMRect interface represents the width of the rectangle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/width)\n     */\n    width: number;\n    /**\n     * The **`x`** property of the DOMRect interface represents the x-coordinate of the rectangle, which is the horizontal distance between the viewport's left edge and the rectangle's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/x)\n     */\n    x: number;\n    /**\n     * The **`y`** property of the DOMRect interface represents the y-coordinate of the rectangle, which is the vertical distance between the viewport's top edge and the rectangle's origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/y)\n     */\n    y: number;\n}\n\ndeclare var DOMRect: {\n    prototype: DOMRect;\n    new(x?: number, y?: number, width?: number, height?: number): DOMRect;\n    /**\n     * The **`fromRect()`** static method of the object with a given location and dimensions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)\n     */\n    fromRect(other?: DOMRectInit): DOMRect;\n};\n\n/**\n * The **`DOMRectReadOnly`** interface specifies the standard properties (also used by DOMRect) to define a rectangle whose properties are immutable.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly)\n */\ninterface DOMRectReadOnly {\n    /**\n     * The **`bottom`** read-only property of the **`DOMRectReadOnly`** interface returns the bottom coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/bottom)\n     */\n    readonly bottom: number;\n    /**\n     * The **`height`** read-only property of the **`DOMRectReadOnly`** interface represents the height of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/height)\n     */\n    readonly height: number;\n    /**\n     * The **`left`** read-only property of the **`DOMRectReadOnly`** interface returns the left coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/left)\n     */\n    readonly left: number;\n    /**\n     * The **`right`** read-only property of the **`DOMRectReadOnly`** interface returns the right coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/right)\n     */\n    readonly right: number;\n    /**\n     * The **`top`** read-only property of the **`DOMRectReadOnly`** interface returns the top coordinate value of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/top)\n     */\n    readonly top: number;\n    /**\n     * The **`width`** read-only property of the **`DOMRectReadOnly`** interface represents the width of the `DOMRect`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/width)\n     */\n    readonly width: number;\n    /**\n     * The **`x`** read-only property of the **`DOMRectReadOnly`** interface represents the x coordinate of the `DOMRect`'s origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/x)\n     */\n    readonly x: number;\n    /**\n     * The **`y`** read-only property of the **`DOMRectReadOnly`** interface represents the y coordinate of the `DOMRect`'s origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/y)\n     */\n    readonly y: number;\n    /**\n     * The DOMRectReadOnly method `toJSON()` returns a JSON representation of the `DOMRectReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var DOMRectReadOnly: {\n    prototype: DOMRectReadOnly;\n    new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;\n    /**\n     * The **`fromRect()`** static method of the object with a given location and dimensions.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)\n     */\n    fromRect(other?: DOMRectInit): DOMRectReadOnly;\n};\n\n/**\n * The **`DOMStringList`** interface is a legacy type returned by some APIs and represents a non-modifiable list of strings (`DOMString`).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList)\n */\ninterface DOMStringList {\n    /**\n     * The read-only **`length`** property indicates the number of strings in the DOMStringList.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`contains()`** method returns a boolean indicating whether the given string is in the list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/contains)\n     */\n    contains(string: string): boolean;\n    /**\n     * The **`item()`** method returns a string from a `DOMStringList` by index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList/item)\n     */\n    item(index: number): string | null;\n    [index: number]: string;\n}\n\ndeclare var DOMStringList: {\n    prototype: DOMStringList;\n    new(): DOMStringList;\n};\n\n/**\n * The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)\n */\ninterface DecompressionStream extends GenericTransformStream {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var DecompressionStream: {\n    prototype: DecompressionStream;\n    new(format: CompressionFormat): DecompressionStream;\n};\n\ninterface DedicatedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap, MessageEventTargetEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n    \"rtctransform\": RTCTransformEvent;\n}\n\n/**\n * The **`DedicatedWorkerGlobalScope`** object (the Worker global scope) is accessible through the WorkerGlobalScope.self keyword.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope)\n */\ninterface DedicatedWorkerGlobalScope extends WorkerGlobalScope, AnimationFrameProvider, MessageEventTarget<DedicatedWorkerGlobalScope> {\n    /**\n     * The **`name`** read-only property of the the Worker.Worker constructor can pass to get a reference to the DedicatedWorkerGlobalScope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/rtctransform_event) */\n    onrtctransform: ((this: DedicatedWorkerGlobalScope, ev: RTCTransformEvent) => any) | null;\n    /**\n     * The **`close()`** method of the DedicatedWorkerGlobalScope interface discards any tasks queued in the `DedicatedWorkerGlobalScope`'s event loop, effectively closing this particular scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/close)\n     */\n    close(): void;\n    /**\n     * The **`postMessage()`** method of the DedicatedWorkerGlobalScope interface sends a message to the main thread that spawned it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var DedicatedWorkerGlobalScope: {\n    prototype: DedicatedWorkerGlobalScope;\n    new(): DedicatedWorkerGlobalScope;\n};\n\n/**\n * The **`EXT_blend_minmax`** extension is part of the WebGL API and extends blending capabilities by adding two new blend equations: the minimum or maximum color components of the source and destination colors.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_blend_minmax)\n */\ninterface EXT_blend_minmax {\n    readonly MIN_EXT: 0x8007;\n    readonly MAX_EXT: 0x8008;\n}\n\n/**\n * The **`EXT_color_buffer_float`** extension is part of WebGL and adds the ability to render a variety of floating point formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_float)\n */\ninterface EXT_color_buffer_float {\n}\n\n/**\n * The **`EXT_color_buffer_half_float`** extension is part of the WebGL API and adds the ability to render to 16-bit floating-point color buffers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_half_float)\n */\ninterface EXT_color_buffer_half_float {\n    readonly RGBA16F_EXT: 0x881A;\n    readonly RGB16F_EXT: 0x881B;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: 0x8211;\n    readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;\n}\n\n/**\n * The WebGL API's `EXT_float_blend` extension allows blending and draw buffers with 32-bit floating-point components.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_float_blend)\n */\ninterface EXT_float_blend {\n}\n\n/**\n * The **`EXT_frag_depth`** extension is part of the WebGL API and enables to set a depth value of a fragment from within the fragment shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_frag_depth)\n */\ninterface EXT_frag_depth {\n}\n\n/**\n * The **`EXT_sRGB`** extension is part of the WebGL API and adds sRGB support to textures and framebuffer objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_sRGB)\n */\ninterface EXT_sRGB {\n    readonly SRGB_EXT: 0x8C40;\n    readonly SRGB_ALPHA_EXT: 0x8C42;\n    readonly SRGB8_ALPHA8_EXT: 0x8C43;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT: 0x8210;\n}\n\n/**\n * The **`EXT_shader_texture_lod`** extension is part of the WebGL API and adds additional texture functions to the OpenGL ES Shading Language which provide the shader writer with explicit control of LOD (Level of detail).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_shader_texture_lod)\n */\ninterface EXT_shader_texture_lod {\n}\n\n/**\n * The `EXT_texture_compression_bptc` extension is part of the WebGL API and exposes 4 BPTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_bptc)\n */\ninterface EXT_texture_compression_bptc {\n    readonly COMPRESSED_RGBA_BPTC_UNORM_EXT: 0x8E8C;\n    readonly COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT: 0x8E8D;\n    readonly COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT: 0x8E8E;\n    readonly COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT: 0x8E8F;\n}\n\n/**\n * The `EXT_texture_compression_rgtc` extension is part of the WebGL API and exposes 4 RGTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_rgtc)\n */\ninterface EXT_texture_compression_rgtc {\n    readonly COMPRESSED_RED_RGTC1_EXT: 0x8DBB;\n    readonly COMPRESSED_SIGNED_RED_RGTC1_EXT: 0x8DBC;\n    readonly COMPRESSED_RED_GREEN_RGTC2_EXT: 0x8DBD;\n    readonly COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT: 0x8DBE;\n}\n\n/**\n * The **`EXT_texture_filter_anisotropic`** extension is part of the WebGL API and exposes two constants for anisotropic filtering (AF).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_filter_anisotropic)\n */\ninterface EXT_texture_filter_anisotropic {\n    readonly TEXTURE_MAX_ANISOTROPY_EXT: 0x84FE;\n    readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: 0x84FF;\n}\n\n/**\n * The **`EXT_texture_norm16`** extension is part of the WebGL API and provides a set of new 16-bit signed normalized and unsigned normalized formats (fixed-point texture, renderbuffer and texture buffer).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_norm16)\n */\ninterface EXT_texture_norm16 {\n    readonly R16_EXT: 0x822A;\n    readonly RG16_EXT: 0x822C;\n    readonly RGB16_EXT: 0x8054;\n    readonly RGBA16_EXT: 0x805B;\n    readonly R16_SNORM_EXT: 0x8F98;\n    readonly RG16_SNORM_EXT: 0x8F99;\n    readonly RGB16_SNORM_EXT: 0x8F9A;\n    readonly RGBA16_SNORM_EXT: 0x8F9B;\n}\n\n/**\n * The **`EncodedAudioChunk`** interface of the WebCodecs API represents a chunk of encoded audio data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk)\n */\ninterface EncodedAudioChunk {\n    /**\n     * The **`byteLength`** read-only property of the EncodedAudioChunk interface returns the length in bytes of the encoded audio data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/byteLength)\n     */\n    readonly byteLength: number;\n    /**\n     * The **`duration`** read-only property of the EncodedAudioChunk interface returns an integer indicating the duration of the audio in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`timestamp`** read-only property of the EncodedAudioChunk interface returns an integer indicating the timestamp of the audio in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the EncodedAudioChunk interface returns a value indicating whether the audio chunk is a key chunk, which does not relying on other frames for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/type)\n     */\n    readonly type: EncodedAudioChunkType;\n    /**\n     * The **`copyTo()`** method of the EncodedAudioChunk interface copies the encoded chunk of audio data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedAudioChunk/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource): void;\n}\n\ndeclare var EncodedAudioChunk: {\n    prototype: EncodedAudioChunk;\n    new(init: EncodedAudioChunkInit): EncodedAudioChunk;\n};\n\n/**\n * The **`EncodedVideoChunk`** interface of the WebCodecs API represents a chunk of encoded video data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk)\n */\ninterface EncodedVideoChunk {\n    /**\n     * The **`byteLength`** read-only property of the EncodedVideoChunk interface returns the length in bytes of the encoded video data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/byteLength)\n     */\n    readonly byteLength: number;\n    /**\n     * The **`duration`** read-only property of the EncodedVideoChunk interface returns an integer indicating the duration of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`timestamp`** read-only property of the EncodedVideoChunk interface returns an integer indicating the timestamp of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the EncodedVideoChunk interface returns a value indicating whether the video chunk is a key chunk, which does not rely on other frames for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/type)\n     */\n    readonly type: EncodedVideoChunkType;\n    /**\n     * The **`copyTo()`** method of the EncodedVideoChunk interface copies the encoded chunk of video data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EncodedVideoChunk/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource): void;\n}\n\ndeclare var EncodedVideoChunk: {\n    prototype: EncodedVideoChunk;\n    new(init: EncodedVideoChunkInit): EncodedVideoChunk;\n};\n\n/**\n * The **`ErrorEvent`** interface represents events providing information related to errors in scripts or in files.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)\n */\ninterface ErrorEvent extends Event {\n    /**\n     * The **`colno`** read-only property of the ErrorEvent interface returns an integer containing the column number of the script file on which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno)\n     */\n    readonly colno: number;\n    /**\n     * The **`error`** read-only property of the ErrorEvent interface returns a JavaScript value, such as an Error or DOMException, representing the error associated with this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error)\n     */\n    readonly error: any;\n    /**\n     * The **`filename`** read-only property of the ErrorEvent interface returns a string containing the name of the script file in which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename)\n     */\n    readonly filename: string;\n    /**\n     * The **`lineno`** read-only property of the ErrorEvent interface returns an integer containing the line number of the script file on which the error occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno)\n     */\n    readonly lineno: number;\n    /**\n     * The **`message`** read-only property of the ErrorEvent interface returns a string containing a human-readable error message describing the problem.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message)\n     */\n    readonly message: string;\n}\n\ndeclare var ErrorEvent: {\n    prototype: ErrorEvent;\n    new(type: string, eventInitDict?: ErrorEventInit): ErrorEvent;\n};\n\n/**\n * The **`Event`** interface represents an event which takes place on an `EventTarget`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event)\n */\ninterface Event {\n    /**\n     * The **`bubbles`** read-only property of the Event interface indicates whether the event bubbles up through the DOM tree or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/bubbles)\n     */\n    readonly bubbles: boolean;\n    /**\n     * The **`cancelBubble`** property of the Event interface is deprecated.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelBubble)\n     */\n    cancelBubble: boolean;\n    /**\n     * The **`cancelable`** read-only property of the Event interface indicates whether the event can be canceled, and therefore prevented as if the event never happened.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelable)\n     */\n    readonly cancelable: boolean;\n    /**\n     * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)\n     */\n    readonly composed: boolean;\n    /**\n     * The **`currentTarget`** read-only property of the Event interface identifies the element to which the event handler has been attached.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/currentTarget)\n     */\n    readonly currentTarget: EventTarget | null;\n    /**\n     * The **`defaultPrevented`** read-only property of the Event interface returns a boolean value indicating whether or not the call to Event.preventDefault() canceled the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/defaultPrevented)\n     */\n    readonly defaultPrevented: boolean;\n    /**\n     * The **`eventPhase`** read-only property of the being evaluated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)\n     */\n    readonly eventPhase: number;\n    /**\n     * The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)\n     */\n    readonly isTrusted: boolean;\n    /**\n     * The Event property **`returnValue`** indicates whether the default action for this event has been prevented or not.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/returnValue)\n     */\n    returnValue: boolean;\n    /**\n     * The deprecated **`Event.srcElement`** is an alias for the Event.target property.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/srcElement)\n     */\n    readonly srcElement: EventTarget | null;\n    /**\n     * The read-only **`target`** property of the dispatched.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)\n     */\n    readonly target: EventTarget | null;\n    /**\n     * The **`timeStamp`** read-only property of the Event interface returns the time (in milliseconds) at which the event was created.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/timeStamp)\n     */\n    readonly timeStamp: DOMHighResTimeStamp;\n    /**\n     * The **`type`** read-only property of the Event interface returns a string containing the event's type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/type)\n     */\n    readonly type: string;\n    /**\n     * The **`composedPath()`** method of the Event interface returns the event's path which is an array of the objects on which listeners will be invoked.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composedPath)\n     */\n    composedPath(): EventTarget[];\n    /**\n     * The **`Event.initEvent()`** method is used to initialize the value of an event created using Document.createEvent().\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/initEvent)\n     */\n    initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;\n    /**\n     * The **`preventDefault()`** method of the Event interface tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)\n     */\n    preventDefault(): void;\n    /**\n     * The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)\n     */\n    stopImmediatePropagation(): void;\n    /**\n     * The **`stopPropagation()`** method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopPropagation)\n     */\n    stopPropagation(): void;\n    readonly NONE: 0;\n    readonly CAPTURING_PHASE: 1;\n    readonly AT_TARGET: 2;\n    readonly BUBBLING_PHASE: 3;\n}\n\ndeclare var Event: {\n    prototype: Event;\n    new(type: string, eventInitDict?: EventInit): Event;\n    readonly NONE: 0;\n    readonly CAPTURING_PHASE: 1;\n    readonly AT_TARGET: 2;\n    readonly BUBBLING_PHASE: 3;\n};\n\ninterface EventListener {\n    (evt: Event): void;\n}\n\ninterface EventListenerObject {\n    handleEvent(object: Event): void;\n}\n\ninterface EventSourceEventMap {\n    \"error\": Event;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The **`EventSource`** interface is web content's interface to server-sent events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource)\n */\ninterface EventSource extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/error_event) */\n    onerror: ((this: EventSource, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/message_event) */\n    onmessage: ((this: EventSource, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */\n    onopen: ((this: EventSource, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`url`** read-only property of the URL of the source.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)\n     */\n    readonly url: string;\n    /**\n     * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)\n     */\n    readonly withCredentials: boolean;\n    /**\n     * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)\n     */\n    close(): void;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSED: 2;\n    addEventListener<K extends keyof EventSourceEventMap>(type: K, listener: (this: EventSource, ev: EventSourceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: (this: EventSource, event: MessageEvent) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof EventSourceEventMap>(type: K, listener: (this: EventSource, ev: EventSourceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: (this: EventSource, event: MessageEvent) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var EventSource: {\n    prototype: EventSource;\n    new(url: string | URL, eventSourceInitDict?: EventSourceInit): EventSource;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSED: 2;\n};\n\n/**\n * The **`EventTarget`** interface is implemented by objects that can receive events and may have listeners for them.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget)\n */\ninterface EventTarget {\n    /**\n     * The **`addEventListener()`** method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)\n     */\n    addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;\n    /**\n     * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)\n     */\n    dispatchEvent(event: Event): boolean;\n    /**\n     * The **`removeEventListener()`** method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/removeEventListener)\n     */\n    removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void;\n}\n\ndeclare var EventTarget: {\n    prototype: EventTarget;\n    new(): EventTarget;\n};\n\n/**\n * The **`ExtendableCookieChangeEvent`** interface of the Cookie Store API is the event type passed to ServiceWorkerGlobalScope/cookiechange_event event fired at the ServiceWorkerGlobalScope when any cookie changes occur which match the service worker's cookie change subscription list.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent)\n */\ninterface ExtendableCookieChangeEvent extends ExtendableEvent {\n    /**\n     * The **`changed`** read-only property of the ExtendableCookieChangeEvent interface returns any cookies that have been changed by the given `ExtendableCookieChangeEvent` instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent/changed)\n     */\n    readonly changed: ReadonlyArray<CookieListItem>;\n    /**\n     * The **`deleted`** read-only property of the ExtendableCookieChangeEvent interface returns any cookies that have been deleted by the given `ExtendableCookieChangeEvent` instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent/deleted)\n     */\n    readonly deleted: ReadonlyArray<CookieListItem>;\n}\n\ndeclare var ExtendableCookieChangeEvent: {\n    prototype: ExtendableCookieChangeEvent;\n    new(type: string, eventInitDict?: ExtendableCookieChangeEventInit): ExtendableCookieChangeEvent;\n};\n\n/**\n * The **`ExtendableEvent`** interface extends the lifetime of the `install` and `activate` events dispatched on the global scope as part of the service worker lifecycle.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableEvent)\n */\ninterface ExtendableEvent extends Event {\n    /**\n     * The **`ExtendableEvent.waitUntil()`** method tells the event dispatcher that work is ongoing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableEvent/waitUntil)\n     */\n    waitUntil(f: Promise<any>): void;\n}\n\ndeclare var ExtendableEvent: {\n    prototype: ExtendableEvent;\n    new(type: string, eventInitDict?: ExtendableEventInit): ExtendableEvent;\n};\n\n/**\n * The **`ExtendableMessageEvent`** interface of the Service Worker API represents the event object of a ServiceWorkerGlobalScope/message_event event fired on a service worker (when a message is received on the ServiceWorkerGlobalScope from another context) — extends the lifetime of such events.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent)\n */\ninterface ExtendableMessageEvent extends ExtendableEvent {\n    /**\n     * The **`data`** read-only property of the data type.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent/data)\n     */\n    readonly data: any;\n    /**\n     * The **`lastEventID`** read-only property of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent/lastEventId)\n     */\n    readonly lastEventId: string;\n    /**\n     * The **`origin`** read-only property of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`ports`** read-only property of the channel (the channel the message is being sent through.) An array of MessagePort objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent/ports)\n     */\n    readonly ports: ReadonlyArray<MessagePort>;\n    /**\n     * The **`source`** read-only property of the A Client, ServiceWorker or MessagePort object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent/source)\n     */\n    readonly source: Client | ServiceWorker | MessagePort | null;\n}\n\ndeclare var ExtendableMessageEvent: {\n    prototype: ExtendableMessageEvent;\n    new(type: string, eventInitDict?: ExtendableMessageEventInit): ExtendableMessageEvent;\n};\n\n/**\n * This is the event type for `fetch` events dispatched on the ServiceWorkerGlobalScope.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent)\n */\ninterface FetchEvent extends ExtendableEvent {\n    /**\n     * The **`clientId`** read-only property of the current service worker is controlling.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/clientId)\n     */\n    readonly clientId: string;\n    /**\n     * The **`handled`** property of the FetchEvent interface returns a promise indicating if the event has been handled by the fetch algorithm or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/handled)\n     */\n    readonly handled: Promise<void>;\n    /**\n     * The **`preloadResponse`** read-only property of the FetchEvent interface returns a Promise that resolves to the navigation preload Response if navigation preload was triggered, or `undefined` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/preloadResponse)\n     */\n    readonly preloadResponse: Promise<any>;\n    /**\n     * The **`request`** read-only property of the the event handler.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/request)\n     */\n    readonly request: Request;\n    /**\n     * The **`resultingClientId`** read-only property of the navigation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/resultingClientId)\n     */\n    readonly resultingClientId: string;\n    /**\n     * The **`respondWith()`** method of allows you to provide a promise for a Response yourself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/respondWith)\n     */\n    respondWith(r: Response | PromiseLike<Response>): void;\n}\n\ndeclare var FetchEvent: {\n    prototype: FetchEvent;\n    new(type: string, eventInitDict: FetchEventInit): FetchEvent;\n};\n\n/**\n * The **`File`** interface provides information about files and allows JavaScript in a web page to access their content.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File)\n */\ninterface File extends Blob {\n    /**\n     * The **`lastModified`** read-only property of the File interface provides the last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified)\n     */\n    readonly lastModified: number;\n    /**\n     * The **`name`** read-only property of the File interface returns the name of the file represented by a File object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name)\n     */\n    readonly name: string;\n    /**\n     * The **`webkitRelativePath`** read-only property of the File interface contains a string which specifies the file's path relative to the directory selected by the user in an input element with its `webkitdirectory` attribute set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/webkitRelativePath)\n     */\n    readonly webkitRelativePath: string;\n}\n\ndeclare var File: {\n    prototype: File;\n    new(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File;\n};\n\n/**\n * The **`FileList`** interface represents an object of this type returned by the `files` property of the HTML input element; this lets you access the list of files selected with the `<input type='file'>` element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList)\n */\ninterface FileList {\n    /**\n     * The **`length`** read-only property of the FileList interface returns the number of files in the `FileList`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`item()`** method of the FileList interface returns a File object representing the file at the specified index in the file list.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList/item)\n     */\n    item(index: number): File | null;\n    [index: number]: File;\n}\n\ndeclare var FileList: {\n    prototype: FileList;\n    new(): FileList;\n};\n\ninterface FileReaderEventMap {\n    \"abort\": ProgressEvent<FileReader>;\n    \"error\": ProgressEvent<FileReader>;\n    \"load\": ProgressEvent<FileReader>;\n    \"loadend\": ProgressEvent<FileReader>;\n    \"loadstart\": ProgressEvent<FileReader>;\n    \"progress\": ProgressEvent<FileReader>;\n}\n\n/**\n * The **`FileReader`** interface lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader)\n */\ninterface FileReader extends EventTarget {\n    /**\n     * The **`error`** read-only property of the FileReader interface returns the error that occurred while reading the file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/error)\n     */\n    readonly error: DOMException | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/abort_event) */\n    onabort: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/error_event) */\n    onerror: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/load_event) */\n    onload: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/loadend_event) */\n    onloadend: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/loadstart_event) */\n    onloadstart: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/progress_event) */\n    onprogress: ((this: FileReader, ev: ProgressEvent<FileReader>) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the FileReader interface provides the current state of the reading operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readyState)\n     */\n    readonly readyState: typeof FileReader.EMPTY | typeof FileReader.LOADING | typeof FileReader.DONE;\n    /**\n     * The **`result`** read-only property of the FileReader interface returns the file's contents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/result)\n     */\n    readonly result: string | ArrayBuffer | null;\n    /**\n     * The **`abort()`** method of the FileReader interface aborts the read operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/abort)\n     */\n    abort(): void;\n    /**\n     * The **`readAsArrayBuffer()`** method of the FileReader interface is used to start reading the contents of a specified Blob or File.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsArrayBuffer)\n     */\n    readAsArrayBuffer(blob: Blob): void;\n    /**\n     * The **`readAsBinaryString()`** method of the FileReader interface is used to start reading the contents of the specified Blob or File.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsBinaryString)\n     */\n    readAsBinaryString(blob: Blob): void;\n    /**\n     * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified file's data as a base64 encoded string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)\n     */\n    readAsDataURL(blob: Blob): void;\n    /**\n     * The **`readAsText()`** method of the FileReader interface is used to read the contents of the specified Blob or File.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsText)\n     */\n    readAsText(blob: Blob, encoding?: string): void;\n    readonly EMPTY: 0;\n    readonly LOADING: 1;\n    readonly DONE: 2;\n    addEventListener<K extends keyof FileReaderEventMap>(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof FileReaderEventMap>(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var FileReader: {\n    prototype: FileReader;\n    new(): FileReader;\n    readonly EMPTY: 0;\n    readonly LOADING: 1;\n    readonly DONE: 2;\n};\n\n/**\n * The **`FileReaderSync`** interface allows to read File or Blob objects synchronously.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReaderSync)\n */\ninterface FileReaderSync {\n    /**\n     * The **`readAsArrayBuffer()`** method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into an ArrayBuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReaderSync/readAsArrayBuffer)\n     */\n    readAsArrayBuffer(blob: Blob): ArrayBuffer;\n    /**\n     * The **`readAsBinaryString()`** method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into a string.\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReaderSync/readAsBinaryString)\n     */\n    readAsBinaryString(blob: Blob): string;\n    /**\n     * The **`readAsDataURL()`** method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into a string representing a data URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReaderSync/readAsDataURL)\n     */\n    readAsDataURL(blob: Blob): string;\n    /**\n     * The **`readAsText()`** method of the FileReaderSync interface allows to read File or Blob objects in a synchronous way into a string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReaderSync/readAsText)\n     */\n    readAsText(blob: Blob, encoding?: string): string;\n}\n\ndeclare var FileReaderSync: {\n    prototype: FileReaderSync;\n    new(): FileReaderSync;\n};\n\n/**\n * The **`FileSystemDirectoryHandle`** interface of the File System API provides a handle to a file system directory.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle)\n */\ninterface FileSystemDirectoryHandle extends FileSystemHandle {\n    readonly kind: \"directory\";\n    /**\n     * The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)\n     */\n    getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;\n    /**\n     * The **`getFileHandle()`** method of the directory the method is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)\n     */\n    getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;\n    /**\n     * The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)\n     */\n    removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;\n    /**\n     * The **`resolve()`** method of the directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)\n     */\n    resolve(possibleDescendant: FileSystemHandle): Promise<string[] | null>;\n}\n\ndeclare var FileSystemDirectoryHandle: {\n    prototype: FileSystemDirectoryHandle;\n    new(): FileSystemDirectoryHandle;\n};\n\n/**\n * The **`FileSystemFileHandle`** interface of the File System API represents a handle to a file system entry.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle)\n */\ninterface FileSystemFileHandle extends FileSystemHandle {\n    readonly kind: \"file\";\n    /**\n     * The **`createSyncAccessHandle()`** method of the that can be used to synchronously read from and write to a file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createSyncAccessHandle)\n     */\n    createSyncAccessHandle(): Promise<FileSystemSyncAccessHandle>;\n    /**\n     * The **`createWritable()`** method of the FileSystemFileHandle interface creates a FileSystemWritableFileStream that can be used to write to a file.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createWritable)\n     */\n    createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;\n    /**\n     * The **`getFile()`** method of the If the file on disk changes or is removed after this method is called, the returned ```js-nolint getFile() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)\n     */\n    getFile(): Promise<File>;\n}\n\ndeclare var FileSystemFileHandle: {\n    prototype: FileSystemFileHandle;\n    new(): FileSystemFileHandle;\n};\n\n/**\n * The **`FileSystemHandle`** interface of the File System API is an object which represents a file or directory entry.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle)\n */\ninterface FileSystemHandle {\n    /**\n     * The **`kind`** read-only property of the `'file'` if the associated entry is a file or `'directory'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)\n     */\n    readonly kind: FileSystemHandleKind;\n    /**\n     * The **`name`** read-only property of the handle.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)\n     */\n    readonly name: string;\n    /**\n     * The **`isSameEntry()`** method of the ```js-nolint isSameEntry(fileSystemHandle) ``` - FileSystemHandle - : The `FileSystemHandle` to match against the handle on which the method is invoked.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)\n     */\n    isSameEntry(other: FileSystemHandle): Promise<boolean>;\n}\n\ndeclare var FileSystemHandle: {\n    prototype: FileSystemHandle;\n    new(): FileSystemHandle;\n};\n\n/**\n * The **`FileSystemSyncAccessHandle`** interface of the File System API represents a synchronous handle to a file system entry.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle)\n */\ninterface FileSystemSyncAccessHandle {\n    /**\n     * The **`close()`** method of the ```js-nolint close() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/close)\n     */\n    close(): void;\n    /**\n     * The **`flush()`** method of the Bear in mind that you only need to call this method if you need the changes committed to disk at a specific time, otherwise you can leave the underlying operating system to handle this when it sees fit, which should be OK in most cases.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/flush)\n     */\n    flush(): void;\n    /**\n     * The **`getSize()`** method of the ```js-nolint getSize() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/getSize)\n     */\n    getSize(): number;\n    /**\n     * The **`read()`** method of the ```js-nolint read(buffer, options) ``` - `buffer` - : An ArrayBuffer or `ArrayBufferView` (such as a DataView) representing the buffer that the file content should be read into.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/read)\n     */\n    read(buffer: AllowSharedBufferSource, options?: FileSystemReadWriteOptions): number;\n    /**\n     * The **`truncate()`** method of the ```js-nolint truncate(newSize) ``` - `newSize` - : The number of bytes to resize the file to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/truncate)\n     */\n    truncate(newSize: number): void;\n    /**\n     * The **`write()`** method of the Files within the origin private file system are not visible to end-users, therefore are not subject to the same security checks as methods running on files within the user-visible file system.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemSyncAccessHandle/write)\n     */\n    write(buffer: AllowSharedBufferSource, options?: FileSystemReadWriteOptions): number;\n}\n\ndeclare var FileSystemSyncAccessHandle: {\n    prototype: FileSystemSyncAccessHandle;\n    new(): FileSystemSyncAccessHandle;\n};\n\n/**\n * The **`FileSystemWritableFileStream`** interface of the File System API is a WritableStream object with additional convenience methods, which operates on a single file on disk.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream)\n */\ninterface FileSystemWritableFileStream extends WritableStream {\n    /**\n     * The **`seek()`** method of the FileSystemWritableFileStream interface updates the current file cursor offset to the position (in bytes) specified when calling the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/seek)\n     */\n    seek(position: number): Promise<void>;\n    /**\n     * The **`truncate()`** method of the FileSystemWritableFileStream interface resizes the file associated with the stream to the specified size in bytes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/truncate)\n     */\n    truncate(size: number): Promise<void>;\n    /**\n     * The **`write()`** method of the FileSystemWritableFileStream interface writes content into the file the method is called on, at the current file cursor offset.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream/write)\n     */\n    write(data: FileSystemWriteChunkType): Promise<void>;\n}\n\ndeclare var FileSystemWritableFileStream: {\n    prototype: FileSystemWritableFileStream;\n    new(): FileSystemWritableFileStream;\n};\n\n/**\n * The **`FontFace`** interface of the CSS Font Loading API represents a single usable font face.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace)\n */\ninterface FontFace {\n    /**\n     * The **`ascentOverride`** property of the FontFace interface returns and sets the ascent metric for the font, the height above the baseline that CSS uses to lay out line boxes in an inline formatting context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/ascentOverride)\n     */\n    ascentOverride: string;\n    /**\n     * The **`descentOverride`** property of the FontFace interface returns and sets the value of the @font-face/descent-override descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/descentOverride)\n     */\n    descentOverride: string;\n    /**\n     * The **`display`** property of the FontFace interface determines how a font face is displayed based on whether and when it is downloaded and ready to use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/display)\n     */\n    display: FontDisplay;\n    /**\n     * The **`FontFace.family`** property allows the author to get or set the font family of a FontFace object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/family)\n     */\n    family: string;\n    /**\n     * The **`featureSettings`** property of the FontFace interface retrieves or sets infrequently used font features that are not available from a font's variant properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/featureSettings)\n     */\n    featureSettings: string;\n    /**\n     * The **`lineGapOverride`** property of the FontFace interface returns and sets the value of the @font-face/line-gap-override descriptor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/lineGapOverride)\n     */\n    lineGapOverride: string;\n    /**\n     * The **`loaded`** read-only property of the FontFace interface returns a Promise that resolves with the current `FontFace` object when the font specified in the object's constructor is done loading or rejects with a `SyntaxError`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/loaded)\n     */\n    readonly loaded: Promise<FontFace>;\n    /**\n     * The **`status`** read-only property of the FontFace interface returns an enumerated value indicating the status of the font, one of `'unloaded'`, `'loading'`, `'loaded'`, or `'error'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/status)\n     */\n    readonly status: FontFaceLoadStatus;\n    /**\n     * The **`stretch`** property of the FontFace interface retrieves or sets how the font stretches.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/stretch)\n     */\n    stretch: string;\n    /**\n     * The **`style`** property of the FontFace interface retrieves or sets the font's style.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/style)\n     */\n    style: string;\n    /**\n     * The **`unicodeRange`** property of the FontFace interface retrieves or sets the range of unicode code points encompassing the font.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange)\n     */\n    unicodeRange: string;\n    /**\n     * The **`weight`** property of the FontFace interface retrieves or sets the weight of the font.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/weight)\n     */\n    weight: string;\n    /**\n     * The **`load()`** method of the FontFace interface requests and loads a font whose `source` was specified as a URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/load)\n     */\n    load(): Promise<FontFace>;\n}\n\ndeclare var FontFace: {\n    prototype: FontFace;\n    new(family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;\n};\n\ninterface FontFaceSetEventMap {\n    \"loading\": FontFaceSetLoadEvent;\n    \"loadingdone\": FontFaceSetLoadEvent;\n    \"loadingerror\": FontFaceSetLoadEvent;\n}\n\n/**\n * The **`FontFaceSet`** interface of the CSS Font Loading API manages the loading of font-faces and querying of their download status.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet)\n */\ninterface FontFaceSet extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loading_event) */\n    onloading: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loadingdone_event) */\n    onloadingdone: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loadingerror_event) */\n    onloadingerror: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;\n    /**\n     * The `ready` read-only property of the FontFaceSet interface returns a Promise that resolves to the given FontFaceSet.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/ready)\n     */\n    readonly ready: Promise<FontFaceSet>;\n    /**\n     * The **`status`** read-only property of the FontFaceSet interface returns the loading state of the fonts in the set.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/status)\n     */\n    readonly status: FontFaceSetLoadStatus;\n    /**\n     * The `check()` method of the FontFaceSet returns `true` if you can render some text using the given font specification without attempting to use any fonts in this `FontFaceSet` that are not yet fully loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/check)\n     */\n    check(font: string, text?: string): boolean;\n    /**\n     * The `load()` method of the FontFaceSet forces all the fonts given in parameters to be loaded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/load)\n     */\n    load(font: string, text?: string): Promise<FontFace[]>;\n    forEach(callbackfn: (value: FontFace, key: FontFace, parent: FontFaceSet) => void, thisArg?: any): void;\n    addEventListener<K extends keyof FontFaceSetEventMap>(type: K, listener: (this: FontFaceSet, ev: FontFaceSetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof FontFaceSetEventMap>(type: K, listener: (this: FontFaceSet, ev: FontFaceSetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var FontFaceSet: {\n    prototype: FontFaceSet;\n    new(): FontFaceSet;\n};\n\n/**\n * The **`FontFaceSetLoadEvent`** interface of the CSS Font Loading API represents events fired at a FontFaceSet after it starts loading font faces.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent)\n */\ninterface FontFaceSetLoadEvent extends Event {\n    /**\n     * The **`fontfaces`** read-only property of the An array of FontFace instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)\n     */\n    readonly fontfaces: ReadonlyArray<FontFace>;\n}\n\ndeclare var FontFaceSetLoadEvent: {\n    prototype: FontFaceSetLoadEvent;\n    new(type: string, eventInitDict?: FontFaceSetLoadEventInit): FontFaceSetLoadEvent;\n};\n\ninterface FontFaceSource {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fonts) */\n    readonly fonts: FontFaceSet;\n}\n\n/**\n * The **`FormData`** interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the Window/fetch, XMLHttpRequest.send() or navigator.sendBeacon() methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData)\n */\ninterface FormData {\n    /**\n     * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append)\n     */\n    append(name: string, value: string | Blob): void;\n    append(name: string, value: string): void;\n    append(name: string, blobValue: Blob, filename?: string): void;\n    /**\n     * The **`delete()`** method of the FormData interface deletes a key and its value(s) from a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/delete)\n     */\n    delete(name: string): void;\n    /**\n     * The **`get()`** method of the FormData interface returns the first value associated with a given key from within a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/get)\n     */\n    get(name: string): FormDataEntryValue | null;\n    /**\n     * The **`getAll()`** method of the FormData interface returns all the values associated with a given key from within a `FormData` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/getAll)\n     */\n    getAll(name: string): FormDataEntryValue[];\n    /**\n     * The **`has()`** method of the FormData interface returns whether a `FormData` object contains a certain key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has)\n     */\n    has(name: string): boolean;\n    /**\n     * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set)\n     */\n    set(name: string, value: string | Blob): void;\n    set(name: string, value: string): void;\n    set(name: string, blobValue: Blob, filename?: string): void;\n    forEach(callbackfn: (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg?: any): void;\n}\n\ndeclare var FormData: {\n    prototype: FormData;\n    new(): FormData;\n};\n\n/**\n * The **`GPUError`** interface of the WebGPU API is the base interface for errors surfaced by GPUDevice.popErrorScope and the GPUDevice.uncapturederror_event event.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError)\n */\ninterface GPUError {\n    /**\n     * The **`message`** read-only property of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)\n     */\n    readonly message: string;\n}\n\ninterface GenericTransformStream {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream/readable) */\n    readonly readable: ReadableStream;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream/writable) */\n    readonly writable: WritableStream;\n}\n\n/**\n * The **`Headers`** interface of the Fetch API allows you to perform various actions on HTTP request and response headers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers)\n */\ninterface Headers {\n    /**\n     * The **`append()`** method of the Headers interface appends a new value onto an existing header inside a `Headers` object, or adds the header if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/append)\n     */\n    append(name: string, value: string): void;\n    /**\n     * The **`delete()`** method of the Headers interface deletes a header from the current `Headers` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/delete)\n     */\n    delete(name: string): void;\n    /**\n     * The **`get()`** method of the Headers interface returns a byte string of all the values of a header within a `Headers` object with a given name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/get)\n     */\n    get(name: string): string | null;\n    /**\n     * The **`getSetCookie()`** method of the Headers interface returns an array containing the values of all Set-Cookie headers associated with a response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/getSetCookie)\n     */\n    getSetCookie(): string[];\n    /**\n     * The **`has()`** method of the Headers interface returns a boolean stating whether a `Headers` object contains a certain header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/has)\n     */\n    has(name: string): boolean;\n    /**\n     * The **`set()`** method of the Headers interface sets a new value for an existing header inside a `Headers` object, or adds the header if it does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/set)\n     */\n    set(name: string, value: string): void;\n    forEach(callbackfn: (value: string, key: string, parent: Headers) => void, thisArg?: any): void;\n}\n\ndeclare var Headers: {\n    prototype: Headers;\n    new(init?: HeadersInit): Headers;\n};\n\n/**\n * The **`IDBCursor`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor)\n */\ninterface IDBCursor {\n    /**\n     * The **`direction`** read-only property of the direction of traversal of the cursor (set using section below for possible values.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)\n     */\n    readonly direction: IDBCursorDirection;\n    /**\n     * The **`key`** read-only property of the position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)\n     */\n    readonly key: IDBValidKey;\n    /**\n     * The **`primaryKey`** read-only property of the cursor is currently being iterated or has iterated outside its range, this is set to undefined.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)\n     */\n    readonly primaryKey: IDBValidKey;\n    /**\n     * The **`request`** read-only property of the IDBCursor interface returns the IDBRequest used to obtain the cursor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/request)\n     */\n    readonly request: IDBRequest;\n    /**\n     * The **`source`** read-only property of the null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)\n     */\n    readonly source: IDBObjectStore | IDBIndex;\n    /**\n     * The **`advance()`** method of the IDBCursor interface sets the number of times a cursor should move its position forward.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/advance)\n     */\n    advance(count: number): void;\n    /**\n     * The **`continue()`** method of the IDBCursor interface advances the cursor to the next position along its direction, to the item whose key matches the optional key parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continue)\n     */\n    continue(key?: IDBValidKey): void;\n    /**\n     * The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)\n     */\n    continuePrimaryKey(key: IDBValidKey, primaryKey: IDBValidKey): void;\n    /**\n     * The **`delete()`** method of the IDBCursor interface returns an IDBRequest object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/delete)\n     */\n    delete(): IDBRequest<undefined>;\n    /**\n     * The **`update()`** method of the IDBCursor interface returns an IDBRequest object, and, in a separate thread, updates the value at the current position of the cursor in the object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/update)\n     */\n    update(value: any): IDBRequest<IDBValidKey>;\n}\n\ndeclare var IDBCursor: {\n    prototype: IDBCursor;\n    new(): IDBCursor;\n};\n\n/**\n * The **`IDBCursorWithValue`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue)\n */\ninterface IDBCursorWithValue extends IDBCursor {\n    /**\n     * The **`value`** read-only property of the whatever that is.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)\n     */\n    readonly value: any;\n}\n\ndeclare var IDBCursorWithValue: {\n    prototype: IDBCursorWithValue;\n    new(): IDBCursorWithValue;\n};\n\ninterface IDBDatabaseEventMap {\n    \"abort\": Event;\n    \"close\": Event;\n    \"error\": Event;\n    \"versionchange\": IDBVersionChangeEvent;\n}\n\n/**\n * The **`IDBDatabase`** interface of the IndexedDB API provides a connection to a database; you can use an `IDBDatabase` object to open a transaction on your database then create, manipulate, and delete objects (data) in that database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase)\n */\ninterface IDBDatabase extends EventTarget {\n    /**\n     * The **`name`** read-only property of the `IDBDatabase` interface is a string that contains the name of the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/name)\n     */\n    readonly name: string;\n    /**\n     * The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)\n     */\n    readonly objectStoreNames: DOMStringList;\n    onabort: ((this: IDBDatabase, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close_event) */\n    onclose: ((this: IDBDatabase, ev: Event) => any) | null;\n    onerror: ((this: IDBDatabase, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/versionchange_event) */\n    onversionchange: ((this: IDBDatabase, ev: IDBVersionChangeEvent) => any) | null;\n    /**\n     * The **`version`** property of the IDBDatabase interface is a 64-bit integer that contains the version of the connected database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/version)\n     */\n    readonly version: number;\n    /**\n     * The **`close()`** method of the IDBDatabase interface returns immediately and closes the connection in a separate thread.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/close)\n     */\n    close(): void;\n    /**\n     * The **`createObjectStore()`** method of the The method takes the name of the store as well as a parameter object that lets you define important optional properties.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)\n     */\n    createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;\n    /**\n     * The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)\n     */\n    deleteObjectStore(name: string): void;\n    /**\n     * The **`transaction`** method of the IDBDatabase interface immediately returns a transaction object (IDBTransaction) containing the IDBTransaction.objectStore method, which you can use to access your object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/transaction)\n     */\n    transaction(storeNames: string | string[], mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction;\n    addEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBDatabase: {\n    prototype: IDBDatabase;\n    new(): IDBDatabase;\n};\n\n/**\n * The **`IDBFactory`** interface of the IndexedDB API lets applications asynchronously access the indexed databases.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory)\n */\ninterface IDBFactory {\n    /**\n     * The **`cmp()`** method of the IDBFactory interface compares two values as keys to determine equality and ordering for IndexedDB operations, such as storing and iterating.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/cmp)\n     */\n    cmp(first: any, second: any): number;\n    /**\n     * The **`databases`** method of the IDBFactory interface returns a Promise that fulfills with an array of objects containing the name and version of all the available databases.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/databases)\n     */\n    databases(): Promise<IDBDatabaseInfo[]>;\n    /**\n     * The **`deleteDatabase()`** method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)\n     */\n    deleteDatabase(name: string): IDBOpenDBRequest;\n    /**\n     * The **`open()`** method of the IDBFactory interface requests opening a connection to a database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/open)\n     */\n    open(name: string, version?: number): IDBOpenDBRequest;\n}\n\ndeclare var IDBFactory: {\n    prototype: IDBFactory;\n    new(): IDBFactory;\n};\n\n/**\n * `IDBIndex` interface of the IndexedDB API provides asynchronous access to an index in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex)\n */\ninterface IDBIndex {\n    /**\n     * The **`keyPath`** property of the IDBIndex interface returns the key path of the current index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/keyPath)\n     */\n    readonly keyPath: string | string[];\n    /**\n     * The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)\n     */\n    readonly multiEntry: boolean;\n    /**\n     * The **`name`** property of the IDBIndex interface contains a string which names the index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/name)\n     */\n    name: string;\n    /**\n     * The **`objectStore`** property of the IDBIndex interface returns the object store referenced by the current index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/objectStore)\n     */\n    readonly objectStore: IDBObjectStore;\n    /**\n     * The **`unique`** read-only property returns a boolean that states whether the index allows duplicate keys.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/unique)\n     */\n    readonly unique: boolean;\n    /**\n     * The **`count()`** method of the IDBIndex interface returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/count)\n     */\n    count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;\n    /**\n     * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an If a value is found, then a structured clone of it is created and set as the `result` of the request object: this returns the record the key is associated with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)\n     */\n    get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;\n    /**\n     * The **`getAll()`** method of the IDBIndex interface retrieves all objects that are inside the index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)\n     */\n    getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;\n    /**\n     * The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)\n     */\n    getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;\n    /**\n     * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an If a primary key is found, it is set as the `result` of the request object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)\n     */\n    getKey(query: IDBValidKey | IDBKeyRange): IDBRequest<IDBValidKey | undefined>;\n    /**\n     * The **`openCursor()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openCursor)\n     */\n    openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;\n    /**\n     * The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)\n     */\n    openKeyCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursor | null>;\n}\n\ndeclare var IDBIndex: {\n    prototype: IDBIndex;\n    new(): IDBIndex;\n};\n\n/**\n * The **`IDBKeyRange`** interface of the IndexedDB API represents a continuous interval over some data type that is used for keys.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange)\n */\ninterface IDBKeyRange {\n    /**\n     * The **`lower`** read-only property of the The lower bound of the key range (can be any type.) The following example illustrates how you'd use a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)\n     */\n    readonly lower: any;\n    /**\n     * The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)\n     */\n    readonly lowerOpen: boolean;\n    /**\n     * The **`upper`** read-only property of the The upper bound of the key range (can be any type.) The following example illustrates how you'd use a key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)\n     */\n    readonly upper: any;\n    /**\n     * The **`upperOpen`** read-only property of the upper-bound value is included in the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)\n     */\n    readonly upperOpen: boolean;\n    /**\n     * The `includes()` method of the IDBKeyRange interface returns a boolean indicating whether a specified key is inside the key range.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/includes)\n     */\n    includes(key: any): boolean;\n}\n\ndeclare var IDBKeyRange: {\n    prototype: IDBKeyRange;\n    new(): IDBKeyRange;\n    /**\n     * The **`bound()`** static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)\n     */\n    bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;\n    /**\n     * The **`lowerBound()`** static method of the By default, it includes the lower endpoint value and is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)\n     */\n    lowerBound(lower: any, open?: boolean): IDBKeyRange;\n    /**\n     * The **`only()`** static method of the IDBKeyRange interface creates a new key range containing a single value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)\n     */\n    only(value: any): IDBKeyRange;\n    /**\n     * The **`upperBound()`** static method of the it includes the upper endpoint value and is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)\n     */\n    upperBound(upper: any, open?: boolean): IDBKeyRange;\n};\n\n/**\n * The **`IDBObjectStore`** interface of the IndexedDB API represents an object store in a database.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore)\n */\ninterface IDBObjectStore {\n    /**\n     * The **`autoIncrement`** read-only property of the for this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)\n     */\n    readonly autoIncrement: boolean;\n    /**\n     * The **`indexNames`** read-only property of the in this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)\n     */\n    readonly indexNames: DOMStringList;\n    /**\n     * The **`keyPath`** read-only property of the If this property is null, the application must provide a key for each modification operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)\n     */\n    readonly keyPath: string | string[] | null;\n    /**\n     * The **`name`** property of the IDBObjectStore interface indicates the name of this object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/name)\n     */\n    name: string;\n    /**\n     * The **`transaction`** read-only property of the object store belongs.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)\n     */\n    readonly transaction: IDBTransaction;\n    /**\n     * The **`add()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, creates a structured clone of the value, and stores the cloned value in the object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/add)\n     */\n    add(value: any, key?: IDBValidKey): IDBRequest<IDBValidKey>;\n    /**\n     * The **`clear()`** method of the IDBObjectStore interface creates and immediately returns an IDBRequest object, and clears this object store in a separate thread.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/clear)\n     */\n    clear(): IDBRequest<undefined>;\n    /**\n     * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or of records in the store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)\n     */\n    count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;\n    /**\n     * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)\n     */\n    createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;\n    /**\n     * The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)\n     */\n    delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;\n    /**\n     * The **`deleteIndex()`** method of the the connected database, used during a version upgrade.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)\n     */\n    deleteIndex(name: string): void;\n    /**\n     * The **`get()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object selected by the specified key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/get)\n     */\n    get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;\n    /**\n     * The **`getAll()`** method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)\n     */\n    getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;\n    /**\n     * The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)\n     */\n    getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;\n    /**\n     * The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)\n     */\n    getKey(query: IDBValidKey | IDBKeyRange): IDBRequest<IDBValidKey | undefined>;\n    /**\n     * The **`index()`** method of the IDBObjectStore interface opens a named index in the current object store, after which it can be used to, for example, return a series of records sorted by that index using a cursor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/index)\n     */\n    index(name: string): IDBIndex;\n    /**\n     * The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)\n     */\n    openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;\n    /**\n     * The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)\n     */\n    openKeyCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursor | null>;\n    /**\n     * The **`put()`** method of the IDBObjectStore interface updates a given record in a database, or inserts a new record if the given item does not already exist.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/put)\n     */\n    put(value: any, key?: IDBValidKey): IDBRequest<IDBValidKey>;\n}\n\ndeclare var IDBObjectStore: {\n    prototype: IDBObjectStore;\n    new(): IDBObjectStore;\n};\n\ninterface IDBOpenDBRequestEventMap extends IDBRequestEventMap {\n    \"blocked\": IDBVersionChangeEvent;\n    \"upgradeneeded\": IDBVersionChangeEvent;\n}\n\n/**\n * The **`IDBOpenDBRequest`** interface of the IndexedDB API provides access to the results of requests to open or delete databases (performed using IDBFactory.open and IDBFactory.deleteDatabase), using specific event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest)\n */\ninterface IDBOpenDBRequest extends IDBRequest<IDBDatabase> {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest/blocked_event) */\n    onblocked: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest/upgradeneeded_event) */\n    onupgradeneeded: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null;\n    addEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBOpenDBRequest: {\n    prototype: IDBOpenDBRequest;\n    new(): IDBOpenDBRequest;\n};\n\ninterface IDBRequestEventMap {\n    \"error\": Event;\n    \"success\": Event;\n}\n\n/**\n * The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)\n */\ninterface IDBRequest<T = any> extends EventTarget {\n    /**\n     * The **`error`** read-only property of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)\n     */\n    readonly error: DOMException | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error_event) */\n    onerror: ((this: IDBRequest<T>, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */\n    onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;\n    /**\n     * The **`readyState`** read-only property of the Every request starts in the `pending` state.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)\n     */\n    readonly readyState: IDBRequestReadyState;\n    /**\n     * The **`result`** read-only property of the any - `InvalidStateError` DOMException - : Thrown when attempting to access the property if the request is not completed, and therefore the result is not available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)\n     */\n    readonly result: T;\n    /**\n     * The **`source`** read-only property of the Index or an object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)\n     */\n    readonly source: IDBObjectStore | IDBIndex | IDBCursor;\n    /**\n     * The **`transaction`** read-only property of the IDBRequest interface returns the transaction for the request, that is, the transaction the request is being made inside.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/transaction)\n     */\n    readonly transaction: IDBTransaction | null;\n    addEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest<T>, ev: IDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest<T>, ev: IDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBRequest: {\n    prototype: IDBRequest;\n    new(): IDBRequest;\n};\n\ninterface IDBTransactionEventMap {\n    \"abort\": Event;\n    \"complete\": Event;\n    \"error\": Event;\n}\n\n/**\n * The **`IDBTransaction`** interface of the IndexedDB API provides a static, asynchronous transaction on a database using event handler attributes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction)\n */\ninterface IDBTransaction extends EventTarget {\n    /**\n     * The **`db`** read-only property of the IDBTransaction interface returns the database connection with which this transaction is associated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/db)\n     */\n    readonly db: IDBDatabase;\n    /**\n     * The **`durability`** read-only property of the IDBTransaction interface returns the durability hint the transaction was created with.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/durability)\n     */\n    readonly durability: IDBTransactionDurability;\n    /**\n     * The **`IDBTransaction.error`** property of the IDBTransaction interface returns the type of error when there is an unsuccessful transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/error)\n     */\n    readonly error: DOMException | null;\n    /**\n     * The **`mode`** read-only property of the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)\n     */\n    readonly mode: IDBTransactionMode;\n    /**\n     * The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)\n     */\n    readonly objectStoreNames: DOMStringList;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */\n    onabort: ((this: IDBTransaction, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/complete_event) */\n    oncomplete: ((this: IDBTransaction, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/error_event) */\n    onerror: ((this: IDBTransaction, ev: Event) => any) | null;\n    /**\n     * The **`abort()`** method of the IDBTransaction interface rolls back all the changes to objects in the database associated with this transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort)\n     */\n    abort(): void;\n    /**\n     * The **`commit()`** method of the IDBTransaction interface commits the transaction if it is called on an active transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/commit)\n     */\n    commit(): void;\n    /**\n     * The **`objectStore()`** method of the added to the scope of this transaction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)\n     */\n    objectStore(name: string): IDBObjectStore;\n    addEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var IDBTransaction: {\n    prototype: IDBTransaction;\n    new(): IDBTransaction;\n};\n\n/**\n * The **`IDBVersionChangeEvent`** interface of the IndexedDB API indicates that the version of the database has changed, as the result of an IDBOpenDBRequest.upgradeneeded_event event handler function.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent)\n */\ninterface IDBVersionChangeEvent extends Event {\n    /**\n     * The **`newVersion`** read-only property of the database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)\n     */\n    readonly newVersion: number | null;\n    /**\n     * The **`oldVersion`** read-only property of the database.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)\n     */\n    readonly oldVersion: number;\n}\n\ndeclare var IDBVersionChangeEvent: {\n    prototype: IDBVersionChangeEvent;\n    new(type: string, eventInitDict?: IDBVersionChangeEventInit): IDBVersionChangeEvent;\n};\n\n/**\n * The **`ImageBitmap`** interface represents a bitmap image which can be drawn to a canvas without undue latency.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap)\n */\ninterface ImageBitmap {\n    /**\n     * The **`ImageBitmap.height`** read-only property returns the ImageBitmap object's height in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/height)\n     */\n    readonly height: number;\n    /**\n     * The **`ImageBitmap.width`** read-only property returns the ImageBitmap object's width in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/width)\n     */\n    readonly width: number;\n    /**\n     * The **`ImageBitmap.close()`** method disposes of all graphical resources associated with an `ImageBitmap`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap/close)\n     */\n    close(): void;\n}\n\ndeclare var ImageBitmap: {\n    prototype: ImageBitmap;\n    new(): ImageBitmap;\n};\n\n/**\n * The **`ImageBitmapRenderingContext`** interface is a canvas rendering context that provides the functionality to replace the canvas's contents with the given ImageBitmap.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext)\n */\ninterface ImageBitmapRenderingContext {\n    /**\n     * The **`ImageBitmapRenderingContext.transferFromImageBitmap()`** method displays the given ImageBitmap in the canvas associated with this rendering context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/transferFromImageBitmap)\n     */\n    transferFromImageBitmap(bitmap: ImageBitmap | null): void;\n}\n\ndeclare var ImageBitmapRenderingContext: {\n    prototype: ImageBitmapRenderingContext;\n    new(): ImageBitmapRenderingContext;\n};\n\n/**\n * The **`ImageData`** interface represents the underlying pixel data of an area of a canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData)\n */\ninterface ImageData {\n    /**\n     * The read-only **`ImageData.colorSpace`** property is a string indicating the color space of the image data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/colorSpace)\n     */\n    readonly colorSpace: PredefinedColorSpace;\n    /**\n     * The readonly **`ImageData.data`** property returns a pixel data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)\n     */\n    readonly data: ImageDataArray;\n    /**\n     * The readonly **`ImageData.height`** property returns the number of rows in the ImageData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/height)\n     */\n    readonly height: number;\n    /**\n     * The readonly **`ImageData.width`** property returns the number of pixels per row in the ImageData object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/width)\n     */\n    readonly width: number;\n}\n\ndeclare var ImageData: {\n    prototype: ImageData;\n    new(sw: number, sh: number, settings?: ImageDataSettings): ImageData;\n    new(data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;\n};\n\n/**\n * The **`ImageDecoder`** interface of the WebCodecs API provides a way to unpack and decode encoded image data.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder)\n */\ninterface ImageDecoder {\n    /**\n     * The **`complete`** read-only property of the ImageDecoder interface returns true if encoded data has completed buffering.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/complete)\n     */\n    readonly complete: boolean;\n    /**\n     * The **`completed`** read-only property of the ImageDecoder interface returns a promise that resolves once encoded data has finished buffering.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/completed)\n     */\n    readonly completed: Promise<void>;\n    /**\n     * The **`tracks`** read-only property of the ImageDecoder interface returns a list of the tracks in the encoded image data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/tracks)\n     */\n    readonly tracks: ImageTrackList;\n    /**\n     * The **`type`** read-only property of the ImageDecoder interface reflects the MIME type configured during construction.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/type)\n     */\n    readonly type: string;\n    /**\n     * The **`close()`** method of the ImageDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`decode()`** method of the ImageDecoder interface enqueues a control message to decode the frame of an image.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/decode)\n     */\n    decode(options?: ImageDecodeOptions): Promise<ImageDecodeResult>;\n    /**\n     * The **`reset()`** method of the ImageDecoder interface aborts all pending `decode()` operations; rejecting all pending promises.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/reset)\n     */\n    reset(): void;\n}\n\ndeclare var ImageDecoder: {\n    prototype: ImageDecoder;\n    new(init: ImageDecoderInit): ImageDecoder;\n    /**\n     * The **`ImageDecoder.isTypeSupported()`** static method checks if a given MIME type can be decoded by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/isTypeSupported_static)\n     */\n    isTypeSupported(type: string): Promise<boolean>;\n};\n\n/**\n * The **`ImageTrack`** interface of the WebCodecs API represents an individual image track.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack)\n */\ninterface ImageTrack {\n    /**\n     * The **`animated`** property of the ImageTrack interface returns `true` if the track is animated and therefore has multiple frames.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/animated)\n     */\n    readonly animated: boolean;\n    /**\n     * The **`frameCount`** property of the ImageTrack interface returns the number of frames in the track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/frameCount)\n     */\n    readonly frameCount: number;\n    /**\n     * The **`repetitionCount`** property of the ImageTrack interface returns the number of repetitions of this track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/repetitionCount)\n     */\n    readonly repetitionCount: number;\n    /**\n     * The **`selected`** property of the ImageTrack interface returns `true` if the track is selected for decoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/selected)\n     */\n    selected: boolean;\n}\n\ndeclare var ImageTrack: {\n    prototype: ImageTrack;\n    new(): ImageTrack;\n};\n\n/**\n * The **`ImageTrackList`** interface of the WebCodecs API represents a list of image tracks.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList)\n */\ninterface ImageTrackList {\n    /**\n     * The **`length`** property of the ImageTrackList interface returns the length of the `ImageTrackList`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/length)\n     */\n    readonly length: number;\n    /**\n     * The **`ready`** property of the ImageTrackList interface returns a Promise that resolves when the `ImageTrackList` is populated with ImageTrack.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`selectedIndex`** property of the ImageTrackList interface returns the `index` of the selected track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedIndex)\n     */\n    readonly selectedIndex: number;\n    /**\n     * The **`selectedTrack`** property of the ImageTrackList interface returns an ImageTrack object representing the currently selected track.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedTrack)\n     */\n    readonly selectedTrack: ImageTrack | null;\n    [index: number]: ImageTrack;\n}\n\ndeclare var ImageTrackList: {\n    prototype: ImageTrackList;\n    new(): ImageTrackList;\n};\n\ninterface ImportMeta {\n    url: string;\n    resolve(specifier: string): string;\n}\n\n/**\n * The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (`COMPLETION_STATUS_KHR`) can be queried without potentially incurring stalls.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile)\n */\ninterface KHR_parallel_shader_compile {\n    readonly COMPLETION_STATUS_KHR: 0x91B1;\n}\n\n/**\n * The **`Lock`** interface of the Web Locks API provides the name and mode of a lock.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock)\n */\ninterface Lock {\n    /**\n     * The **`mode`** read-only property of the Lock interface returns the access mode passed to LockManager.request() when the lock was requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/mode)\n     */\n    readonly mode: LockMode;\n    /**\n     * The **`name`** read-only property of the Lock interface returns the _name_ passed to The name of a lock is passed by script when the lock is requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)\n     */\n    readonly name: string;\n}\n\ndeclare var Lock: {\n    prototype: Lock;\n    new(): Lock;\n};\n\n/**\n * The **`LockManager`** interface of the Web Locks API provides methods for requesting a new Lock object and querying for an existing `Lock` object.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager)\n */\ninterface LockManager {\n    /**\n     * The **`query()`** method of the LockManager interface returns a Promise that resolves with an object containing information about held and pending locks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager/query)\n     */\n    query(): Promise<LockManagerSnapshot>;\n    /**\n     * The **`request()`** method of the LockManager interface requests a Lock object with parameters specifying its name and characteristics.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager/request)\n     */\n    request<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;\n    request<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;\n}\n\ndeclare var LockManager: {\n    prototype: LockManager;\n    new(): LockManager;\n};\n\n/**\n * The **`MediaCapabilities`** interface of the Media Capabilities API provides information about the decoding abilities of the device, system and browser.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities)\n */\ninterface MediaCapabilities {\n    /**\n     * The **`decodingInfo()`** method of the MediaCapabilities interface returns a promise that fulfils with information about how well the user agent can decode/display media with a given configuration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities/decodingInfo)\n     */\n    decodingInfo(configuration: MediaDecodingConfiguration): Promise<MediaCapabilitiesDecodingInfo>;\n    /**\n     * The **`encodingInfo()`** method of the MediaCapabilities interface returns a promise that fulfills with the tested media configuration's capabilities for encoding media.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities/encodingInfo)\n     */\n    encodingInfo(configuration: MediaEncodingConfiguration): Promise<MediaCapabilitiesEncodingInfo>;\n}\n\ndeclare var MediaCapabilities: {\n    prototype: MediaCapabilities;\n    new(): MediaCapabilities;\n};\n\n/**\n * The **`MediaSourceHandle`** interface of the Media Source Extensions API is a proxy for a MediaSource that can be transferred from a dedicated worker back to the main thread and attached to a media element via its HTMLMediaElement.srcObject property.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSourceHandle)\n */\ninterface MediaSourceHandle {\n}\n\ndeclare var MediaSourceHandle: {\n    prototype: MediaSourceHandle;\n    new(): MediaSourceHandle;\n};\n\n/**\n * The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)\n */\ninterface MediaStreamTrackProcessor {\n    /**\n     * The **`readable`** property of the MediaStreamTrackProcessor interface returns a ReadableStream of VideoFrames.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor/readable)\n     */\n    readonly readable: ReadableStream;\n}\n\ndeclare var MediaStreamTrackProcessor: {\n    prototype: MediaStreamTrackProcessor;\n    new(init: MediaStreamTrackProcessorInit): MediaStreamTrackProcessor;\n};\n\n/**\n * The **`MessageChannel`** interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel)\n */\ninterface MessageChannel {\n    /**\n     * The **`port1`** read-only property of the the port attached to the context that originated the channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)\n     */\n    readonly port1: MessagePort;\n    /**\n     * The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)\n     */\n    readonly port2: MessagePort;\n}\n\ndeclare var MessageChannel: {\n    prototype: MessageChannel;\n    new(): MessageChannel;\n};\n\n/**\n * The **`MessageEvent`** interface represents a message received by a target object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent)\n */\ninterface MessageEvent<T = any> extends Event {\n    /**\n     * The **`data`** read-only property of the The data sent by the message emitter; this can be any data type, depending on what originated this event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)\n     */\n    readonly data: T;\n    /**\n     * The **`lastEventId`** read-only property of the unique ID for the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)\n     */\n    readonly lastEventId: string;\n    /**\n     * The **`origin`** read-only property of the origin of the message emitter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)\n     */\n    readonly ports: ReadonlyArray<MessagePort>;\n    /**\n     * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)\n     */\n    readonly source: MessageEventSource | null;\n    /** @deprecated */\n    initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;\n}\n\ndeclare var MessageEvent: {\n    prototype: MessageEvent;\n    new<T>(type: string, eventInitDict?: MessageEventInit<T>): MessageEvent<T>;\n};\n\ninterface MessageEventTargetEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\ninterface MessageEventTarget<T> {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/message_event) */\n    onmessage: ((this: T, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/messageerror_event) */\n    onmessageerror: ((this: T, ev: MessageEvent) => any) | null;\n    addEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: T, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ninterface MessagePortEventMap extends MessageEventTargetEventMap {\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`MessagePort`** interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort)\n */\ninterface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {\n    /**\n     * The **`close()`** method of the MessagePort interface disconnects the port, so it is no longer active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/close)\n     */\n    close(): void;\n    /**\n     * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    /**\n     * The **`start()`** method of the MessagePort interface starts the sending of messages queued on the port.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/start)\n     */\n    start(): void;\n    addEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var MessagePort: {\n    prototype: MessagePort;\n    new(): MessagePort;\n};\n\n/**\n * The **`NavigationPreloadManager`** interface of the Service Worker API provides methods for managing the preloading of resources in parallel with service worker bootup.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager)\n */\ninterface NavigationPreloadManager {\n    /**\n     * The **`disable()`** method of the NavigationPreloadManager interface halts the automatic preloading of service-worker-managed resources previously started using NavigationPreloadManager.enable() It returns a promise that resolves with `undefined`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/disable)\n     */\n    disable(): Promise<void>;\n    /**\n     * The **`enable()`** method of the NavigationPreloadManager interface is used to enable preloading of resources managed by the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/enable)\n     */\n    enable(): Promise<void>;\n    /**\n     * The **`getState()`** method of the NavigationPreloadManager interface returns a Promise that resolves to an object with properties that indicate whether preload is enabled and what value will be sent in the Service-Worker-Navigation-Preload HTTP header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/getState)\n     */\n    getState(): Promise<NavigationPreloadState>;\n    /**\n     * The **`setHeaderValue()`** method of the NavigationPreloadManager interface sets the value of the Service-Worker-Navigation-Preload header that will be sent with requests resulting from a Window/fetch operation made during service worker navigation preloading.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager/setHeaderValue)\n     */\n    setHeaderValue(value: string): Promise<void>;\n}\n\ndeclare var NavigationPreloadManager: {\n    prototype: NavigationPreloadManager;\n    new(): NavigationPreloadManager;\n};\n\n/** Available only in secure contexts. */\ninterface NavigatorBadge {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/clearAppBadge) */\n    clearAppBadge(): Promise<void>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/setAppBadge) */\n    setAppBadge(contents?: number): Promise<void>;\n}\n\ninterface NavigatorConcurrentHardware {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/hardwareConcurrency) */\n    readonly hardwareConcurrency: number;\n}\n\ninterface NavigatorID {\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName)\n     */\n    readonly appCodeName: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appName)\n     */\n    readonly appName: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appVersion)\n     */\n    readonly appVersion: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/platform)\n     */\n    readonly platform: string;\n    /**\n     * @deprecated\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/product)\n     */\n    readonly product: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/userAgent) */\n    readonly userAgent: string;\n}\n\ninterface NavigatorLanguage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/language) */\n    readonly language: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/languages) */\n    readonly languages: ReadonlyArray<string>;\n}\n\n/** Available only in secure contexts. */\ninterface NavigatorLocks {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/locks) */\n    readonly locks: LockManager;\n}\n\ninterface NavigatorOnLine {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/onLine) */\n    readonly onLine: boolean;\n}\n\n/** Available only in secure contexts. */\ninterface NavigatorStorage {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/storage) */\n    readonly storage: StorageManager;\n}\n\ninterface NotificationEventMap {\n    \"click\": Event;\n    \"close\": Event;\n    \"error\": Event;\n    \"show\": Event;\n}\n\n/**\n * The **`Notification`** interface of the Notifications API is used to configure and display desktop notifications to the user.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)\n */\ninterface Notification extends EventTarget {\n    /**\n     * The **`badge`** read-only property of the Notification interface returns a string containing the URL of an image to represent the notification when there is not enough space to display the notification itself such as for example, the Android Notification Bar.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge)\n     */\n    readonly badge: string;\n    /**\n     * The **`body`** read-only property of the specified in the `body` option of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)\n     */\n    readonly body: string;\n    /**\n     * The **`data`** read-only property of the data, as specified in the `data` option of the The notification's data can be any arbitrary data that you want associated with the notification.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)\n     */\n    readonly data: any;\n    /**\n     * The **`dir`** read-only property of the Notification interface indicates the text direction of the notification, as specified in the `dir` option of the Notification.Notification constructor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/dir)\n     */\n    readonly dir: NotificationDirection;\n    /**\n     * The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)\n     */\n    readonly icon: string;\n    /**\n     * The **`lang`** read-only property of the as specified in the `lang` option of the The language itself is specified using a string representing a language tag according to MISSING: RFC(5646, 'Tags for Identifying Languages (also known as BCP 47)')].\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)\n     */\n    readonly lang: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/click_event) */\n    onclick: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/close_event) */\n    onclose: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/error_event) */\n    onerror: ((this: Notification, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/show_event) */\n    onshow: ((this: Notification, ev: Event) => any) | null;\n    /**\n     * The **`requireInteraction`** read-only property of the Notification interface returns a boolean value indicating that a notification should remain active until the user clicks or dismisses it, rather than closing automatically.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction)\n     */\n    readonly requireInteraction: boolean;\n    /**\n     * The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)\n     */\n    readonly silent: boolean | null;\n    /**\n     * The **`tag`** read-only property of the as specified in the `tag` option of the The idea of notification tags is that more than one notification can share the same tag, linking them together.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)\n     */\n    readonly tag: string;\n    /**\n     * The **`title`** read-only property of the specified in the `title` parameter of the A string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)\n     */\n    readonly title: string;\n    /**\n     * The **`close()`** method of the Notification interface is used to close/remove a previously displayed notification.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/close)\n     */\n    close(): void;\n    addEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Notification: {\n    prototype: Notification;\n    new(title: string, options?: NotificationOptions): Notification;\n    /**\n     * The **`permission`** read-only static property of the Notification interface indicates the current permission granted by the user for the current origin to display web notifications.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/permission_static)\n     */\n    readonly permission: NotificationPermission;\n};\n\n/**\n * The **`NotificationEvent`** interface of the Notifications API represents a notification event dispatched on the ServiceWorkerGlobalScope of a ServiceWorker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NotificationEvent)\n */\ninterface NotificationEvent extends ExtendableEvent {\n    /**\n     * The **`action`** read-only property of the NotificationEvent interface returns the string ID of the notification button the user clicked.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NotificationEvent/action)\n     */\n    readonly action: string;\n    /**\n     * The **`notification`** read-only property of the NotificationEvent interface returns the instance of the Notification that was clicked to fire the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NotificationEvent/notification)\n     */\n    readonly notification: Notification;\n}\n\ndeclare var NotificationEvent: {\n    prototype: NotificationEvent;\n    new(type: string, eventInitDict: NotificationEventInit): NotificationEvent;\n};\n\n/**\n * The **`OES_draw_buffers_indexed`** extension is part of the WebGL API and enables the use of different blend options when writing to multiple color buffers simultaneously.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed)\n */\ninterface OES_draw_buffers_indexed {\n    /**\n     * The `blendEquationSeparateiOES()` method of the OES_draw_buffers_indexed WebGL extension sets the RGB and alpha blend equations separately for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendEquationSeparateiOES)\n     */\n    blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;\n    /**\n     * The `blendEquationiOES()` method of the `OES_draw_buffers_indexed` WebGL extension sets both the RGB blend and alpha blend equations for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendEquationiOES)\n     */\n    blendEquationiOES(buf: GLuint, mode: GLenum): void;\n    /**\n     * The `blendFuncSeparateiOES()` method of the OES_draw_buffers_indexed WebGL extension defines which function is used when blending pixels for RGB and alpha components separately for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendFuncSeparateiOES)\n     */\n    blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;\n    /**\n     * The `blendFunciOES()` method of the OES_draw_buffers_indexed WebGL extension defines which function is used when blending pixels for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendFunciOES)\n     */\n    blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;\n    /**\n     * The `colorMaskiOES()` method of the OES_draw_buffers_indexed WebGL extension sets which color components to enable or to disable when drawing or rendering for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/colorMaskiOES)\n     */\n    colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;\n    /**\n     * The `disableiOES()` method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/disableiOES)\n     */\n    disableiOES(target: GLenum, index: GLuint): void;\n    /**\n     * The `enableiOES()` method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/enableiOES)\n     */\n    enableiOES(target: GLenum, index: GLuint): void;\n}\n\n/**\n * The **`OES_element_index_uint`** extension is part of the WebGL API and adds support for `gl.UNSIGNED_INT` types to WebGLRenderingContext.drawElements().\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_element_index_uint)\n */\ninterface OES_element_index_uint {\n}\n\n/**\n * The `OES_fbo_render_mipmap` extension is part of the WebGL API and makes it possible to attach any level of a texture to a framebuffer object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_fbo_render_mipmap)\n */\ninterface OES_fbo_render_mipmap {\n}\n\n/**\n * The **`OES_standard_derivatives`** extension is part of the WebGL API and adds the GLSL derivative functions `dFdx`, `dFdy`, and `fwidth`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_standard_derivatives)\n */\ninterface OES_standard_derivatives {\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: 0x8B8B;\n}\n\n/**\n * The **`OES_texture_float`** extension is part of the WebGL API and exposes floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float)\n */\ninterface OES_texture_float {\n}\n\n/**\n * The **`OES_texture_float_linear`** extension is part of the WebGL API and allows linear filtering with floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float_linear)\n */\ninterface OES_texture_float_linear {\n}\n\n/**\n * The **`OES_texture_half_float`** extension is part of the WebGL API and adds texture formats with 16- (aka half float) and 32-bit floating-point components.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float)\n */\ninterface OES_texture_half_float {\n    readonly HALF_FLOAT_OES: 0x8D61;\n}\n\n/**\n * The **`OES_texture_half_float_linear`** extension is part of the WebGL API and allows linear filtering with half floating-point pixel types for textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float_linear)\n */\ninterface OES_texture_half_float_linear {\n}\n\n/**\n * The **OES_vertex_array_object** extension is part of the WebGL API and provides vertex array objects (VAOs) which encapsulate vertex array states.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object)\n */\ninterface OES_vertex_array_object {\n    /**\n     * The **`OES_vertex_array_object.bindVertexArrayOES()`** method of the WebGL API binds a passed WebGLVertexArrayObject object to the buffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/bindVertexArrayOES)\n     */\n    bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;\n    /**\n     * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a pointing to vertex array data and which provides names for different sets of vertex data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)\n     */\n    createVertexArrayOES(): WebGLVertexArrayObjectOES;\n    /**\n     * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given ```js-nolint deleteVertexArrayOES(arrayObject) ``` - `arrayObject` - : A WebGLVertexArrayObject (VAO) object to delete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)\n     */\n    deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;\n    /**\n     * The **`OES_vertex_array_object.isVertexArrayOES()`** method of the WebGL API returns `true` if the passed object is a WebGLVertexArrayObject object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/isVertexArrayOES)\n     */\n    isVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): GLboolean;\n    readonly VERTEX_ARRAY_BINDING_OES: 0x85B5;\n}\n\n/**\n * The `OVR_multiview2` extension is part of the WebGL API and adds support for rendering into multiple views simultaneously.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2)\n */\ninterface OVR_multiview2 {\n    /**\n     * The **`OVR_multiview2.framebufferTextureMultiviewOVR()`** method of the WebGL API attaches a multiview texture to a WebGLFramebuffer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2/framebufferTextureMultiviewOVR)\n     */\n    framebufferTextureMultiviewOVR(target: GLenum, attachment: GLenum, texture: WebGLTexture | null, level: GLint, baseViewIndex: GLint, numViews: GLsizei): void;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR: 0x9630;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR: 0x9632;\n    readonly MAX_VIEWS_OVR: 0x9631;\n    readonly FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR: 0x9633;\n}\n\ninterface OffscreenCanvasEventMap {\n    \"contextlost\": Event;\n    \"contextrestored\": Event;\n}\n\n/**\n * When using the canvas element or the Canvas API, rendering, animation, and user interaction usually happen on the main execution thread of a web application.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas)\n */\ninterface OffscreenCanvas extends EventTarget {\n    /**\n     * The **`height`** property returns and sets the height of an OffscreenCanvas object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/height)\n     */\n    height: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextlost_event) */\n    oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextrestored_event) */\n    oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;\n    /**\n     * The **`width`** property returns and sets the width of an OffscreenCanvas object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/width)\n     */\n    width: number;\n    /**\n     * The **`OffscreenCanvas.convertToBlob()`** method creates a Blob object representing the image contained in the canvas.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/convertToBlob)\n     */\n    convertToBlob(options?: ImageEncodeOptions): Promise<Blob>;\n    /**\n     * The **`OffscreenCanvas.getContext()`** method returns a drawing context for an offscreen canvas, or `null` if the context identifier is not supported, or the offscreen canvas has already been set to a different context mode.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/getContext)\n     */\n    getContext(contextId: \"2d\", options?: any): OffscreenCanvasRenderingContext2D | null;\n    getContext(contextId: \"bitmaprenderer\", options?: any): ImageBitmapRenderingContext | null;\n    getContext(contextId: \"webgl\", options?: any): WebGLRenderingContext | null;\n    getContext(contextId: \"webgl2\", options?: any): WebGL2RenderingContext | null;\n    getContext(contextId: OffscreenRenderingContextId, options?: any): OffscreenRenderingContext | null;\n    /**\n     * The **`OffscreenCanvas.transferToImageBitmap()`** method creates an ImageBitmap object from the most recently rendered image of the `OffscreenCanvas`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/transferToImageBitmap)\n     */\n    transferToImageBitmap(): ImageBitmap;\n    addEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof OffscreenCanvasEventMap>(type: K, listener: (this: OffscreenCanvas, ev: OffscreenCanvasEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var OffscreenCanvas: {\n    prototype: OffscreenCanvas;\n    new(width: number, height: number): OffscreenCanvas;\n};\n\n/**\n * The **`OffscreenCanvasRenderingContext2D`** interface is a CanvasRenderingContext2D rendering context for drawing to the bitmap of an `OffscreenCanvas` object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D)\n */\ninterface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas) */\n    readonly canvas: OffscreenCanvas;\n}\n\ndeclare var OffscreenCanvasRenderingContext2D: {\n    prototype: OffscreenCanvasRenderingContext2D;\n    new(): OffscreenCanvasRenderingContext2D;\n};\n\n/**\n * The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Path2D)\n */\ninterface Path2D extends CanvasPath {\n    /**\n     * The **`Path2D.addPath()`** method of the Canvas 2D API adds one Path2D object to another `Path2D` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Path2D/addPath)\n     */\n    addPath(path: Path2D, transform?: DOMMatrix2DInit): void;\n}\n\ndeclare var Path2D: {\n    prototype: Path2D;\n    new(path?: Path2D | string): Path2D;\n};\n\ninterface PerformanceEventMap {\n    \"resourcetimingbufferfull\": Event;\n}\n\n/**\n * The **`Performance`** interface provides access to performance-related information for the current page.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance)\n */\ninterface Performance extends EventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/resourcetimingbufferfull_event) */\n    onresourcetimingbufferfull: ((this: Performance, ev: Event) => any) | null;\n    /**\n     * The **`timeOrigin`** read-only property of the Performance interface returns the high resolution timestamp that is used as the baseline for performance-related timestamps.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/timeOrigin)\n     */\n    readonly timeOrigin: DOMHighResTimeStamp;\n    /**\n     * The **`clearMarks()`** method removes all or specific PerformanceMark objects from the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearMarks)\n     */\n    clearMarks(markName?: string): void;\n    /**\n     * The **`clearMeasures()`** method removes all or specific PerformanceMeasure objects from the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearMeasures)\n     */\n    clearMeasures(measureName?: string): void;\n    /**\n     * The **`clearResourceTimings()`** method removes all performance entries with an PerformanceEntry.entryType of `'resource'` from the browser's performance timeline and sets the size of the performance resource data buffer to zero.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/clearResourceTimings)\n     */\n    clearResourceTimings(): void;\n    /**\n     * The **`getEntries()`** method returns an array of all PerformanceEntry objects currently present in the performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntries)\n     */\n    getEntries(): PerformanceEntryList;\n    /**\n     * The **`getEntriesByName()`** method returns an array of PerformanceEntry objects currently present in the performance timeline with the given _name_ and _type_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntriesByName)\n     */\n    getEntriesByName(name: string, type?: string): PerformanceEntryList;\n    /**\n     * The **`getEntriesByType()`** method returns an array of PerformanceEntry objects currently present in the performance timeline for a given _type_.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/getEntriesByType)\n     */\n    getEntriesByType(type: string): PerformanceEntryList;\n    /**\n     * The **`mark()`** method creates a named PerformanceMark object representing a high resolution timestamp marker in the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/mark)\n     */\n    mark(markName: string, markOptions?: PerformanceMarkOptions): PerformanceMark;\n    /**\n     * The **`measure()`** method creates a named PerformanceMeasure object representing a time measurement between two marks in the browser's performance timeline.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/measure)\n     */\n    measure(measureName: string, startOrMeasureOptions?: string | PerformanceMeasureOptions, endMark?: string): PerformanceMeasure;\n    /**\n     * The **`performance.now()`** method returns a high resolution timestamp in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/now)\n     */\n    now(): DOMHighResTimeStamp;\n    /**\n     * The **`setResourceTimingBufferSize()`** method sets the desired size of the browser's resource timing buffer which stores the `'resource'` performance entries.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/setResourceTimingBufferSize)\n     */\n    setResourceTimingBufferSize(maxSize: number): void;\n    /**\n     * The **`toJSON()`** method of the Performance interface is a Serialization; it returns a JSON representation of the Performance object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/toJSON)\n     */\n    toJSON(): any;\n    addEventListener<K extends keyof PerformanceEventMap>(type: K, listener: (this: Performance, ev: PerformanceEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PerformanceEventMap>(type: K, listener: (this: Performance, ev: PerformanceEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Performance: {\n    prototype: Performance;\n    new(): Performance;\n};\n\n/**\n * The **`PerformanceEntry`** object encapsulates a single performance metric that is part of the browser's performance timeline.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry)\n */\ninterface PerformanceEntry {\n    /**\n     * The read-only **`duration`** property returns a DOMHighResTimeStamp that is the duration of the PerformanceEntry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/duration)\n     */\n    readonly duration: DOMHighResTimeStamp;\n    /**\n     * The read-only **`entryType`** property returns a string representing the type of performance metric that this entry represents.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/entryType)\n     */\n    readonly entryType: string;\n    /**\n     * The read-only **`name`** property of the PerformanceEntry interface is a string representing the name for a performance entry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`startTime`** property returns the first DOMHighResTimeStamp recorded for this PerformanceEntry.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/startTime)\n     */\n    readonly startTime: DOMHighResTimeStamp;\n    /**\n     * The **`toJSON()`** method is a Serialization; it returns a JSON representation of the PerformanceEntry object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceEntry: {\n    prototype: PerformanceEntry;\n    new(): PerformanceEntry;\n};\n\n/**\n * **`PerformanceMark`** is an interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'mark'`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMark)\n */\ninterface PerformanceMark extends PerformanceEntry {\n    /**\n     * The read-only **`detail`** property returns arbitrary metadata that was included in the mark upon construction (either when using Performance.mark or the PerformanceMark.PerformanceMark constructor).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMark/detail)\n     */\n    readonly detail: any;\n}\n\ndeclare var PerformanceMark: {\n    prototype: PerformanceMark;\n    new(markName: string, markOptions?: PerformanceMarkOptions): PerformanceMark;\n};\n\n/**\n * **`PerformanceMeasure`** is an _abstract_ interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'measure'`.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMeasure)\n */\ninterface PerformanceMeasure extends PerformanceEntry {\n    /**\n     * The read-only **`detail`** property returns arbitrary metadata that was included in the mark upon construction (when using Performance.measure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMeasure/detail)\n     */\n    readonly detail: any;\n}\n\ndeclare var PerformanceMeasure: {\n    prototype: PerformanceMeasure;\n    new(): PerformanceMeasure;\n};\n\n/**\n * The **`PerformanceObserver`** interface is used to observe performance measurement events and be notified of new PerformanceEntry as they are recorded in the browser's _performance timeline_.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver)\n */\ninterface PerformanceObserver {\n    /**\n     * The **`disconnect()`** method of the PerformanceObserver interface is used to stop the performance observer from receiving any PerformanceEntry events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The **`observe()`** method of the **PerformanceObserver** interface is used to specify the set of performance entry types to observe.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/observe)\n     */\n    observe(options?: PerformanceObserverInit): void;\n    /**\n     * The **`takeRecords()`** method of the PerformanceObserver interface returns the current list of PerformanceEntry objects stored in the performance observer, emptying it out.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/takeRecords)\n     */\n    takeRecords(): PerformanceEntryList;\n}\n\ndeclare var PerformanceObserver: {\n    prototype: PerformanceObserver;\n    new(callback: PerformanceObserverCallback): PerformanceObserver;\n    /**\n     * The static **`supportedEntryTypes`** read-only property of the PerformanceObserver interface returns an array of the PerformanceEntry.entryType values supported by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/supportedEntryTypes_static)\n     */\n    readonly supportedEntryTypes: ReadonlyArray<string>;\n};\n\n/**\n * The **`PerformanceObserverEntryList`** interface is a list of PerformanceEntry that were explicitly observed via the PerformanceObserver.observe method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList)\n */\ninterface PerformanceObserverEntryList {\n    /**\n     * The **`getEntries()`** method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntries)\n     */\n    getEntries(): PerformanceEntryList;\n    /**\n     * The **`getEntriesByName()`** method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects for a given PerformanceEntry.name and PerformanceEntry.entryType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntriesByName)\n     */\n    getEntriesByName(name: string, type?: string): PerformanceEntryList;\n    /**\n     * The **`getEntriesByType()`** method of the PerformanceObserverEntryList returns a list of explicitly _observed_ PerformanceEntry objects for a given PerformanceEntry.entryType.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntriesByType)\n     */\n    getEntriesByType(type: string): PerformanceEntryList;\n}\n\ndeclare var PerformanceObserverEntryList: {\n    prototype: PerformanceObserverEntryList;\n    new(): PerformanceObserverEntryList;\n};\n\n/**\n * The **`PerformanceResourceTiming`** interface enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming)\n */\ninterface PerformanceResourceTiming extends PerformanceEntry {\n    /**\n     * The **`connectEnd`** read-only property returns the DOMHighResTimeStamp immediately after the browser finishes establishing the connection to the server to retrieve the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectEnd)\n     */\n    readonly connectEnd: DOMHighResTimeStamp;\n    /**\n     * The **`connectStart`** read-only property returns the DOMHighResTimeStamp immediately before the user agent starts establishing the connection to the server to retrieve the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/connectStart)\n     */\n    readonly connectStart: DOMHighResTimeStamp;\n    /**\n     * The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/decodedBodySize)\n     */\n    readonly decodedBodySize: number;\n    /**\n     * The **`domainLookupEnd`** read-only property returns the DOMHighResTimeStamp immediately after the browser finishes the domain-name lookup for the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/domainLookupEnd)\n     */\n    readonly domainLookupEnd: DOMHighResTimeStamp;\n    /**\n     * The **`domainLookupStart`** read-only property returns the DOMHighResTimeStamp immediately before the browser starts the domain name lookup for the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/domainLookupStart)\n     */\n    readonly domainLookupStart: DOMHighResTimeStamp;\n    /**\n     * The **`encodedBodySize`** read-only property represents the size (in octets) received from the fetch (HTTP or cache) of the payload body before removing any applied content encodings (like gzip or Brotli).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/encodedBodySize)\n     */\n    readonly encodedBodySize: number;\n    /**\n     * The **`fetchStart`** read-only property represents a DOMHighResTimeStamp immediately before the browser starts to fetch the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/fetchStart)\n     */\n    readonly fetchStart: DOMHighResTimeStamp;\n    /**\n     * The **`initiatorType`** read-only property is a string representing web platform feature that initiated the resource load.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/initiatorType)\n     */\n    readonly initiatorType: string;\n    /**\n     * The **`nextHopProtocol`** read-only property is a string representing the network protocol used to fetch the resource, as identified by the ALPN Protocol ID (RFC7301).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/nextHopProtocol)\n     */\n    readonly nextHopProtocol: string;\n    /**\n     * The **`redirectEnd`** read-only property returns a DOMHighResTimeStamp immediately after receiving the last byte of the response of the last redirect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/redirectEnd)\n     */\n    readonly redirectEnd: DOMHighResTimeStamp;\n    /**\n     * The **`redirectStart`** read-only property returns a DOMHighResTimeStamp representing the start time of the fetch which that initiates the redirect.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/redirectStart)\n     */\n    readonly redirectStart: DOMHighResTimeStamp;\n    /**\n     * The **`requestStart`** read-only property returns a DOMHighResTimeStamp of the time immediately before the browser starts requesting the resource from the server, cache, or local resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/requestStart)\n     */\n    readonly requestStart: DOMHighResTimeStamp;\n    /**\n     * The **`responseEnd`** read-only property returns a DOMHighResTimeStamp immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd)\n     */\n    readonly responseEnd: DOMHighResTimeStamp;\n    /**\n     * The **`responseStart`** read-only property returns a DOMHighResTimeStamp immediately after the browser receives the first byte of the response from the server, cache, or local resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart)\n     */\n    readonly responseStart: DOMHighResTimeStamp;\n    /**\n     * The **`responseStatus`** read-only property represents the HTTP response status code returned when fetching the resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus)\n     */\n    readonly responseStatus: number;\n    /**\n     * The **`secureConnectionStart`** read-only property returns a DOMHighResTimeStamp immediately before the browser starts the handshake process to secure the current connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart)\n     */\n    readonly secureConnectionStart: DOMHighResTimeStamp;\n    /**\n     * The **`serverTiming`** read-only property returns an array of PerformanceServerTiming entries containing server timing metrics.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/serverTiming)\n     */\n    readonly serverTiming: ReadonlyArray<PerformanceServerTiming>;\n    /**\n     * The **`transferSize`** read-only property represents the size (in octets) of the fetched resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/transferSize)\n     */\n    readonly transferSize: number;\n    /**\n     * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a The `workerStart` property can have the following values: - A DOMHighResTimeStamp.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)\n     */\n    readonly workerStart: DOMHighResTimeStamp;\n    /**\n     * The **`toJSON()`** method of the PerformanceResourceTiming interface is a Serialization; it returns a JSON representation of the PerformanceResourceTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceResourceTiming: {\n    prototype: PerformanceResourceTiming;\n    new(): PerformanceResourceTiming;\n};\n\n/**\n * The **`PerformanceServerTiming`** interface surfaces server metrics that are sent with the response in the Server-Timing HTTP header.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming)\n */\ninterface PerformanceServerTiming {\n    /**\n     * The **`description`** read-only property returns a string value of the server-specified metric description, or an empty string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/description)\n     */\n    readonly description: string;\n    /**\n     * The **`duration`** read-only property returns a double that contains the server-specified metric duration, or the value `0.0`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/duration)\n     */\n    readonly duration: DOMHighResTimeStamp;\n    /**\n     * The **`name`** read-only property returns a string value of the server-specified metric name.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/name)\n     */\n    readonly name: string;\n    /**\n     * The **`toJSON()`** method of the PerformanceServerTiming interface is a Serialization; it returns a JSON representation of the PerformanceServerTiming object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var PerformanceServerTiming: {\n    prototype: PerformanceServerTiming;\n    new(): PerformanceServerTiming;\n};\n\ninterface PermissionStatusEventMap {\n    \"change\": Event;\n}\n\n/**\n * The **`PermissionStatus`** interface of the Permissions API provides the state of an object and an event handler for monitoring changes to said state.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus)\n */\ninterface PermissionStatus extends EventTarget {\n    /**\n     * The **`name`** read-only property of the PermissionStatus interface returns the name of a requested permission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */\n    onchange: ((this: PermissionStatus, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the This property returns one of `'granted'`, `'denied'`, or `'prompt'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)\n     */\n    readonly state: PermissionState;\n    addEventListener<K extends keyof PermissionStatusEventMap>(type: K, listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof PermissionStatusEventMap>(type: K, listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var PermissionStatus: {\n    prototype: PermissionStatus;\n    new(): PermissionStatus;\n};\n\n/**\n * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions - Permissions.query - : Returns the user permission status for a given API.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)\n */\ninterface Permissions {\n    /**\n     * The **`query()`** method of the Permissions interface returns the state of a user permission on the global scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions/query)\n     */\n    query(permissionDesc: PermissionDescriptor): Promise<PermissionStatus>;\n}\n\ndeclare var Permissions: {\n    prototype: Permissions;\n    new(): Permissions;\n};\n\n/**\n * The **`ProgressEvent`** interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)\n */\ninterface ProgressEvent<T extends EventTarget = EventTarget> extends Event {\n    /**\n     * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the A boolean.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)\n     */\n    readonly lengthComputable: boolean;\n    /**\n     * The **`ProgressEvent.loaded`** read-only property is a number indicating the size of the data already transmitted or processed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/loaded)\n     */\n    readonly loaded: number;\n    readonly target: T | null;\n    /**\n     * The **`ProgressEvent.total`** read-only property is a number indicating the total size of the data being transmitted or processed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/total)\n     */\n    readonly total: number;\n}\n\ndeclare var ProgressEvent: {\n    prototype: ProgressEvent;\n    new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent;\n};\n\n/**\n * The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent)\n */\ninterface PromiseRejectionEvent extends Event {\n    /**\n     * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)\n     */\n    readonly promise: Promise<any>;\n    /**\n     * The PromiseRejectionEvent **`reason`** read-only property is any JavaScript value or Object which provides the reason passed into Promise.reject().\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason)\n     */\n    readonly reason: any;\n}\n\ndeclare var PromiseRejectionEvent: {\n    prototype: PromiseRejectionEvent;\n    new(type: string, eventInitDict: PromiseRejectionEventInit): PromiseRejectionEvent;\n};\n\n/**\n * The **`PushEvent`** interface of the Push API represents a push message that has been received.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushEvent)\n */\ninterface PushEvent extends ExtendableEvent {\n    /**\n     * The `data` read-only property of the **`PushEvent`** interface returns a reference to a PushMessageData object containing data sent to the PushSubscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushEvent/data)\n     */\n    readonly data: PushMessageData | null;\n}\n\ndeclare var PushEvent: {\n    prototype: PushEvent;\n    new(type: string, eventInitDict?: PushEventInit): PushEvent;\n};\n\n/**\n * The **`PushManager`** interface of the Push API provides a way to receive notifications from third-party servers as well as request URLs for push notifications.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager)\n */\ninterface PushManager {\n    /**\n     * The **`PushManager.getSubscription()`** method of the PushManager interface retrieves an existing push subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/getSubscription)\n     */\n    getSubscription(): Promise<PushSubscription | null>;\n    /**\n     * The **`permissionState()`** method of the string indicating the permission state of the push manager.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)\n     */\n    permissionState(options?: PushSubscriptionOptionsInit): Promise<PermissionState>;\n    /**\n     * The **`subscribe()`** method of the PushManager interface subscribes to a push service.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/subscribe)\n     */\n    subscribe(options?: PushSubscriptionOptionsInit): Promise<PushSubscription>;\n}\n\ndeclare var PushManager: {\n    prototype: PushManager;\n    new(): PushManager;\n    /**\n     * The **`supportedContentEncodings`** read-only static property of the PushManager interface returns an array of supported content codings that can be used to encrypt the payload of a push message.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/supportedContentEncodings_static)\n     */\n    readonly supportedContentEncodings: ReadonlyArray<string>;\n};\n\n/**\n * The **`PushMessageData`** interface of the Push API provides methods which let you retrieve the push data sent by a server in various formats.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData)\n */\ninterface PushMessageData {\n    /**\n     * The **`arrayBuffer()`** method of the PushMessageData interface extracts push message data as an ArrayBuffer object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData/arrayBuffer)\n     */\n    arrayBuffer(): ArrayBuffer;\n    /**\n     * The **`blob()`** method of the PushMessageData interface extracts push message data as a Blob object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData/blob)\n     */\n    blob(): Blob;\n    /**\n     * The **`bytes()`** method of the PushMessageData interface extracts push message data as an Uint8Array object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData/bytes)\n     */\n    bytes(): Uint8Array<ArrayBuffer>;\n    /**\n     * The **`json()`** method of the PushMessageData interface extracts push message data by parsing it as a JSON string and returning the result.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData/json)\n     */\n    json(): any;\n    /**\n     * The **`text()`** method of the PushMessageData interface extracts push message data as a plain text string.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData/text)\n     */\n    text(): string;\n}\n\ndeclare var PushMessageData: {\n    prototype: PushMessageData;\n    new(): PushMessageData;\n};\n\n/**\n * The `PushSubscription` interface of the Push API provides a subscription's URL endpoint along with the public key and secrets that should be used for encrypting push messages to this subscription.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription)\n */\ninterface PushSubscription {\n    /**\n     * The **`endpoint`** read-only property of the the endpoint associated with the push subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)\n     */\n    readonly endpoint: string;\n    /**\n     * The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)\n     */\n    readonly expirationTime: EpochTimeStamp | null;\n    /**\n     * The **`options`** read-only property of the PushSubscription interface is an object containing the options used to create the subscription.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/options)\n     */\n    readonly options: PushSubscriptionOptions;\n    /**\n     * The `getKey()` method of the PushSubscription interface returns an ArrayBuffer representing a client public key, which can then be sent to a server and used in encrypting push message data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/getKey)\n     */\n    getKey(name: PushEncryptionKeyName): ArrayBuffer | null;\n    /**\n     * The `toJSON()` method of the PushSubscription interface is a standard serializer: it returns a JSON representation of the subscription properties, providing a useful shortcut.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/toJSON)\n     */\n    toJSON(): PushSubscriptionJSON;\n    /**\n     * The `unsubscribe()` method of the PushSubscription interface returns a Promise that resolves to a boolean value when the current subscription is successfully unsubscribed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/unsubscribe)\n     */\n    unsubscribe(): Promise<boolean>;\n}\n\ndeclare var PushSubscription: {\n    prototype: PushSubscription;\n    new(): PushSubscription;\n};\n\n/** Available only in secure contexts. */\ninterface PushSubscriptionChangeEvent extends ExtendableEvent {\n    readonly newSubscription: PushSubscription | null;\n    readonly oldSubscription: PushSubscription | null;\n}\n\ndeclare var PushSubscriptionChangeEvent: {\n    prototype: PushSubscriptionChangeEvent;\n    new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;\n};\n\n/**\n * The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions)\n */\ninterface PushSubscriptionOptions {\n    /**\n     * The **`applicationServerKey`** read-only property of the PushSubscriptionOptions interface contains the public key used by the push server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions/applicationServerKey)\n     */\n    readonly applicationServerKey: ArrayBuffer | null;\n    /**\n     * The **`userVisibleOnly`** read-only property of the PushSubscriptionOptions interface indicates if the returned push subscription will only be used for messages whose effect is made visible to the user.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions/userVisibleOnly)\n     */\n    readonly userVisibleOnly: boolean;\n}\n\ndeclare var PushSubscriptionOptions: {\n    prototype: PushSubscriptionOptions;\n    new(): PushSubscriptionOptions;\n};\n\ninterface RTCDataChannelEventMap {\n    \"bufferedamountlow\": Event;\n    \"close\": Event;\n    \"closing\": Event;\n    \"error\": Event;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The **`RTCDataChannel`** interface represents a network channel which can be used for bidirectional peer-to-peer transfers of arbitrary data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel)\n */\ninterface RTCDataChannel extends EventTarget {\n    /**\n     * The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)\n     */\n    binaryType: BinaryType;\n    /**\n     * The read-only `RTCDataChannel` property **`bufferedAmount`** returns the number of bytes of data currently queued to be sent over the data channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedAmount)\n     */\n    readonly bufferedAmount: number;\n    /**\n     * The `RTCDataChannel` property **`bufferedAmountLowThreshold`** is used to specify the number of bytes of buffered outgoing data that is considered 'low.' The default value is 0\\.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedAmountLowThreshold)\n     */\n    bufferedAmountLowThreshold: number;\n    /**\n     * The read-only `RTCDataChannel` property **`id`** returns an ID number (between 0 and 65,534) which uniquely identifies the RTCDataChannel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/id)\n     */\n    readonly id: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`label`** returns a string containing a name describing the data channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/label)\n     */\n    readonly label: string;\n    /**\n     * The read-only `RTCDataChannel` property **`maxPacketLifeTime`** returns the amount of time, in milliseconds, the browser is allowed to take to attempt to transmit a message, as set when the data channel was created, or `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/maxPacketLifeTime)\n     */\n    readonly maxPacketLifeTime: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`maxRetransmits`** returns the maximum number of times the browser should try to retransmit a message before giving up, as set when the data channel was created, or `null`, which indicates that there is no maximum.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/maxRetransmits)\n     */\n    readonly maxRetransmits: number | null;\n    /**\n     * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)\n     */\n    readonly negotiated: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/bufferedamountlow_event) */\n    onbufferedamountlow: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close_event) */\n    onclose: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/closing_event) */\n    onclosing: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/error_event) */\n    onerror: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/message_event) */\n    onmessage: ((this: RTCDataChannel, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/open_event) */\n    onopen: ((this: RTCDataChannel, ev: Event) => any) | null;\n    /**\n     * The read-only `RTCDataChannel` property **`ordered`** indicates whether or not the data channel guarantees in-order delivery of messages; the default is `true`, which indicates that the data channel is indeed ordered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/ordered)\n     */\n    readonly ordered: boolean;\n    /**\n     * The read-only `RTCDataChannel` property **`protocol`** returns a string containing the name of the subprotocol in use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/protocol)\n     */\n    readonly protocol: string;\n    /**\n     * The read-only `RTCDataChannel` property **`readyState`** returns a string which indicates the state of the data channel's underlying data connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/readyState)\n     */\n    readonly readyState: RTCDataChannelState;\n    /**\n     * The **`RTCDataChannel.close()`** method closes the closure of the channel.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)\n     */\n    close(): void;\n    /**\n     * The **`send()`** method of the remote peer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)\n     */\n    send(data: string): void;\n    send(data: Blob): void;\n    send(data: ArrayBuffer): void;\n    send(data: ArrayBufferView<ArrayBuffer>): void;\n    addEventListener<K extends keyof RTCDataChannelEventMap>(type: K, listener: (this: RTCDataChannel, ev: RTCDataChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof RTCDataChannelEventMap>(type: K, listener: (this: RTCDataChannel, ev: RTCDataChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var RTCDataChannel: {\n    prototype: RTCDataChannel;\n    new(): RTCDataChannel;\n};\n\n/**\n * The **`RTCEncodedAudioFrame`** of the WebRTC API represents an encoded audio frame in the WebRTC receiver or sender pipeline, which may be modified using a WebRTC Encoded Transform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame)\n */\ninterface RTCEncodedAudioFrame {\n    /**\n     * The **`data`** property of the RTCEncodedAudioFrame interface returns a buffer containing the data for an encoded frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/data)\n     */\n    data: ArrayBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp) */\n    readonly timestamp: number;\n    /**\n     * The **`getMetadata()`** method of the RTCEncodedAudioFrame interface returns an object containing the metadata associated with the frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/getMetadata)\n     */\n    getMetadata(): RTCEncodedAudioFrameMetadata;\n}\n\ndeclare var RTCEncodedAudioFrame: {\n    prototype: RTCEncodedAudioFrame;\n    new(): RTCEncodedAudioFrame;\n};\n\n/**\n * The **`RTCEncodedVideoFrame`** of the WebRTC API represents an encoded video frame in the WebRTC receiver or sender pipeline, which may be modified using a WebRTC Encoded Transform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame)\n */\ninterface RTCEncodedVideoFrame {\n    /**\n     * The **`data`** property of the RTCEncodedVideoFrame interface returns a buffer containing the frame data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/data)\n     */\n    data: ArrayBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp) */\n    readonly timestamp: number;\n    /**\n     * The **`type`** read-only property of the RTCEncodedVideoFrame interface indicates whether this frame is a key frame, delta frame, or empty frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)\n     */\n    readonly type: RTCEncodedVideoFrameType;\n    /**\n     * The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/getMetadata)\n     */\n    getMetadata(): RTCEncodedVideoFrameMetadata;\n}\n\ndeclare var RTCEncodedVideoFrame: {\n    prototype: RTCEncodedVideoFrame;\n    new(): RTCEncodedVideoFrame;\n};\n\n/**\n * The **`RTCRtpScriptTransformer`** interface of the WebRTC API provides a worker-side Stream API interface that a WebRTC Encoded Transform can use to modify encoded media frames in the incoming and outgoing WebRTC pipelines.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer)\n */\ninterface RTCRtpScriptTransformer extends EventTarget {\n    /**\n     * The **`options`** read-only property of the RTCRtpScriptTransformer interface returns the object that was (optionally) passed as the second argument during construction of the corresponding RTCRtpScriptTransform.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/options)\n     */\n    readonly options: any;\n    /**\n     * The **`readable`** read-only property of the RTCRtpScriptTransformer interface returns a ReadableStream instance is a source for encoded media frames.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/readable)\n     */\n    readonly readable: ReadableStream;\n    /**\n     * The **`writable`** read-only property of the RTCRtpScriptTransformer interface returns a WritableStream instance that can be used as a sink for encoded media frames enqueued on the corresponding RTCRtpScriptTransformer.readable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/writable)\n     */\n    readonly writable: WritableStream;\n    /**\n     * The **`generateKeyFrame()`** method of the RTCRtpScriptTransformer interface causes a video encoder to generate a key frame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/generateKeyFrame)\n     */\n    generateKeyFrame(rid?: string): Promise<number>;\n    /**\n     * The **`sendKeyFrameRequest()`** method of the RTCRtpScriptTransformer interface may be called by a WebRTC Encoded Transform that is processing incoming encoded video frames, in order to request a key frame from the sender.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/sendKeyFrameRequest)\n     */\n    sendKeyFrameRequest(): Promise<void>;\n}\n\ndeclare var RTCRtpScriptTransformer: {\n    prototype: RTCRtpScriptTransformer;\n    new(): RTCRtpScriptTransformer;\n};\n\n/**\n * The **`RTCTransformEvent`** of the WebRTC API represent an event that is fired in a dedicated worker when an encoded frame has been queued for processing by a WebRTC Encoded Transform.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTransformEvent)\n */\ninterface RTCTransformEvent extends Event {\n    /**\n     * The read-only **`transformer`** property of the RTCTransformEvent interface returns the RTCRtpScriptTransformer associated with the event.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTransformEvent/transformer)\n     */\n    readonly transformer: RTCRtpScriptTransformer;\n}\n\ndeclare var RTCTransformEvent: {\n    prototype: RTCTransformEvent;\n    new(): RTCTransformEvent;\n};\n\n/**\n * The **`ReadableByteStreamController`** interface of the Streams API represents a controller for a readable byte stream.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController)\n */\ninterface ReadableByteStreamController {\n    /**\n     * The **`byobRequest`** read-only property of the ReadableByteStreamController interface returns the current BYOB request, or `null` if there are no pending requests.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/byobRequest)\n     */\n    readonly byobRequest: ReadableStreamBYOBRequest | null;\n    /**\n     * The **`desiredSize`** read-only property of the ReadableByteStreamController interface returns the number of bytes required to fill the stream's internal queue to its 'desired size'.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`close()`** method of the ReadableByteStreamController interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/close)\n     */\n    close(): void;\n    /**\n     * The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)\n     */\n    enqueue(chunk: ArrayBufferView<ArrayBuffer>): void;\n    /**\n     * The **`error()`** method of the ReadableByteStreamController interface causes any future interactions with the associated stream to error with the specified reason.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var ReadableByteStreamController: {\n    prototype: ReadableByteStreamController;\n    new(): ReadableByteStreamController;\n};\n\n/**\n * The `ReadableStream` interface of the Streams API represents a readable stream of byte data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream)\n */\ninterface ReadableStream<R = any> {\n    /**\n     * The **`locked`** read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/locked)\n     */\n    readonly locked: boolean;\n    /**\n     * The **`cancel()`** method of the ReadableStream interface returns a Promise that resolves when the stream is canceled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/cancel)\n     */\n    cancel(reason?: any): Promise<void>;\n    /**\n     * The **`getReader()`** method of the ReadableStream interface creates a reader and locks the stream to it.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/getReader)\n     */\n    getReader(options: { mode: \"byob\" }): ReadableStreamBYOBReader;\n    getReader(): ReadableStreamDefaultReader<R>;\n    getReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReader<R>;\n    /**\n     * The **`pipeThrough()`** method of the ReadableStream interface provides a chainable way of piping the current stream through a transform stream or any other writable/readable pair.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeThrough)\n     */\n    pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>;\n    /**\n     * The **`pipeTo()`** method of the ReadableStream interface pipes the current `ReadableStream` to a given WritableStream and returns a Promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeTo)\n     */\n    pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;\n    /**\n     * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)\n     */\n    tee(): [ReadableStream<R>, ReadableStream<R>];\n}\n\ndeclare var ReadableStream: {\n    prototype: ReadableStream;\n    new(underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number }): ReadableStream<Uint8Array<ArrayBuffer>>;\n    new<R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;\n    new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;\n};\n\n/**\n * The `ReadableStreamBYOBReader` interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader)\n */\ninterface ReadableStreamBYOBReader extends ReadableStreamGenericReader {\n    /**\n     * The **`read()`** method of the ReadableStreamBYOBReader interface is used to read data into a view on a user-supplied buffer from an associated readable byte stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read)\n     */\n    read<T extends ArrayBufferView>(view: T): Promise<ReadableStreamReadResult<T>>;\n    /**\n     * The **`releaseLock()`** method of the ReadableStreamBYOBReader interface releases the reader's lock on the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/releaseLock)\n     */\n    releaseLock(): void;\n}\n\ndeclare var ReadableStreamBYOBReader: {\n    prototype: ReadableStreamBYOBReader;\n    new(stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;\n};\n\n/**\n * The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a 'pull request' for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)\n */\ninterface ReadableStreamBYOBRequest {\n    /**\n     * The **`view`** getter property of the ReadableStreamBYOBRequest interface returns the current view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view)\n     */\n    readonly view: ArrayBufferView<ArrayBuffer> | null;\n    /**\n     * The **`respond()`** method of the ReadableStreamBYOBRequest interface is used to signal to the associated readable byte stream that the specified number of bytes were written into the ReadableStreamBYOBRequest.view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respond)\n     */\n    respond(bytesWritten: number): void;\n    /**\n     * The **`respondWithNewView()`** method of the ReadableStreamBYOBRequest interface specifies a new view that the consumer of the associated readable byte stream should write to instead of ReadableStreamBYOBRequest.view.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respondWithNewView)\n     */\n    respondWithNewView(view: ArrayBufferView<ArrayBuffer>): void;\n}\n\ndeclare var ReadableStreamBYOBRequest: {\n    prototype: ReadableStreamBYOBRequest;\n    new(): ReadableStreamBYOBRequest;\n};\n\n/**\n * The **`ReadableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a ReadableStream's state and internal queue.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController)\n */\ninterface ReadableStreamDefaultController<R = any> {\n    /**\n     * The **`desiredSize`** read-only property of the required to fill the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`close()`** method of the ReadableStreamDefaultController interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/close)\n     */\n    close(): void;\n    /**\n     * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)\n     */\n    enqueue(chunk?: R): void;\n    /**\n     * The **`error()`** method of the with the associated stream to error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var ReadableStreamDefaultController: {\n    prototype: ReadableStreamDefaultController;\n    new(): ReadableStreamDefaultController;\n};\n\n/**\n * The **`ReadableStreamDefaultReader`** interface of the Streams API represents a default reader that can be used to read stream data supplied from a network (such as a fetch request).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader)\n */\ninterface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {\n    /**\n     * The **`read()`** method of the ReadableStreamDefaultReader interface returns a Promise providing access to the next chunk in the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/read)\n     */\n    read(): Promise<ReadableStreamReadResult<R>>;\n    /**\n     * The **`releaseLock()`** method of the ReadableStreamDefaultReader interface releases the reader's lock on the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/releaseLock)\n     */\n    releaseLock(): void;\n}\n\ndeclare var ReadableStreamDefaultReader: {\n    prototype: ReadableStreamDefaultReader;\n    new<R = any>(stream: ReadableStream<R>): ReadableStreamDefaultReader<R>;\n};\n\ninterface ReadableStreamGenericReader {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/closed) */\n    readonly closed: Promise<void>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/cancel) */\n    cancel(reason?: any): Promise<void>;\n}\n\n/**\n * The `Report` interface of the Reporting API represents a single report.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report)\n */\ninterface Report {\n    /**\n     * The **`body`** read-only property of the Report interface returns the body of the report, which is a `ReportBody` object containing the detailed report information.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/body)\n     */\n    readonly body: ReportBody | null;\n    /**\n     * The **`type`** read-only property of the Report interface returns the type of report generated, e.g., `deprecation` or `intervention`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/type)\n     */\n    readonly type: string;\n    /**\n     * The **`url`** read-only property of the Report interface returns the URL of the document that generated the report.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/url)\n     */\n    readonly url: string;\n    toJSON(): any;\n}\n\ndeclare var Report: {\n    prototype: Report;\n    new(): Report;\n};\n\n/**\n * The **`ReportBody`** interface of the Reporting API represents the body of a report.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody)\n */\ninterface ReportBody {\n    /**\n     * The **`toJSON()`** method of the ReportBody interface is a _serializer_, and returns a JSON representation of the `ReportBody` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON)\n     */\n    toJSON(): any;\n}\n\ndeclare var ReportBody: {\n    prototype: ReportBody;\n    new(): ReportBody;\n};\n\n/**\n * The `ReportingObserver` interface of the Reporting API allows you to collect and access reports.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver)\n */\ninterface ReportingObserver {\n    /**\n     * The **`disconnect()`** method of the previously started observing from collecting reports.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)\n     */\n    disconnect(): void;\n    /**\n     * The **`observe()`** method of the collecting reports in its report queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)\n     */\n    observe(): void;\n    /**\n     * The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)\n     */\n    takeRecords(): ReportList;\n}\n\ndeclare var ReportingObserver: {\n    prototype: ReportingObserver;\n    new(callback: ReportingObserverCallback, options?: ReportingObserverOptions): ReportingObserver;\n};\n\n/**\n * The **`Request`** interface of the Fetch API represents a resource request.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request)\n */\ninterface Request extends Body {\n    /**\n     * The **`cache`** read-only property of the Request interface contains the cache mode of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/cache)\n     */\n    readonly cache: RequestCache;\n    /**\n     * The **`credentials`** read-only property of the Request interface reflects the value given to the Request.Request() constructor in the `credentials` option.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/credentials)\n     */\n    readonly credentials: RequestCredentials;\n    /**\n     * The **`destination`** read-only property of the **Request** interface returns a string describing the type of content being requested.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/destination)\n     */\n    readonly destination: RequestDestination;\n    /**\n     * The **`headers`** read-only property of the with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)\n     */\n    readonly headers: Headers;\n    /**\n     * The **`integrity`** read-only property of the Request interface contains the subresource integrity value of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)\n     */\n    readonly integrity: string;\n    /**\n     * The **`keepalive`** read-only property of the Request interface contains the request's `keepalive` setting (`true` or `false`), which indicates whether the browser will keep the associated request alive if the page that initiated it is unloaded before the request is complete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)\n     */\n    readonly keepalive: boolean;\n    /**\n     * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)\n     */\n    readonly method: string;\n    /**\n     * The **`mode`** read-only property of the Request interface contains the mode of the request (e.g., `cors`, `no-cors`, `same-origin`, or `navigate`.) This is used to determine if cross-origin requests lead to valid responses, and which properties of the response are readable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/mode)\n     */\n    readonly mode: RequestMode;\n    /**\n     * The **`redirect`** read-only property of the Request interface contains the mode for how redirects are handled.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/redirect)\n     */\n    readonly redirect: RequestRedirect;\n    /**\n     * The **`referrer`** read-only property of the Request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)\n     */\n    readonly referrer: string;\n    /**\n     * The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)\n     */\n    readonly referrerPolicy: ReferrerPolicy;\n    /**\n     * The read-only **`signal`** property of the Request interface returns the AbortSignal associated with the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`url`** read-only property of the Request interface contains the URL of the request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/url)\n     */\n    readonly url: string;\n    /**\n     * The **`clone()`** method of the Request interface creates a copy of the current `Request` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/clone)\n     */\n    clone(): Request;\n}\n\ndeclare var Request: {\n    prototype: Request;\n    new(input: RequestInfo | URL, init?: RequestInit): Request;\n};\n\n/**\n * The **`Response`** interface of the Fetch API represents the response to a request.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response)\n */\ninterface Response extends Body {\n    /**\n     * The **`headers`** read-only property of the with the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)\n     */\n    readonly headers: Headers;\n    /**\n     * The **`ok`** read-only property of the Response interface contains a Boolean stating whether the response was successful (status in the range 200-299) or not.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/ok)\n     */\n    readonly ok: boolean;\n    /**\n     * The **`redirected`** read-only property of the Response interface indicates whether or not the response is the result of a request you made which was redirected.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirected)\n     */\n    readonly redirected: boolean;\n    /**\n     * The **`status`** read-only property of the Response interface contains the HTTP status codes of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status)\n     */\n    readonly status: number;\n    /**\n     * The **`statusText`** read-only property of the Response interface contains the status message corresponding to the HTTP status code in Response.status.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/statusText)\n     */\n    readonly statusText: string;\n    /**\n     * The **`type`** read-only property of the Response interface contains the type of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/type)\n     */\n    readonly type: ResponseType;\n    /**\n     * The **`url`** read-only property of the Response interface contains the URL of the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/url)\n     */\n    readonly url: string;\n    /**\n     * The **`clone()`** method of the Response interface creates a clone of a response object, identical in every way, but stored in a different variable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/clone)\n     */\n    clone(): Response;\n}\n\ndeclare var Response: {\n    prototype: Response;\n    new(body?: BodyInit | null, init?: ResponseInit): Response;\n    /**\n     * The **`error()`** static method of the Response interface returns a new `Response` object associated with a network error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/error_static)\n     */\n    error(): Response;\n    /**\n     * The **`json()`** static method of the Response interface returns a `Response` that contains the provided JSON data as body, and a Content-Type header which is set to `application/json`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/json_static)\n     */\n    json(data: any, init?: ResponseInit): Response;\n    /**\n     * The **`redirect()`** static method of the Response interface returns a `Response` resulting in a redirect to the specified URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirect_static)\n     */\n    redirect(url: string | URL, status?: number): Response;\n};\n\n/**\n * The **`SecurityPolicyViolationEvent`** interface inherits from Event, and represents the event object of a `securitypolicyviolation` event sent on an Element/securitypolicyviolation_event, Document/securitypolicyviolation_event, or WorkerGlobalScope/securitypolicyviolation_event when its Content Security Policy (CSP) is violated.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent)\n */\ninterface SecurityPolicyViolationEvent extends Event {\n    /**\n     * The **`blockedURI`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URI of the resource that was blocked because it violates a Content Security Policy (CSP).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/blockedURI)\n     */\n    readonly blockedURI: string;\n    /**\n     * The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/columnNumber)\n     */\n    readonly columnNumber: number;\n    /**\n     * The **`disposition`** read-only property of the SecurityPolicyViolationEvent interface indicates how the violated Content Security Policy (CSP) is configured to be treated by the user agent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/disposition)\n     */\n    readonly disposition: SecurityPolicyViolationEventDisposition;\n    /**\n     * The **`documentURI`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URI of the document or worker in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/documentURI)\n     */\n    readonly documentURI: string;\n    /**\n     * The **`effectiveDirective`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the Content Security Policy (CSP) directive that was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/effectiveDirective)\n     */\n    readonly effectiveDirective: string;\n    /**\n     * The **`lineNumber`** read-only property of the SecurityPolicyViolationEvent interface is the line number in the document or worker script at which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/lineNumber)\n     */\n    readonly lineNumber: number;\n    /**\n     * The **`originalPolicy`** read-only property of the SecurityPolicyViolationEvent interface is a string containing the Content Security Policy (CSP) whose enforcement uncovered the violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/originalPolicy)\n     */\n    readonly originalPolicy: string;\n    /**\n     * The **`referrer`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the referrer for the resources whose Content Security Policy (CSP) was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/referrer)\n     */\n    readonly referrer: string;\n    /**\n     * The **`sample`** read-only property of the SecurityPolicyViolationEvent interface is a string representing a sample of the resource that caused the Content Security Policy (CSP) violation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/sample)\n     */\n    readonly sample: string;\n    /**\n     * The **`sourceFile`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the URL of the script in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/sourceFile)\n     */\n    readonly sourceFile: string;\n    /**\n     * The **`statusCode`** read-only property of the SecurityPolicyViolationEvent interface is a number representing the HTTP status code of the window or worker in which the Content Security Policy (CSP) violation occurred.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/statusCode)\n     */\n    readonly statusCode: number;\n    /**\n     * The **`violatedDirective`** read-only property of the SecurityPolicyViolationEvent interface is a string representing the Content Security Policy (CSP) directive that was violated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent/violatedDirective)\n     */\n    readonly violatedDirective: string;\n}\n\ndeclare var SecurityPolicyViolationEvent: {\n    prototype: SecurityPolicyViolationEvent;\n    new(type: string, eventInitDict?: SecurityPolicyViolationEventInit): SecurityPolicyViolationEvent;\n};\n\ninterface ServiceWorkerEventMap extends AbstractWorkerEventMap {\n    \"statechange\": Event;\n}\n\n/**\n * The **`ServiceWorker`** interface of the Service Worker API provides a reference to a service worker.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker)\n */\ninterface ServiceWorker extends EventTarget, AbstractWorker {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/statechange_event) */\n    onstatechange: ((this: ServiceWorker, ev: Event) => any) | null;\n    /**\n     * Returns the `ServiceWorker` serialized script URL defined as part of `ServiceWorkerRegistration`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/scriptURL)\n     */\n    readonly scriptURL: string;\n    /**\n     * The **`state`** read-only property of the of the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)\n     */\n    readonly state: ServiceWorkerState;\n    /**\n     * The **`postMessage()`** method of the ServiceWorker interface sends a message to the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    addEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorker: {\n    prototype: ServiceWorker;\n    new(): ServiceWorker;\n};\n\ninterface ServiceWorkerContainerEventMap {\n    \"controllerchange\": Event;\n    \"message\": MessageEvent;\n    \"messageerror\": MessageEvent;\n}\n\n/**\n * The **`ServiceWorkerContainer`** interface of the Service Worker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer)\n */\ninterface ServiceWorkerContainer extends EventTarget {\n    /**\n     * The **`controller`** read-only property of the ServiceWorkerContainer interface returns a `activated` (the same object returned by `null` if the request is a force refresh (_Shift_ + refresh) or if there is no active worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/controller)\n     */\n    readonly controller: ServiceWorker | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/controllerchange_event) */\n    oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/message_event) */\n    onmessage: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/messageerror_event) */\n    onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null;\n    /**\n     * The **`ready`** read-only property of the ServiceWorkerContainer interface provides a way of delaying code execution until a service worker is active.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/ready)\n     */\n    readonly ready: Promise<ServiceWorkerRegistration>;\n    /**\n     * The **`getRegistration()`** method of the client URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)\n     */\n    getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;\n    /**\n     * The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)\n     */\n    getRegistrations(): Promise<ReadonlyArray<ServiceWorkerRegistration>>;\n    /**\n     * The **`register()`** method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/register)\n     */\n    register(scriptURL: string | URL, options?: RegistrationOptions): Promise<ServiceWorkerRegistration>;\n    /**\n     * The **`startMessages()`** method of the ServiceWorkerContainer interface explicitly starts the flow of messages being dispatched from a service worker to pages under its control (e.g., sent via Client.postMessage()).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/startMessages)\n     */\n    startMessages(): void;\n    addEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorkerContainer: {\n    prototype: ServiceWorkerContainer;\n    new(): ServiceWorkerContainer;\n};\n\ninterface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {\n    \"activate\": ExtendableEvent;\n    \"cookiechange\": ExtendableCookieChangeEvent;\n    \"fetch\": FetchEvent;\n    \"install\": ExtendableEvent;\n    \"message\": ExtendableMessageEvent;\n    \"messageerror\": MessageEvent;\n    \"notificationclick\": NotificationEvent;\n    \"notificationclose\": NotificationEvent;\n    \"push\": PushEvent;\n    \"pushsubscriptionchange\": PushSubscriptionChangeEvent;\n}\n\n/**\n * The **`ServiceWorkerGlobalScope`** interface of the Service Worker API represents the global execution context of a service worker.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)\n */\ninterface ServiceWorkerGlobalScope extends WorkerGlobalScope {\n    /**\n     * The **`clients`** read-only property of the object associated with the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/clients)\n     */\n    readonly clients: Clients;\n    /**\n     * The **`cookieStore`** read-only property of the ServiceWorkerGlobalScope interface returns a reference to the CookieStore object associated with this service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookieStore)\n     */\n    readonly cookieStore: CookieStore;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/activate_event) */\n    onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/cookiechange_event) */\n    oncookiechange: ((this: ServiceWorkerGlobalScope, ev: ExtendableCookieChangeEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/fetch_event) */\n    onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/install_event) */\n    oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */\n    onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */\n    onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */\n    onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */\n    onnotificationclose: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/push_event) */\n    onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/pushsubscriptionchange_event) */\n    onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;\n    /**\n     * The **`registration`** read-only property of the ServiceWorkerGlobalScope interface returns a reference to the ServiceWorkerRegistration object, which represents the service worker's registration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration)\n     */\n    readonly registration: ServiceWorkerRegistration;\n    /**\n     * The **`serviceWorker`** read-only property of the ServiceWorkerGlobalScope interface returns a reference to the ServiceWorker object, which represents the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker)\n     */\n    readonly serviceWorker: ServiceWorker;\n    /**\n     * The **`skipWaiting()`** method of the ServiceWorkerGlobalScope interface forces the waiting service worker to become the active service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting)\n     */\n    skipWaiting(): Promise<void>;\n    addEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorkerGlobalScope: {\n    prototype: ServiceWorkerGlobalScope;\n    new(): ServiceWorkerGlobalScope;\n};\n\ninterface ServiceWorkerRegistrationEventMap {\n    \"updatefound\": Event;\n}\n\n/**\n * The **`ServiceWorkerRegistration`** interface of the Service Worker API represents the service worker registration.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration)\n */\ninterface ServiceWorkerRegistration extends EventTarget {\n    /**\n     * The **`active`** read-only property of the This property is initially set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)\n     */\n    readonly active: ServiceWorker | null;\n    /**\n     * The **`cookies`** read-only property of the ServiceWorkerRegistration interface returns a reference to the CookieStoreManager interface, which enables a web app to subscribe to and unsubscribe from cookie change events in a service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/cookies)\n     */\n    readonly cookies: CookieStoreManager;\n    /**\n     * The **`installing`** read-only property of the initially set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)\n     */\n    readonly installing: ServiceWorker | null;\n    /**\n     * The **`navigationPreload`** read-only property of the ServiceWorkerRegistration interface returns the NavigationPreloadManager associated with the current service worker registration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/navigationPreload)\n     */\n    readonly navigationPreload: NavigationPreloadManager;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */\n    onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;\n    /**\n     * The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)\n     */\n    readonly pushManager: PushManager;\n    /**\n     * The **`scope`** read-only property of the ServiceWorkerRegistration interface returns a string representing a URL that defines a service worker's registration scope; that is, the range of URLs a service worker can control.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/scope)\n     */\n    readonly scope: string;\n    /**\n     * The **`updateViaCache`** read-only property of the ServiceWorkerRegistration interface returns the value of the setting used to determine the circumstances in which the browser will consult the HTTP cache when it tries to update the service worker or any scripts that are imported via WorkerGlobalScope.importScripts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updateViaCache)\n     */\n    readonly updateViaCache: ServiceWorkerUpdateViaCache;\n    /**\n     * The **`waiting`** read-only property of the set to `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)\n     */\n    readonly waiting: ServiceWorker | null;\n    /**\n     * The **`getNotifications()`** method of the ServiceWorkerRegistration interface returns a list of the notifications in the order that they were created from the current origin via the current service worker registration.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/getNotifications)\n     */\n    getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;\n    /**\n     * The **`showNotification()`** method of the service worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)\n     */\n    showNotification(title: string, options?: NotificationOptions): Promise<void>;\n    /**\n     * The **`unregister()`** method of the registration and returns a Promise.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)\n     */\n    unregister(): Promise<boolean>;\n    /**\n     * The **`update()`** method of the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)\n     */\n    update(): Promise<ServiceWorkerRegistration>;\n    addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var ServiceWorkerRegistration: {\n    prototype: ServiceWorkerRegistration;\n    new(): ServiceWorkerRegistration;\n};\n\ninterface SharedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {\n    \"connect\": MessageEvent;\n}\n\n/**\n * The **`SharedWorkerGlobalScope`** object (the SharedWorker global scope) is accessible through the window.self keyword.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorkerGlobalScope)\n */\ninterface SharedWorkerGlobalScope extends WorkerGlobalScope {\n    /**\n     * The **`name`** read-only property of the that the SharedWorker.SharedWorker constructor can pass to get a reference to the SharedWorkerGlobalScope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorkerGlobalScope/name)\n     */\n    readonly name: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorkerGlobalScope/connect_event) */\n    onconnect: ((this: SharedWorkerGlobalScope, ev: MessageEvent) => any) | null;\n    /**\n     * The **`close()`** method of the SharedWorkerGlobalScope interface discards any tasks queued in the `SharedWorkerGlobalScope`'s event loop, effectively closing this particular scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorkerGlobalScope/close)\n     */\n    close(): void;\n    addEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var SharedWorkerGlobalScope: {\n    prototype: SharedWorkerGlobalScope;\n    new(): SharedWorkerGlobalScope;\n};\n\n/**\n * The **`StorageManager`** interface of the Storage API provides an interface for managing persistence permissions and estimating available storage.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager)\n */\ninterface StorageManager {\n    /**\n     * The **`estimate()`** method of the StorageManager interface asks the Storage Manager for how much storage the current origin takes up (`usage`), and how much space is available (`quota`).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/estimate)\n     */\n    estimate(): Promise<StorageEstimate>;\n    /**\n     * The **`getDirectory()`** method of the StorageManager interface is used to obtain a reference to a FileSystemDirectoryHandle object allowing access to a directory and its contents, stored in the origin private file system (OPFS).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/getDirectory)\n     */\n    getDirectory(): Promise<FileSystemDirectoryHandle>;\n    /**\n     * The **`persisted()`** method of the StorageManager interface returns a Promise that resolves to `true` if your site's storage bucket is persistent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager/persisted)\n     */\n    persisted(): Promise<boolean>;\n}\n\ndeclare var StorageManager: {\n    prototype: StorageManager;\n    new(): StorageManager;\n};\n\n/**\n * The **`StylePropertyMapReadOnly`** interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly)\n */\ninterface StylePropertyMapReadOnly {\n    /**\n     * The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)\n     */\n    readonly size: number;\n    /**\n     * The **`get()`** method of the object for the first value of the specified property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)\n     */\n    get(property: string): undefined | CSSStyleValue;\n    /**\n     * The **`getAll()`** method of the ```js-nolint getAll(property) ``` - `property` - : The name of the property to retrieve all values of.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)\n     */\n    getAll(property: string): CSSStyleValue[];\n    /**\n     * The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)\n     */\n    has(property: string): boolean;\n    forEach(callbackfn: (value: CSSStyleValue[], key: string, parent: StylePropertyMapReadOnly) => void, thisArg?: any): void;\n}\n\ndeclare var StylePropertyMapReadOnly: {\n    prototype: StylePropertyMapReadOnly;\n    new(): StylePropertyMapReadOnly;\n};\n\n/**\n * The **`SubtleCrypto`** interface of the Web Crypto API provides a number of low-level cryptographic functions.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto)\n */\ninterface SubtleCrypto {\n    /**\n     * The **`decrypt()`** method of the SubtleCrypto interface decrypts some encrypted data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt)\n     */\n    decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`deriveBits()`** method of the key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)\n     */\n    deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null): Promise<ArrayBuffer>;\n    /**\n     * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey)\n     */\n    deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`digest()`** method of the SubtleCrypto interface generates a _digest_ of the given data, using the specified hash function.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest)\n     */\n    digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`encrypt()`** method of the SubtleCrypto interface encrypts data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/encrypt)\n     */\n    encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`exportKey()`** method of the SubtleCrypto interface exports a key: that is, it takes as input a CryptoKey object and gives you the key in an external, portable format.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey)\n     */\n    exportKey(format: \"jwk\", key: CryptoKey): Promise<JsonWebKey>;\n    exportKey(format: Exclude<KeyFormat, \"jwk\">, key: CryptoKey): Promise<ArrayBuffer>;\n    exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;\n    /**\n     * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey)\n     */\n    generateKey(algorithm: \"Ed25519\" | { name: \"Ed25519\" }, extractable: boolean, keyUsages: ReadonlyArray<\"sign\" | \"verify\">): Promise<CryptoKeyPair>;\n    generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;\n    generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;\n    /**\n     * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey)\n     */\n    importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    importKey(format: Exclude<KeyFormat, \"jwk\">, keyData: BufferSource, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`sign()`** method of the SubtleCrypto interface generates a digital signature.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/sign)\n     */\n    sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;\n    /**\n     * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey)\n     */\n    unwrapKey(format: KeyFormat, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;\n    /**\n     * The **`verify()`** method of the SubtleCrypto interface verifies a digital signature.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/verify)\n     */\n    verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource): Promise<boolean>;\n    /**\n     * The **`wrapKey()`** method of the SubtleCrypto interface 'wraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/wrapKey)\n     */\n    wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams): Promise<ArrayBuffer>;\n}\n\ndeclare var SubtleCrypto: {\n    prototype: SubtleCrypto;\n    new(): SubtleCrypto;\n};\n\n/**\n * The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)\n */\ninterface TextDecoder extends TextDecoderCommon {\n    /**\n     * The **`TextDecoder.decode()`** method returns a string containing text decoded from the buffer passed as a parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/decode)\n     */\n    decode(input?: AllowSharedBufferSource, options?: TextDecodeOptions): string;\n}\n\ndeclare var TextDecoder: {\n    prototype: TextDecoder;\n    new(label?: string, options?: TextDecoderOptions): TextDecoder;\n};\n\ninterface TextDecoderCommon {\n    /**\n     * Returns encoding's name, lowercased.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/encoding)\n     */\n    readonly encoding: string;\n    /**\n     * Returns true if error mode is \"fatal\", otherwise false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/fatal)\n     */\n    readonly fatal: boolean;\n    /**\n     * Returns the value of ignore BOM.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/ignoreBOM)\n     */\n    readonly ignoreBOM: boolean;\n}\n\n/**\n * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)\n */\ninterface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {\n    readonly readable: ReadableStream<string>;\n    readonly writable: WritableStream<BufferSource>;\n}\n\ndeclare var TextDecoderStream: {\n    prototype: TextDecoderStream;\n    new(label?: string, options?: TextDecoderOptions): TextDecoderStream;\n};\n\n/**\n * The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)\n */\ninterface TextEncoder extends TextEncoderCommon {\n    /**\n     * The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode)\n     */\n    encode(input?: string): Uint8Array<ArrayBuffer>;\n    /**\n     * The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto)\n     */\n    encodeInto(source: string, destination: Uint8Array<ArrayBufferLike>): TextEncoderEncodeIntoResult;\n}\n\ndeclare var TextEncoder: {\n    prototype: TextEncoder;\n    new(): TextEncoder;\n};\n\ninterface TextEncoderCommon {\n    /**\n     * Returns \"utf-8\".\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encoding)\n     */\n    readonly encoding: string;\n}\n\n/**\n * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)\n */\ninterface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {\n    readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;\n    readonly writable: WritableStream<string>;\n}\n\ndeclare var TextEncoderStream: {\n    prototype: TextEncoderStream;\n    new(): TextEncoderStream;\n};\n\n/**\n * The **`TextMetrics`** interface represents the dimensions of a piece of text in the canvas; a `TextMetrics` instance can be retrieved using the CanvasRenderingContext2D.measureText() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics)\n */\ninterface TextMetrics {\n    /**\n     * The read-only **`actualBoundingBoxAscent`** property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the top of the bounding rectangle used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxAscent)\n     */\n    readonly actualBoundingBoxAscent: number;\n    /**\n     * The read-only `actualBoundingBoxDescent` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxDescent)\n     */\n    readonly actualBoundingBoxDescent: number;\n    /**\n     * The read-only `actualBoundingBoxLeft` property of the TextMetrics interface is a `double` giving the distance parallel to the baseline from the alignment point given by the CanvasRenderingContext2D.textAlign property to the left side of the bounding rectangle of the given text, in CSS pixels; positive numbers indicating a distance going left from the given alignment point.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxLeft)\n     */\n    readonly actualBoundingBoxLeft: number;\n    /**\n     * The read-only `actualBoundingBoxRight` property of the TextMetrics interface is a `double` giving the distance parallel to the baseline from the alignment point given by the CanvasRenderingContext2D.textAlign property to the right side of the bounding rectangle of the given text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxRight)\n     */\n    readonly actualBoundingBoxRight: number;\n    /**\n     * The read-only `alphabeticBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the alphabetic baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/alphabeticBaseline)\n     */\n    readonly alphabeticBaseline: number;\n    /**\n     * The read-only `emHeightAscent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the top of the _em_ square in the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightAscent)\n     */\n    readonly emHeightAscent: number;\n    /**\n     * The read-only `emHeightDescent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the bottom of the _em_ square in the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightDescent)\n     */\n    readonly emHeightDescent: number;\n    /**\n     * The read-only `fontBoundingBoxAscent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute, to the top of the highest bounding rectangle of all the fonts used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxAscent)\n     */\n    readonly fontBoundingBoxAscent: number;\n    /**\n     * The read-only `fontBoundingBoxDescent` property of the TextMetrics interface returns the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline attribute to the bottom of the bounding rectangle of all the fonts used to render the text, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxDescent)\n     */\n    readonly fontBoundingBoxDescent: number;\n    /**\n     * The read-only `hangingBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the hanging baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/hangingBaseline)\n     */\n    readonly hangingBaseline: number;\n    /**\n     * The read-only `ideographicBaseline` property of the TextMetrics interface is a `double` giving the distance from the horizontal line indicated by the CanvasRenderingContext2D.textBaseline property to the ideographic baseline of the line box, in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/ideographicBaseline)\n     */\n    readonly ideographicBaseline: number;\n    /**\n     * The read-only **`width`** property of the TextMetrics interface contains the text's advance width (the width of that inline box) in CSS pixels.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/width)\n     */\n    readonly width: number;\n}\n\ndeclare var TextMetrics: {\n    prototype: TextMetrics;\n    new(): TextMetrics;\n};\n\n/**\n * The **`TransformStream`** interface of the Streams API represents a concrete implementation of the pipe chain _transform stream_ concept.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream)\n */\ninterface TransformStream<I = any, O = any> {\n    /**\n     * The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this `TransformStream`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable)\n     */\n    readonly readable: ReadableStream<O>;\n    /**\n     * The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this `TransformStream`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/writable)\n     */\n    readonly writable: WritableStream<I>;\n}\n\ndeclare var TransformStream: {\n    prototype: TransformStream;\n    new<I = any, O = any>(transformer?: Transformer<I, O>, writableStrategy?: QueuingStrategy<I>, readableStrategy?: QueuingStrategy<O>): TransformStream<I, O>;\n};\n\n/**\n * The **`TransformStreamDefaultController`** interface of the Streams API provides methods to manipulate the associated ReadableStream and WritableStream.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController)\n */\ninterface TransformStreamDefaultController<O = any> {\n    /**\n     * The **`desiredSize`** read-only property of the TransformStreamDefaultController interface returns the desired size to fill the queue of the associated ReadableStream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`enqueue()`** method of the TransformStreamDefaultController interface enqueues the given chunk in the readable side of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue)\n     */\n    enqueue(chunk?: O): void;\n    /**\n     * The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/error)\n     */\n    error(reason?: any): void;\n    /**\n     * The **`terminate()`** method of the TransformStreamDefaultController interface closes the readable side and errors the writable side of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/terminate)\n     */\n    terminate(): void;\n}\n\ndeclare var TransformStreamDefaultController: {\n    prototype: TransformStreamDefaultController;\n    new(): TransformStreamDefaultController;\n};\n\n/**\n * The **`URL`** interface is used to parse, construct, normalize, and encode URL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL)\n */\ninterface URL {\n    /**\n     * The **`hash`** property of the URL interface is a string containing a `'#'` followed by the fragment identifier of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash)\n     */\n    hash: string;\n    /**\n     * The **`host`** property of the URL interface is a string containing the host, which is the URL.hostname, and then, if the port of the URL is nonempty, a `':'`, followed by the URL.port of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host)\n     */\n    host: string;\n    /**\n     * The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname)\n     */\n    hostname: string;\n    /**\n     * The **`href`** property of the URL interface is a string containing the whole URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/href)\n     */\n    href: string;\n    toString(): string;\n    /**\n     * The **`origin`** read-only property of the URL interface returns a string containing the Unicode serialization of the origin of the represented URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`password`** property of the URL interface is a string containing the password component of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password)\n     */\n    password: string;\n    /**\n     * The **`pathname`** property of the URL interface represents a location in a hierarchical structure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/pathname)\n     */\n    pathname: string;\n    /**\n     * The **`port`** property of the URL interface is a string containing the port number of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port)\n     */\n    port: string;\n    /**\n     * The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final `':'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol)\n     */\n    protocol: string;\n    /**\n     * The **`search`** property of the URL interface is a search string, also called a _query string_, that is a string containing a `'?'` followed by the parameters of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search)\n     */\n    search: string;\n    /**\n     * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)\n     */\n    readonly searchParams: URLSearchParams;\n    /**\n     * The **`username`** property of the URL interface is a string containing the username component of the URL.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username)\n     */\n    username: string;\n    /**\n     * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)\n     */\n    toJSON(): string;\n}\n\ndeclare var URL: {\n    prototype: URL;\n    new(url: string | URL, base?: string | URL): URL;\n    /**\n     * The **`URL.canParse()`** static method of the URL interface returns a boolean indicating whether or not an absolute URL, or a relative URL combined with a base URL, are parsable and valid.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static)\n     */\n    canParse(url: string | URL, base?: string | URL): boolean;\n    /**\n     * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static)\n     */\n    createObjectURL(obj: Blob): string;\n    /**\n     * The **`URL.parse()`** static method of the URL interface returns a newly created URL object representing the URL defined by the parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static)\n     */\n    parse(url: string | URL, base?: string | URL): URL | null;\n    /**\n     * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling Call this method when you've finished using an object URL to let the browser know not to keep the reference to the file any longer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)\n     */\n    revokeObjectURL(url: string): void;\n};\n\n/**\n * The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n */\ninterface URLSearchParams {\n    /**\n     * The **`size`** read-only property of the URLSearchParams interface indicates the total number of search parameter entries.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/size)\n     */\n    readonly size: number;\n    /**\n     * The **`append()`** method of the URLSearchParams interface appends a specified key/value pair as a new search parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/append)\n     */\n    append(name: string, value: string): void;\n    /**\n     * The **`delete()`** method of the URLSearchParams interface deletes specified parameters and their associated value(s) from the list of all search parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete)\n     */\n    delete(name: string, value?: string): void;\n    /**\n     * The **`get()`** method of the URLSearchParams interface returns the first value associated to the given search parameter.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/get)\n     */\n    get(name: string): string | null;\n    /**\n     * The **`getAll()`** method of the URLSearchParams interface returns all the values associated with a given search parameter as an array.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/getAll)\n     */\n    getAll(name: string): string[];\n    /**\n     * The **`has()`** method of the URLSearchParams interface returns a boolean value that indicates whether the specified parameter is in the search parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has)\n     */\n    has(name: string, value?: string): boolean;\n    /**\n     * The **`set()`** method of the URLSearchParams interface sets the value associated with a given search parameter to the given value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/set)\n     */\n    set(name: string, value: string): void;\n    /**\n     * The **`URLSearchParams.sort()`** method sorts all key/value pairs contained in this object in place and returns `undefined`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/sort)\n     */\n    sort(): void;\n    toString(): string;\n    forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;\n}\n\ndeclare var URLSearchParams: {\n    prototype: URLSearchParams;\n    new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;\n};\n\n/**\n * The **`VideoColorSpace`** interface of the WebCodecs API represents the color space of a video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace)\n */\ninterface VideoColorSpace {\n    /**\n     * The **`fullRange`** read-only property of the VideoColorSpace interface returns `true` if full-range color values are used.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/fullRange)\n     */\n    readonly fullRange: boolean | null;\n    /**\n     * The **`matrix`** read-only property of the VideoColorSpace interface returns the matrix coefficient of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/matrix)\n     */\n    readonly matrix: VideoMatrixCoefficients | null;\n    /**\n     * The **`primaries`** read-only property of the VideoColorSpace interface returns the color gamut of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/primaries)\n     */\n    readonly primaries: VideoColorPrimaries | null;\n    /**\n     * The **`transfer`** read-only property of the VideoColorSpace interface returns the opto-electronic transfer characteristics of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/transfer)\n     */\n    readonly transfer: VideoTransferCharacteristics | null;\n    /**\n     * The **`toJSON()`** method of the VideoColorSpace interface is a _serializer_ that returns a JSON representation of the `VideoColorSpace` object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoColorSpace/toJSON)\n     */\n    toJSON(): VideoColorSpaceInit;\n}\n\ndeclare var VideoColorSpace: {\n    prototype: VideoColorSpace;\n    new(init?: VideoColorSpaceInit): VideoColorSpace;\n};\n\ninterface VideoDecoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`VideoDecoder`** interface of the WebCodecs API decodes chunks of video.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder)\n */\ninterface VideoDecoder extends EventTarget {\n    /**\n     * The **`decodeQueueSize`** read-only property of the VideoDecoder interface returns the number of pending decode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decodeQueueSize)\n     */\n    readonly decodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/dequeue_event) */\n    ondequeue: ((this: VideoDecoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** property of the VideoDecoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the VideoDecoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the VideoDecoder interface enqueues a control message to configure the video decoder for decoding chunks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/configure)\n     */\n    configure(config: VideoDecoderConfig): void;\n    /**\n     * The **`decode()`** method of the VideoDecoder interface enqueues a control message to decode a given chunk of video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decode)\n     */\n    decode(chunk: EncodedVideoChunk): void;\n    /**\n     * The **`flush()`** method of the VideoDecoder interface returns a Promise that resolves once all pending messages in the queue have been completed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the VideoDecoder interface resets all states including configuration, control messages in the control message queue, and all pending callbacks.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof VideoDecoderEventMap>(type: K, listener: (this: VideoDecoder, ev: VideoDecoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof VideoDecoderEventMap>(type: K, listener: (this: VideoDecoder, ev: VideoDecoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VideoDecoder: {\n    prototype: VideoDecoder;\n    new(init: VideoDecoderInit): VideoDecoder;\n    /**\n     * The **`isConfigSupported()`** static method of the VideoDecoder interface checks if the given config is supported (that is, if VideoDecoder objects can be successfully configured with the given config).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: VideoDecoderConfig): Promise<VideoDecoderSupport>;\n};\n\ninterface VideoEncoderEventMap {\n    \"dequeue\": Event;\n}\n\n/**\n * The **`VideoEncoder`** interface of the WebCodecs API encodes VideoFrame objects into EncodedVideoChunks.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder)\n */\ninterface VideoEncoder extends EventTarget {\n    /**\n     * The **`encodeQueueSize`** read-only property of the VideoEncoder interface returns the number of pending encode requests in the queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encodeQueueSize)\n     */\n    readonly encodeQueueSize: number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/dequeue_event) */\n    ondequeue: ((this: VideoEncoder, ev: Event) => any) | null;\n    /**\n     * The **`state`** read-only property of the VideoEncoder interface returns the current state of the underlying codec.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/state)\n     */\n    readonly state: CodecState;\n    /**\n     * The **`close()`** method of the VideoEncoder interface ends all pending work and releases system resources.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/close)\n     */\n    close(): void;\n    /**\n     * The **`configure()`** method of the VideoEncoder interface changes the VideoEncoder.state of the encoder to 'configured' and asynchronously prepares the encoder to accept VideoEncoders for encoding with the specified parameters.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/configure)\n     */\n    configure(config: VideoEncoderConfig): void;\n    /**\n     * The **`encode()`** method of the VideoEncoder interface asynchronously encodes a VideoFrame.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encode)\n     */\n    encode(frame: VideoFrame, options?: VideoEncoderEncodeOptions): void;\n    /**\n     * The **`flush()`** method of the VideoEncoder interface forces all pending encodes to complete.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/flush)\n     */\n    flush(): Promise<void>;\n    /**\n     * The **`reset()`** method of the VideoEncoder interface synchronously cancels all pending encodes and callbacks, frees all underlying resources and sets the VideoEncoder.state to 'unconfigured'.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/reset)\n     */\n    reset(): void;\n    addEventListener<K extends keyof VideoEncoderEventMap>(type: K, listener: (this: VideoEncoder, ev: VideoEncoderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof VideoEncoderEventMap>(type: K, listener: (this: VideoEncoder, ev: VideoEncoderEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var VideoEncoder: {\n    prototype: VideoEncoder;\n    new(init: VideoEncoderInit): VideoEncoder;\n    /**\n     * The **`isConfigSupported()`** static method of the VideoEncoder interface checks if VideoEncoder can be successfully configured with the given config.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/isConfigSupported_static)\n     */\n    isConfigSupported(config: VideoEncoderConfig): Promise<VideoEncoderSupport>;\n};\n\n/**\n * The **`VideoFrame`** interface of the Web Codecs API represents a frame of a video.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame)\n */\ninterface VideoFrame {\n    /**\n     * The **`codedHeight`** property of the VideoFrame interface returns the height of the VideoFrame in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedHeight)\n     */\n    readonly codedHeight: number;\n    /**\n     * The **`codedRect`** property of the VideoFrame interface returns a DOMRectReadOnly with the width and height matching VideoFrame.codedWidth and VideoFrame.codedHeight.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedRect)\n     */\n    readonly codedRect: DOMRectReadOnly | null;\n    /**\n     * The **`codedWidth`** property of the VideoFrame interface returns the width of the `VideoFrame` in pixels, potentially including non-visible padding, and prior to considering potential ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/codedWidth)\n     */\n    readonly codedWidth: number;\n    /**\n     * The **`colorSpace`** property of the VideoFrame interface returns a VideoColorSpace object representing the color space of the video.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/colorSpace)\n     */\n    readonly colorSpace: VideoColorSpace;\n    /**\n     * The **`displayHeight`** property of the VideoFrame interface returns the height of the `VideoFrame` after applying aspect ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/displayHeight)\n     */\n    readonly displayHeight: number;\n    /**\n     * The **`displayWidth`** property of the VideoFrame interface returns the width of the `VideoFrame` after applying aspect ratio adjustments.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/displayWidth)\n     */\n    readonly displayWidth: number;\n    /**\n     * The **`duration`** property of the VideoFrame interface returns an integer indicating the duration of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/duration)\n     */\n    readonly duration: number | null;\n    /**\n     * The **`format`** property of the VideoFrame interface returns the pixel format of the `VideoFrame`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/format)\n     */\n    readonly format: VideoPixelFormat | null;\n    /**\n     * The **`timestamp`** property of the VideoFrame interface returns an integer indicating the timestamp of the video in microseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/timestamp)\n     */\n    readonly timestamp: number;\n    /**\n     * The **`visibleRect`** property of the VideoFrame interface returns a DOMRectReadOnly describing the visible rectangle of pixels for this `VideoFrame`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/visibleRect)\n     */\n    readonly visibleRect: DOMRectReadOnly | null;\n    /**\n     * The **`allocationSize()`** method of the VideoFrame interface returns the number of bytes required to hold the video as filtered by options passed into the method.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/allocationSize)\n     */\n    allocationSize(options?: VideoFrameCopyToOptions): number;\n    /**\n     * The **`clone()`** method of the VideoFrame interface creates a new `VideoFrame` object referencing the same media resource as the original.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/clone)\n     */\n    clone(): VideoFrame;\n    /**\n     * The **`close()`** method of the VideoFrame interface clears all states and releases the reference to the media resource.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/close)\n     */\n    close(): void;\n    /**\n     * The **`copyTo()`** method of the VideoFrame interface copies the contents of the `VideoFrame` to an `ArrayBuffer`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/copyTo)\n     */\n    copyTo(destination: AllowSharedBufferSource, options?: VideoFrameCopyToOptions): Promise<PlaneLayout[]>;\n}\n\ndeclare var VideoFrame: {\n    prototype: VideoFrame;\n    new(image: CanvasImageSource, init?: VideoFrameInit): VideoFrame;\n    new(data: AllowSharedBufferSource, init: VideoFrameBufferInit): VideoFrame;\n};\n\n/**\n * The **`WEBGL_color_buffer_float`** extension is part of the WebGL API and adds the ability to render to 32-bit floating-point color buffers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_color_buffer_float)\n */\ninterface WEBGL_color_buffer_float {\n    readonly RGBA32F_EXT: 0x8814;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: 0x8211;\n    readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;\n}\n\n/**\n * The **`WEBGL_compressed_texture_astc`** extension is part of the WebGL API and exposes Adaptive Scalable Texture Compression (ASTC) compressed texture formats to WebGL.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc)\n */\ninterface WEBGL_compressed_texture_astc {\n    /**\n     * The **`WEBGL_compressed_texture_astc.getSupportedProfiles()`** method returns an array of strings containing the names of the ASTC profiles supported by the implementation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc/getSupportedProfiles)\n     */\n    getSupportedProfiles(): string[];\n    readonly COMPRESSED_RGBA_ASTC_4x4_KHR: 0x93B0;\n    readonly COMPRESSED_RGBA_ASTC_5x4_KHR: 0x93B1;\n    readonly COMPRESSED_RGBA_ASTC_5x5_KHR: 0x93B2;\n    readonly COMPRESSED_RGBA_ASTC_6x5_KHR: 0x93B3;\n    readonly COMPRESSED_RGBA_ASTC_6x6_KHR: 0x93B4;\n    readonly COMPRESSED_RGBA_ASTC_8x5_KHR: 0x93B5;\n    readonly COMPRESSED_RGBA_ASTC_8x6_KHR: 0x93B6;\n    readonly COMPRESSED_RGBA_ASTC_8x8_KHR: 0x93B7;\n    readonly COMPRESSED_RGBA_ASTC_10x5_KHR: 0x93B8;\n    readonly COMPRESSED_RGBA_ASTC_10x6_KHR: 0x93B9;\n    readonly COMPRESSED_RGBA_ASTC_10x8_KHR: 0x93BA;\n    readonly COMPRESSED_RGBA_ASTC_10x10_KHR: 0x93BB;\n    readonly COMPRESSED_RGBA_ASTC_12x10_KHR: 0x93BC;\n    readonly COMPRESSED_RGBA_ASTC_12x12_KHR: 0x93BD;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR: 0x93D0;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR: 0x93D1;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR: 0x93D2;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR: 0x93D3;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR: 0x93D4;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR: 0x93D5;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR: 0x93D6;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: 0x93D7;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR: 0x93D8;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR: 0x93D9;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR: 0x93DA;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR: 0x93DB;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR: 0x93DC;\n    readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR: 0x93DD;\n}\n\n/**\n * The **`WEBGL_compressed_texture_etc`** extension is part of the WebGL API and exposes 10 ETC/EAC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc)\n */\ninterface WEBGL_compressed_texture_etc {\n    readonly COMPRESSED_R11_EAC: 0x9270;\n    readonly COMPRESSED_SIGNED_R11_EAC: 0x9271;\n    readonly COMPRESSED_RG11_EAC: 0x9272;\n    readonly COMPRESSED_SIGNED_RG11_EAC: 0x9273;\n    readonly COMPRESSED_RGB8_ETC2: 0x9274;\n    readonly COMPRESSED_SRGB8_ETC2: 0x9275;\n    readonly COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2: 0x9276;\n    readonly COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2: 0x9277;\n    readonly COMPRESSED_RGBA8_ETC2_EAC: 0x9278;\n    readonly COMPRESSED_SRGB8_ALPHA8_ETC2_EAC: 0x9279;\n}\n\n/**\n * The **`WEBGL_compressed_texture_etc1`** extension is part of the WebGL API and exposes the ETC1 compressed texture format.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc1)\n */\ninterface WEBGL_compressed_texture_etc1 {\n    readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;\n}\n\n/**\n * The **`WEBGL_compressed_texture_pvrtc`** extension is part of the WebGL API and exposes four PVRTC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_pvrtc)\n */\ninterface WEBGL_compressed_texture_pvrtc {\n    readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;\n    readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;\n    readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;\n    readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;\n}\n\n/**\n * The **`WEBGL_compressed_texture_s3tc`** extension is part of the WebGL API and exposes four S3TC compressed texture formats.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc)\n */\ninterface WEBGL_compressed_texture_s3tc {\n    readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;\n    readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: 0x83F1;\n    readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: 0x83F2;\n    readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: 0x83F3;\n}\n\n/**\n * The **`WEBGL_compressed_texture_s3tc_srgb`** extension is part of the WebGL API and exposes four S3TC compressed texture formats for the sRGB colorspace.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc_srgb)\n */\ninterface WEBGL_compressed_texture_s3tc_srgb {\n    readonly COMPRESSED_SRGB_S3TC_DXT1_EXT: 0x8C4C;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT: 0x8C4D;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT: 0x8C4E;\n    readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT: 0x8C4F;\n}\n\n/**\n * The **`WEBGL_debug_renderer_info`** extension is part of the WebGL API and exposes two constants with information about the graphics driver for debugging purposes.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_renderer_info)\n */\ninterface WEBGL_debug_renderer_info {\n    readonly UNMASKED_VENDOR_WEBGL: 0x9245;\n    readonly UNMASKED_RENDERER_WEBGL: 0x9246;\n}\n\n/**\n * The **`WEBGL_debug_shaders`** extension is part of the WebGL API and exposes a method to debug shaders from privileged contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders)\n */\ninterface WEBGL_debug_shaders {\n    /**\n     * The **`WEBGL_debug_shaders.getTranslatedShaderSource()`** method is part of the WebGL API and allows you to debug a translated shader.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders/getTranslatedShaderSource)\n     */\n    getTranslatedShaderSource(shader: WebGLShader): string;\n}\n\n/**\n * The **`WEBGL_depth_texture`** extension is part of the WebGL API and defines 2D depth and depth-stencil textures.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_depth_texture)\n */\ninterface WEBGL_depth_texture {\n    readonly UNSIGNED_INT_24_8_WEBGL: 0x84FA;\n}\n\n/**\n * The **`WEBGL_draw_buffers`** extension is part of the WebGL API and enables a fragment shader to write to several textures, which is useful for deferred shading, for example.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers)\n */\ninterface WEBGL_draw_buffers {\n    /**\n     * The **`WEBGL_draw_buffers.drawBuffersWEBGL()`** method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL)\n     */\n    drawBuffersWEBGL(buffers: GLenum[]): void;\n    readonly COLOR_ATTACHMENT0_WEBGL: 0x8CE0;\n    readonly COLOR_ATTACHMENT1_WEBGL: 0x8CE1;\n    readonly COLOR_ATTACHMENT2_WEBGL: 0x8CE2;\n    readonly COLOR_ATTACHMENT3_WEBGL: 0x8CE3;\n    readonly COLOR_ATTACHMENT4_WEBGL: 0x8CE4;\n    readonly COLOR_ATTACHMENT5_WEBGL: 0x8CE5;\n    readonly COLOR_ATTACHMENT6_WEBGL: 0x8CE6;\n    readonly COLOR_ATTACHMENT7_WEBGL: 0x8CE7;\n    readonly COLOR_ATTACHMENT8_WEBGL: 0x8CE8;\n    readonly COLOR_ATTACHMENT9_WEBGL: 0x8CE9;\n    readonly COLOR_ATTACHMENT10_WEBGL: 0x8CEA;\n    readonly COLOR_ATTACHMENT11_WEBGL: 0x8CEB;\n    readonly COLOR_ATTACHMENT12_WEBGL: 0x8CEC;\n    readonly COLOR_ATTACHMENT13_WEBGL: 0x8CED;\n    readonly COLOR_ATTACHMENT14_WEBGL: 0x8CEE;\n    readonly COLOR_ATTACHMENT15_WEBGL: 0x8CEF;\n    readonly DRAW_BUFFER0_WEBGL: 0x8825;\n    readonly DRAW_BUFFER1_WEBGL: 0x8826;\n    readonly DRAW_BUFFER2_WEBGL: 0x8827;\n    readonly DRAW_BUFFER3_WEBGL: 0x8828;\n    readonly DRAW_BUFFER4_WEBGL: 0x8829;\n    readonly DRAW_BUFFER5_WEBGL: 0x882A;\n    readonly DRAW_BUFFER6_WEBGL: 0x882B;\n    readonly DRAW_BUFFER7_WEBGL: 0x882C;\n    readonly DRAW_BUFFER8_WEBGL: 0x882D;\n    readonly DRAW_BUFFER9_WEBGL: 0x882E;\n    readonly DRAW_BUFFER10_WEBGL: 0x882F;\n    readonly DRAW_BUFFER11_WEBGL: 0x8830;\n    readonly DRAW_BUFFER12_WEBGL: 0x8831;\n    readonly DRAW_BUFFER13_WEBGL: 0x8832;\n    readonly DRAW_BUFFER14_WEBGL: 0x8833;\n    readonly DRAW_BUFFER15_WEBGL: 0x8834;\n    readonly MAX_COLOR_ATTACHMENTS_WEBGL: 0x8CDF;\n    readonly MAX_DRAW_BUFFERS_WEBGL: 0x8824;\n}\n\n/**\n * The **WEBGL_lose_context** extension is part of the WebGL API and exposes functions to simulate losing and restoring a WebGLRenderingContext.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context)\n */\ninterface WEBGL_lose_context {\n    /**\n     * The **WEBGL_lose_context.loseContext()** method is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext context.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/loseContext)\n     */\n    loseContext(): void;\n    /**\n     * The **WEBGL_lose_context.restoreContext()** method is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/restoreContext)\n     */\n    restoreContext(): void;\n}\n\n/**\n * The **`WEBGL_multi_draw`** extension is part of the WebGL API and allows to render more than one primitive with a single function call.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw)\n */\ninterface WEBGL_multi_draw {\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL)\n     */\n    multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | GLint[], firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL)\n     */\n    multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | GLint[], firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL)\n     */\n    multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | GLsizei[], offsetsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL)\n     */\n    multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | GLsizei[], offsetsOffset: number, drawcount: GLsizei): void;\n}\n\n/**\n * The **WebGL2RenderingContext** interface provides the OpenGL ES 3.0 rendering context for the drawing surface of an HTML canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext)\n */\ninterface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {\n}\n\ndeclare var WebGL2RenderingContext: {\n    prototype: WebGL2RenderingContext;\n    new(): WebGL2RenderingContext;\n    readonly READ_BUFFER: 0x0C02;\n    readonly UNPACK_ROW_LENGTH: 0x0CF2;\n    readonly UNPACK_SKIP_ROWS: 0x0CF3;\n    readonly UNPACK_SKIP_PIXELS: 0x0CF4;\n    readonly PACK_ROW_LENGTH: 0x0D02;\n    readonly PACK_SKIP_ROWS: 0x0D03;\n    readonly PACK_SKIP_PIXELS: 0x0D04;\n    readonly COLOR: 0x1800;\n    readonly DEPTH: 0x1801;\n    readonly STENCIL: 0x1802;\n    readonly RED: 0x1903;\n    readonly RGB8: 0x8051;\n    readonly RGB10_A2: 0x8059;\n    readonly TEXTURE_BINDING_3D: 0x806A;\n    readonly UNPACK_SKIP_IMAGES: 0x806D;\n    readonly UNPACK_IMAGE_HEIGHT: 0x806E;\n    readonly TEXTURE_3D: 0x806F;\n    readonly TEXTURE_WRAP_R: 0x8072;\n    readonly MAX_3D_TEXTURE_SIZE: 0x8073;\n    readonly UNSIGNED_INT_2_10_10_10_REV: 0x8368;\n    readonly MAX_ELEMENTS_VERTICES: 0x80E8;\n    readonly MAX_ELEMENTS_INDICES: 0x80E9;\n    readonly TEXTURE_MIN_LOD: 0x813A;\n    readonly TEXTURE_MAX_LOD: 0x813B;\n    readonly TEXTURE_BASE_LEVEL: 0x813C;\n    readonly TEXTURE_MAX_LEVEL: 0x813D;\n    readonly MIN: 0x8007;\n    readonly MAX: 0x8008;\n    readonly DEPTH_COMPONENT24: 0x81A6;\n    readonly MAX_TEXTURE_LOD_BIAS: 0x84FD;\n    readonly TEXTURE_COMPARE_MODE: 0x884C;\n    readonly TEXTURE_COMPARE_FUNC: 0x884D;\n    readonly CURRENT_QUERY: 0x8865;\n    readonly QUERY_RESULT: 0x8866;\n    readonly QUERY_RESULT_AVAILABLE: 0x8867;\n    readonly STREAM_READ: 0x88E1;\n    readonly STREAM_COPY: 0x88E2;\n    readonly STATIC_READ: 0x88E5;\n    readonly STATIC_COPY: 0x88E6;\n    readonly DYNAMIC_READ: 0x88E9;\n    readonly DYNAMIC_COPY: 0x88EA;\n    readonly MAX_DRAW_BUFFERS: 0x8824;\n    readonly DRAW_BUFFER0: 0x8825;\n    readonly DRAW_BUFFER1: 0x8826;\n    readonly DRAW_BUFFER2: 0x8827;\n    readonly DRAW_BUFFER3: 0x8828;\n    readonly DRAW_BUFFER4: 0x8829;\n    readonly DRAW_BUFFER5: 0x882A;\n    readonly DRAW_BUFFER6: 0x882B;\n    readonly DRAW_BUFFER7: 0x882C;\n    readonly DRAW_BUFFER8: 0x882D;\n    readonly DRAW_BUFFER9: 0x882E;\n    readonly DRAW_BUFFER10: 0x882F;\n    readonly DRAW_BUFFER11: 0x8830;\n    readonly DRAW_BUFFER12: 0x8831;\n    readonly DRAW_BUFFER13: 0x8832;\n    readonly DRAW_BUFFER14: 0x8833;\n    readonly DRAW_BUFFER15: 0x8834;\n    readonly MAX_FRAGMENT_UNIFORM_COMPONENTS: 0x8B49;\n    readonly MAX_VERTEX_UNIFORM_COMPONENTS: 0x8B4A;\n    readonly SAMPLER_3D: 0x8B5F;\n    readonly SAMPLER_2D_SHADOW: 0x8B62;\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT: 0x8B8B;\n    readonly PIXEL_PACK_BUFFER: 0x88EB;\n    readonly PIXEL_UNPACK_BUFFER: 0x88EC;\n    readonly PIXEL_PACK_BUFFER_BINDING: 0x88ED;\n    readonly PIXEL_UNPACK_BUFFER_BINDING: 0x88EF;\n    readonly FLOAT_MAT2x3: 0x8B65;\n    readonly FLOAT_MAT2x4: 0x8B66;\n    readonly FLOAT_MAT3x2: 0x8B67;\n    readonly FLOAT_MAT3x4: 0x8B68;\n    readonly FLOAT_MAT4x2: 0x8B69;\n    readonly FLOAT_MAT4x3: 0x8B6A;\n    readonly SRGB: 0x8C40;\n    readonly SRGB8: 0x8C41;\n    readonly SRGB8_ALPHA8: 0x8C43;\n    readonly COMPARE_REF_TO_TEXTURE: 0x884E;\n    readonly RGBA32F: 0x8814;\n    readonly RGB32F: 0x8815;\n    readonly RGBA16F: 0x881A;\n    readonly RGB16F: 0x881B;\n    readonly VERTEX_ATTRIB_ARRAY_INTEGER: 0x88FD;\n    readonly MAX_ARRAY_TEXTURE_LAYERS: 0x88FF;\n    readonly MIN_PROGRAM_TEXEL_OFFSET: 0x8904;\n    readonly MAX_PROGRAM_TEXEL_OFFSET: 0x8905;\n    readonly MAX_VARYING_COMPONENTS: 0x8B4B;\n    readonly TEXTURE_2D_ARRAY: 0x8C1A;\n    readonly TEXTURE_BINDING_2D_ARRAY: 0x8C1D;\n    readonly R11F_G11F_B10F: 0x8C3A;\n    readonly UNSIGNED_INT_10F_11F_11F_REV: 0x8C3B;\n    readonly RGB9_E5: 0x8C3D;\n    readonly UNSIGNED_INT_5_9_9_9_REV: 0x8C3E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_MODE: 0x8C7F;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: 0x8C80;\n    readonly TRANSFORM_FEEDBACK_VARYINGS: 0x8C83;\n    readonly TRANSFORM_FEEDBACK_BUFFER_START: 0x8C84;\n    readonly TRANSFORM_FEEDBACK_BUFFER_SIZE: 0x8C85;\n    readonly TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: 0x8C88;\n    readonly RASTERIZER_DISCARD: 0x8C89;\n    readonly MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: 0x8C8A;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: 0x8C8B;\n    readonly INTERLEAVED_ATTRIBS: 0x8C8C;\n    readonly SEPARATE_ATTRIBS: 0x8C8D;\n    readonly TRANSFORM_FEEDBACK_BUFFER: 0x8C8E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_BINDING: 0x8C8F;\n    readonly RGBA32UI: 0x8D70;\n    readonly RGB32UI: 0x8D71;\n    readonly RGBA16UI: 0x8D76;\n    readonly RGB16UI: 0x8D77;\n    readonly RGBA8UI: 0x8D7C;\n    readonly RGB8UI: 0x8D7D;\n    readonly RGBA32I: 0x8D82;\n    readonly RGB32I: 0x8D83;\n    readonly RGBA16I: 0x8D88;\n    readonly RGB16I: 0x8D89;\n    readonly RGBA8I: 0x8D8E;\n    readonly RGB8I: 0x8D8F;\n    readonly RED_INTEGER: 0x8D94;\n    readonly RGB_INTEGER: 0x8D98;\n    readonly RGBA_INTEGER: 0x8D99;\n    readonly SAMPLER_2D_ARRAY: 0x8DC1;\n    readonly SAMPLER_2D_ARRAY_SHADOW: 0x8DC4;\n    readonly SAMPLER_CUBE_SHADOW: 0x8DC5;\n    readonly UNSIGNED_INT_VEC2: 0x8DC6;\n    readonly UNSIGNED_INT_VEC3: 0x8DC7;\n    readonly UNSIGNED_INT_VEC4: 0x8DC8;\n    readonly INT_SAMPLER_2D: 0x8DCA;\n    readonly INT_SAMPLER_3D: 0x8DCB;\n    readonly INT_SAMPLER_CUBE: 0x8DCC;\n    readonly INT_SAMPLER_2D_ARRAY: 0x8DCF;\n    readonly UNSIGNED_INT_SAMPLER_2D: 0x8DD2;\n    readonly UNSIGNED_INT_SAMPLER_3D: 0x8DD3;\n    readonly UNSIGNED_INT_SAMPLER_CUBE: 0x8DD4;\n    readonly UNSIGNED_INT_SAMPLER_2D_ARRAY: 0x8DD7;\n    readonly DEPTH_COMPONENT32F: 0x8CAC;\n    readonly DEPTH32F_STENCIL8: 0x8CAD;\n    readonly FLOAT_32_UNSIGNED_INT_24_8_REV: 0x8DAD;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: 0x8210;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: 0x8211;\n    readonly FRAMEBUFFER_ATTACHMENT_RED_SIZE: 0x8212;\n    readonly FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: 0x8213;\n    readonly FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: 0x8214;\n    readonly FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: 0x8215;\n    readonly FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: 0x8216;\n    readonly FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: 0x8217;\n    readonly FRAMEBUFFER_DEFAULT: 0x8218;\n    readonly UNSIGNED_INT_24_8: 0x84FA;\n    readonly DEPTH24_STENCIL8: 0x88F0;\n    readonly UNSIGNED_NORMALIZED: 0x8C17;\n    readonly DRAW_FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly READ_FRAMEBUFFER: 0x8CA8;\n    readonly DRAW_FRAMEBUFFER: 0x8CA9;\n    readonly READ_FRAMEBUFFER_BINDING: 0x8CAA;\n    readonly RENDERBUFFER_SAMPLES: 0x8CAB;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: 0x8CD4;\n    readonly MAX_COLOR_ATTACHMENTS: 0x8CDF;\n    readonly COLOR_ATTACHMENT1: 0x8CE1;\n    readonly COLOR_ATTACHMENT2: 0x8CE2;\n    readonly COLOR_ATTACHMENT3: 0x8CE3;\n    readonly COLOR_ATTACHMENT4: 0x8CE4;\n    readonly COLOR_ATTACHMENT5: 0x8CE5;\n    readonly COLOR_ATTACHMENT6: 0x8CE6;\n    readonly COLOR_ATTACHMENT7: 0x8CE7;\n    readonly COLOR_ATTACHMENT8: 0x8CE8;\n    readonly COLOR_ATTACHMENT9: 0x8CE9;\n    readonly COLOR_ATTACHMENT10: 0x8CEA;\n    readonly COLOR_ATTACHMENT11: 0x8CEB;\n    readonly COLOR_ATTACHMENT12: 0x8CEC;\n    readonly COLOR_ATTACHMENT13: 0x8CED;\n    readonly COLOR_ATTACHMENT14: 0x8CEE;\n    readonly COLOR_ATTACHMENT15: 0x8CEF;\n    readonly FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: 0x8D56;\n    readonly MAX_SAMPLES: 0x8D57;\n    readonly HALF_FLOAT: 0x140B;\n    readonly RG: 0x8227;\n    readonly RG_INTEGER: 0x8228;\n    readonly R8: 0x8229;\n    readonly RG8: 0x822B;\n    readonly R16F: 0x822D;\n    readonly R32F: 0x822E;\n    readonly RG16F: 0x822F;\n    readonly RG32F: 0x8230;\n    readonly R8I: 0x8231;\n    readonly R8UI: 0x8232;\n    readonly R16I: 0x8233;\n    readonly R16UI: 0x8234;\n    readonly R32I: 0x8235;\n    readonly R32UI: 0x8236;\n    readonly RG8I: 0x8237;\n    readonly RG8UI: 0x8238;\n    readonly RG16I: 0x8239;\n    readonly RG16UI: 0x823A;\n    readonly RG32I: 0x823B;\n    readonly RG32UI: 0x823C;\n    readonly VERTEX_ARRAY_BINDING: 0x85B5;\n    readonly R8_SNORM: 0x8F94;\n    readonly RG8_SNORM: 0x8F95;\n    readonly RGB8_SNORM: 0x8F96;\n    readonly RGBA8_SNORM: 0x8F97;\n    readonly SIGNED_NORMALIZED: 0x8F9C;\n    readonly COPY_READ_BUFFER: 0x8F36;\n    readonly COPY_WRITE_BUFFER: 0x8F37;\n    readonly COPY_READ_BUFFER_BINDING: 0x8F36;\n    readonly COPY_WRITE_BUFFER_BINDING: 0x8F37;\n    readonly UNIFORM_BUFFER: 0x8A11;\n    readonly UNIFORM_BUFFER_BINDING: 0x8A28;\n    readonly UNIFORM_BUFFER_START: 0x8A29;\n    readonly UNIFORM_BUFFER_SIZE: 0x8A2A;\n    readonly MAX_VERTEX_UNIFORM_BLOCKS: 0x8A2B;\n    readonly MAX_FRAGMENT_UNIFORM_BLOCKS: 0x8A2D;\n    readonly MAX_COMBINED_UNIFORM_BLOCKS: 0x8A2E;\n    readonly MAX_UNIFORM_BUFFER_BINDINGS: 0x8A2F;\n    readonly MAX_UNIFORM_BLOCK_SIZE: 0x8A30;\n    readonly MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: 0x8A31;\n    readonly MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: 0x8A33;\n    readonly UNIFORM_BUFFER_OFFSET_ALIGNMENT: 0x8A34;\n    readonly ACTIVE_UNIFORM_BLOCKS: 0x8A36;\n    readonly UNIFORM_TYPE: 0x8A37;\n    readonly UNIFORM_SIZE: 0x8A38;\n    readonly UNIFORM_BLOCK_INDEX: 0x8A3A;\n    readonly UNIFORM_OFFSET: 0x8A3B;\n    readonly UNIFORM_ARRAY_STRIDE: 0x8A3C;\n    readonly UNIFORM_MATRIX_STRIDE: 0x8A3D;\n    readonly UNIFORM_IS_ROW_MAJOR: 0x8A3E;\n    readonly UNIFORM_BLOCK_BINDING: 0x8A3F;\n    readonly UNIFORM_BLOCK_DATA_SIZE: 0x8A40;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORMS: 0x8A42;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: 0x8A43;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: 0x8A44;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: 0x8A46;\n    readonly INVALID_INDEX: 0xFFFFFFFF;\n    readonly MAX_VERTEX_OUTPUT_COMPONENTS: 0x9122;\n    readonly MAX_FRAGMENT_INPUT_COMPONENTS: 0x9125;\n    readonly MAX_SERVER_WAIT_TIMEOUT: 0x9111;\n    readonly OBJECT_TYPE: 0x9112;\n    readonly SYNC_CONDITION: 0x9113;\n    readonly SYNC_STATUS: 0x9114;\n    readonly SYNC_FLAGS: 0x9115;\n    readonly SYNC_FENCE: 0x9116;\n    readonly SYNC_GPU_COMMANDS_COMPLETE: 0x9117;\n    readonly UNSIGNALED: 0x9118;\n    readonly SIGNALED: 0x9119;\n    readonly ALREADY_SIGNALED: 0x911A;\n    readonly TIMEOUT_EXPIRED: 0x911B;\n    readonly CONDITION_SATISFIED: 0x911C;\n    readonly WAIT_FAILED: 0x911D;\n    readonly SYNC_FLUSH_COMMANDS_BIT: 0x00000001;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR: 0x88FE;\n    readonly ANY_SAMPLES_PASSED: 0x8C2F;\n    readonly ANY_SAMPLES_PASSED_CONSERVATIVE: 0x8D6A;\n    readonly SAMPLER_BINDING: 0x8919;\n    readonly RGB10_A2UI: 0x906F;\n    readonly INT_2_10_10_10_REV: 0x8D9F;\n    readonly TRANSFORM_FEEDBACK: 0x8E22;\n    readonly TRANSFORM_FEEDBACK_PAUSED: 0x8E23;\n    readonly TRANSFORM_FEEDBACK_ACTIVE: 0x8E24;\n    readonly TRANSFORM_FEEDBACK_BINDING: 0x8E25;\n    readonly TEXTURE_IMMUTABLE_FORMAT: 0x912F;\n    readonly MAX_ELEMENT_INDEX: 0x8D6B;\n    readonly TEXTURE_IMMUTABLE_LEVELS: 0x82DF;\n    readonly TIMEOUT_IGNORED: -1;\n    readonly MAX_CLIENT_WAIT_TIMEOUT_WEBGL: 0x9247;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n};\n\ninterface WebGL2RenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/beginQuery) */\n    beginQuery(target: GLenum, query: WebGLQuery): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/beginTransformFeedback) */\n    beginTransformFeedback(primitiveMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindBufferBase) */\n    bindBufferBase(target: GLenum, index: GLuint, buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindBufferRange) */\n    bindBufferRange(target: GLenum, index: GLuint, buffer: WebGLBuffer | null, offset: GLintptr, size: GLsizeiptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindSampler) */\n    bindSampler(unit: GLuint, sampler: WebGLSampler | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindTransformFeedback) */\n    bindTransformFeedback(target: GLenum, tf: WebGLTransformFeedback | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bindVertexArray) */\n    bindVertexArray(array: WebGLVertexArrayObject | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/blitFramebuffer) */\n    blitFramebuffer(srcX0: GLint, srcY0: GLint, srcX1: GLint, srcY1: GLint, dstX0: GLint, dstY0: GLint, dstX1: GLint, dstY1: GLint, mask: GLbitfield, filter: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfi(buffer: GLenum, drawbuffer: GLint, depth: GLfloat, stencil: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Float32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Int32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */\n    clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */\n    compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */\n    compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyBufferSubData) */\n    copyBufferSubData(readTarget: GLenum, writeTarget: GLenum, readOffset: GLintptr, writeOffset: GLintptr, size: GLsizeiptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/copyTexSubImage3D) */\n    copyTexSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createQuery) */\n    createQuery(): WebGLQuery;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createSampler) */\n    createSampler(): WebGLSampler;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createTransformFeedback) */\n    createTransformFeedback(): WebGLTransformFeedback;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/createVertexArray) */\n    createVertexArray(): WebGLVertexArrayObject;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteQuery) */\n    deleteQuery(query: WebGLQuery | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteSampler) */\n    deleteSampler(sampler: WebGLSampler | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteSync) */\n    deleteSync(sync: WebGLSync | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteTransformFeedback) */\n    deleteTransformFeedback(tf: WebGLTransformFeedback | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/deleteVertexArray) */\n    deleteVertexArray(vertexArray: WebGLVertexArrayObject | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawArraysInstanced) */\n    drawArraysInstanced(mode: GLenum, first: GLint, count: GLsizei, instanceCount: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawBuffers) */\n    drawBuffers(buffers: GLenum[]): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawElementsInstanced) */\n    drawElementsInstanced(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr, instanceCount: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawRangeElements) */\n    drawRangeElements(mode: GLenum, start: GLuint, end: GLuint, count: GLsizei, type: GLenum, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/endQuery) */\n    endQuery(target: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/endTransformFeedback) */\n    endTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/fenceSync) */\n    fenceSync(condition: GLenum, flags: GLbitfield): WebGLSync | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/framebufferTextureLayer) */\n    framebufferTextureLayer(target: GLenum, attachment: GLenum, texture: WebGLTexture | null, level: GLint, layer: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniformBlockName) */\n    getActiveUniformBlockName(program: WebGLProgram, uniformBlockIndex: GLuint): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniformBlockParameter) */\n    getActiveUniformBlockParameter(program: WebGLProgram, uniformBlockIndex: GLuint, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */\n    getActiveUniforms(program: WebGLProgram, uniformIndices: GLuint[], pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getBufferSubData) */\n    getBufferSubData(target: GLenum, srcByteOffset: GLintptr, dstBuffer: ArrayBufferView<ArrayBufferLike>, dstOffset?: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getFragDataLocation) */\n    getFragDataLocation(program: WebGLProgram, name: string): GLint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getIndexedParameter) */\n    getIndexedParameter(target: GLenum, index: GLuint): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getInternalformatParameter) */\n    getInternalformatParameter(target: GLenum, internalformat: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getQuery) */\n    getQuery(target: GLenum, pname: GLenum): WebGLQuery | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getQueryParameter) */\n    getQueryParameter(query: WebGLQuery, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getSamplerParameter) */\n    getSamplerParameter(sampler: WebGLSampler, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getSyncParameter) */\n    getSyncParameter(sync: WebGLSync, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getTransformFeedbackVarying) */\n    getTransformFeedbackVarying(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformBlockIndex) */\n    getUniformBlockIndex(program: WebGLProgram, uniformBlockName: string): GLuint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */\n    getUniformIndices(program: WebGLProgram, uniformNames: string[]): GLuint[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */\n    invalidateFramebuffer(target: GLenum, attachments: GLenum[]): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */\n    invalidateSubFramebuffer(target: GLenum, attachments: GLenum[], x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isQuery) */\n    isQuery(query: WebGLQuery | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isSampler) */\n    isSampler(sampler: WebGLSampler | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isSync) */\n    isSync(sync: WebGLSync | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isTransformFeedback) */\n    isTransformFeedback(tf: WebGLTransformFeedback | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/isVertexArray) */\n    isVertexArray(vertexArray: WebGLVertexArrayObject | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/pauseTransformFeedback) */\n    pauseTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/readBuffer) */\n    readBuffer(src: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/renderbufferStorageMultisample) */\n    renderbufferStorageMultisample(target: GLenum, samples: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/resumeTransformFeedback) */\n    resumeTransformFeedback(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/samplerParameter) */\n    samplerParameterf(sampler: WebGLSampler, pname: GLenum, param: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/samplerParameter) */\n    samplerParameteri(sampler: WebGLSampler, pname: GLenum, param: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texImage3D) */\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage3D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage2D) */\n    texStorage2D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texStorage3D) */\n    texStorage3D(target: GLenum, levels: GLsizei, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/texSubImage3D) */\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage3D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, zoffset: GLint, width: GLsizei, height: GLsizei, depth: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike> | null, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */\n    transformFeedbackVaryings(program: WebGLProgram, varyings: string[], bufferMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1ui(location: WebGLUniformLocation | null, v0: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4ui(location: WebGLUniformLocation | null, v0: GLuint, v1: GLuint, v2: GLuint, v3: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4uiv(location: WebGLUniformLocation | null, data: Uint32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformBlockBinding) */\n    uniformBlockBinding(program: WebGLProgram, uniformBlockIndex: GLuint, uniformBlockBinding: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribDivisor) */\n    vertexAttribDivisor(index: GLuint, divisor: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4i(index: GLuint, x: GLint, y: GLint, z: GLint, w: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4iv(index: GLuint, values: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4ui(index: GLuint, x: GLuint, y: GLuint, z: GLuint, w: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4uiv(index: GLuint, values: Uint32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribIPointer) */\n    vertexAttribIPointer(index: GLuint, size: GLint, type: GLenum, stride: GLsizei, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/waitSync) */\n    waitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLint64): void;\n    readonly READ_BUFFER: 0x0C02;\n    readonly UNPACK_ROW_LENGTH: 0x0CF2;\n    readonly UNPACK_SKIP_ROWS: 0x0CF3;\n    readonly UNPACK_SKIP_PIXELS: 0x0CF4;\n    readonly PACK_ROW_LENGTH: 0x0D02;\n    readonly PACK_SKIP_ROWS: 0x0D03;\n    readonly PACK_SKIP_PIXELS: 0x0D04;\n    readonly COLOR: 0x1800;\n    readonly DEPTH: 0x1801;\n    readonly STENCIL: 0x1802;\n    readonly RED: 0x1903;\n    readonly RGB8: 0x8051;\n    readonly RGB10_A2: 0x8059;\n    readonly TEXTURE_BINDING_3D: 0x806A;\n    readonly UNPACK_SKIP_IMAGES: 0x806D;\n    readonly UNPACK_IMAGE_HEIGHT: 0x806E;\n    readonly TEXTURE_3D: 0x806F;\n    readonly TEXTURE_WRAP_R: 0x8072;\n    readonly MAX_3D_TEXTURE_SIZE: 0x8073;\n    readonly UNSIGNED_INT_2_10_10_10_REV: 0x8368;\n    readonly MAX_ELEMENTS_VERTICES: 0x80E8;\n    readonly MAX_ELEMENTS_INDICES: 0x80E9;\n    readonly TEXTURE_MIN_LOD: 0x813A;\n    readonly TEXTURE_MAX_LOD: 0x813B;\n    readonly TEXTURE_BASE_LEVEL: 0x813C;\n    readonly TEXTURE_MAX_LEVEL: 0x813D;\n    readonly MIN: 0x8007;\n    readonly MAX: 0x8008;\n    readonly DEPTH_COMPONENT24: 0x81A6;\n    readonly MAX_TEXTURE_LOD_BIAS: 0x84FD;\n    readonly TEXTURE_COMPARE_MODE: 0x884C;\n    readonly TEXTURE_COMPARE_FUNC: 0x884D;\n    readonly CURRENT_QUERY: 0x8865;\n    readonly QUERY_RESULT: 0x8866;\n    readonly QUERY_RESULT_AVAILABLE: 0x8867;\n    readonly STREAM_READ: 0x88E1;\n    readonly STREAM_COPY: 0x88E2;\n    readonly STATIC_READ: 0x88E5;\n    readonly STATIC_COPY: 0x88E6;\n    readonly DYNAMIC_READ: 0x88E9;\n    readonly DYNAMIC_COPY: 0x88EA;\n    readonly MAX_DRAW_BUFFERS: 0x8824;\n    readonly DRAW_BUFFER0: 0x8825;\n    readonly DRAW_BUFFER1: 0x8826;\n    readonly DRAW_BUFFER2: 0x8827;\n    readonly DRAW_BUFFER3: 0x8828;\n    readonly DRAW_BUFFER4: 0x8829;\n    readonly DRAW_BUFFER5: 0x882A;\n    readonly DRAW_BUFFER6: 0x882B;\n    readonly DRAW_BUFFER7: 0x882C;\n    readonly DRAW_BUFFER8: 0x882D;\n    readonly DRAW_BUFFER9: 0x882E;\n    readonly DRAW_BUFFER10: 0x882F;\n    readonly DRAW_BUFFER11: 0x8830;\n    readonly DRAW_BUFFER12: 0x8831;\n    readonly DRAW_BUFFER13: 0x8832;\n    readonly DRAW_BUFFER14: 0x8833;\n    readonly DRAW_BUFFER15: 0x8834;\n    readonly MAX_FRAGMENT_UNIFORM_COMPONENTS: 0x8B49;\n    readonly MAX_VERTEX_UNIFORM_COMPONENTS: 0x8B4A;\n    readonly SAMPLER_3D: 0x8B5F;\n    readonly SAMPLER_2D_SHADOW: 0x8B62;\n    readonly FRAGMENT_SHADER_DERIVATIVE_HINT: 0x8B8B;\n    readonly PIXEL_PACK_BUFFER: 0x88EB;\n    readonly PIXEL_UNPACK_BUFFER: 0x88EC;\n    readonly PIXEL_PACK_BUFFER_BINDING: 0x88ED;\n    readonly PIXEL_UNPACK_BUFFER_BINDING: 0x88EF;\n    readonly FLOAT_MAT2x3: 0x8B65;\n    readonly FLOAT_MAT2x4: 0x8B66;\n    readonly FLOAT_MAT3x2: 0x8B67;\n    readonly FLOAT_MAT3x4: 0x8B68;\n    readonly FLOAT_MAT4x2: 0x8B69;\n    readonly FLOAT_MAT4x3: 0x8B6A;\n    readonly SRGB: 0x8C40;\n    readonly SRGB8: 0x8C41;\n    readonly SRGB8_ALPHA8: 0x8C43;\n    readonly COMPARE_REF_TO_TEXTURE: 0x884E;\n    readonly RGBA32F: 0x8814;\n    readonly RGB32F: 0x8815;\n    readonly RGBA16F: 0x881A;\n    readonly RGB16F: 0x881B;\n    readonly VERTEX_ATTRIB_ARRAY_INTEGER: 0x88FD;\n    readonly MAX_ARRAY_TEXTURE_LAYERS: 0x88FF;\n    readonly MIN_PROGRAM_TEXEL_OFFSET: 0x8904;\n    readonly MAX_PROGRAM_TEXEL_OFFSET: 0x8905;\n    readonly MAX_VARYING_COMPONENTS: 0x8B4B;\n    readonly TEXTURE_2D_ARRAY: 0x8C1A;\n    readonly TEXTURE_BINDING_2D_ARRAY: 0x8C1D;\n    readonly R11F_G11F_B10F: 0x8C3A;\n    readonly UNSIGNED_INT_10F_11F_11F_REV: 0x8C3B;\n    readonly RGB9_E5: 0x8C3D;\n    readonly UNSIGNED_INT_5_9_9_9_REV: 0x8C3E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_MODE: 0x8C7F;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: 0x8C80;\n    readonly TRANSFORM_FEEDBACK_VARYINGS: 0x8C83;\n    readonly TRANSFORM_FEEDBACK_BUFFER_START: 0x8C84;\n    readonly TRANSFORM_FEEDBACK_BUFFER_SIZE: 0x8C85;\n    readonly TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: 0x8C88;\n    readonly RASTERIZER_DISCARD: 0x8C89;\n    readonly MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: 0x8C8A;\n    readonly MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: 0x8C8B;\n    readonly INTERLEAVED_ATTRIBS: 0x8C8C;\n    readonly SEPARATE_ATTRIBS: 0x8C8D;\n    readonly TRANSFORM_FEEDBACK_BUFFER: 0x8C8E;\n    readonly TRANSFORM_FEEDBACK_BUFFER_BINDING: 0x8C8F;\n    readonly RGBA32UI: 0x8D70;\n    readonly RGB32UI: 0x8D71;\n    readonly RGBA16UI: 0x8D76;\n    readonly RGB16UI: 0x8D77;\n    readonly RGBA8UI: 0x8D7C;\n    readonly RGB8UI: 0x8D7D;\n    readonly RGBA32I: 0x8D82;\n    readonly RGB32I: 0x8D83;\n    readonly RGBA16I: 0x8D88;\n    readonly RGB16I: 0x8D89;\n    readonly RGBA8I: 0x8D8E;\n    readonly RGB8I: 0x8D8F;\n    readonly RED_INTEGER: 0x8D94;\n    readonly RGB_INTEGER: 0x8D98;\n    readonly RGBA_INTEGER: 0x8D99;\n    readonly SAMPLER_2D_ARRAY: 0x8DC1;\n    readonly SAMPLER_2D_ARRAY_SHADOW: 0x8DC4;\n    readonly SAMPLER_CUBE_SHADOW: 0x8DC5;\n    readonly UNSIGNED_INT_VEC2: 0x8DC6;\n    readonly UNSIGNED_INT_VEC3: 0x8DC7;\n    readonly UNSIGNED_INT_VEC4: 0x8DC8;\n    readonly INT_SAMPLER_2D: 0x8DCA;\n    readonly INT_SAMPLER_3D: 0x8DCB;\n    readonly INT_SAMPLER_CUBE: 0x8DCC;\n    readonly INT_SAMPLER_2D_ARRAY: 0x8DCF;\n    readonly UNSIGNED_INT_SAMPLER_2D: 0x8DD2;\n    readonly UNSIGNED_INT_SAMPLER_3D: 0x8DD3;\n    readonly UNSIGNED_INT_SAMPLER_CUBE: 0x8DD4;\n    readonly UNSIGNED_INT_SAMPLER_2D_ARRAY: 0x8DD7;\n    readonly DEPTH_COMPONENT32F: 0x8CAC;\n    readonly DEPTH32F_STENCIL8: 0x8CAD;\n    readonly FLOAT_32_UNSIGNED_INT_24_8_REV: 0x8DAD;\n    readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: 0x8210;\n    readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: 0x8211;\n    readonly FRAMEBUFFER_ATTACHMENT_RED_SIZE: 0x8212;\n    readonly FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: 0x8213;\n    readonly FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: 0x8214;\n    readonly FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: 0x8215;\n    readonly FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: 0x8216;\n    readonly FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: 0x8217;\n    readonly FRAMEBUFFER_DEFAULT: 0x8218;\n    readonly UNSIGNED_INT_24_8: 0x84FA;\n    readonly DEPTH24_STENCIL8: 0x88F0;\n    readonly UNSIGNED_NORMALIZED: 0x8C17;\n    readonly DRAW_FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly READ_FRAMEBUFFER: 0x8CA8;\n    readonly DRAW_FRAMEBUFFER: 0x8CA9;\n    readonly READ_FRAMEBUFFER_BINDING: 0x8CAA;\n    readonly RENDERBUFFER_SAMPLES: 0x8CAB;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: 0x8CD4;\n    readonly MAX_COLOR_ATTACHMENTS: 0x8CDF;\n    readonly COLOR_ATTACHMENT1: 0x8CE1;\n    readonly COLOR_ATTACHMENT2: 0x8CE2;\n    readonly COLOR_ATTACHMENT3: 0x8CE3;\n    readonly COLOR_ATTACHMENT4: 0x8CE4;\n    readonly COLOR_ATTACHMENT5: 0x8CE5;\n    readonly COLOR_ATTACHMENT6: 0x8CE6;\n    readonly COLOR_ATTACHMENT7: 0x8CE7;\n    readonly COLOR_ATTACHMENT8: 0x8CE8;\n    readonly COLOR_ATTACHMENT9: 0x8CE9;\n    readonly COLOR_ATTACHMENT10: 0x8CEA;\n    readonly COLOR_ATTACHMENT11: 0x8CEB;\n    readonly COLOR_ATTACHMENT12: 0x8CEC;\n    readonly COLOR_ATTACHMENT13: 0x8CED;\n    readonly COLOR_ATTACHMENT14: 0x8CEE;\n    readonly COLOR_ATTACHMENT15: 0x8CEF;\n    readonly FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: 0x8D56;\n    readonly MAX_SAMPLES: 0x8D57;\n    readonly HALF_FLOAT: 0x140B;\n    readonly RG: 0x8227;\n    readonly RG_INTEGER: 0x8228;\n    readonly R8: 0x8229;\n    readonly RG8: 0x822B;\n    readonly R16F: 0x822D;\n    readonly R32F: 0x822E;\n    readonly RG16F: 0x822F;\n    readonly RG32F: 0x8230;\n    readonly R8I: 0x8231;\n    readonly R8UI: 0x8232;\n    readonly R16I: 0x8233;\n    readonly R16UI: 0x8234;\n    readonly R32I: 0x8235;\n    readonly R32UI: 0x8236;\n    readonly RG8I: 0x8237;\n    readonly RG8UI: 0x8238;\n    readonly RG16I: 0x8239;\n    readonly RG16UI: 0x823A;\n    readonly RG32I: 0x823B;\n    readonly RG32UI: 0x823C;\n    readonly VERTEX_ARRAY_BINDING: 0x85B5;\n    readonly R8_SNORM: 0x8F94;\n    readonly RG8_SNORM: 0x8F95;\n    readonly RGB8_SNORM: 0x8F96;\n    readonly RGBA8_SNORM: 0x8F97;\n    readonly SIGNED_NORMALIZED: 0x8F9C;\n    readonly COPY_READ_BUFFER: 0x8F36;\n    readonly COPY_WRITE_BUFFER: 0x8F37;\n    readonly COPY_READ_BUFFER_BINDING: 0x8F36;\n    readonly COPY_WRITE_BUFFER_BINDING: 0x8F37;\n    readonly UNIFORM_BUFFER: 0x8A11;\n    readonly UNIFORM_BUFFER_BINDING: 0x8A28;\n    readonly UNIFORM_BUFFER_START: 0x8A29;\n    readonly UNIFORM_BUFFER_SIZE: 0x8A2A;\n    readonly MAX_VERTEX_UNIFORM_BLOCKS: 0x8A2B;\n    readonly MAX_FRAGMENT_UNIFORM_BLOCKS: 0x8A2D;\n    readonly MAX_COMBINED_UNIFORM_BLOCKS: 0x8A2E;\n    readonly MAX_UNIFORM_BUFFER_BINDINGS: 0x8A2F;\n    readonly MAX_UNIFORM_BLOCK_SIZE: 0x8A30;\n    readonly MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: 0x8A31;\n    readonly MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: 0x8A33;\n    readonly UNIFORM_BUFFER_OFFSET_ALIGNMENT: 0x8A34;\n    readonly ACTIVE_UNIFORM_BLOCKS: 0x8A36;\n    readonly UNIFORM_TYPE: 0x8A37;\n    readonly UNIFORM_SIZE: 0x8A38;\n    readonly UNIFORM_BLOCK_INDEX: 0x8A3A;\n    readonly UNIFORM_OFFSET: 0x8A3B;\n    readonly UNIFORM_ARRAY_STRIDE: 0x8A3C;\n    readonly UNIFORM_MATRIX_STRIDE: 0x8A3D;\n    readonly UNIFORM_IS_ROW_MAJOR: 0x8A3E;\n    readonly UNIFORM_BLOCK_BINDING: 0x8A3F;\n    readonly UNIFORM_BLOCK_DATA_SIZE: 0x8A40;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORMS: 0x8A42;\n    readonly UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: 0x8A43;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: 0x8A44;\n    readonly UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: 0x8A46;\n    readonly INVALID_INDEX: 0xFFFFFFFF;\n    readonly MAX_VERTEX_OUTPUT_COMPONENTS: 0x9122;\n    readonly MAX_FRAGMENT_INPUT_COMPONENTS: 0x9125;\n    readonly MAX_SERVER_WAIT_TIMEOUT: 0x9111;\n    readonly OBJECT_TYPE: 0x9112;\n    readonly SYNC_CONDITION: 0x9113;\n    readonly SYNC_STATUS: 0x9114;\n    readonly SYNC_FLAGS: 0x9115;\n    readonly SYNC_FENCE: 0x9116;\n    readonly SYNC_GPU_COMMANDS_COMPLETE: 0x9117;\n    readonly UNSIGNALED: 0x9118;\n    readonly SIGNALED: 0x9119;\n    readonly ALREADY_SIGNALED: 0x911A;\n    readonly TIMEOUT_EXPIRED: 0x911B;\n    readonly CONDITION_SATISFIED: 0x911C;\n    readonly WAIT_FAILED: 0x911D;\n    readonly SYNC_FLUSH_COMMANDS_BIT: 0x00000001;\n    readonly VERTEX_ATTRIB_ARRAY_DIVISOR: 0x88FE;\n    readonly ANY_SAMPLES_PASSED: 0x8C2F;\n    readonly ANY_SAMPLES_PASSED_CONSERVATIVE: 0x8D6A;\n    readonly SAMPLER_BINDING: 0x8919;\n    readonly RGB10_A2UI: 0x906F;\n    readonly INT_2_10_10_10_REV: 0x8D9F;\n    readonly TRANSFORM_FEEDBACK: 0x8E22;\n    readonly TRANSFORM_FEEDBACK_PAUSED: 0x8E23;\n    readonly TRANSFORM_FEEDBACK_ACTIVE: 0x8E24;\n    readonly TRANSFORM_FEEDBACK_BINDING: 0x8E25;\n    readonly TEXTURE_IMMUTABLE_FORMAT: 0x912F;\n    readonly MAX_ELEMENT_INDEX: 0x8D6B;\n    readonly TEXTURE_IMMUTABLE_LEVELS: 0x82DF;\n    readonly TIMEOUT_IGNORED: -1;\n    readonly MAX_CLIENT_WAIT_TIMEOUT_WEBGL: 0x9247;\n}\n\ninterface WebGL2RenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferData) */\n    bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;\n    bufferData(target: GLenum, srcData: AllowSharedBufferSource | null, usage: GLenum): void;\n    bufferData(target: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, usage: GLenum, srcOffset: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferSubData) */\n    bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: AllowSharedBufferSource): void;\n    bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number, length?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexSubImage2D) */\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, imageSize: GLsizei, offset: GLintptr): void;\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset?: number, srcLengthOverride?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/readPixels) */\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView<ArrayBufferLike> | null): void;\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, offset: GLintptr): void;\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, dstData: ArrayBufferView<ArrayBufferLike>, dstOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texImage2D) */\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texSubImage2D) */\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pboOffset: GLintptr): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, source: TexImageSource): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, srcData: ArrayBufferView<ArrayBufferLike>, srcOffset: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;\n}\n\n/**\n * The **WebGLActiveInfo** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo)\n */\ninterface WebGLActiveInfo {\n    /**\n     * The read-only **`WebGLActiveInfo.name`** property represents the name of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/name)\n     */\n    readonly name: string;\n    /**\n     * The read-only **`WebGLActiveInfo.size`** property is a Number representing the size of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/size)\n     */\n    readonly size: GLint;\n    /**\n     * The read-only **`WebGLActiveInfo.type`** property represents the type of the requested data returned by calling the WebGLRenderingContext.getActiveAttrib() or WebGLRenderingContext.getActiveUniform() methods.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo/type)\n     */\n    readonly type: GLenum;\n}\n\ndeclare var WebGLActiveInfo: {\n    prototype: WebGLActiveInfo;\n    new(): WebGLActiveInfo;\n};\n\n/**\n * The **WebGLBuffer** interface is part of the WebGL API and represents an opaque buffer object storing data such as vertices or colors.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLBuffer)\n */\ninterface WebGLBuffer {\n}\n\ndeclare var WebGLBuffer: {\n    prototype: WebGLBuffer;\n    new(): WebGLBuffer;\n};\n\n/**\n * The **WebGLContextEvent** interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLContextEvent)\n */\ninterface WebGLContextEvent extends Event {\n    /**\n     * The read-only **`WebGLContextEvent.statusMessage`** property contains additional event status information, or is an empty string if no additional information is available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLContextEvent/statusMessage)\n     */\n    readonly statusMessage: string;\n}\n\ndeclare var WebGLContextEvent: {\n    prototype: WebGLContextEvent;\n    new(type: string, eventInit?: WebGLContextEventInit): WebGLContextEvent;\n};\n\n/**\n * The **WebGLFramebuffer** interface is part of the WebGL API and represents a collection of buffers that serve as a rendering destination.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLFramebuffer)\n */\ninterface WebGLFramebuffer {\n}\n\ndeclare var WebGLFramebuffer: {\n    prototype: WebGLFramebuffer;\n    new(): WebGLFramebuffer;\n};\n\n/**\n * The **`WebGLProgram`** is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLProgram)\n */\ninterface WebGLProgram {\n}\n\ndeclare var WebGLProgram: {\n    prototype: WebGLProgram;\n    new(): WebGLProgram;\n};\n\n/**\n * The **`WebGLQuery`** interface is part of the WebGL 2 API and provides ways to asynchronously query for information.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLQuery)\n */\ninterface WebGLQuery {\n}\n\ndeclare var WebGLQuery: {\n    prototype: WebGLQuery;\n    new(): WebGLQuery;\n};\n\n/**\n * The **WebGLRenderbuffer** interface is part of the WebGL API and represents a buffer that can contain an image, or that can be a source or target of a rendering operation.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderbuffer)\n */\ninterface WebGLRenderbuffer {\n}\n\ndeclare var WebGLRenderbuffer: {\n    prototype: WebGLRenderbuffer;\n    new(): WebGLRenderbuffer;\n};\n\n/**\n * The **`WebGLRenderingContext`** interface provides an interface to the OpenGL ES 2.0 graphics rendering context for the drawing surface of an HTML canvas element.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext)\n */\ninterface WebGLRenderingContext extends WebGLRenderingContextBase, WebGLRenderingContextOverloads {\n}\n\ndeclare var WebGLRenderingContext: {\n    prototype: WebGLRenderingContext;\n    new(): WebGLRenderingContext;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n};\n\ninterface WebGLRenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawingBufferColorSpace) */\n    drawingBufferColorSpace: PredefinedColorSpace;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferHeight) */\n    readonly drawingBufferHeight: GLsizei;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */\n    readonly drawingBufferWidth: GLsizei;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */\n    unpackColorSpace: PredefinedColorSpace;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */\n    activeTexture(texture: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/attachShader) */\n    attachShader(program: WebGLProgram, shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindAttribLocation) */\n    bindAttribLocation(program: WebGLProgram, index: GLuint, name: string): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindBuffer) */\n    bindBuffer(target: GLenum, buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindFramebuffer) */\n    bindFramebuffer(target: GLenum, framebuffer: WebGLFramebuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindRenderbuffer) */\n    bindRenderbuffer(target: GLenum, renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bindTexture) */\n    bindTexture(target: GLenum, texture: WebGLTexture | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendColor) */\n    blendColor(red: GLclampf, green: GLclampf, blue: GLclampf, alpha: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendEquation) */\n    blendEquation(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendEquationSeparate) */\n    blendEquationSeparate(modeRGB: GLenum, modeAlpha: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendFunc) */\n    blendFunc(sfactor: GLenum, dfactor: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/blendFuncSeparate) */\n    blendFuncSeparate(srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/checkFramebufferStatus) */\n    checkFramebufferStatus(target: GLenum): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clear) */\n    clear(mask: GLbitfield): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearColor) */\n    clearColor(red: GLclampf, green: GLclampf, blue: GLclampf, alpha: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearDepth) */\n    clearDepth(depth: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/clearStencil) */\n    clearStencil(s: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/colorMask) */\n    colorMask(red: GLboolean, green: GLboolean, blue: GLboolean, alpha: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compileShader) */\n    compileShader(shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/copyTexImage2D) */\n    copyTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, x: GLint, y: GLint, width: GLsizei, height: GLsizei, border: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/copyTexSubImage2D) */\n    copyTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createBuffer) */\n    createBuffer(): WebGLBuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createFramebuffer) */\n    createFramebuffer(): WebGLFramebuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createProgram) */\n    createProgram(): WebGLProgram;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createRenderbuffer) */\n    createRenderbuffer(): WebGLRenderbuffer;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createShader) */\n    createShader(type: GLenum): WebGLShader | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/createTexture) */\n    createTexture(): WebGLTexture;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/cullFace) */\n    cullFace(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteBuffer) */\n    deleteBuffer(buffer: WebGLBuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteFramebuffer) */\n    deleteFramebuffer(framebuffer: WebGLFramebuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteProgram) */\n    deleteProgram(program: WebGLProgram | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteRenderbuffer) */\n    deleteRenderbuffer(renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteShader) */\n    deleteShader(shader: WebGLShader | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/deleteTexture) */\n    deleteTexture(texture: WebGLTexture | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthFunc) */\n    depthFunc(func: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthMask) */\n    depthMask(flag: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/depthRange) */\n    depthRange(zNear: GLclampf, zFar: GLclampf): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/detachShader) */\n    detachShader(program: WebGLProgram, shader: WebGLShader): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/disable) */\n    disable(cap: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/disableVertexAttribArray) */\n    disableVertexAttribArray(index: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawArrays) */\n    drawArrays(mode: GLenum, first: GLint, count: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawElements) */\n    drawElements(mode: GLenum, count: GLsizei, type: GLenum, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/enable) */\n    enable(cap: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/enableVertexAttribArray) */\n    enableVertexAttribArray(index: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/finish) */\n    finish(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/flush) */\n    flush(): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/framebufferRenderbuffer) */\n    framebufferRenderbuffer(target: GLenum, attachment: GLenum, renderbuffertarget: GLenum, renderbuffer: WebGLRenderbuffer | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/framebufferTexture2D) */\n    framebufferTexture2D(target: GLenum, attachment: GLenum, textarget: GLenum, texture: WebGLTexture | null, level: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/frontFace) */\n    frontFace(mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/generateMipmap) */\n    generateMipmap(target: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getActiveAttrib) */\n    getActiveAttrib(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getActiveUniform) */\n    getActiveUniform(program: WebGLProgram, index: GLuint): WebGLActiveInfo | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getAttachedShaders) */\n    getAttachedShaders(program: WebGLProgram): WebGLShader[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getAttribLocation) */\n    getAttribLocation(program: WebGLProgram, name: string): GLint;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getBufferParameter) */\n    getBufferParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getContextAttributes) */\n    getContextAttributes(): WebGLContextAttributes | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getError) */\n    getError(): GLenum;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getExtension) */\n    getExtension(extensionName: \"ANGLE_instanced_arrays\"): ANGLE_instanced_arrays | null;\n    getExtension(extensionName: \"EXT_blend_minmax\"): EXT_blend_minmax | null;\n    getExtension(extensionName: \"EXT_color_buffer_float\"): EXT_color_buffer_float | null;\n    getExtension(extensionName: \"EXT_color_buffer_half_float\"): EXT_color_buffer_half_float | null;\n    getExtension(extensionName: \"EXT_float_blend\"): EXT_float_blend | null;\n    getExtension(extensionName: \"EXT_frag_depth\"): EXT_frag_depth | null;\n    getExtension(extensionName: \"EXT_sRGB\"): EXT_sRGB | null;\n    getExtension(extensionName: \"EXT_shader_texture_lod\"): EXT_shader_texture_lod | null;\n    getExtension(extensionName: \"EXT_texture_compression_bptc\"): EXT_texture_compression_bptc | null;\n    getExtension(extensionName: \"EXT_texture_compression_rgtc\"): EXT_texture_compression_rgtc | null;\n    getExtension(extensionName: \"EXT_texture_filter_anisotropic\"): EXT_texture_filter_anisotropic | null;\n    getExtension(extensionName: \"KHR_parallel_shader_compile\"): KHR_parallel_shader_compile | null;\n    getExtension(extensionName: \"OES_element_index_uint\"): OES_element_index_uint | null;\n    getExtension(extensionName: \"OES_fbo_render_mipmap\"): OES_fbo_render_mipmap | null;\n    getExtension(extensionName: \"OES_standard_derivatives\"): OES_standard_derivatives | null;\n    getExtension(extensionName: \"OES_texture_float\"): OES_texture_float | null;\n    getExtension(extensionName: \"OES_texture_float_linear\"): OES_texture_float_linear | null;\n    getExtension(extensionName: \"OES_texture_half_float\"): OES_texture_half_float | null;\n    getExtension(extensionName: \"OES_texture_half_float_linear\"): OES_texture_half_float_linear | null;\n    getExtension(extensionName: \"OES_vertex_array_object\"): OES_vertex_array_object | null;\n    getExtension(extensionName: \"OVR_multiview2\"): OVR_multiview2 | null;\n    getExtension(extensionName: \"WEBGL_color_buffer_float\"): WEBGL_color_buffer_float | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_astc\"): WEBGL_compressed_texture_astc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_etc\"): WEBGL_compressed_texture_etc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_etc1\"): WEBGL_compressed_texture_etc1 | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_pvrtc\"): WEBGL_compressed_texture_pvrtc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_s3tc\"): WEBGL_compressed_texture_s3tc | null;\n    getExtension(extensionName: \"WEBGL_compressed_texture_s3tc_srgb\"): WEBGL_compressed_texture_s3tc_srgb | null;\n    getExtension(extensionName: \"WEBGL_debug_renderer_info\"): WEBGL_debug_renderer_info | null;\n    getExtension(extensionName: \"WEBGL_debug_shaders\"): WEBGL_debug_shaders | null;\n    getExtension(extensionName: \"WEBGL_depth_texture\"): WEBGL_depth_texture | null;\n    getExtension(extensionName: \"WEBGL_draw_buffers\"): WEBGL_draw_buffers | null;\n    getExtension(extensionName: \"WEBGL_lose_context\"): WEBGL_lose_context | null;\n    getExtension(extensionName: \"WEBGL_multi_draw\"): WEBGL_multi_draw | null;\n    getExtension(name: string): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getFramebufferAttachmentParameter) */\n    getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getParameter) */\n    getParameter(pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getProgramInfoLog) */\n    getProgramInfoLog(program: WebGLProgram): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getProgramParameter) */\n    getProgramParameter(program: WebGLProgram, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getRenderbufferParameter) */\n    getRenderbufferParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderInfoLog) */\n    getShaderInfoLog(shader: WebGLShader): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderParameter) */\n    getShaderParameter(shader: WebGLShader, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderPrecisionFormat) */\n    getShaderPrecisionFormat(shadertype: GLenum, precisiontype: GLenum): WebGLShaderPrecisionFormat | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getShaderSource) */\n    getShaderSource(shader: WebGLShader): string | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getSupportedExtensions) */\n    getSupportedExtensions(): string[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getTexParameter) */\n    getTexParameter(target: GLenum, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getUniform) */\n    getUniform(program: WebGLProgram, location: WebGLUniformLocation): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getUniformLocation) */\n    getUniformLocation(program: WebGLProgram, name: string): WebGLUniformLocation | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getVertexAttrib) */\n    getVertexAttrib(index: GLuint, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/getVertexAttribOffset) */\n    getVertexAttribOffset(index: GLuint, pname: GLenum): GLintptr;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/hint) */\n    hint(target: GLenum, mode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isBuffer) */\n    isBuffer(buffer: WebGLBuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isContextLost) */\n    isContextLost(): boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isEnabled) */\n    isEnabled(cap: GLenum): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isFramebuffer) */\n    isFramebuffer(framebuffer: WebGLFramebuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isProgram) */\n    isProgram(program: WebGLProgram | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isRenderbuffer) */\n    isRenderbuffer(renderbuffer: WebGLRenderbuffer | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isShader) */\n    isShader(shader: WebGLShader | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */\n    isTexture(texture: WebGLTexture | null): GLboolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */\n    lineWidth(width: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */\n    linkProgram(program: WebGLProgram): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/pixelStorei) */\n    pixelStorei(pname: GLenum, param: GLint | GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/polygonOffset) */\n    polygonOffset(factor: GLfloat, units: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/renderbufferStorage) */\n    renderbufferStorage(target: GLenum, internalformat: GLenum, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/sampleCoverage) */\n    sampleCoverage(value: GLclampf, invert: GLboolean): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/scissor) */\n    scissor(x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/shaderSource) */\n    shaderSource(shader: WebGLShader, source: string): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilFunc) */\n    stencilFunc(func: GLenum, ref: GLint, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilFuncSeparate) */\n    stencilFuncSeparate(face: GLenum, func: GLenum, ref: GLint, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilMask) */\n    stencilMask(mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilMaskSeparate) */\n    stencilMaskSeparate(face: GLenum, mask: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilOp) */\n    stencilOp(fail: GLenum, zfail: GLenum, zpass: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/stencilOpSeparate) */\n    stencilOpSeparate(face: GLenum, fail: GLenum, zfail: GLenum, zpass: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texParameter) */\n    texParameterf(target: GLenum, pname: GLenum, param: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texParameter) */\n    texParameteri(target: GLenum, pname: GLenum, param: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1f(location: WebGLUniformLocation | null, x: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1i(location: WebGLUniformLocation | null, x: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2i(location: WebGLUniformLocation | null, x: GLint, y: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat, z: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3i(location: WebGLUniformLocation | null, x: GLint, y: GLint, z: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4f(location: WebGLUniformLocation | null, x: GLfloat, y: GLfloat, z: GLfloat, w: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4i(location: WebGLUniformLocation | null, x: GLint, y: GLint, z: GLint, w: GLint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/useProgram) */\n    useProgram(program: WebGLProgram | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/validateProgram) */\n    validateProgram(program: WebGLProgram): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1f(index: GLuint, x: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2f(index: GLuint, x: GLfloat, y: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3f(index: GLuint, x: GLfloat, y: GLfloat, z: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4f(index: GLuint, x: GLfloat, y: GLfloat, z: GLfloat, w: GLfloat): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4fv(index: GLuint, values: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttribPointer) */\n    vertexAttribPointer(index: GLuint, size: GLint, type: GLenum, normalized: GLboolean, stride: GLsizei, offset: GLintptr): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/viewport) */\n    viewport(x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    readonly DEPTH_BUFFER_BIT: 0x00000100;\n    readonly STENCIL_BUFFER_BIT: 0x00000400;\n    readonly COLOR_BUFFER_BIT: 0x00004000;\n    readonly POINTS: 0x0000;\n    readonly LINES: 0x0001;\n    readonly LINE_LOOP: 0x0002;\n    readonly LINE_STRIP: 0x0003;\n    readonly TRIANGLES: 0x0004;\n    readonly TRIANGLE_STRIP: 0x0005;\n    readonly TRIANGLE_FAN: 0x0006;\n    readonly ZERO: 0;\n    readonly ONE: 1;\n    readonly SRC_COLOR: 0x0300;\n    readonly ONE_MINUS_SRC_COLOR: 0x0301;\n    readonly SRC_ALPHA: 0x0302;\n    readonly ONE_MINUS_SRC_ALPHA: 0x0303;\n    readonly DST_ALPHA: 0x0304;\n    readonly ONE_MINUS_DST_ALPHA: 0x0305;\n    readonly DST_COLOR: 0x0306;\n    readonly ONE_MINUS_DST_COLOR: 0x0307;\n    readonly SRC_ALPHA_SATURATE: 0x0308;\n    readonly FUNC_ADD: 0x8006;\n    readonly BLEND_EQUATION: 0x8009;\n    readonly BLEND_EQUATION_RGB: 0x8009;\n    readonly BLEND_EQUATION_ALPHA: 0x883D;\n    readonly FUNC_SUBTRACT: 0x800A;\n    readonly FUNC_REVERSE_SUBTRACT: 0x800B;\n    readonly BLEND_DST_RGB: 0x80C8;\n    readonly BLEND_SRC_RGB: 0x80C9;\n    readonly BLEND_DST_ALPHA: 0x80CA;\n    readonly BLEND_SRC_ALPHA: 0x80CB;\n    readonly CONSTANT_COLOR: 0x8001;\n    readonly ONE_MINUS_CONSTANT_COLOR: 0x8002;\n    readonly CONSTANT_ALPHA: 0x8003;\n    readonly ONE_MINUS_CONSTANT_ALPHA: 0x8004;\n    readonly BLEND_COLOR: 0x8005;\n    readonly ARRAY_BUFFER: 0x8892;\n    readonly ELEMENT_ARRAY_BUFFER: 0x8893;\n    readonly ARRAY_BUFFER_BINDING: 0x8894;\n    readonly ELEMENT_ARRAY_BUFFER_BINDING: 0x8895;\n    readonly STREAM_DRAW: 0x88E0;\n    readonly STATIC_DRAW: 0x88E4;\n    readonly DYNAMIC_DRAW: 0x88E8;\n    readonly BUFFER_SIZE: 0x8764;\n    readonly BUFFER_USAGE: 0x8765;\n    readonly CURRENT_VERTEX_ATTRIB: 0x8626;\n    readonly FRONT: 0x0404;\n    readonly BACK: 0x0405;\n    readonly FRONT_AND_BACK: 0x0408;\n    readonly CULL_FACE: 0x0B44;\n    readonly BLEND: 0x0BE2;\n    readonly DITHER: 0x0BD0;\n    readonly STENCIL_TEST: 0x0B90;\n    readonly DEPTH_TEST: 0x0B71;\n    readonly SCISSOR_TEST: 0x0C11;\n    readonly POLYGON_OFFSET_FILL: 0x8037;\n    readonly SAMPLE_ALPHA_TO_COVERAGE: 0x809E;\n    readonly SAMPLE_COVERAGE: 0x80A0;\n    readonly NO_ERROR: 0;\n    readonly INVALID_ENUM: 0x0500;\n    readonly INVALID_VALUE: 0x0501;\n    readonly INVALID_OPERATION: 0x0502;\n    readonly OUT_OF_MEMORY: 0x0505;\n    readonly CW: 0x0900;\n    readonly CCW: 0x0901;\n    readonly LINE_WIDTH: 0x0B21;\n    readonly ALIASED_POINT_SIZE_RANGE: 0x846D;\n    readonly ALIASED_LINE_WIDTH_RANGE: 0x846E;\n    readonly CULL_FACE_MODE: 0x0B45;\n    readonly FRONT_FACE: 0x0B46;\n    readonly DEPTH_RANGE: 0x0B70;\n    readonly DEPTH_WRITEMASK: 0x0B72;\n    readonly DEPTH_CLEAR_VALUE: 0x0B73;\n    readonly DEPTH_FUNC: 0x0B74;\n    readonly STENCIL_CLEAR_VALUE: 0x0B91;\n    readonly STENCIL_FUNC: 0x0B92;\n    readonly STENCIL_FAIL: 0x0B94;\n    readonly STENCIL_PASS_DEPTH_FAIL: 0x0B95;\n    readonly STENCIL_PASS_DEPTH_PASS: 0x0B96;\n    readonly STENCIL_REF: 0x0B97;\n    readonly STENCIL_VALUE_MASK: 0x0B93;\n    readonly STENCIL_WRITEMASK: 0x0B98;\n    readonly STENCIL_BACK_FUNC: 0x8800;\n    readonly STENCIL_BACK_FAIL: 0x8801;\n    readonly STENCIL_BACK_PASS_DEPTH_FAIL: 0x8802;\n    readonly STENCIL_BACK_PASS_DEPTH_PASS: 0x8803;\n    readonly STENCIL_BACK_REF: 0x8CA3;\n    readonly STENCIL_BACK_VALUE_MASK: 0x8CA4;\n    readonly STENCIL_BACK_WRITEMASK: 0x8CA5;\n    readonly VIEWPORT: 0x0BA2;\n    readonly SCISSOR_BOX: 0x0C10;\n    readonly COLOR_CLEAR_VALUE: 0x0C22;\n    readonly COLOR_WRITEMASK: 0x0C23;\n    readonly UNPACK_ALIGNMENT: 0x0CF5;\n    readonly PACK_ALIGNMENT: 0x0D05;\n    readonly MAX_TEXTURE_SIZE: 0x0D33;\n    readonly MAX_VIEWPORT_DIMS: 0x0D3A;\n    readonly SUBPIXEL_BITS: 0x0D50;\n    readonly RED_BITS: 0x0D52;\n    readonly GREEN_BITS: 0x0D53;\n    readonly BLUE_BITS: 0x0D54;\n    readonly ALPHA_BITS: 0x0D55;\n    readonly DEPTH_BITS: 0x0D56;\n    readonly STENCIL_BITS: 0x0D57;\n    readonly POLYGON_OFFSET_UNITS: 0x2A00;\n    readonly POLYGON_OFFSET_FACTOR: 0x8038;\n    readonly TEXTURE_BINDING_2D: 0x8069;\n    readonly SAMPLE_BUFFERS: 0x80A8;\n    readonly SAMPLES: 0x80A9;\n    readonly SAMPLE_COVERAGE_VALUE: 0x80AA;\n    readonly SAMPLE_COVERAGE_INVERT: 0x80AB;\n    readonly COMPRESSED_TEXTURE_FORMATS: 0x86A3;\n    readonly DONT_CARE: 0x1100;\n    readonly FASTEST: 0x1101;\n    readonly NICEST: 0x1102;\n    readonly GENERATE_MIPMAP_HINT: 0x8192;\n    readonly BYTE: 0x1400;\n    readonly UNSIGNED_BYTE: 0x1401;\n    readonly SHORT: 0x1402;\n    readonly UNSIGNED_SHORT: 0x1403;\n    readonly INT: 0x1404;\n    readonly UNSIGNED_INT: 0x1405;\n    readonly FLOAT: 0x1406;\n    readonly DEPTH_COMPONENT: 0x1902;\n    readonly ALPHA: 0x1906;\n    readonly RGB: 0x1907;\n    readonly RGBA: 0x1908;\n    readonly LUMINANCE: 0x1909;\n    readonly LUMINANCE_ALPHA: 0x190A;\n    readonly UNSIGNED_SHORT_4_4_4_4: 0x8033;\n    readonly UNSIGNED_SHORT_5_5_5_1: 0x8034;\n    readonly UNSIGNED_SHORT_5_6_5: 0x8363;\n    readonly FRAGMENT_SHADER: 0x8B30;\n    readonly VERTEX_SHADER: 0x8B31;\n    readonly MAX_VERTEX_ATTRIBS: 0x8869;\n    readonly MAX_VERTEX_UNIFORM_VECTORS: 0x8DFB;\n    readonly MAX_VARYING_VECTORS: 0x8DFC;\n    readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: 0x8B4D;\n    readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: 0x8B4C;\n    readonly MAX_TEXTURE_IMAGE_UNITS: 0x8872;\n    readonly MAX_FRAGMENT_UNIFORM_VECTORS: 0x8DFD;\n    readonly SHADER_TYPE: 0x8B4F;\n    readonly DELETE_STATUS: 0x8B80;\n    readonly LINK_STATUS: 0x8B82;\n    readonly VALIDATE_STATUS: 0x8B83;\n    readonly ATTACHED_SHADERS: 0x8B85;\n    readonly ACTIVE_UNIFORMS: 0x8B86;\n    readonly ACTIVE_ATTRIBUTES: 0x8B89;\n    readonly SHADING_LANGUAGE_VERSION: 0x8B8C;\n    readonly CURRENT_PROGRAM: 0x8B8D;\n    readonly NEVER: 0x0200;\n    readonly LESS: 0x0201;\n    readonly EQUAL: 0x0202;\n    readonly LEQUAL: 0x0203;\n    readonly GREATER: 0x0204;\n    readonly NOTEQUAL: 0x0205;\n    readonly GEQUAL: 0x0206;\n    readonly ALWAYS: 0x0207;\n    readonly KEEP: 0x1E00;\n    readonly REPLACE: 0x1E01;\n    readonly INCR: 0x1E02;\n    readonly DECR: 0x1E03;\n    readonly INVERT: 0x150A;\n    readonly INCR_WRAP: 0x8507;\n    readonly DECR_WRAP: 0x8508;\n    readonly VENDOR: 0x1F00;\n    readonly RENDERER: 0x1F01;\n    readonly VERSION: 0x1F02;\n    readonly NEAREST: 0x2600;\n    readonly LINEAR: 0x2601;\n    readonly NEAREST_MIPMAP_NEAREST: 0x2700;\n    readonly LINEAR_MIPMAP_NEAREST: 0x2701;\n    readonly NEAREST_MIPMAP_LINEAR: 0x2702;\n    readonly LINEAR_MIPMAP_LINEAR: 0x2703;\n    readonly TEXTURE_MAG_FILTER: 0x2800;\n    readonly TEXTURE_MIN_FILTER: 0x2801;\n    readonly TEXTURE_WRAP_S: 0x2802;\n    readonly TEXTURE_WRAP_T: 0x2803;\n    readonly TEXTURE_2D: 0x0DE1;\n    readonly TEXTURE: 0x1702;\n    readonly TEXTURE_CUBE_MAP: 0x8513;\n    readonly TEXTURE_BINDING_CUBE_MAP: 0x8514;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_X: 0x8515;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_X: 0x8516;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Y: 0x8517;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: 0x8518;\n    readonly TEXTURE_CUBE_MAP_POSITIVE_Z: 0x8519;\n    readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: 0x851A;\n    readonly MAX_CUBE_MAP_TEXTURE_SIZE: 0x851C;\n    readonly TEXTURE0: 0x84C0;\n    readonly TEXTURE1: 0x84C1;\n    readonly TEXTURE2: 0x84C2;\n    readonly TEXTURE3: 0x84C3;\n    readonly TEXTURE4: 0x84C4;\n    readonly TEXTURE5: 0x84C5;\n    readonly TEXTURE6: 0x84C6;\n    readonly TEXTURE7: 0x84C7;\n    readonly TEXTURE8: 0x84C8;\n    readonly TEXTURE9: 0x84C9;\n    readonly TEXTURE10: 0x84CA;\n    readonly TEXTURE11: 0x84CB;\n    readonly TEXTURE12: 0x84CC;\n    readonly TEXTURE13: 0x84CD;\n    readonly TEXTURE14: 0x84CE;\n    readonly TEXTURE15: 0x84CF;\n    readonly TEXTURE16: 0x84D0;\n    readonly TEXTURE17: 0x84D1;\n    readonly TEXTURE18: 0x84D2;\n    readonly TEXTURE19: 0x84D3;\n    readonly TEXTURE20: 0x84D4;\n    readonly TEXTURE21: 0x84D5;\n    readonly TEXTURE22: 0x84D6;\n    readonly TEXTURE23: 0x84D7;\n    readonly TEXTURE24: 0x84D8;\n    readonly TEXTURE25: 0x84D9;\n    readonly TEXTURE26: 0x84DA;\n    readonly TEXTURE27: 0x84DB;\n    readonly TEXTURE28: 0x84DC;\n    readonly TEXTURE29: 0x84DD;\n    readonly TEXTURE30: 0x84DE;\n    readonly TEXTURE31: 0x84DF;\n    readonly ACTIVE_TEXTURE: 0x84E0;\n    readonly REPEAT: 0x2901;\n    readonly CLAMP_TO_EDGE: 0x812F;\n    readonly MIRRORED_REPEAT: 0x8370;\n    readonly FLOAT_VEC2: 0x8B50;\n    readonly FLOAT_VEC3: 0x8B51;\n    readonly FLOAT_VEC4: 0x8B52;\n    readonly INT_VEC2: 0x8B53;\n    readonly INT_VEC3: 0x8B54;\n    readonly INT_VEC4: 0x8B55;\n    readonly BOOL: 0x8B56;\n    readonly BOOL_VEC2: 0x8B57;\n    readonly BOOL_VEC3: 0x8B58;\n    readonly BOOL_VEC4: 0x8B59;\n    readonly FLOAT_MAT2: 0x8B5A;\n    readonly FLOAT_MAT3: 0x8B5B;\n    readonly FLOAT_MAT4: 0x8B5C;\n    readonly SAMPLER_2D: 0x8B5E;\n    readonly SAMPLER_CUBE: 0x8B60;\n    readonly VERTEX_ATTRIB_ARRAY_ENABLED: 0x8622;\n    readonly VERTEX_ATTRIB_ARRAY_SIZE: 0x8623;\n    readonly VERTEX_ATTRIB_ARRAY_STRIDE: 0x8624;\n    readonly VERTEX_ATTRIB_ARRAY_TYPE: 0x8625;\n    readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: 0x886A;\n    readonly VERTEX_ATTRIB_ARRAY_POINTER: 0x8645;\n    readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: 0x889F;\n    readonly IMPLEMENTATION_COLOR_READ_TYPE: 0x8B9A;\n    readonly IMPLEMENTATION_COLOR_READ_FORMAT: 0x8B9B;\n    readonly COMPILE_STATUS: 0x8B81;\n    readonly LOW_FLOAT: 0x8DF0;\n    readonly MEDIUM_FLOAT: 0x8DF1;\n    readonly HIGH_FLOAT: 0x8DF2;\n    readonly LOW_INT: 0x8DF3;\n    readonly MEDIUM_INT: 0x8DF4;\n    readonly HIGH_INT: 0x8DF5;\n    readonly FRAMEBUFFER: 0x8D40;\n    readonly RENDERBUFFER: 0x8D41;\n    readonly RGBA4: 0x8056;\n    readonly RGB5_A1: 0x8057;\n    readonly RGBA8: 0x8058;\n    readonly RGB565: 0x8D62;\n    readonly DEPTH_COMPONENT16: 0x81A5;\n    readonly STENCIL_INDEX8: 0x8D48;\n    readonly DEPTH_STENCIL: 0x84F9;\n    readonly RENDERBUFFER_WIDTH: 0x8D42;\n    readonly RENDERBUFFER_HEIGHT: 0x8D43;\n    readonly RENDERBUFFER_INTERNAL_FORMAT: 0x8D44;\n    readonly RENDERBUFFER_RED_SIZE: 0x8D50;\n    readonly RENDERBUFFER_GREEN_SIZE: 0x8D51;\n    readonly RENDERBUFFER_BLUE_SIZE: 0x8D52;\n    readonly RENDERBUFFER_ALPHA_SIZE: 0x8D53;\n    readonly RENDERBUFFER_DEPTH_SIZE: 0x8D54;\n    readonly RENDERBUFFER_STENCIL_SIZE: 0x8D55;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: 0x8CD0;\n    readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: 0x8CD1;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: 0x8CD2;\n    readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: 0x8CD3;\n    readonly COLOR_ATTACHMENT0: 0x8CE0;\n    readonly DEPTH_ATTACHMENT: 0x8D00;\n    readonly STENCIL_ATTACHMENT: 0x8D20;\n    readonly DEPTH_STENCIL_ATTACHMENT: 0x821A;\n    readonly NONE: 0;\n    readonly FRAMEBUFFER_COMPLETE: 0x8CD5;\n    readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: 0x8CD6;\n    readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: 0x8CD7;\n    readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: 0x8CD9;\n    readonly FRAMEBUFFER_UNSUPPORTED: 0x8CDD;\n    readonly FRAMEBUFFER_BINDING: 0x8CA6;\n    readonly RENDERBUFFER_BINDING: 0x8CA7;\n    readonly MAX_RENDERBUFFER_SIZE: 0x84E8;\n    readonly INVALID_FRAMEBUFFER_OPERATION: 0x0506;\n    readonly UNPACK_FLIP_Y_WEBGL: 0x9240;\n    readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: 0x9241;\n    readonly CONTEXT_LOST_WEBGL: 0x9242;\n    readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: 0x9243;\n    readonly BROWSER_DEFAULT_WEBGL: 0x9244;\n}\n\ninterface WebGLRenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferData) */\n    bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;\n    bufferData(target: GLenum, data: AllowSharedBufferSource | null, usage: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferSubData) */\n    bufferSubData(target: GLenum, offset: GLintptr, data: AllowSharedBufferSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */\n    compressedTexImage2D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, border: GLint, data: ArrayBufferView<ArrayBufferLike>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexSubImage2D) */\n    compressedTexSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, data: ArrayBufferView<ArrayBufferLike>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/readPixels) */\n    readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texImage2D) */\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, width: GLsizei, height: GLsizei, border: GLint, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texImage2D(target: GLenum, level: GLint, internalformat: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/texSubImage2D) */\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView<ArrayBufferLike> | null): void;\n    texSubImage2D(target: GLenum, level: GLint, xoffset: GLint, yoffset: GLint, format: GLenum, type: GLenum, source: TexImageSource): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, v: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, v: Int32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;\n}\n\n/**\n * The **`WebGLSampler`** interface is part of the WebGL 2 API and stores sampling parameters for WebGLTexture access inside of a shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSampler)\n */\ninterface WebGLSampler {\n}\n\ndeclare var WebGLSampler: {\n    prototype: WebGLSampler;\n    new(): WebGLSampler;\n};\n\n/**\n * The **WebGLShader** is part of the WebGL API and can either be a vertex or a fragment shader.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShader)\n */\ninterface WebGLShader {\n}\n\ndeclare var WebGLShader: {\n    prototype: WebGLShader;\n    new(): WebGLShader;\n};\n\n/**\n * The **WebGLShaderPrecisionFormat** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getShaderPrecisionFormat() method.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat)\n */\ninterface WebGLShaderPrecisionFormat {\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.precision`** property returns the number of bits of precision that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/precision)\n     */\n    readonly precision: GLint;\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.rangeMax`** property returns the base 2 log of the absolute value of the maximum value that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/rangeMax)\n     */\n    readonly rangeMax: GLint;\n    /**\n     * The read-only **`WebGLShaderPrecisionFormat.rangeMin`** property returns the base 2 log of the absolute value of the minimum value that can be represented.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat/rangeMin)\n     */\n    readonly rangeMin: GLint;\n}\n\ndeclare var WebGLShaderPrecisionFormat: {\n    prototype: WebGLShaderPrecisionFormat;\n    new(): WebGLShaderPrecisionFormat;\n};\n\n/**\n * The **`WebGLSync`** interface is part of the WebGL 2 API and is used to synchronize activities between the GPU and the application.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSync)\n */\ninterface WebGLSync {\n}\n\ndeclare var WebGLSync: {\n    prototype: WebGLSync;\n    new(): WebGLSync;\n};\n\n/**\n * The **WebGLTexture** interface is part of the WebGL API and represents an opaque texture object providing storage and state for texturing operations.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTexture)\n */\ninterface WebGLTexture {\n}\n\ndeclare var WebGLTexture: {\n    prototype: WebGLTexture;\n    new(): WebGLTexture;\n};\n\n/**\n * The **`WebGLTransformFeedback`** interface is part of the WebGL 2 API and enables transform feedback, which is the process of capturing primitives generated by vertex processing.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTransformFeedback)\n */\ninterface WebGLTransformFeedback {\n}\n\ndeclare var WebGLTransformFeedback: {\n    prototype: WebGLTransformFeedback;\n    new(): WebGLTransformFeedback;\n};\n\n/**\n * The **WebGLUniformLocation** interface is part of the WebGL API and represents the location of a uniform variable in a shader program.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLUniformLocation)\n */\ninterface WebGLUniformLocation {\n}\n\ndeclare var WebGLUniformLocation: {\n    prototype: WebGLUniformLocation;\n    new(): WebGLUniformLocation;\n};\n\n/**\n * The **`WebGLVertexArrayObject`** interface is part of the WebGL 2 API, represents vertex array objects (VAOs) pointing to vertex array data, and provides names for different sets of vertex data.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject)\n */\ninterface WebGLVertexArrayObject {\n}\n\ndeclare var WebGLVertexArrayObject: {\n    prototype: WebGLVertexArrayObject;\n    new(): WebGLVertexArrayObject;\n};\n\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */\ninterface WebGLVertexArrayObjectOES {\n}\n\ninterface WebSocketEventMap {\n    \"close\": CloseEvent;\n    \"error\": Event;\n    \"message\": MessageEvent;\n    \"open\": Event;\n}\n\n/**\n * The `WebSocket` object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket)\n */\ninterface WebSocket extends EventTarget {\n    /**\n     * The **`WebSocket.binaryType`** property controls the type of binary data being received over the WebSocket connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/binaryType)\n     */\n    binaryType: BinaryType;\n    /**\n     * The **`WebSocket.bufferedAmount`** read-only property returns the number of bytes of data that have been queued using calls to `send()` but not yet transmitted to the network.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/bufferedAmount)\n     */\n    readonly bufferedAmount: number;\n    /**\n     * The **`WebSocket.extensions`** read-only property returns the extensions selected by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/extensions)\n     */\n    readonly extensions: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close_event) */\n    onclose: ((this: WebSocket, ev: CloseEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/error_event) */\n    onerror: ((this: WebSocket, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/message_event) */\n    onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/open_event) */\n    onopen: ((this: WebSocket, ev: Event) => any) | null;\n    /**\n     * The **`WebSocket.protocol`** read-only property returns the name of the sub-protocol the server selected; this will be one of the strings specified in the `protocols` parameter when creating the WebSocket object, or the empty string if no connection is established.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/protocol)\n     */\n    readonly protocol: string;\n    /**\n     * The **`WebSocket.readyState`** read-only property returns the current state of the WebSocket connection.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/url)\n     */\n    readonly url: string;\n    /**\n     * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)\n     */\n    close(code?: number, reason?: string): void;\n    /**\n     * The **`WebSocket.send()`** method enqueues the specified data to be transmitted to the server over the WebSocket connection, increasing the value of `bufferedAmount` by the number of bytes needed to contain the data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/send)\n     */\n    send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSING: 2;\n    readonly CLOSED: 3;\n    addEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var WebSocket: {\n    prototype: WebSocket;\n    new(url: string | URL, protocols?: string | string[]): WebSocket;\n    readonly CONNECTING: 0;\n    readonly OPEN: 1;\n    readonly CLOSING: 2;\n    readonly CLOSED: 3;\n};\n\n/**\n * The **`WebTransport`** interface of the WebTransport API provides functionality to enable a user agent to connect to an HTTP/3 server, initiate reliable and unreliable transport in either or both directions, and close the connection once it is no longer needed.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport)\n */\ninterface WebTransport {\n    /**\n     * The **`closed`** read-only property of the WebTransport interface returns a promise that resolves when the transport is closed.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/closed)\n     */\n    readonly closed: Promise<WebTransportCloseInfo>;\n    /**\n     * The **`datagrams`** read-only property of the WebTransport interface returns a WebTransportDatagramDuplexStream instance that can be used to send and receive datagrams — unreliable data transmission.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/datagrams)\n     */\n    readonly datagrams: WebTransportDatagramDuplexStream;\n    /**\n     * The **`incomingBidirectionalStreams`** read-only property of the WebTransport interface represents one or more bidirectional streams opened by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/incomingBidirectionalStreams)\n     */\n    readonly incomingBidirectionalStreams: ReadableStream;\n    /**\n     * The **`incomingUnidirectionalStreams`** read-only property of the WebTransport interface represents one or more unidirectional streams opened by the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/incomingUnidirectionalStreams)\n     */\n    readonly incomingUnidirectionalStreams: ReadableStream;\n    /**\n     * The **`ready`** read-only property of the WebTransport interface returns a promise that resolves when the transport is ready to use.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`close()`** method of the WebTransport interface closes an ongoing WebTransport session.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/close)\n     */\n    close(closeInfo?: WebTransportCloseInfo): void;\n    /**\n     * The **`createBidirectionalStream()`** method of the WebTransport interface asynchronously opens and returns a bidirectional stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createBidirectionalStream)\n     */\n    createBidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WebTransportBidirectionalStream>;\n    /**\n     * The **`createUnidirectionalStream()`** method of the WebTransport interface asynchronously opens a unidirectional stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport/createUnidirectionalStream)\n     */\n    createUnidirectionalStream(options?: WebTransportSendStreamOptions): Promise<WritableStream>;\n}\n\ndeclare var WebTransport: {\n    prototype: WebTransport;\n    new(url: string | URL, options?: WebTransportOptions): WebTransport;\n};\n\n/**\n * The **`WebTransportBidirectionalStream`** interface of the WebTransport API represents a bidirectional stream created by a server or a client that can be used for reliable transport.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream)\n */\ninterface WebTransportBidirectionalStream {\n    /**\n     * The **`readable`** read-only property of the WebTransportBidirectionalStream interface returns a WebTransportReceiveStream instance that can be used to reliably read incoming data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream/readable)\n     */\n    readonly readable: ReadableStream;\n    /**\n     * The **`writable`** read-only property of the WebTransportBidirectionalStream interface returns a WebTransportSendStream instance that can be used to write outgoing data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream/writable)\n     */\n    readonly writable: WritableStream;\n}\n\ndeclare var WebTransportBidirectionalStream: {\n    prototype: WebTransportBidirectionalStream;\n    new(): WebTransportBidirectionalStream;\n};\n\n/**\n * The **`WebTransportDatagramDuplexStream`** interface of the WebTransport API represents a duplex stream that can be used for unreliable transport of datagrams between client and server.\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)\n */\ninterface WebTransportDatagramDuplexStream {\n    /**\n     * The **`incomingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for incoming chunks of data — this is the maximum size, in chunks, that the incoming ReadableStream's internal queue can reach before it is considered full.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingHighWaterMark)\n     */\n    incomingHighWaterMark: number;\n    /**\n     * The **`incomingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for incoming datagrams, in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/incomingMaxAge)\n     */\n    incomingMaxAge: number | null;\n    /**\n     * The **`maxDatagramSize`** read-only property of the WebTransportDatagramDuplexStream interface returns the maximum allowable size of outgoing datagrams, in bytes, that can be written to WebTransportDatagramDuplexStream.writable.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/maxDatagramSize)\n     */\n    readonly maxDatagramSize: number;\n    /**\n     * The **`outgoingHighWaterMark`** property of the WebTransportDatagramDuplexStream interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream's internal queue can reach before it is considered full.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingHighWaterMark)\n     */\n    outgoingHighWaterMark: number;\n    /**\n     * The **`outgoingMaxAge`** property of the WebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/outgoingMaxAge)\n     */\n    outgoingMaxAge: number | null;\n    /**\n     * The **`readable`** read-only property of the WebTransportDatagramDuplexStream interface returns a ReadableStream instance that can be used to unreliably read incoming datagrams from the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/readable)\n     */\n    readonly readable: ReadableStream;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream/writable) */\n    readonly writable: WritableStream;\n}\n\ndeclare var WebTransportDatagramDuplexStream: {\n    prototype: WebTransportDatagramDuplexStream;\n    new(): WebTransportDatagramDuplexStream;\n};\n\n/**\n * The **`WebTransportError`** interface of the WebTransport API represents an error related to the API, which can arise from server errors, network connection problems, or client-initiated abort operations (for example, arising from a WritableStream.abort() call).\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError)\n */\ninterface WebTransportError extends DOMException {\n    /**\n     * The **`source`** read-only property of the WebTransportError interface returns an enumerated value indicating the source of the error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError/source)\n     */\n    readonly source: WebTransportErrorSource;\n    /**\n     * The **`streamErrorCode`** read-only property of the WebTransportError interface returns a number in the range 0-255 indicating the application protocol error code for this error, or `null` if one is not available.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError/streamErrorCode)\n     */\n    readonly streamErrorCode: number | null;\n}\n\ndeclare var WebTransportError: {\n    prototype: WebTransportError;\n    new(message?: string, options?: WebTransportErrorOptions): WebTransportError;\n};\n\n/**\n * The `WindowClient` interface of the ServiceWorker API represents the scope of a service worker client that is a document in a browsing context, controlled by an active worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient)\n */\ninterface WindowClient extends Client {\n    /**\n     * The **`focused`** read-only property of the the current client has focus.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient/focused)\n     */\n    readonly focused: boolean;\n    /**\n     * The **`visibilityState`** read-only property of the This value can be one of `'hidden'`, `'visible'`, or `'prerender'`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient/visibilityState)\n     */\n    readonly visibilityState: DocumentVisibilityState;\n    /**\n     * The **`focus()`** method of the WindowClient interface gives user input focus to the current client and returns a ```js-nolint focus() ``` None.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient/focus)\n     */\n    focus(): Promise<WindowClient>;\n    /**\n     * The **`navigate()`** method of the WindowClient interface loads a specified URL into a controlled client page then returns a ```js-nolint navigate(url) ``` - `url` - : The location to navigate to.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient/navigate)\n     */\n    navigate(url: string | URL): Promise<WindowClient | null>;\n}\n\ndeclare var WindowClient: {\n    prototype: WindowClient;\n    new(): WindowClient;\n};\n\ninterface WindowOrWorkerGlobalScope {\n    /**\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)\n     */\n    readonly caches: CacheStorage;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */\n    readonly crossOriginIsolated: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */\n    readonly crypto: Crypto;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */\n    readonly indexedDB: IDBFactory;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */\n    readonly isSecureContext: boolean;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */\n    readonly origin: string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */\n    readonly performance: Performance;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */\n    atob(data: string): string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */\n    btoa(data: string): string;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */\n    clearInterval(id: number | undefined): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */\n    clearTimeout(id: number | undefined): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */\n    createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n    createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */\n    fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */\n    queueMicrotask(callback: VoidFunction): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */\n    reportError(e: any): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */\n    setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */\n    setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */\n    structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;\n}\n\ninterface WorkerEventMap extends AbstractWorkerEventMap, MessageEventTargetEventMap {\n}\n\n/**\n * The **`Worker`** interface of the Web Workers API represents a background task that can be created via script, which can send messages back to its creator.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker)\n */\ninterface Worker extends EventTarget, AbstractWorker, MessageEventTarget<Worker> {\n    /**\n     * The **`postMessage()`** method of the Worker interface sends a message to the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/postMessage)\n     */\n    postMessage(message: any, transfer: Transferable[]): void;\n    postMessage(message: any, options?: StructuredSerializeOptions): void;\n    /**\n     * The **`terminate()`** method of the Worker interface immediately terminates the Worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/terminate)\n     */\n    terminate(): void;\n    addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var Worker: {\n    prototype: Worker;\n    new(scriptURL: string | URL, options?: WorkerOptions): Worker;\n};\n\ninterface WorkerGlobalScopeEventMap {\n    \"error\": ErrorEvent;\n    \"languagechange\": Event;\n    \"offline\": Event;\n    \"online\": Event;\n    \"rejectionhandled\": PromiseRejectionEvent;\n    \"unhandledrejection\": PromiseRejectionEvent;\n}\n\n/**\n * The **`WorkerGlobalScope`** interface of the Web Workers API is an interface representing the scope of any worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope)\n */\ninterface WorkerGlobalScope extends EventTarget, FontFaceSource, WindowOrWorkerGlobalScope {\n    /**\n     * The **`location`** read-only property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/location)\n     */\n    readonly location: WorkerLocation;\n    /**\n     * The **`navigator`** read-only property of the WorkerGlobalScope interface returns the WorkerNavigator associated with the worker.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/navigator)\n     */\n    readonly navigator: WorkerNavigator;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/error_event) */\n    onerror: ((this: WorkerGlobalScope, ev: ErrorEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/languagechange_event) */\n    onlanguagechange: ((this: WorkerGlobalScope, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/offline_event) */\n    onoffline: ((this: WorkerGlobalScope, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/online_event) */\n    ononline: ((this: WorkerGlobalScope, ev: Event) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/rejectionhandled_event) */\n    onrejectionhandled: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/unhandledrejection_event) */\n    onunhandledrejection: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;\n    /**\n     * The **`self`** read-only property of the WorkerGlobalScope interface returns a reference to the `WorkerGlobalScope` itself.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/self)\n     */\n    readonly self: WorkerGlobalScope & typeof globalThis;\n    /**\n     * The **`importScripts()`** method of the WorkerGlobalScope interface synchronously imports one or more scripts into the worker's scope.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/importScripts)\n     */\n    importScripts(...urls: (string | URL)[]): void;\n    addEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var WorkerGlobalScope: {\n    prototype: WorkerGlobalScope;\n    new(): WorkerGlobalScope;\n};\n\n/**\n * The **`WorkerLocation`** interface defines the absolute location of the script executed by the Worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation)\n */\ninterface WorkerLocation {\n    /**\n     * The **`hash`** property of a WorkerLocation object returns the URL.hash part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/hash)\n     */\n    readonly hash: string;\n    /**\n     * The **`host`** property of a WorkerLocation object returns the URL.host part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/host)\n     */\n    readonly host: string;\n    /**\n     * The **`hostname`** property of a WorkerLocation object returns the URL.hostname part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/hostname)\n     */\n    readonly hostname: string;\n    /**\n     * The **`href`** property of a WorkerLocation object returns a string containing the serialized URL for the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/href)\n     */\n    readonly href: string;\n    toString(): string;\n    /**\n     * The **`origin`** property of a WorkerLocation object returns the worker's URL.origin.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/origin)\n     */\n    readonly origin: string;\n    /**\n     * The **`pathname`** property of a WorkerLocation object returns the URL.pathname part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/pathname)\n     */\n    readonly pathname: string;\n    /**\n     * The **`port`** property of a WorkerLocation object returns the URL.port part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/port)\n     */\n    readonly port: string;\n    /**\n     * The **`protocol`** property of a WorkerLocation object returns the URL.protocol part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/protocol)\n     */\n    readonly protocol: string;\n    /**\n     * The **`search`** property of a WorkerLocation object returns the URL.search part of the worker's location.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation/search)\n     */\n    readonly search: string;\n}\n\ndeclare var WorkerLocation: {\n    prototype: WorkerLocation;\n    new(): WorkerLocation;\n};\n\n/**\n * The **`WorkerNavigator`** interface represents a subset of the Navigator interface allowed to be accessed from a Worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)\n */\ninterface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {\n    /**\n     * The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator/mediaCapabilities)\n     */\n    readonly mediaCapabilities: MediaCapabilities;\n    /**\n     * The **`permissions`** read-only property of the WorkerNavigator interface returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator/permissions)\n     */\n    readonly permissions: Permissions;\n    /**\n     * The **`serviceWorker`** read-only property of the WorkerNavigator interface returns the ServiceWorkerContainer object for the associated document, which provides access to registration, removal, upgrade, and communication with the ServiceWorker.\n     * Available only in secure contexts.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator/serviceWorker)\n     */\n    readonly serviceWorker: ServiceWorkerContainer;\n}\n\ndeclare var WorkerNavigator: {\n    prototype: WorkerNavigator;\n    new(): WorkerNavigator;\n};\n\n/**\n * The **`WritableStream`** interface of the Streams API provides a standard abstraction for writing streaming data to a destination, known as a sink.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream)\n */\ninterface WritableStream<W = any> {\n    /**\n     * The **`locked`** read-only property of the WritableStream interface returns a boolean indicating whether the `WritableStream` is locked to a writer.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/locked)\n     */\n    readonly locked: boolean;\n    /**\n     * The **`abort()`** method of the WritableStream interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/abort)\n     */\n    abort(reason?: any): Promise<void>;\n    /**\n     * The **`close()`** method of the WritableStream interface closes the associated stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The **`getWriter()`** method of the WritableStream interface returns a new instance of WritableStreamDefaultWriter and locks the stream to that instance.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/getWriter)\n     */\n    getWriter(): WritableStreamDefaultWriter<W>;\n}\n\ndeclare var WritableStream: {\n    prototype: WritableStream;\n    new<W = any>(underlyingSink?: UnderlyingSink<W>, strategy?: QueuingStrategy<W>): WritableStream<W>;\n};\n\n/**\n * The **`WritableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a WritableStream's state.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController)\n */\ninterface WritableStreamDefaultController {\n    /**\n     * The read-only **`signal`** property of the WritableStreamDefaultController interface returns the AbortSignal associated with the controller.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/signal)\n     */\n    readonly signal: AbortSignal;\n    /**\n     * The **`error()`** method of the with the associated stream to error.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)\n     */\n    error(e?: any): void;\n}\n\ndeclare var WritableStreamDefaultController: {\n    prototype: WritableStreamDefaultController;\n    new(): WritableStreamDefaultController;\n};\n\n/**\n * The **`WritableStreamDefaultWriter`** interface of the Streams API is the object returned by WritableStream.getWriter() and once created locks the writer to the `WritableStream` ensuring that no other streams can write to the underlying sink.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter)\n */\ninterface WritableStreamDefaultWriter<W = any> {\n    /**\n     * The **`closed`** read-only property of the the stream errors or the writer's lock is released.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)\n     */\n    readonly closed: Promise<void>;\n    /**\n     * The **`desiredSize`** read-only property of the to fill the stream's internal queue.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)\n     */\n    readonly desiredSize: number | null;\n    /**\n     * The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)\n     */\n    readonly ready: Promise<void>;\n    /**\n     * The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)\n     */\n    abort(reason?: any): Promise<void>;\n    /**\n     * The **`close()`** method of the stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)\n     */\n    close(): Promise<void>;\n    /**\n     * The **`releaseLock()`** method of the corresponding stream.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)\n     */\n    releaseLock(): void;\n    /**\n     * The **`write()`** method of the operation.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)\n     */\n    write(chunk?: W): Promise<void>;\n}\n\ndeclare var WritableStreamDefaultWriter: {\n    prototype: WritableStreamDefaultWriter;\n    new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;\n};\n\ninterface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap {\n    \"readystatechange\": Event;\n}\n\n/**\n * `XMLHttpRequest` (XHR) objects are used to interact with servers.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest)\n */\ninterface XMLHttpRequest extends XMLHttpRequestEventTarget {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/readystatechange_event) */\n    onreadystatechange: ((this: XMLHttpRequest, ev: Event) => any) | null;\n    /**\n     * The **XMLHttpRequest.readyState** property returns the state an XMLHttpRequest client is in.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/readyState)\n     */\n    readonly readyState: number;\n    /**\n     * The XMLHttpRequest **`response`** property returns the response's body content as an ArrayBuffer, a Blob, a Document, a JavaScript Object, or a string, depending on the value of the request's XMLHttpRequest.responseType property.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/response)\n     */\n    readonly response: any;\n    /**\n     * The read-only XMLHttpRequest property **`responseText`** returns the text received from a server following a request being sent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseText)\n     */\n    readonly responseText: string;\n    /**\n     * The XMLHttpRequest property **`responseType`** is an enumerated string value specifying the type of data contained in the response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseType)\n     */\n    responseType: XMLHttpRequestResponseType;\n    /**\n     * The read-only **`XMLHttpRequest.responseURL`** property returns the serialized URL of the response or the empty string if the URL is `null`.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/responseURL)\n     */\n    readonly responseURL: string;\n    /**\n     * The read-only **`XMLHttpRequest.status`** property returns the numerical HTTP status code of the `XMLHttpRequest`'s response.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/status)\n     */\n    readonly status: number;\n    /**\n     * The read-only **`XMLHttpRequest.statusText`** property returns a string containing the response's status message as returned by the HTTP server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/statusText)\n     */\n    readonly statusText: string;\n    /**\n     * The **`XMLHttpRequest.timeout`** property is an `unsigned long` representing the number of milliseconds a request can take before automatically being terminated.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/timeout)\n     */\n    timeout: number;\n    /**\n     * The XMLHttpRequest `upload` property returns an XMLHttpRequestUpload object that can be observed to monitor an upload's progress.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/upload)\n     */\n    readonly upload: XMLHttpRequestUpload;\n    /**\n     * The **`XMLHttpRequest.withCredentials`** property is a boolean value that indicates whether or not cross-site `Access-Control` requests should be made using credentials such as cookies, authentication headers or TLS client certificates.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/withCredentials)\n     */\n    withCredentials: boolean;\n    /**\n     * The **`XMLHttpRequest.abort()`** method aborts the request if it has already been sent.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/abort)\n     */\n    abort(): void;\n    /**\n     * The XMLHttpRequest method **`getAllResponseHeaders()`** returns all the response headers, separated by CRLF, as a string, or returns `null` if no response has been received.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/getAllResponseHeaders)\n     */\n    getAllResponseHeaders(): string;\n    /**\n     * The XMLHttpRequest method **`getResponseHeader()`** returns the string containing the text of a particular header's value.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/getResponseHeader)\n     */\n    getResponseHeader(name: string): string | null;\n    /**\n     * The XMLHttpRequest method **`open()`** initializes a newly-created request, or re-initializes an existing one.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/open)\n     */\n    open(method: string, url: string | URL): void;\n    open(method: string, url: string | URL, async: boolean, username?: string | null, password?: string | null): void;\n    /**\n     * The XMLHttpRequest method **`overrideMimeType()`** specifies a MIME type other than the one provided by the server to be used instead when interpreting the data being transferred in a request.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/overrideMimeType)\n     */\n    overrideMimeType(mime: string): void;\n    /**\n     * The XMLHttpRequest method **`send()`** sends the request to the server.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/send)\n     */\n    send(body?: XMLHttpRequestBodyInit | null): void;\n    /**\n     * The XMLHttpRequest method **`setRequestHeader()`** sets the value of an HTTP request header.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/setRequestHeader)\n     */\n    setRequestHeader(name: string, value: string): void;\n    readonly UNSENT: 0;\n    readonly OPENED: 1;\n    readonly HEADERS_RECEIVED: 2;\n    readonly LOADING: 3;\n    readonly DONE: 4;\n    addEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequest: {\n    prototype: XMLHttpRequest;\n    new(): XMLHttpRequest;\n    readonly UNSENT: 0;\n    readonly OPENED: 1;\n    readonly HEADERS_RECEIVED: 2;\n    readonly LOADING: 3;\n    readonly DONE: 4;\n};\n\ninterface XMLHttpRequestEventTargetEventMap {\n    \"abort\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"error\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"load\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"loadend\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"loadstart\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"progress\": ProgressEvent<XMLHttpRequestEventTarget>;\n    \"timeout\": ProgressEvent<XMLHttpRequestEventTarget>;\n}\n\n/**\n * `XMLHttpRequestEventTarget` is the interface that describes the event handlers shared on XMLHttpRequest and XMLHttpRequestUpload.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequestEventTarget)\n */\ninterface XMLHttpRequestEventTarget extends EventTarget {\n    onabort: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onerror: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onload: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onloadend: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onloadstart: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    onprogress: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    ontimeout: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null;\n    addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequestEventTarget: {\n    prototype: XMLHttpRequestEventTarget;\n    new(): XMLHttpRequestEventTarget;\n};\n\n/**\n * The **`XMLHttpRequestUpload`** interface represents the upload process for a specific XMLHttpRequest.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XMLHttpRequestUpload)\n */\ninterface XMLHttpRequestUpload extends XMLHttpRequestEventTarget {\n    addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\n    addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n    removeEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\n    removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var XMLHttpRequestUpload: {\n    prototype: XMLHttpRequestUpload;\n    new(): XMLHttpRequestUpload;\n};\n\ndeclare namespace WebAssembly {\n    interface CompileError extends Error {\n    }\n\n    var CompileError: {\n        prototype: CompileError;\n        new(message?: string): CompileError;\n        (message?: string): CompileError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global) */\n    interface Global<T extends ValueType = ValueType> {\n        value: ValueTypeMap[T];\n        valueOf(): ValueTypeMap[T];\n    }\n\n    var Global: {\n        prototype: Global;\n        new<T extends ValueType = ValueType>(descriptor: GlobalDescriptor<T>, v?: ValueTypeMap[T]): Global<T>;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance) */\n    interface Instance {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance/exports) */\n        readonly exports: Exports;\n    }\n\n    var Instance: {\n        prototype: Instance;\n        new(module: Module, importObject?: Imports): Instance;\n    };\n\n    interface LinkError extends Error {\n    }\n\n    var LinkError: {\n        prototype: LinkError;\n        new(message?: string): LinkError;\n        (message?: string): LinkError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory) */\n    interface Memory {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/buffer) */\n        readonly buffer: ArrayBuffer;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory/grow) */\n        grow(delta: number): number;\n    }\n\n    var Memory: {\n        prototype: Memory;\n        new(descriptor: MemoryDescriptor): Memory;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module) */\n    interface Module {\n    }\n\n    var Module: {\n        prototype: Module;\n        new(bytes: BufferSource): Module;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/customSections_static) */\n        customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/exports_static) */\n        exports(moduleObject: Module): ModuleExportDescriptor[];\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module/imports_static) */\n        imports(moduleObject: Module): ModuleImportDescriptor[];\n    };\n\n    interface RuntimeError extends Error {\n    }\n\n    var RuntimeError: {\n        prototype: RuntimeError;\n        new(message?: string): RuntimeError;\n        (message?: string): RuntimeError;\n    };\n\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table) */\n    interface Table {\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/length) */\n        readonly length: number;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/get) */\n        get(index: number): any;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/grow) */\n        grow(delta: number, value?: any): number;\n        /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table/set) */\n        set(index: number, value?: any): void;\n    }\n\n    var Table: {\n        prototype: Table;\n        new(descriptor: TableDescriptor, value?: any): Table;\n    };\n\n    interface GlobalDescriptor<T extends ValueType = ValueType> {\n        mutable?: boolean;\n        value: T;\n    }\n\n    interface MemoryDescriptor {\n        initial: number;\n        maximum?: number;\n        shared?: boolean;\n    }\n\n    interface ModuleExportDescriptor {\n        kind: ImportExportKind;\n        name: string;\n    }\n\n    interface ModuleImportDescriptor {\n        kind: ImportExportKind;\n        module: string;\n        name: string;\n    }\n\n    interface TableDescriptor {\n        element: TableKind;\n        initial: number;\n        maximum?: number;\n    }\n\n    interface ValueTypeMap {\n        anyfunc: Function;\n        externref: any;\n        f32: number;\n        f64: number;\n        i32: number;\n        i64: bigint;\n        v128: never;\n    }\n\n    interface WebAssemblyInstantiatedSource {\n        instance: Instance;\n        module: Module;\n    }\n\n    type ImportExportKind = \"function\" | \"global\" | \"memory\" | \"table\";\n    type TableKind = \"anyfunc\" | \"externref\";\n    type ExportValue = Function | Global | Memory | Table;\n    type Exports = Record<string, ExportValue>;\n    type ImportValue = ExportValue | number;\n    type Imports = Record<string, ModuleImports>;\n    type ModuleImports = Record<string, ImportValue>;\n    type ValueType = keyof ValueTypeMap;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */\n    function compile(bytes: BufferSource): Promise<Module>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */\n    function compileStreaming(source: Response | PromiseLike<Response>): Promise<Module>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static) */\n    function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;\n    function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static) */\n    function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;\n    /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static) */\n    function validate(bytes: BufferSource): boolean;\n}\n\n/** The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). */\n/**\n * The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox).\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)\n */\ninterface Console {\n    /**\n     * The **`console.assert()`** static method writes an error message to the console if the assertion is false.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static)\n     */\n    assert(condition?: boolean, ...data: any[]): void;\n    /**\n     * The **`console.clear()`** static method clears the console if possible.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static)\n     */\n    clear(): void;\n    /**\n     * The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static)\n     */\n    count(label?: string): void;\n    /**\n     * The **`console.countReset()`** static method resets counter used with console/count_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static)\n     */\n    countReset(label?: string): void;\n    /**\n     * The **`console.debug()`** static method outputs a message to the console at the 'debug' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static)\n     */\n    debug(...data: any[]): void;\n    /**\n     * The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static)\n     */\n    dir(item?: any, options?: any): void;\n    /**\n     * The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static)\n     */\n    dirxml(...data: any[]): void;\n    /**\n     * The **`console.error()`** static method outputs a message to the console at the 'error' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static)\n     */\n    error(...data: any[]): void;\n    /**\n     * The **`console.group()`** static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static)\n     */\n    group(...data: any[]): void;\n    /**\n     * The **`console.groupCollapsed()`** static method creates a new inline group in the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static)\n     */\n    groupCollapsed(...data: any[]): void;\n    /**\n     * The **`console.groupEnd()`** static method exits the current inline group in the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static)\n     */\n    groupEnd(): void;\n    /**\n     * The **`console.info()`** static method outputs a message to the console at the 'info' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static)\n     */\n    info(...data: any[]): void;\n    /**\n     * The **`console.log()`** static method outputs a message to the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static)\n     */\n    log(...data: any[]): void;\n    /**\n     * The **`console.table()`** static method displays tabular data as a table.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static)\n     */\n    table(tabularData?: any, properties?: string[]): void;\n    /**\n     * The **`console.time()`** static method starts a timer you can use to track how long an operation takes.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static)\n     */\n    time(label?: string): void;\n    /**\n     * The **`console.timeEnd()`** static method stops a timer that was previously started by calling console/time_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static)\n     */\n    timeEnd(label?: string): void;\n    /**\n     * The **`console.timeLog()`** static method logs the current value of a timer that was previously started by calling console/time_static.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static)\n     */\n    timeLog(label?: string, ...data: any[]): void;\n    timeStamp(label?: string): void;\n    /**\n     * The **`console.trace()`** static method outputs a stack trace to the console.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static)\n     */\n    trace(...data: any[]): void;\n    /**\n     * The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static)\n     */\n    warn(...data: any[]): void;\n}\n\ndeclare var console: Console;\n\ninterface AudioDataOutputCallback {\n    (output: AudioData): void;\n}\n\ninterface EncodedAudioChunkOutputCallback {\n    (output: EncodedAudioChunk, metadata?: EncodedAudioChunkMetadata): void;\n}\n\ninterface EncodedVideoChunkOutputCallback {\n    (chunk: EncodedVideoChunk, metadata?: EncodedVideoChunkMetadata): void;\n}\n\ninterface FrameRequestCallback {\n    (time: DOMHighResTimeStamp): void;\n}\n\ninterface LockGrantedCallback<T> {\n    (lock: Lock | null): T;\n}\n\ninterface OnErrorEventHandlerNonNull {\n    (event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error): any;\n}\n\ninterface PerformanceObserverCallback {\n    (entries: PerformanceObserverEntryList, observer: PerformanceObserver): void;\n}\n\ninterface QueuingStrategySize<T = any> {\n    (chunk: T): number;\n}\n\ninterface ReportingObserverCallback {\n    (reports: Report[], observer: ReportingObserver): void;\n}\n\ninterface TransformerFlushCallback<O> {\n    (controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n}\n\ninterface TransformerStartCallback<O> {\n    (controller: TransformStreamDefaultController<O>): any;\n}\n\ninterface TransformerTransformCallback<I, O> {\n    (chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkAbortCallback {\n    (reason?: any): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkCloseCallback {\n    (): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSinkStartCallback {\n    (controller: WritableStreamDefaultController): any;\n}\n\ninterface UnderlyingSinkWriteCallback<W> {\n    (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourceCancelCallback {\n    (reason?: any): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourcePullCallback<R> {\n    (controller: ReadableStreamController<R>): void | PromiseLike<void>;\n}\n\ninterface UnderlyingSourceStartCallback<R> {\n    (controller: ReadableStreamController<R>): any;\n}\n\ninterface VideoFrameOutputCallback {\n    (output: VideoFrame): void;\n}\n\ninterface VoidFunction {\n    (): void;\n}\n\ninterface WebCodecsErrorCallback {\n    (error: DOMException): void;\n}\n\n/**\n * The **`name`** read-only property of the the Worker.Worker constructor can pass to get a reference to the DedicatedWorkerGlobalScope.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/name)\n */\ndeclare var name: string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/rtctransform_event) */\ndeclare var onrtctransform: ((this: DedicatedWorkerGlobalScope, ev: RTCTransformEvent) => any) | null;\n/**\n * The **`close()`** method of the DedicatedWorkerGlobalScope interface discards any tasks queued in the `DedicatedWorkerGlobalScope`'s event loop, effectively closing this particular scope.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/close)\n */\ndeclare function close(): void;\n/**\n * The **`postMessage()`** method of the DedicatedWorkerGlobalScope interface sends a message to the main thread that spawned it.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/postMessage)\n */\ndeclare function postMessage(message: any, transfer: Transferable[]): void;\ndeclare function postMessage(message: any, options?: StructuredSerializeOptions): void;\n/**\n * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)\n */\ndeclare function dispatchEvent(event: Event): boolean;\n/**\n * The **`location`** read-only property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/location)\n */\ndeclare var location: WorkerLocation;\n/**\n * The **`navigator`** read-only property of the WorkerGlobalScope interface returns the WorkerNavigator associated with the worker.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/navigator)\n */\ndeclare var navigator: WorkerNavigator;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/error_event) */\ndeclare var onerror: ((this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/languagechange_event) */\ndeclare var onlanguagechange: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/offline_event) */\ndeclare var onoffline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/online_event) */\ndeclare var ononline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/rejectionhandled_event) */\ndeclare var onrejectionhandled: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/unhandledrejection_event) */\ndeclare var onunhandledrejection: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;\n/**\n * The **`self`** read-only property of the WorkerGlobalScope interface returns a reference to the `WorkerGlobalScope` itself.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/self)\n */\ndeclare var self: WorkerGlobalScope & typeof globalThis;\n/**\n * The **`importScripts()`** method of the WorkerGlobalScope interface synchronously imports one or more scripts into the worker's scope.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope/importScripts)\n */\ndeclare function importScripts(...urls: (string | URL)[]): void;\n/**\n * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)\n */\ndeclare function dispatchEvent(event: Event): boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fonts) */\ndeclare var fonts: FontFaceSet;\n/**\n * Available only in secure contexts.\n *\n * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)\n */\ndeclare var caches: CacheStorage;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */\ndeclare var crossOriginIsolated: boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */\ndeclare var crypto: Crypto;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */\ndeclare var indexedDB: IDBFactory;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */\ndeclare var isSecureContext: boolean;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */\ndeclare var origin: string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */\ndeclare var performance: Performance;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */\ndeclare function atob(data: string): string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */\ndeclare function btoa(data: string): string;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */\ndeclare function clearInterval(id: number | undefined): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */\ndeclare function clearTimeout(id: number | undefined): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */\ndeclare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */\ndeclare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */\ndeclare function queueMicrotask(callback: VoidFunction): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */\ndeclare function reportError(e: any): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */\ndeclare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */\ndeclare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */\ndeclare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame) */\ndeclare function cancelAnimationFrame(handle: number): void;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) */\ndeclare function requestAnimationFrame(callback: FrameRequestCallback): number;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/message_event) */\ndeclare var onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;\n/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/messageerror_event) */\ndeclare var onmessageerror: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;\ndeclare function addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;\ndeclare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\ndeclare function removeEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;\ndeclare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\ntype AlgorithmIdentifier = Algorithm | string;\ntype AllowSharedBufferSource = ArrayBufferLike | ArrayBufferView<ArrayBufferLike>;\ntype BigInteger = Uint8Array<ArrayBuffer>;\ntype BlobPart = BufferSource | Blob | string;\ntype BodyInit = ReadableStream | XMLHttpRequestBodyInit;\ntype BufferSource = ArrayBufferView<ArrayBuffer> | ArrayBuffer;\ntype CSSKeywordish = string | CSSKeywordValue;\ntype CSSNumberish = number | CSSNumericValue;\ntype CSSPerspectiveValue = CSSNumericValue | CSSKeywordish;\ntype CSSUnparsedSegment = string | CSSVariableReferenceValue;\ntype CanvasImageSource = ImageBitmap | OffscreenCanvas | VideoFrame;\ntype CookieList = CookieListItem[];\ntype DOMHighResTimeStamp = number;\ntype EpochTimeStamp = number;\ntype EventListenerOrEventListenerObject = EventListener | EventListenerObject;\ntype FileSystemWriteChunkType = BufferSource | Blob | string | WriteParams;\ntype Float32List = Float32Array<ArrayBufferLike> | GLfloat[];\ntype FormDataEntryValue = File | string;\ntype GLbitfield = number;\ntype GLboolean = boolean;\ntype GLclampf = number;\ntype GLenum = number;\ntype GLfloat = number;\ntype GLint = number;\ntype GLint64 = number;\ntype GLintptr = number;\ntype GLsizei = number;\ntype GLsizeiptr = number;\ntype GLuint = number;\ntype GLuint64 = number;\ntype HashAlgorithmIdentifier = AlgorithmIdentifier;\ntype HeadersInit = [string, string][] | Record<string, string> | Headers;\ntype IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];\ntype ImageBitmapSource = CanvasImageSource | Blob | ImageData;\ntype ImageBufferSource = AllowSharedBufferSource | ReadableStream;\ntype ImageDataArray = Uint8ClampedArray<ArrayBuffer>;\ntype Int32List = Int32Array<ArrayBufferLike> | GLint[];\ntype MessageEventSource = MessagePort | ServiceWorker;\ntype NamedCurve = string;\ntype OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;\ntype OnErrorEventHandler = OnErrorEventHandlerNonNull | null;\ntype PerformanceEntryList = PerformanceEntry[];\ntype PushMessageDataInit = BufferSource | string;\ntype ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;\ntype ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;\ntype ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;\ntype ReportList = Report[];\ntype RequestInfo = Request | string;\ntype TexImageSource = ImageBitmap | ImageData | OffscreenCanvas | VideoFrame;\ntype TimerHandler = string | Function;\ntype Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;\ntype Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];\ntype XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;\ntype AlphaOption = \"discard\" | \"keep\";\ntype AudioSampleFormat = \"f32\" | \"f32-planar\" | \"s16\" | \"s16-planar\" | \"s32\" | \"s32-planar\" | \"u8\" | \"u8-planar\";\ntype AvcBitstreamFormat = \"annexb\" | \"avc\";\ntype BinaryType = \"arraybuffer\" | \"blob\";\ntype BitrateMode = \"constant\" | \"variable\";\ntype CSSMathOperator = \"clamp\" | \"invert\" | \"max\" | \"min\" | \"negate\" | \"product\" | \"sum\";\ntype CSSNumericBaseType = \"angle\" | \"flex\" | \"frequency\" | \"length\" | \"percent\" | \"resolution\" | \"time\";\ntype CanvasDirection = \"inherit\" | \"ltr\" | \"rtl\";\ntype CanvasFillRule = \"evenodd\" | \"nonzero\";\ntype CanvasFontKerning = \"auto\" | \"none\" | \"normal\";\ntype CanvasFontStretch = \"condensed\" | \"expanded\" | \"extra-condensed\" | \"extra-expanded\" | \"normal\" | \"semi-condensed\" | \"semi-expanded\" | \"ultra-condensed\" | \"ultra-expanded\";\ntype CanvasFontVariantCaps = \"all-petite-caps\" | \"all-small-caps\" | \"normal\" | \"petite-caps\" | \"small-caps\" | \"titling-caps\" | \"unicase\";\ntype CanvasLineCap = \"butt\" | \"round\" | \"square\";\ntype CanvasLineJoin = \"bevel\" | \"miter\" | \"round\";\ntype CanvasTextAlign = \"center\" | \"end\" | \"left\" | \"right\" | \"start\";\ntype CanvasTextBaseline = \"alphabetic\" | \"bottom\" | \"hanging\" | \"ideographic\" | \"middle\" | \"top\";\ntype CanvasTextRendering = \"auto\" | \"geometricPrecision\" | \"optimizeLegibility\" | \"optimizeSpeed\";\ntype ClientTypes = \"all\" | \"sharedworker\" | \"window\" | \"worker\";\ntype CodecState = \"closed\" | \"configured\" | \"unconfigured\";\ntype ColorGamut = \"p3\" | \"rec2020\" | \"srgb\";\ntype ColorSpaceConversion = \"default\" | \"none\";\ntype CompressionFormat = \"deflate\" | \"deflate-raw\" | \"gzip\";\ntype CookieSameSite = \"lax\" | \"none\" | \"strict\";\ntype DocumentVisibilityState = \"hidden\" | \"visible\";\ntype EncodedAudioChunkType = \"delta\" | \"key\";\ntype EncodedVideoChunkType = \"delta\" | \"key\";\ntype EndingType = \"native\" | \"transparent\";\ntype FileSystemHandleKind = \"directory\" | \"file\";\ntype FontDisplay = \"auto\" | \"block\" | \"fallback\" | \"optional\" | \"swap\";\ntype FontFaceLoadStatus = \"error\" | \"loaded\" | \"loading\" | \"unloaded\";\ntype FontFaceSetLoadStatus = \"loaded\" | \"loading\";\ntype FrameType = \"auxiliary\" | \"nested\" | \"none\" | \"top-level\";\ntype GlobalCompositeOperation = \"color\" | \"color-burn\" | \"color-dodge\" | \"copy\" | \"darken\" | \"destination-atop\" | \"destination-in\" | \"destination-out\" | \"destination-over\" | \"difference\" | \"exclusion\" | \"hard-light\" | \"hue\" | \"lighten\" | \"lighter\" | \"luminosity\" | \"multiply\" | \"overlay\" | \"saturation\" | \"screen\" | \"soft-light\" | \"source-atop\" | \"source-in\" | \"source-out\" | \"source-over\" | \"xor\";\ntype HardwareAcceleration = \"no-preference\" | \"prefer-hardware\" | \"prefer-software\";\ntype HdrMetadataType = \"smpteSt2086\" | \"smpteSt2094-10\" | \"smpteSt2094-40\";\ntype IDBCursorDirection = \"next\" | \"nextunique\" | \"prev\" | \"prevunique\";\ntype IDBRequestReadyState = \"done\" | \"pending\";\ntype IDBTransactionDurability = \"default\" | \"relaxed\" | \"strict\";\ntype IDBTransactionMode = \"readonly\" | \"readwrite\" | \"versionchange\";\ntype ImageOrientation = \"flipY\" | \"from-image\" | \"none\";\ntype ImageSmoothingQuality = \"high\" | \"low\" | \"medium\";\ntype KeyFormat = \"jwk\" | \"pkcs8\" | \"raw\" | \"spki\";\ntype KeyType = \"private\" | \"public\" | \"secret\";\ntype KeyUsage = \"decrypt\" | \"deriveBits\" | \"deriveKey\" | \"encrypt\" | \"sign\" | \"unwrapKey\" | \"verify\" | \"wrapKey\";\ntype LatencyMode = \"quality\" | \"realtime\";\ntype LockMode = \"exclusive\" | \"shared\";\ntype MediaDecodingType = \"file\" | \"media-source\" | \"webrtc\";\ntype MediaEncodingType = \"record\" | \"webrtc\";\ntype MediaKeysRequirement = \"not-allowed\" | \"optional\" | \"required\";\ntype NotificationDirection = \"auto\" | \"ltr\" | \"rtl\";\ntype NotificationPermission = \"default\" | \"denied\" | \"granted\";\ntype OffscreenRenderingContextId = \"2d\" | \"bitmaprenderer\" | \"webgl\" | \"webgl2\" | \"webgpu\";\ntype OpusBitstreamFormat = \"ogg\" | \"opus\";\ntype PermissionName = \"camera\" | \"geolocation\" | \"microphone\" | \"midi\" | \"notifications\" | \"persistent-storage\" | \"push\" | \"screen-wake-lock\" | \"storage-access\";\ntype PermissionState = \"denied\" | \"granted\" | \"prompt\";\ntype PredefinedColorSpace = \"display-p3\" | \"srgb\";\ntype PremultiplyAlpha = \"default\" | \"none\" | \"premultiply\";\ntype PushEncryptionKeyName = \"auth\" | \"p256dh\";\ntype RTCDataChannelState = \"closed\" | \"closing\" | \"connecting\" | \"open\";\ntype RTCEncodedVideoFrameType = \"delta\" | \"empty\" | \"key\";\ntype ReadableStreamReaderMode = \"byob\";\ntype ReadableStreamType = \"bytes\";\ntype ReferrerPolicy = \"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\";\ntype RequestCache = \"default\" | \"force-cache\" | \"no-cache\" | \"no-store\" | \"only-if-cached\" | \"reload\";\ntype RequestCredentials = \"include\" | \"omit\" | \"same-origin\";\ntype RequestDestination = \"\" | \"audio\" | \"audioworklet\" | \"document\" | \"embed\" | \"font\" | \"frame\" | \"iframe\" | \"image\" | \"manifest\" | \"object\" | \"paintworklet\" | \"report\" | \"script\" | \"sharedworker\" | \"style\" | \"track\" | \"video\" | \"worker\" | \"xslt\";\ntype RequestMode = \"cors\" | \"navigate\" | \"no-cors\" | \"same-origin\";\ntype RequestPriority = \"auto\" | \"high\" | \"low\";\ntype RequestRedirect = \"error\" | \"follow\" | \"manual\";\ntype ResizeQuality = \"high\" | \"low\" | \"medium\" | \"pixelated\";\ntype ResponseType = \"basic\" | \"cors\" | \"default\" | \"error\" | \"opaque\" | \"opaqueredirect\";\ntype SecurityPolicyViolationEventDisposition = \"enforce\" | \"report\";\ntype ServiceWorkerState = \"activated\" | \"activating\" | \"installed\" | \"installing\" | \"parsed\" | \"redundant\";\ntype ServiceWorkerUpdateViaCache = \"all\" | \"imports\" | \"none\";\ntype TransferFunction = \"hlg\" | \"pq\" | \"srgb\";\ntype VideoColorPrimaries = \"bt470bg\" | \"bt709\" | \"smpte170m\";\ntype VideoEncoderBitrateMode = \"constant\" | \"quantizer\" | \"variable\";\ntype VideoMatrixCoefficients = \"bt470bg\" | \"bt709\" | \"rgb\" | \"smpte170m\";\ntype VideoPixelFormat = \"BGRA\" | \"BGRX\" | \"I420\" | \"I420A\" | \"I422\" | \"I444\" | \"NV12\" | \"RGBA\" | \"RGBX\";\ntype VideoTransferCharacteristics = \"bt709\" | \"iec61966-2-1\" | \"smpte170m\";\ntype WebGLPowerPreference = \"default\" | \"high-performance\" | \"low-power\";\ntype WebTransportCongestionControl = \"default\" | \"low-latency\" | \"throughput\";\ntype WebTransportErrorSource = \"session\" | \"stream\";\ntype WorkerType = \"classic\" | \"module\";\ntype WriteCommandType = \"seek\" | \"truncate\" | \"write\";\ntype XMLHttpRequestResponseType = \"\" | \"arraybuffer\" | \"blob\" | \"document\" | \"json\" | \"text\";\n",
    "node_modules/typescript/lib/lib.webworker.importscripts.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// WorkerGlobalScope APIs\n/////////////////////////////\n// These are only available in a Web Worker\ndeclare function importScripts(...urls: string[]): void;\n",
    "node_modules/typescript/lib/lib.webworker.iterable.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n/// <reference no-default-lib=\"true\"/>\n\n/////////////////////////////\n/// Worker Iterable APIs\n/////////////////////////////\n\ninterface CSSNumericArray {\n    [Symbol.iterator](): ArrayIterator<CSSNumericValue>;\n    entries(): ArrayIterator<[number, CSSNumericValue]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSNumericValue>;\n}\n\ninterface CSSTransformValue {\n    [Symbol.iterator](): ArrayIterator<CSSTransformComponent>;\n    entries(): ArrayIterator<[number, CSSTransformComponent]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSTransformComponent>;\n}\n\ninterface CSSUnparsedValue {\n    [Symbol.iterator](): ArrayIterator<CSSUnparsedSegment>;\n    entries(): ArrayIterator<[number, CSSUnparsedSegment]>;\n    keys(): ArrayIterator<number>;\n    values(): ArrayIterator<CSSUnparsedSegment>;\n}\n\ninterface Cache {\n    /**\n     * The **`addAll()`** method of the Cache interface takes an array of URLs, retrieves them, and adds the resulting response objects to the given cache.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/addAll)\n     */\n    addAll(requests: Iterable<RequestInfo>): Promise<void>;\n}\n\ninterface CanvasPath {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/roundRect) */\n    roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;\n}\n\ninterface CanvasPathDrawingStyles {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash) */\n    setLineDash(segments: Iterable<number>): void;\n}\n\ninterface CookieStoreManager {\n    /**\n     * The **`subscribe()`** method of the CookieStoreManager interface subscribes a ServiceWorkerRegistration to cookie change events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe)\n     */\n    subscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;\n    /**\n     * The **`unsubscribe()`** method of the CookieStoreManager interface stops the ServiceWorkerRegistration from receiving previously subscribed events.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe)\n     */\n    unsubscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;\n}\n\ninterface DOMStringList {\n    [Symbol.iterator](): ArrayIterator<string>;\n}\n\ninterface FileList {\n    [Symbol.iterator](): ArrayIterator<File>;\n}\n\ninterface FontFaceSet extends Set<FontFace> {\n}\n\ninterface FormDataIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): FormDataIterator<T>;\n}\n\ninterface FormData {\n    [Symbol.iterator](): FormDataIterator<[string, FormDataEntryValue]>;\n    /** Returns an array of key, value pairs for every entry in the list. */\n    entries(): FormDataIterator<[string, FormDataEntryValue]>;\n    /** Returns a list of keys in the list. */\n    keys(): FormDataIterator<string>;\n    /** Returns a list of values in the list. */\n    values(): FormDataIterator<FormDataEntryValue>;\n}\n\ninterface HeadersIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): HeadersIterator<T>;\n}\n\ninterface Headers {\n    [Symbol.iterator](): HeadersIterator<[string, string]>;\n    /** Returns an iterator allowing to go through all key/value pairs contained in this object. */\n    entries(): HeadersIterator<[string, string]>;\n    /** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */\n    keys(): HeadersIterator<string>;\n    /** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */\n    values(): HeadersIterator<string>;\n}\n\ninterface IDBDatabase {\n    /**\n     * The **`transaction`** method of the IDBDatabase interface immediately returns a transaction object (IDBTransaction) containing the IDBTransaction.objectStore method, which you can use to access your object store.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/transaction)\n     */\n    transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction;\n}\n\ninterface IDBObjectStore {\n    /**\n     * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)\n     */\n    createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex;\n}\n\ninterface ImageTrackList {\n    [Symbol.iterator](): ArrayIterator<ImageTrack>;\n}\n\ninterface MessageEvent<T = any> {\n    /** @deprecated */\n    initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;\n}\n\ninterface StylePropertyMapReadOnlyIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): StylePropertyMapReadOnlyIterator<T>;\n}\n\ninterface StylePropertyMapReadOnly {\n    [Symbol.iterator](): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;\n    entries(): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;\n    keys(): StylePropertyMapReadOnlyIterator<string>;\n    values(): StylePropertyMapReadOnlyIterator<Iterable<CSSStyleValue>>;\n}\n\ninterface SubtleCrypto {\n    /**\n     * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey)\n     */\n    deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n    /**\n     * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms).\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey)\n     */\n    generateKey(algorithm: \"Ed25519\" | { name: \"Ed25519\" }, extractable: boolean, keyUsages: ReadonlyArray<\"sign\" | \"verify\">): Promise<CryptoKeyPair>;\n    generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;\n    generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKeyPair | CryptoKey>;\n    /**\n     * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey)\n     */\n    importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;\n    importKey(format: Exclude<KeyFormat, \"jwk\">, keyData: BufferSource, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n    /**\n     * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey)\n     */\n    unwrapKey(format: KeyFormat, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;\n}\n\ninterface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {\n    [Symbol.iterator](): URLSearchParamsIterator<T>;\n}\n\ninterface URLSearchParams {\n    [Symbol.iterator](): URLSearchParamsIterator<[string, string]>;\n    /** Returns an array of key, value pairs for every entry in the search params. */\n    entries(): URLSearchParamsIterator<[string, string]>;\n    /** Returns a list of keys in the search params. */\n    keys(): URLSearchParamsIterator<string>;\n    /** Returns a list of values in the search params. */\n    values(): URLSearchParamsIterator<string>;\n}\n\ninterface WEBGL_draw_buffers {\n    /**\n     * The **`WEBGL_draw_buffers.drawBuffersWEBGL()`** method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL)\n     */\n    drawBuffersWEBGL(buffers: Iterable<GLenum>): void;\n}\n\ninterface WEBGL_multi_draw {\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL)\n     */\n    multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawArraysWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL)\n     */\n    multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL)\n     */\n    multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;\n    /**\n     * The **`WEBGL_multi_draw.multiDrawElementsWEBGL()`** method of the WebGL API renders multiple primitives from array data.\n     *\n     * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL)\n     */\n    multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, drawcount: GLsizei): void;\n}\n\ninterface WebGL2RenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */\n    clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: number): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawBuffers) */\n    drawBuffers(buffers: Iterable<GLenum>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */\n    getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */\n    getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */\n    invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */\n    invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */\n    transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */\n    uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */\n    vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;\n}\n\ninterface WebGL2RenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;\n}\n\ninterface WebGLRenderingContextBase {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib1fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib2fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib3fv(index: GLuint, values: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */\n    vertexAttrib4fv(index: GLuint, values: Iterable<GLfloat>): void;\n}\n\ninterface WebGLRenderingContextOverloads {\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */\n    uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n    /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */\n    uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;\n}\n",
    "node_modules/typescript/lib/tsserverlibrary.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\nimport ts = require(\"./typescript.js\");\nexport = ts;\n",
    "node_modules/typescript/lib/typescript.d.ts": "/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0\n\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\nMERCHANTABLITY OR NON-INFRINGEMENT.\n\nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\ndeclare namespace ts {\n    namespace server {\n        namespace protocol {\n            export import ApplicableRefactorInfo = ts.ApplicableRefactorInfo;\n            export import ClassificationType = ts.ClassificationType;\n            export import CompletionsTriggerCharacter = ts.CompletionsTriggerCharacter;\n            export import CompletionTriggerKind = ts.CompletionTriggerKind;\n            export import InlayHintKind = ts.InlayHintKind;\n            export import OrganizeImportsMode = ts.OrganizeImportsMode;\n            export import RefactorActionInfo = ts.RefactorActionInfo;\n            export import RefactorTriggerReason = ts.RefactorTriggerReason;\n            export import RenameInfoFailure = ts.RenameInfoFailure;\n            export import SemicolonPreference = ts.SemicolonPreference;\n            export import SignatureHelpCharacterTypedReason = ts.SignatureHelpCharacterTypedReason;\n            export import SignatureHelpInvokedReason = ts.SignatureHelpInvokedReason;\n            export import SignatureHelpParameter = ts.SignatureHelpParameter;\n            export import SignatureHelpRetriggerCharacter = ts.SignatureHelpRetriggerCharacter;\n            export import SignatureHelpRetriggeredReason = ts.SignatureHelpRetriggeredReason;\n            export import SignatureHelpTriggerCharacter = ts.SignatureHelpTriggerCharacter;\n            export import SignatureHelpTriggerReason = ts.SignatureHelpTriggerReason;\n            export import SymbolDisplayPart = ts.SymbolDisplayPart;\n            export import UserPreferences = ts.UserPreferences;\n            type ChangePropertyTypes<\n                T,\n                Substitutions extends {\n                    [K in keyof T]?: any;\n                },\n            > = {\n                [K in keyof T]: K extends keyof Substitutions ? Substitutions[K] : T[K];\n            };\n            type ChangeStringIndexSignature<T, NewStringIndexSignatureType> = {\n                [K in keyof T]: string extends K ? NewStringIndexSignatureType : T[K];\n            };\n            export enum CommandTypes {\n                JsxClosingTag = \"jsxClosingTag\",\n                LinkedEditingRange = \"linkedEditingRange\",\n                Brace = \"brace\",\n                BraceCompletion = \"braceCompletion\",\n                GetSpanOfEnclosingComment = \"getSpanOfEnclosingComment\",\n                Change = \"change\",\n                Close = \"close\",\n                /** @deprecated Prefer CompletionInfo -- see comment on CompletionsResponse */\n                Completions = \"completions\",\n                CompletionInfo = \"completionInfo\",\n                CompletionDetails = \"completionEntryDetails\",\n                CompileOnSaveAffectedFileList = \"compileOnSaveAffectedFileList\",\n                CompileOnSaveEmitFile = \"compileOnSaveEmitFile\",\n                Configure = \"configure\",\n                Definition = \"definition\",\n                DefinitionAndBoundSpan = \"definitionAndBoundSpan\",\n                Implementation = \"implementation\",\n                Exit = \"exit\",\n                FileReferences = \"fileReferences\",\n                Format = \"format\",\n                Formatonkey = \"formatonkey\",\n                Geterr = \"geterr\",\n                GeterrForProject = \"geterrForProject\",\n                SemanticDiagnosticsSync = \"semanticDiagnosticsSync\",\n                SyntacticDiagnosticsSync = \"syntacticDiagnosticsSync\",\n                SuggestionDiagnosticsSync = \"suggestionDiagnosticsSync\",\n                NavBar = \"navbar\",\n                Navto = \"navto\",\n                NavTree = \"navtree\",\n                NavTreeFull = \"navtree-full\",\n                DocumentHighlights = \"documentHighlights\",\n                Open = \"open\",\n                Quickinfo = \"quickinfo\",\n                References = \"references\",\n                Reload = \"reload\",\n                Rename = \"rename\",\n                Saveto = \"saveto\",\n                SignatureHelp = \"signatureHelp\",\n                FindSourceDefinition = \"findSourceDefinition\",\n                Status = \"status\",\n                TypeDefinition = \"typeDefinition\",\n                ProjectInfo = \"projectInfo\",\n                ReloadProjects = \"reloadProjects\",\n                Unknown = \"unknown\",\n                OpenExternalProject = \"openExternalProject\",\n                OpenExternalProjects = \"openExternalProjects\",\n                CloseExternalProject = \"closeExternalProject\",\n                UpdateOpen = \"updateOpen\",\n                GetOutliningSpans = \"getOutliningSpans\",\n                TodoComments = \"todoComments\",\n                Indentation = \"indentation\",\n                DocCommentTemplate = \"docCommentTemplate\",\n                CompilerOptionsForInferredProjects = \"compilerOptionsForInferredProjects\",\n                GetCodeFixes = \"getCodeFixes\",\n                GetCombinedCodeFix = \"getCombinedCodeFix\",\n                ApplyCodeActionCommand = \"applyCodeActionCommand\",\n                GetSupportedCodeFixes = \"getSupportedCodeFixes\",\n                GetApplicableRefactors = \"getApplicableRefactors\",\n                GetEditsForRefactor = \"getEditsForRefactor\",\n                GetMoveToRefactoringFileSuggestions = \"getMoveToRefactoringFileSuggestions\",\n                PreparePasteEdits = \"preparePasteEdits\",\n                GetPasteEdits = \"getPasteEdits\",\n                OrganizeImports = \"organizeImports\",\n                GetEditsForFileRename = \"getEditsForFileRename\",\n                ConfigurePlugin = \"configurePlugin\",\n                SelectionRange = \"selectionRange\",\n                ToggleLineComment = \"toggleLineComment\",\n                ToggleMultilineComment = \"toggleMultilineComment\",\n                CommentSelection = \"commentSelection\",\n                UncommentSelection = \"uncommentSelection\",\n                PrepareCallHierarchy = \"prepareCallHierarchy\",\n                ProvideCallHierarchyIncomingCalls = \"provideCallHierarchyIncomingCalls\",\n                ProvideCallHierarchyOutgoingCalls = \"provideCallHierarchyOutgoingCalls\",\n                ProvideInlayHints = \"provideInlayHints\",\n                WatchChange = \"watchChange\",\n                MapCode = \"mapCode\",\n            }\n            /**\n             * A TypeScript Server message\n             */\n            export interface Message {\n                /**\n                 * Sequence number of the message\n                 */\n                seq: number;\n                /**\n                 * One of \"request\", \"response\", or \"event\"\n                 */\n                type: \"request\" | \"response\" | \"event\";\n            }\n            /**\n             * Client-initiated request message\n             */\n            export interface Request extends Message {\n                type: \"request\";\n                /**\n                 * The command to execute\n                 */\n                command: string;\n                /**\n                 * Object containing arguments for the command\n                 */\n                arguments?: any;\n            }\n            /**\n             * Request to reload the project structure for all the opened files\n             */\n            export interface ReloadProjectsRequest extends Request {\n                command: CommandTypes.ReloadProjects;\n            }\n            /**\n             * Server-initiated event message\n             */\n            export interface Event extends Message {\n                type: \"event\";\n                /**\n                 * Name of event\n                 */\n                event: string;\n                /**\n                 * Event-specific information\n                 */\n                body?: any;\n            }\n            /**\n             * Response by server to client request message.\n             */\n            export interface Response extends Message {\n                type: \"response\";\n                /**\n                 * Sequence number of the request message.\n                 */\n                request_seq: number;\n                /**\n                 * Outcome of the request.\n                 */\n                success: boolean;\n                /**\n                 * The command requested.\n                 */\n                command: string;\n                /**\n                 * If success === false, this should always be provided.\n                 * Otherwise, may (or may not) contain a success message.\n                 */\n                message?: string;\n                /**\n                 * Contains message body if success === true.\n                 */\n                body?: any;\n                /**\n                 * Contains extra information that plugin can include to be passed on\n                 */\n                metadata?: unknown;\n                /**\n                 * Exposes information about the performance of this request-response pair.\n                 */\n                performanceData?: PerformanceData;\n            }\n            export interface PerformanceData {\n                /**\n                 * Time spent updating the program graph, in milliseconds.\n                 */\n                updateGraphDurationMs?: number;\n                /**\n                 * The time spent creating or updating the auto-import program, in milliseconds.\n                 */\n                createAutoImportProviderProgramDurationMs?: number;\n                /**\n                 * The time spent computing diagnostics, in milliseconds.\n                 */\n                diagnosticsDuration?: FileDiagnosticPerformanceData[];\n            }\n            /**\n             * Time spent computing each kind of diagnostics, in milliseconds.\n             */\n            export type DiagnosticPerformanceData = {\n                [Kind in DiagnosticEventKind]?: number;\n            };\n            export interface FileDiagnosticPerformanceData extends DiagnosticPerformanceData {\n                /**\n                 * The file for which the performance data is reported.\n                 */\n                file: string;\n            }\n            /**\n             * Arguments for FileRequest messages.\n             */\n            export interface FileRequestArgs {\n                /**\n                 * The file for the request (absolute pathname required).\n                 */\n                file: string;\n                projectFileName?: string;\n            }\n            export interface StatusRequest extends Request {\n                command: CommandTypes.Status;\n            }\n            export interface StatusResponseBody {\n                /**\n                 * The TypeScript version (`ts.version`).\n                 */\n                version: string;\n            }\n            /**\n             * Response to StatusRequest\n             */\n            export interface StatusResponse extends Response {\n                body: StatusResponseBody;\n            }\n            /**\n             * Requests a JS Doc comment template for a given position\n             */\n            export interface DocCommentTemplateRequest extends FileLocationRequest {\n                command: CommandTypes.DocCommentTemplate;\n            }\n            /**\n             * Response to DocCommentTemplateRequest\n             */\n            export interface DocCommandTemplateResponse extends Response {\n                body?: TextInsertion;\n            }\n            /**\n             * A request to get TODO comments from the file\n             */\n            export interface TodoCommentRequest extends FileRequest {\n                command: CommandTypes.TodoComments;\n                arguments: TodoCommentRequestArgs;\n            }\n            /**\n             * Arguments for TodoCommentRequest request.\n             */\n            export interface TodoCommentRequestArgs extends FileRequestArgs {\n                /**\n                 * Array of target TodoCommentDescriptors that describes TODO comments to be found\n                 */\n                descriptors: TodoCommentDescriptor[];\n            }\n            /**\n             * Response for TodoCommentRequest request.\n             */\n            export interface TodoCommentsResponse extends Response {\n                body?: TodoComment[];\n            }\n            /**\n             * A request to determine if the caret is inside a comment.\n             */\n            export interface SpanOfEnclosingCommentRequest extends FileLocationRequest {\n                command: CommandTypes.GetSpanOfEnclosingComment;\n                arguments: SpanOfEnclosingCommentRequestArgs;\n            }\n            export interface SpanOfEnclosingCommentRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Requires that the enclosing span be a multi-line comment, or else the request returns undefined.\n                 */\n                onlyMultiLine: boolean;\n            }\n            /**\n             * Request to obtain outlining spans in file.\n             */\n            export interface OutliningSpansRequest extends FileRequest {\n                command: CommandTypes.GetOutliningSpans;\n            }\n            export type OutliningSpan = ChangePropertyTypes<ts.OutliningSpan, {\n                textSpan: TextSpan;\n                hintSpan: TextSpan;\n            }>;\n            /**\n             * Response to OutliningSpansRequest request.\n             */\n            export interface OutliningSpansResponse extends Response {\n                body?: OutliningSpan[];\n            }\n            /**\n             * A request to get indentation for a location in file\n             */\n            export interface IndentationRequest extends FileLocationRequest {\n                command: CommandTypes.Indentation;\n                arguments: IndentationRequestArgs;\n            }\n            /**\n             * Response for IndentationRequest request.\n             */\n            export interface IndentationResponse extends Response {\n                body?: IndentationResult;\n            }\n            /**\n             * Indentation result representing where indentation should be placed\n             */\n            export interface IndentationResult {\n                /**\n                 * The base position in the document that the indent should be relative to\n                 */\n                position: number;\n                /**\n                 * The number of columns the indent should be at relative to the position's column.\n                 */\n                indentation: number;\n            }\n            /**\n             * Arguments for IndentationRequest request.\n             */\n            export interface IndentationRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * An optional set of settings to be used when computing indentation.\n                 * If argument is omitted - then it will use settings for file that were previously set via 'configure' request or global settings.\n                 */\n                options?: EditorSettings;\n            }\n            /**\n             * Arguments for ProjectInfoRequest request.\n             */\n            export interface ProjectInfoRequestArgs extends FileRequestArgs {\n                /**\n                 * Indicate if the file name list of the project is needed\n                 */\n                needFileNameList: boolean;\n                /**\n                 * if true returns details about default configured project calculation\n                 */\n                needDefaultConfiguredProjectInfo?: boolean;\n            }\n            /**\n             * A request to get the project information of the current file.\n             */\n            export interface ProjectInfoRequest extends Request {\n                command: CommandTypes.ProjectInfo;\n                arguments: ProjectInfoRequestArgs;\n            }\n            /**\n             * A request to retrieve compiler options diagnostics for a project\n             */\n            export interface CompilerOptionsDiagnosticsRequest extends Request {\n                arguments: CompilerOptionsDiagnosticsRequestArgs;\n            }\n            /**\n             * Arguments for CompilerOptionsDiagnosticsRequest request.\n             */\n            export interface CompilerOptionsDiagnosticsRequestArgs {\n                /**\n                 * Name of the project to retrieve compiler options diagnostics.\n                 */\n                projectFileName: string;\n            }\n            /**\n             * Details about the default project for the file if tsconfig file is found\n             */\n            export interface DefaultConfiguredProjectInfo {\n                /** List of config files looked and did not match because file was not part of root file names */\n                notMatchedByConfig?: readonly string[];\n                /** List of projects which were loaded but file was not part of the project or is file from referenced project */\n                notInProject?: readonly string[];\n                /** Configured project used as default */\n                defaultProject?: string;\n            }\n            /**\n             * Response message body for \"projectInfo\" request\n             */\n            export interface ProjectInfo {\n                /**\n                 * For configured project, this is the normalized path of the 'tsconfig.json' file\n                 * For inferred project, this is undefined\n                 */\n                configFileName: string;\n                /**\n                 * The list of normalized file name in the project, including 'lib.d.ts'\n                 */\n                fileNames?: string[];\n                /**\n                 * Indicates if the project has a active language service instance\n                 */\n                languageServiceDisabled?: boolean;\n                /**\n                 * Information about default project\n                 */\n                configuredProjectInfo?: DefaultConfiguredProjectInfo;\n            }\n            /**\n             * Represents diagnostic info that includes location of diagnostic in two forms\n             * - start position and length of the error span\n             * - startLocation and endLocation - a pair of Location objects that store start/end line and offset of the error span.\n             */\n            export interface DiagnosticWithLinePosition {\n                message: string;\n                start: number;\n                length: number;\n                startLocation: Location;\n                endLocation: Location;\n                category: string;\n                code: number;\n                /** May store more in future. For now, this will simply be `true` to indicate when a diagnostic is an unused-identifier diagnostic. */\n                reportsUnnecessary?: {};\n                reportsDeprecated?: {};\n                relatedInformation?: DiagnosticRelatedInformation[];\n            }\n            /**\n             * Response message for \"projectInfo\" request\n             */\n            export interface ProjectInfoResponse extends Response {\n                body?: ProjectInfo;\n            }\n            /**\n             * Request whose sole parameter is a file name.\n             */\n            export interface FileRequest extends Request {\n                arguments: FileRequestArgs;\n            }\n            /**\n             * Instances of this interface specify a location in a source file:\n             * (file, line, character offset), where line and character offset are 1-based.\n             */\n            export interface FileLocationRequestArgs extends FileRequestArgs {\n                /**\n                 * The line number for the request (1-based).\n                 */\n                line: number;\n                /**\n                 * The character offset (on the line) for the request (1-based).\n                 */\n                offset: number;\n            }\n            export type FileLocationOrRangeRequestArgs = FileLocationRequestArgs | FileRangeRequestArgs;\n            /**\n             * Request refactorings at a given position or selection area.\n             */\n            export interface GetApplicableRefactorsRequest extends Request {\n                command: CommandTypes.GetApplicableRefactors;\n                arguments: GetApplicableRefactorsRequestArgs;\n            }\n            export type GetApplicableRefactorsRequestArgs = FileLocationOrRangeRequestArgs & {\n                triggerReason?: RefactorTriggerReason;\n                kind?: string;\n                /**\n                 * Include refactor actions that require additional arguments to be passed when\n                 * calling 'GetEditsForRefactor'. When true, clients should inspect the\n                 * `isInteractive` property of each returned `RefactorActionInfo`\n                 * and ensure they are able to collect the appropriate arguments for any\n                 * interactive refactor before offering it.\n                 */\n                includeInteractiveActions?: boolean;\n            };\n            /**\n             * Response is a list of available refactorings.\n             * Each refactoring exposes one or more \"Actions\"; a user selects one action to invoke a refactoring\n             */\n            export interface GetApplicableRefactorsResponse extends Response {\n                body?: ApplicableRefactorInfo[];\n            }\n            /**\n             * Request refactorings at a given position or selection area to move to an existing file.\n             */\n            export interface GetMoveToRefactoringFileSuggestionsRequest extends Request {\n                command: CommandTypes.GetMoveToRefactoringFileSuggestions;\n                arguments: GetMoveToRefactoringFileSuggestionsRequestArgs;\n            }\n            export type GetMoveToRefactoringFileSuggestionsRequestArgs = FileLocationOrRangeRequestArgs & {\n                kind?: string;\n            };\n            /**\n             * Response is a list of available files.\n             * Each refactoring exposes one or more \"Actions\"; a user selects one action to invoke a refactoring\n             */\n            export interface GetMoveToRefactoringFileSuggestions extends Response {\n                body: {\n                    newFileName: string;\n                    files: string[];\n                };\n            }\n            /**\n             * Request to check if `pasteEdits` should be provided for a given location post copying text from that location.\n             */\n            export interface PreparePasteEditsRequest extends FileRequest {\n                command: CommandTypes.PreparePasteEdits;\n                arguments: PreparePasteEditsRequestArgs;\n            }\n            export interface PreparePasteEditsRequestArgs extends FileRequestArgs {\n                copiedTextSpan: TextSpan[];\n            }\n            export interface PreparePasteEditsResponse extends Response {\n                body: boolean;\n            }\n            /**\n             * Request refactorings at a given position post pasting text from some other location.\n             */\n            export interface GetPasteEditsRequest extends Request {\n                command: CommandTypes.GetPasteEdits;\n                arguments: GetPasteEditsRequestArgs;\n            }\n            export interface GetPasteEditsRequestArgs extends FileRequestArgs {\n                /** The text that gets pasted in a file.  */\n                pastedText: string[];\n                /** Locations of where the `pastedText` gets added in a file. If the length of the `pastedText` and `pastedLocations` are not the same,\n                 *  then the `pastedText` is combined into one and added at all the `pastedLocations`.\n                 */\n                pasteLocations: TextSpan[];\n                /** The source location of each `pastedText`. If present, the length of `spans` must be equal to the length of `pastedText`. */\n                copiedFrom?: {\n                    file: string;\n                    spans: TextSpan[];\n                };\n            }\n            export interface GetPasteEditsResponse extends Response {\n                body: PasteEditsAction;\n            }\n            export interface PasteEditsAction {\n                edits: FileCodeEdits[];\n                fixId?: {};\n            }\n            export interface GetEditsForRefactorRequest extends Request {\n                command: CommandTypes.GetEditsForRefactor;\n                arguments: GetEditsForRefactorRequestArgs;\n            }\n            /**\n             * Request the edits that a particular refactoring action produces.\n             * Callers must specify the name of the refactor and the name of the action.\n             */\n            export type GetEditsForRefactorRequestArgs = FileLocationOrRangeRequestArgs & {\n                refactor: string;\n                action: string;\n                interactiveRefactorArguments?: InteractiveRefactorArguments;\n            };\n            export interface GetEditsForRefactorResponse extends Response {\n                body?: RefactorEditInfo;\n            }\n            export interface RefactorEditInfo {\n                edits: FileCodeEdits[];\n                /**\n                 * An optional location where the editor should start a rename operation once\n                 * the refactoring edits have been applied\n                 */\n                renameLocation?: Location;\n                renameFilename?: string;\n                notApplicableReason?: string;\n            }\n            /**\n             * Organize imports by:\n             *   1) Removing unused imports\n             *   2) Coalescing imports from the same module\n             *   3) Sorting imports\n             */\n            export interface OrganizeImportsRequest extends Request {\n                command: CommandTypes.OrganizeImports;\n                arguments: OrganizeImportsRequestArgs;\n            }\n            export type OrganizeImportsScope = GetCombinedCodeFixScope;\n            export interface OrganizeImportsRequestArgs {\n                scope: OrganizeImportsScope;\n                /** @deprecated Use `mode` instead */\n                skipDestructiveCodeActions?: boolean;\n                mode?: OrganizeImportsMode;\n            }\n            export interface OrganizeImportsResponse extends Response {\n                body: readonly FileCodeEdits[];\n            }\n            export interface GetEditsForFileRenameRequest extends Request {\n                command: CommandTypes.GetEditsForFileRename;\n                arguments: GetEditsForFileRenameRequestArgs;\n            }\n            /** Note: Paths may also be directories. */\n            export interface GetEditsForFileRenameRequestArgs {\n                readonly oldFilePath: string;\n                readonly newFilePath: string;\n            }\n            export interface GetEditsForFileRenameResponse extends Response {\n                body: readonly FileCodeEdits[];\n            }\n            /**\n             * Request for the available codefixes at a specific position.\n             */\n            export interface CodeFixRequest extends Request {\n                command: CommandTypes.GetCodeFixes;\n                arguments: CodeFixRequestArgs;\n            }\n            export interface GetCombinedCodeFixRequest extends Request {\n                command: CommandTypes.GetCombinedCodeFix;\n                arguments: GetCombinedCodeFixRequestArgs;\n            }\n            export interface GetCombinedCodeFixResponse extends Response {\n                body: CombinedCodeActions;\n            }\n            export interface ApplyCodeActionCommandRequest extends Request {\n                command: CommandTypes.ApplyCodeActionCommand;\n                arguments: ApplyCodeActionCommandRequestArgs;\n            }\n            export interface ApplyCodeActionCommandResponse extends Response {\n            }\n            export interface FileRangeRequestArgs extends FileRequestArgs, FileRange {\n            }\n            /**\n             * Instances of this interface specify errorcodes on a specific location in a sourcefile.\n             */\n            export interface CodeFixRequestArgs extends FileRangeRequestArgs {\n                /**\n                 * Errorcodes we want to get the fixes for.\n                 */\n                errorCodes: readonly number[];\n            }\n            export interface GetCombinedCodeFixRequestArgs {\n                scope: GetCombinedCodeFixScope;\n                fixId: {};\n            }\n            export interface GetCombinedCodeFixScope {\n                type: \"file\";\n                args: FileRequestArgs;\n            }\n            export interface ApplyCodeActionCommandRequestArgs {\n                /** May also be an array of commands. */\n                command: {};\n            }\n            /**\n             * Response for GetCodeFixes request.\n             */\n            export interface GetCodeFixesResponse extends Response {\n                body?: CodeAction[];\n            }\n            /**\n             * A request whose arguments specify a file location (file, line, col).\n             */\n            export interface FileLocationRequest extends FileRequest {\n                arguments: FileLocationRequestArgs;\n            }\n            /**\n             * A request to get codes of supported code fixes.\n             */\n            export interface GetSupportedCodeFixesRequest extends Request {\n                command: CommandTypes.GetSupportedCodeFixes;\n                arguments?: Partial<FileRequestArgs>;\n            }\n            /**\n             * A response for GetSupportedCodeFixesRequest request.\n             */\n            export interface GetSupportedCodeFixesResponse extends Response {\n                /**\n                 * List of error codes supported by the server.\n                 */\n                body?: string[];\n            }\n            /**\n             * A request to get encoded semantic classifications for a span in the file\n             */\n            export interface EncodedSemanticClassificationsRequest extends FileRequest {\n                arguments: EncodedSemanticClassificationsRequestArgs;\n            }\n            /**\n             * Arguments for EncodedSemanticClassificationsRequest request.\n             */\n            export interface EncodedSemanticClassificationsRequestArgs extends FileRequestArgs {\n                /**\n                 * Start position of the span.\n                 */\n                start: number;\n                /**\n                 * Length of the span.\n                 */\n                length: number;\n                /**\n                 * Optional parameter for the semantic highlighting response, if absent it\n                 * defaults to \"original\".\n                 */\n                format?: \"original\" | \"2020\";\n            }\n            /** The response for a EncodedSemanticClassificationsRequest */\n            export interface EncodedSemanticClassificationsResponse extends Response {\n                body?: EncodedSemanticClassificationsResponseBody;\n            }\n            /**\n             * Implementation response message. Gives series of text spans depending on the format ar.\n             */\n            export interface EncodedSemanticClassificationsResponseBody {\n                endOfLineState: EndOfLineState;\n                spans: number[];\n            }\n            /**\n             * Arguments in document highlight request; include: filesToSearch, file,\n             * line, offset.\n             */\n            export interface DocumentHighlightsRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * List of files to search for document highlights.\n                 */\n                filesToSearch: string[];\n            }\n            /**\n             * Go to definition request; value of command field is\n             * \"definition\". Return response giving the file locations that\n             * define the symbol found in file at location line, col.\n             */\n            export interface DefinitionRequest extends FileLocationRequest {\n                command: CommandTypes.Definition;\n            }\n            export interface DefinitionAndBoundSpanRequest extends FileLocationRequest {\n                readonly command: CommandTypes.DefinitionAndBoundSpan;\n            }\n            export interface FindSourceDefinitionRequest extends FileLocationRequest {\n                readonly command: CommandTypes.FindSourceDefinition;\n            }\n            export interface DefinitionAndBoundSpanResponse extends Response {\n                readonly body: DefinitionInfoAndBoundSpan;\n            }\n            /**\n             * Go to type request; value of command field is\n             * \"typeDefinition\". Return response giving the file locations that\n             * define the type for the symbol found in file at location line, col.\n             */\n            export interface TypeDefinitionRequest extends FileLocationRequest {\n                command: CommandTypes.TypeDefinition;\n            }\n            /**\n             * Go to implementation request; value of command field is\n             * \"implementation\". Return response giving the file locations that\n             * implement the symbol found in file at location line, col.\n             */\n            export interface ImplementationRequest extends FileLocationRequest {\n                command: CommandTypes.Implementation;\n            }\n            /**\n             * Location in source code expressed as (one-based) line and (one-based) column offset.\n             */\n            export interface Location {\n                line: number;\n                offset: number;\n            }\n            /**\n             * Object found in response messages defining a span of text in source code.\n             */\n            export interface TextSpan {\n                /**\n                 * First character of the definition.\n                 */\n                start: Location;\n                /**\n                 * One character past last character of the definition.\n                 */\n                end: Location;\n            }\n            /**\n             * Object found in response messages defining a span of text in a specific source file.\n             */\n            export interface FileSpan extends TextSpan {\n                /**\n                 * File containing text span.\n                 */\n                file: string;\n            }\n            export interface JSDocTagInfo {\n                /** Name of the JSDoc tag */\n                name: string;\n                /**\n                 * Comment text after the JSDoc tag -- the text after the tag name until the next tag or end of comment\n                 * Display parts when UserPreferences.displayPartsForJSDoc is true, flattened to string otherwise.\n                 */\n                text?: string | SymbolDisplayPart[];\n            }\n            export interface TextSpanWithContext extends TextSpan {\n                contextStart?: Location;\n                contextEnd?: Location;\n            }\n            export interface FileSpanWithContext extends FileSpan, TextSpanWithContext {\n            }\n            export interface DefinitionInfo extends FileSpanWithContext {\n                /**\n                 * When true, the file may or may not exist.\n                 */\n                unverified?: boolean;\n            }\n            export interface DefinitionInfoAndBoundSpan {\n                definitions: readonly DefinitionInfo[];\n                textSpan: TextSpan;\n            }\n            /**\n             * Definition response message.  Gives text range for definition.\n             */\n            export interface DefinitionResponse extends Response {\n                body?: DefinitionInfo[];\n            }\n            export interface DefinitionInfoAndBoundSpanResponse extends Response {\n                body?: DefinitionInfoAndBoundSpan;\n            }\n            /** @deprecated Use `DefinitionInfoAndBoundSpanResponse` instead. */\n            export type DefinitionInfoAndBoundSpanReponse = DefinitionInfoAndBoundSpanResponse;\n            /**\n             * Definition response message.  Gives text range for definition.\n             */\n            export interface TypeDefinitionResponse extends Response {\n                body?: FileSpanWithContext[];\n            }\n            /**\n             * Implementation response message.  Gives text range for implementations.\n             */\n            export interface ImplementationResponse extends Response {\n                body?: FileSpanWithContext[];\n            }\n            /**\n             * Request to get brace completion for a location in the file.\n             */\n            export interface BraceCompletionRequest extends FileLocationRequest {\n                command: CommandTypes.BraceCompletion;\n                arguments: BraceCompletionRequestArgs;\n            }\n            /**\n             * Argument for BraceCompletionRequest request.\n             */\n            export interface BraceCompletionRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Kind of opening brace\n                 */\n                openingBrace: string;\n            }\n            export interface JsxClosingTagRequest extends FileLocationRequest {\n                readonly command: CommandTypes.JsxClosingTag;\n                readonly arguments: JsxClosingTagRequestArgs;\n            }\n            export interface JsxClosingTagRequestArgs extends FileLocationRequestArgs {\n            }\n            export interface JsxClosingTagResponse extends Response {\n                readonly body: TextInsertion;\n            }\n            export interface LinkedEditingRangeRequest extends FileLocationRequest {\n                readonly command: CommandTypes.LinkedEditingRange;\n            }\n            export interface LinkedEditingRangesBody {\n                ranges: TextSpan[];\n                wordPattern?: string;\n            }\n            export interface LinkedEditingRangeResponse extends Response {\n                readonly body: LinkedEditingRangesBody;\n            }\n            /**\n             * Get document highlights request; value of command field is\n             * \"documentHighlights\". Return response giving spans that are relevant\n             * in the file at a given line and column.\n             */\n            export interface DocumentHighlightsRequest extends FileLocationRequest {\n                command: CommandTypes.DocumentHighlights;\n                arguments: DocumentHighlightsRequestArgs;\n            }\n            /**\n             * Span augmented with extra information that denotes the kind of the highlighting to be used for span.\n             */\n            export interface HighlightSpan extends TextSpanWithContext {\n                kind: HighlightSpanKind;\n            }\n            /**\n             * Represents a set of highligh spans for a give name\n             */\n            export interface DocumentHighlightsItem {\n                /**\n                 * File containing highlight spans.\n                 */\n                file: string;\n                /**\n                 * Spans to highlight in file.\n                 */\n                highlightSpans: HighlightSpan[];\n            }\n            /**\n             * Response for a DocumentHighlightsRequest request.\n             */\n            export interface DocumentHighlightsResponse extends Response {\n                body?: DocumentHighlightsItem[];\n            }\n            /**\n             * Find references request; value of command field is\n             * \"references\". Return response giving the file locations that\n             * reference the symbol found in file at location line, col.\n             */\n            export interface ReferencesRequest extends FileLocationRequest {\n                command: CommandTypes.References;\n            }\n            export interface ReferencesResponseItem extends FileSpanWithContext {\n                /**\n                 * Text of line containing the reference. Including this\n                 * with the response avoids latency of editor loading files\n                 * to show text of reference line (the server already has loaded the referencing files).\n                 *\n                 * If {@link UserPreferences.disableLineTextInReferences} is enabled, the property won't be filled\n                 */\n                lineText?: string;\n                /**\n                 * True if reference is a write location, false otherwise.\n                 */\n                isWriteAccess: boolean;\n                /**\n                 * Present only if the search was triggered from a declaration.\n                 * True indicates that the references refers to the same symbol\n                 * (i.e. has the same meaning) as the declaration that began the\n                 * search.\n                 */\n                isDefinition?: boolean;\n            }\n            /**\n             * The body of a \"references\" response message.\n             */\n            export interface ReferencesResponseBody {\n                /**\n                 * The file locations referencing the symbol.\n                 */\n                refs: readonly ReferencesResponseItem[];\n                /**\n                 * The name of the symbol.\n                 */\n                symbolName: string;\n                /**\n                 * The start character offset of the symbol (on the line provided by the references request).\n                 */\n                symbolStartOffset: number;\n                /**\n                 * The full display name of the symbol.\n                 */\n                symbolDisplayString: string;\n            }\n            /**\n             * Response to \"references\" request.\n             */\n            export interface ReferencesResponse extends Response {\n                body?: ReferencesResponseBody;\n            }\n            export interface FileReferencesRequest extends FileRequest {\n                command: CommandTypes.FileReferences;\n            }\n            export interface FileReferencesResponseBody {\n                /**\n                 * The file locations referencing the symbol.\n                 */\n                refs: readonly ReferencesResponseItem[];\n                /**\n                 * The name of the symbol.\n                 */\n                symbolName: string;\n            }\n            export interface FileReferencesResponse extends Response {\n                body?: FileReferencesResponseBody;\n            }\n            /**\n             * Argument for RenameRequest request.\n             */\n            export interface RenameRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Should text at specified location be found/changed in comments?\n                 */\n                findInComments?: boolean;\n                /**\n                 * Should text at specified location be found/changed in strings?\n                 */\n                findInStrings?: boolean;\n            }\n            /**\n             * Rename request; value of command field is \"rename\". Return\n             * response giving the file locations that reference the symbol\n             * found in file at location line, col. Also return full display\n             * name of the symbol so that client can print it unambiguously.\n             */\n            export interface RenameRequest extends FileLocationRequest {\n                command: CommandTypes.Rename;\n                arguments: RenameRequestArgs;\n            }\n            /**\n             * Information about the item to be renamed.\n             */\n            export type RenameInfo = RenameInfoSuccess | RenameInfoFailure;\n            export type RenameInfoSuccess = ChangePropertyTypes<ts.RenameInfoSuccess, {\n                triggerSpan: TextSpan;\n            }>;\n            /**\n             *  A group of text spans, all in 'file'.\n             */\n            export interface SpanGroup {\n                /** The file to which the spans apply */\n                file: string;\n                /** The text spans in this group */\n                locs: RenameTextSpan[];\n            }\n            export interface RenameTextSpan extends TextSpanWithContext {\n                readonly prefixText?: string;\n                readonly suffixText?: string;\n            }\n            export interface RenameResponseBody {\n                /**\n                 * Information about the item to be renamed.\n                 */\n                info: RenameInfo;\n                /**\n                 * An array of span groups (one per file) that refer to the item to be renamed.\n                 */\n                locs: readonly SpanGroup[];\n            }\n            /**\n             * Rename response message.\n             */\n            export interface RenameResponse extends Response {\n                body?: RenameResponseBody;\n            }\n            /**\n             * Represents a file in external project.\n             * External project is project whose set of files, compilation options and open\\close state\n             * is maintained by the client (i.e. if all this data come from .csproj file in Visual Studio).\n             * External project will exist even if all files in it are closed and should be closed explicitly.\n             * If external project includes one or more tsconfig.json/jsconfig.json files then tsserver will\n             * create configured project for every config file but will maintain a link that these projects were created\n             * as a result of opening external project so they should be removed once external project is closed.\n             */\n            export interface ExternalFile {\n                /**\n                 * Name of file file\n                 */\n                fileName: string;\n                /**\n                 * Script kind of the file\n                 */\n                scriptKind?: ScriptKindName | ScriptKind;\n                /**\n                 * Whether file has mixed content (i.e. .cshtml file that combines html markup with C#/JavaScript)\n                 */\n                hasMixedContent?: boolean;\n                /**\n                 * Content of the file\n                 */\n                content?: string;\n            }\n            /**\n             * Represent an external project\n             */\n            export interface ExternalProject {\n                /**\n                 * Project name\n                 */\n                projectFileName: string;\n                /**\n                 * List of root files in project\n                 */\n                rootFiles: ExternalFile[];\n                /**\n                 * Compiler options for the project\n                 */\n                options: ExternalProjectCompilerOptions;\n                /**\n                 * Explicitly specified type acquisition for the project\n                 */\n                typeAcquisition?: TypeAcquisition;\n            }\n            export interface CompileOnSaveMixin {\n                /**\n                 * If compile on save is enabled for the project\n                 */\n                compileOnSave?: boolean;\n            }\n            /**\n             * For external projects, some of the project settings are sent together with\n             * compiler settings.\n             */\n            export type ExternalProjectCompilerOptions = CompilerOptions & CompileOnSaveMixin & WatchOptions;\n            export interface FileWithProjectReferenceRedirectInfo {\n                /**\n                 * Name of file\n                 */\n                fileName: string;\n                /**\n                 * True if the file is primarily included in a referenced project\n                 */\n                isSourceOfProjectReferenceRedirect: boolean;\n            }\n            /**\n             * Represents a set of changes that happen in project\n             */\n            export interface ProjectChanges {\n                /**\n                 * List of added files\n                 */\n                added: string[] | FileWithProjectReferenceRedirectInfo[];\n                /**\n                 * List of removed files\n                 */\n                removed: string[] | FileWithProjectReferenceRedirectInfo[];\n                /**\n                 * List of updated files\n                 */\n                updated: string[] | FileWithProjectReferenceRedirectInfo[];\n                /**\n                 * List of files that have had their project reference redirect status updated\n                 * Only provided when the synchronizeProjectList request has includeProjectReferenceRedirectInfo set to true\n                 */\n                updatedRedirects?: FileWithProjectReferenceRedirectInfo[];\n            }\n            /**\n             * Information found in a configure request.\n             */\n            export interface ConfigureRequestArguments {\n                /**\n                 * Information about the host, for example 'Emacs 24.4' or\n                 * 'Sublime Text version 3075'\n                 */\n                hostInfo?: string;\n                /**\n                 * If present, tab settings apply only to this file.\n                 */\n                file?: string;\n                /**\n                 * The format options to use during formatting and other code editing features.\n                 */\n                formatOptions?: FormatCodeSettings;\n                preferences?: UserPreferences;\n                /**\n                 * The host's additional supported .js file extensions\n                 */\n                extraFileExtensions?: FileExtensionInfo[];\n                watchOptions?: WatchOptions;\n            }\n            export enum WatchFileKind {\n                FixedPollingInterval = \"FixedPollingInterval\",\n                PriorityPollingInterval = \"PriorityPollingInterval\",\n                DynamicPriorityPolling = \"DynamicPriorityPolling\",\n                FixedChunkSizePolling = \"FixedChunkSizePolling\",\n                UseFsEvents = \"UseFsEvents\",\n                UseFsEventsOnParentDirectory = \"UseFsEventsOnParentDirectory\",\n            }\n            export enum WatchDirectoryKind {\n                UseFsEvents = \"UseFsEvents\",\n                FixedPollingInterval = \"FixedPollingInterval\",\n                DynamicPriorityPolling = \"DynamicPriorityPolling\",\n                FixedChunkSizePolling = \"FixedChunkSizePolling\",\n            }\n            export enum PollingWatchKind {\n                FixedInterval = \"FixedInterval\",\n                PriorityInterval = \"PriorityInterval\",\n                DynamicPriority = \"DynamicPriority\",\n                FixedChunkSize = \"FixedChunkSize\",\n            }\n            export interface WatchOptions {\n                watchFile?: WatchFileKind | ts.WatchFileKind;\n                watchDirectory?: WatchDirectoryKind | ts.WatchDirectoryKind;\n                fallbackPolling?: PollingWatchKind | ts.PollingWatchKind;\n                synchronousWatchDirectory?: boolean;\n                excludeDirectories?: string[];\n                excludeFiles?: string[];\n                [option: string]: CompilerOptionsValue | undefined;\n            }\n            /**\n             *  Configure request; value of command field is \"configure\".  Specifies\n             *  host information, such as host type, tab size, and indent size.\n             */\n            export interface ConfigureRequest extends Request {\n                command: CommandTypes.Configure;\n                arguments: ConfigureRequestArguments;\n            }\n            /**\n             * Response to \"configure\" request.  This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface ConfigureResponse extends Response {\n            }\n            export interface ConfigurePluginRequestArguments {\n                pluginName: string;\n                configuration: any;\n            }\n            export interface ConfigurePluginRequest extends Request {\n                command: CommandTypes.ConfigurePlugin;\n                arguments: ConfigurePluginRequestArguments;\n            }\n            export interface ConfigurePluginResponse extends Response {\n            }\n            export interface SelectionRangeRequest extends FileRequest {\n                command: CommandTypes.SelectionRange;\n                arguments: SelectionRangeRequestArgs;\n            }\n            export interface SelectionRangeRequestArgs extends FileRequestArgs {\n                locations: Location[];\n            }\n            export interface SelectionRangeResponse extends Response {\n                body?: SelectionRange[];\n            }\n            export interface SelectionRange {\n                textSpan: TextSpan;\n                parent?: SelectionRange;\n            }\n            export interface ToggleLineCommentRequest extends FileRequest {\n                command: CommandTypes.ToggleLineComment;\n                arguments: FileRangeRequestArgs;\n            }\n            export interface ToggleMultilineCommentRequest extends FileRequest {\n                command: CommandTypes.ToggleMultilineComment;\n                arguments: FileRangeRequestArgs;\n            }\n            export interface CommentSelectionRequest extends FileRequest {\n                command: CommandTypes.CommentSelection;\n                arguments: FileRangeRequestArgs;\n            }\n            export interface UncommentSelectionRequest extends FileRequest {\n                command: CommandTypes.UncommentSelection;\n                arguments: FileRangeRequestArgs;\n            }\n            /**\n             *  Information found in an \"open\" request.\n             */\n            export interface OpenRequestArgs extends FileRequestArgs {\n                /**\n                 * Used when a version of the file content is known to be more up to date than the one on disk.\n                 * Then the known content will be used upon opening instead of the disk copy\n                 */\n                fileContent?: string;\n                /**\n                 * Used to specify the script kind of the file explicitly. It could be one of the following:\n                 *      \"TS\", \"JS\", \"TSX\", \"JSX\"\n                 */\n                scriptKindName?: ScriptKindName;\n                /**\n                 * Used to limit the searching for project config file. If given the searching will stop at this\n                 * root path; otherwise it will go all the way up to the dist root path.\n                 */\n                projectRootPath?: string;\n            }\n            export type ScriptKindName = \"TS\" | \"JS\" | \"TSX\" | \"JSX\";\n            /**\n             * Open request; value of command field is \"open\". Notify the\n             * server that the client has file open.  The server will not\n             * monitor the filesystem for changes in this file and will assume\n             * that the client is updating the server (using the change and/or\n             * reload messages) when the file changes. Server does not currently\n             * send a response to an open request.\n             */\n            export interface OpenRequest extends Request {\n                command: CommandTypes.Open;\n                arguments: OpenRequestArgs;\n            }\n            /**\n             * Request to open or update external project\n             */\n            export interface OpenExternalProjectRequest extends Request {\n                command: CommandTypes.OpenExternalProject;\n                arguments: OpenExternalProjectArgs;\n            }\n            /**\n             * Arguments to OpenExternalProjectRequest request\n             */\n            export type OpenExternalProjectArgs = ExternalProject;\n            /**\n             * Request to open multiple external projects\n             */\n            export interface OpenExternalProjectsRequest extends Request {\n                command: CommandTypes.OpenExternalProjects;\n                arguments: OpenExternalProjectsArgs;\n            }\n            /**\n             * Arguments to OpenExternalProjectsRequest\n             */\n            export interface OpenExternalProjectsArgs {\n                /**\n                 * List of external projects to open or update\n                 */\n                projects: ExternalProject[];\n            }\n            /**\n             * Response to OpenExternalProjectRequest request. This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface OpenExternalProjectResponse extends Response {\n            }\n            /**\n             * Response to OpenExternalProjectsRequest request. This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface OpenExternalProjectsResponse extends Response {\n            }\n            /**\n             * Request to close external project.\n             */\n            export interface CloseExternalProjectRequest extends Request {\n                command: CommandTypes.CloseExternalProject;\n                arguments: CloseExternalProjectRequestArgs;\n            }\n            /**\n             * Arguments to CloseExternalProjectRequest request\n             */\n            export interface CloseExternalProjectRequestArgs {\n                /**\n                 * Name of the project to close\n                 */\n                projectFileName: string;\n            }\n            /**\n             * Response to CloseExternalProjectRequest request. This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface CloseExternalProjectResponse extends Response {\n            }\n            /**\n             * Request to synchronize list of open files with the client\n             */\n            export interface UpdateOpenRequest extends Request {\n                command: CommandTypes.UpdateOpen;\n                arguments: UpdateOpenRequestArgs;\n            }\n            /**\n             * Arguments to UpdateOpenRequest\n             */\n            export interface UpdateOpenRequestArgs {\n                /**\n                 * List of newly open files\n                 */\n                openFiles?: OpenRequestArgs[];\n                /**\n                 * List of open files files that were changes\n                 */\n                changedFiles?: FileCodeEdits[];\n                /**\n                 * List of files that were closed\n                 */\n                closedFiles?: string[];\n            }\n            /**\n             * External projects have a typeAcquisition option so they need to be added separately to compiler options for inferred projects.\n             */\n            export type InferredProjectCompilerOptions = ExternalProjectCompilerOptions & TypeAcquisition;\n            /**\n             * Request to set compiler options for inferred projects.\n             * External projects are opened / closed explicitly.\n             * Configured projects are opened when user opens loose file that has 'tsconfig.json' or 'jsconfig.json' anywhere in one of containing folders.\n             * This configuration file will be used to obtain a list of files and configuration settings for the project.\n             * Inferred projects are created when user opens a loose file that is not the part of external project\n             * or configured project and will contain only open file and transitive closure of referenced files if 'useOneInferredProject' is false,\n             * or all open loose files and its transitive closure of referenced files if 'useOneInferredProject' is true.\n             */\n            export interface SetCompilerOptionsForInferredProjectsRequest extends Request {\n                command: CommandTypes.CompilerOptionsForInferredProjects;\n                arguments: SetCompilerOptionsForInferredProjectsArgs;\n            }\n            /**\n             * Argument for SetCompilerOptionsForInferredProjectsRequest request.\n             */\n            export interface SetCompilerOptionsForInferredProjectsArgs {\n                /**\n                 * Compiler options to be used with inferred projects.\n                 */\n                options: InferredProjectCompilerOptions;\n                /**\n                 * Specifies the project root path used to scope compiler options.\n                 * It is an error to provide this property if the server has not been started with\n                 * `useInferredProjectPerProjectRoot` enabled.\n                 */\n                projectRootPath?: string;\n            }\n            /**\n             * Response to SetCompilerOptionsForInferredProjectsResponse request. This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface SetCompilerOptionsForInferredProjectsResponse extends Response {\n            }\n            /**\n             *  Exit request; value of command field is \"exit\".  Ask the server process\n             *  to exit.\n             */\n            export interface ExitRequest extends Request {\n                command: CommandTypes.Exit;\n            }\n            /**\n             * Close request; value of command field is \"close\". Notify the\n             * server that the client has closed a previously open file.  If\n             * file is still referenced by open files, the server will resume\n             * monitoring the filesystem for changes to file.  Server does not\n             * currently send a response to a close request.\n             */\n            export interface CloseRequest extends FileRequest {\n                command: CommandTypes.Close;\n            }\n            export interface WatchChangeRequest extends Request {\n                command: CommandTypes.WatchChange;\n                arguments: WatchChangeRequestArgs | readonly WatchChangeRequestArgs[];\n            }\n            export interface WatchChangeRequestArgs {\n                id: number;\n                created?: string[];\n                deleted?: string[];\n                updated?: string[];\n            }\n            /**\n             * Request to obtain the list of files that should be regenerated if target file is recompiled.\n             * NOTE: this us query-only operation and does not generate any output on disk.\n             */\n            export interface CompileOnSaveAffectedFileListRequest extends FileRequest {\n                command: CommandTypes.CompileOnSaveAffectedFileList;\n            }\n            /**\n             * Contains a list of files that should be regenerated in a project\n             */\n            export interface CompileOnSaveAffectedFileListSingleProject {\n                /**\n                 * Project name\n                 */\n                projectFileName: string;\n                /**\n                 * List of files names that should be recompiled\n                 */\n                fileNames: string[];\n                /**\n                 * true if project uses outFile or out compiler option\n                 */\n                projectUsesOutFile: boolean;\n            }\n            /**\n             * Response for CompileOnSaveAffectedFileListRequest request;\n             */\n            export interface CompileOnSaveAffectedFileListResponse extends Response {\n                body: CompileOnSaveAffectedFileListSingleProject[];\n            }\n            /**\n             * Request to recompile the file. All generated outputs (.js, .d.ts or .js.map files) is written on disk.\n             */\n            export interface CompileOnSaveEmitFileRequest extends FileRequest {\n                command: CommandTypes.CompileOnSaveEmitFile;\n                arguments: CompileOnSaveEmitFileRequestArgs;\n            }\n            /**\n             * Arguments for CompileOnSaveEmitFileRequest\n             */\n            export interface CompileOnSaveEmitFileRequestArgs extends FileRequestArgs {\n                /**\n                 * if true - then file should be recompiled even if it does not have any changes.\n                 */\n                forced?: boolean;\n                includeLinePosition?: boolean;\n                /** if true - return response as object with emitSkipped and diagnostics */\n                richResponse?: boolean;\n            }\n            export interface CompileOnSaveEmitFileResponse extends Response {\n                body: boolean | EmitResult;\n            }\n            export interface EmitResult {\n                emitSkipped: boolean;\n                diagnostics: Diagnostic[] | DiagnosticWithLinePosition[];\n            }\n            /**\n             * Quickinfo request; value of command field is\n             * \"quickinfo\". Return response giving a quick type and\n             * documentation string for the symbol found in file at location\n             * line, col.\n             */\n            export interface QuickInfoRequest extends FileLocationRequest {\n                command: CommandTypes.Quickinfo;\n                arguments: FileLocationRequestArgs;\n            }\n            export interface QuickInfoRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * This controls how many levels of definitions will be expanded in the quick info response.\n                 * The default value is 0.\n                 */\n                verbosityLevel?: number;\n            }\n            /**\n             * Body of QuickInfoResponse.\n             */\n            export interface QuickInfoResponseBody {\n                /**\n                 * The symbol's kind (such as 'className' or 'parameterName' or plain 'text').\n                 */\n                kind: ScriptElementKind;\n                /**\n                 * Optional modifiers for the kind (such as 'public').\n                 */\n                kindModifiers: string;\n                /**\n                 * Starting file location of symbol.\n                 */\n                start: Location;\n                /**\n                 * One past last character of symbol.\n                 */\n                end: Location;\n                /**\n                 * Type and kind of symbol.\n                 */\n                displayString: string;\n                /**\n                 * Documentation associated with symbol.\n                 * Display parts when UserPreferences.displayPartsForJSDoc is true, flattened to string otherwise.\n                 */\n                documentation: string | SymbolDisplayPart[];\n                /**\n                 * JSDoc tags associated with symbol.\n                 */\n                tags: JSDocTagInfo[];\n                /**\n                 * Whether the verbosity level can be increased for this quick info response.\n                 */\n                canIncreaseVerbosityLevel?: boolean;\n            }\n            /**\n             * Quickinfo response message.\n             */\n            export interface QuickInfoResponse extends Response {\n                body?: QuickInfoResponseBody;\n            }\n            /**\n             * Arguments for format messages.\n             */\n            export interface FormatRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Last line of range for which to format text in file.\n                 */\n                endLine: number;\n                /**\n                 * Character offset on last line of range for which to format text in file.\n                 */\n                endOffset: number;\n                /**\n                 * Format options to be used.\n                 */\n                options?: FormatCodeSettings;\n            }\n            /**\n             * Format request; value of command field is \"format\".  Return\n             * response giving zero or more edit instructions.  The edit\n             * instructions will be sorted in file order.  Applying the edit\n             * instructions in reverse to file will result in correctly\n             * reformatted text.\n             */\n            export interface FormatRequest extends FileLocationRequest {\n                command: CommandTypes.Format;\n                arguments: FormatRequestArgs;\n            }\n            /**\n             * Object found in response messages defining an editing\n             * instruction for a span of text in source code.  The effect of\n             * this instruction is to replace the text starting at start and\n             * ending one character before end with newText. For an insertion,\n             * the text span is empty.  For a deletion, newText is empty.\n             */\n            export interface CodeEdit {\n                /**\n                 * First character of the text span to edit.\n                 */\n                start: Location;\n                /**\n                 * One character past last character of the text span to edit.\n                 */\n                end: Location;\n                /**\n                 * Replace the span defined above with this string (may be\n                 * the empty string).\n                 */\n                newText: string;\n            }\n            export interface FileCodeEdits {\n                fileName: string;\n                textChanges: CodeEdit[];\n            }\n            export interface CodeFixResponse extends Response {\n                /** The code actions that are available */\n                body?: CodeFixAction[];\n            }\n            export interface CodeAction {\n                /** Description of the code action to display in the UI of the editor */\n                description: string;\n                /** Text changes to apply to each file as part of the code action */\n                changes: FileCodeEdits[];\n                /** A command is an opaque object that should be passed to `ApplyCodeActionCommandRequestArgs` without modification.  */\n                commands?: {}[];\n            }\n            export interface CombinedCodeActions {\n                changes: readonly FileCodeEdits[];\n                commands?: readonly {}[];\n            }\n            export interface CodeFixAction extends CodeAction {\n                /** Short name to identify the fix, for use by telemetry. */\n                fixName: string;\n                /**\n                 * If present, one may call 'getCombinedCodeFix' with this fixId.\n                 * This may be omitted to indicate that the code fix can't be applied in a group.\n                 */\n                fixId?: {};\n                /** Should be present if and only if 'fixId' is. */\n                fixAllDescription?: string;\n            }\n            /**\n             * Format and format on key response message.\n             */\n            export interface FormatResponse extends Response {\n                body?: CodeEdit[];\n            }\n            /**\n             * Arguments for format on key messages.\n             */\n            export interface FormatOnKeyRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Key pressed (';', '\\n', or '}').\n                 */\n                key: string;\n                options?: FormatCodeSettings;\n            }\n            /**\n             * Format on key request; value of command field is\n             * \"formatonkey\". Given file location and key typed (as string),\n             * return response giving zero or more edit instructions.  The\n             * edit instructions will be sorted in file order.  Applying the\n             * edit instructions in reverse to file will result in correctly\n             * reformatted text.\n             */\n            export interface FormatOnKeyRequest extends FileLocationRequest {\n                command: CommandTypes.Formatonkey;\n                arguments: FormatOnKeyRequestArgs;\n            }\n            /**\n             * Arguments for completions messages.\n             */\n            export interface CompletionsRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Optional prefix to apply to possible completions.\n                 */\n                prefix?: string;\n                /**\n                 * Character that was responsible for triggering completion.\n                 * Should be `undefined` if a user manually requested completion.\n                 */\n                triggerCharacter?: CompletionsTriggerCharacter;\n                triggerKind?: CompletionTriggerKind;\n                /**\n                 * @deprecated Use UserPreferences.includeCompletionsForModuleExports\n                 */\n                includeExternalModuleExports?: boolean;\n                /**\n                 * @deprecated Use UserPreferences.includeCompletionsWithInsertText\n                 */\n                includeInsertTextCompletions?: boolean;\n            }\n            /**\n             * Completions request; value of command field is \"completions\".\n             * Given a file location (file, line, col) and a prefix (which may\n             * be the empty string), return the possible completions that\n             * begin with prefix.\n             */\n            export interface CompletionsRequest extends FileLocationRequest {\n                command: CommandTypes.Completions | CommandTypes.CompletionInfo;\n                arguments: CompletionsRequestArgs;\n            }\n            /**\n             * Arguments for completion details request.\n             */\n            export interface CompletionDetailsRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Names of one or more entries for which to obtain details.\n                 */\n                entryNames: (string | CompletionEntryIdentifier)[];\n            }\n            export interface CompletionEntryIdentifier {\n                name: string;\n                source?: string;\n                data?: unknown;\n            }\n            /**\n             * Completion entry details request; value of command field is\n             * \"completionEntryDetails\".  Given a file location (file, line,\n             * col) and an array of completion entry names return more\n             * detailed information for each completion entry.\n             */\n            export interface CompletionDetailsRequest extends FileLocationRequest {\n                command: CommandTypes.CompletionDetails;\n                arguments: CompletionDetailsRequestArgs;\n            }\n            /** A part of a symbol description that links from a jsdoc @link tag to a declaration */\n            export interface JSDocLinkDisplayPart extends SymbolDisplayPart {\n                /** The location of the declaration that the @link tag links to. */\n                target: FileSpan;\n            }\n            export type CompletionEntry = ChangePropertyTypes<Omit<ts.CompletionEntry, \"symbol\">, {\n                replacementSpan: TextSpan;\n                data: unknown;\n            }>;\n            /**\n             * Additional completion entry details, available on demand\n             */\n            export type CompletionEntryDetails = ChangePropertyTypes<ts.CompletionEntryDetails, {\n                tags: JSDocTagInfo[];\n                codeActions: CodeAction[];\n            }>;\n            /** @deprecated Prefer CompletionInfoResponse, which supports several top-level fields in addition to the array of entries. */\n            export interface CompletionsResponse extends Response {\n                body?: CompletionEntry[];\n            }\n            export interface CompletionInfoResponse extends Response {\n                body?: CompletionInfo;\n            }\n            export type CompletionInfo = ChangePropertyTypes<ts.CompletionInfo, {\n                entries: readonly CompletionEntry[];\n                optionalReplacementSpan: TextSpan;\n            }>;\n            export interface CompletionDetailsResponse extends Response {\n                body?: CompletionEntryDetails[];\n            }\n            /**\n             * Represents a single signature to show in signature help.\n             */\n            export type SignatureHelpItem = ChangePropertyTypes<ts.SignatureHelpItem, {\n                tags: JSDocTagInfo[];\n            }>;\n            /**\n             * Signature help items found in the response of a signature help request.\n             */\n            export interface SignatureHelpItems {\n                /**\n                 * The signature help items.\n                 */\n                items: SignatureHelpItem[];\n                /**\n                 * The span for which signature help should appear on a signature\n                 */\n                applicableSpan: TextSpan;\n                /**\n                 * The item selected in the set of available help items.\n                 */\n                selectedItemIndex: number;\n                /**\n                 * The argument selected in the set of parameters.\n                 */\n                argumentIndex: number;\n                /**\n                 * The argument count\n                 */\n                argumentCount: number;\n            }\n            /**\n             * Arguments of a signature help request.\n             */\n            export interface SignatureHelpRequestArgs extends FileLocationRequestArgs {\n                /**\n                 * Reason why signature help was invoked.\n                 * See each individual possible\n                 */\n                triggerReason?: SignatureHelpTriggerReason;\n            }\n            /**\n             * Signature help request; value of command field is \"signatureHelp\".\n             * Given a file location (file, line, col), return the signature\n             * help.\n             */\n            export interface SignatureHelpRequest extends FileLocationRequest {\n                command: CommandTypes.SignatureHelp;\n                arguments: SignatureHelpRequestArgs;\n            }\n            /**\n             * Response object for a SignatureHelpRequest.\n             */\n            export interface SignatureHelpResponse extends Response {\n                body?: SignatureHelpItems;\n            }\n            export interface InlayHintsRequestArgs extends FileRequestArgs {\n                /**\n                 * Start position of the span.\n                 */\n                start: number;\n                /**\n                 * Length of the span.\n                 */\n                length: number;\n            }\n            export interface InlayHintsRequest extends Request {\n                command: CommandTypes.ProvideInlayHints;\n                arguments: InlayHintsRequestArgs;\n            }\n            export type InlayHintItem = ChangePropertyTypes<ts.InlayHint, {\n                position: Location;\n                displayParts: InlayHintItemDisplayPart[];\n            }>;\n            export interface InlayHintItemDisplayPart {\n                text: string;\n                span?: FileSpan;\n            }\n            export interface InlayHintsResponse extends Response {\n                body?: InlayHintItem[];\n            }\n            export interface MapCodeRequestArgs extends FileRequestArgs {\n                /**\n                 * The files and changes to try and apply/map.\n                 */\n                mapping: MapCodeRequestDocumentMapping;\n            }\n            export interface MapCodeRequestDocumentMapping {\n                /**\n                 * The specific code to map/insert/replace in the file.\n                 */\n                contents: string[];\n                /**\n                 * Areas of \"focus\" to inform the code mapper with. For example, cursor\n                 * location, current selection, viewport, etc. Nested arrays denote\n                 * priority: toplevel arrays are more important than inner arrays, and\n                 * inner array priorities are based on items within that array. Items\n                 * earlier in the arrays have higher priority.\n                 */\n                focusLocations?: TextSpan[][];\n            }\n            export interface MapCodeRequest extends FileRequest {\n                command: CommandTypes.MapCode;\n                arguments: MapCodeRequestArgs;\n            }\n            export interface MapCodeResponse extends Response {\n                body: readonly FileCodeEdits[];\n            }\n            /**\n             * Synchronous request for semantic diagnostics of one file.\n             */\n            export interface SemanticDiagnosticsSyncRequest extends FileRequest {\n                command: CommandTypes.SemanticDiagnosticsSync;\n                arguments: SemanticDiagnosticsSyncRequestArgs;\n            }\n            export interface SemanticDiagnosticsSyncRequestArgs extends FileRequestArgs {\n                includeLinePosition?: boolean;\n            }\n            /**\n             * Response object for synchronous sematic diagnostics request.\n             */\n            export interface SemanticDiagnosticsSyncResponse extends Response {\n                body?: Diagnostic[] | DiagnosticWithLinePosition[];\n            }\n            export interface SuggestionDiagnosticsSyncRequest extends FileRequest {\n                command: CommandTypes.SuggestionDiagnosticsSync;\n                arguments: SuggestionDiagnosticsSyncRequestArgs;\n            }\n            export type SuggestionDiagnosticsSyncRequestArgs = SemanticDiagnosticsSyncRequestArgs;\n            export type SuggestionDiagnosticsSyncResponse = SemanticDiagnosticsSyncResponse;\n            /**\n             * Synchronous request for syntactic diagnostics of one file.\n             */\n            export interface SyntacticDiagnosticsSyncRequest extends FileRequest {\n                command: CommandTypes.SyntacticDiagnosticsSync;\n                arguments: SyntacticDiagnosticsSyncRequestArgs;\n            }\n            export interface SyntacticDiagnosticsSyncRequestArgs extends FileRequestArgs {\n                includeLinePosition?: boolean;\n            }\n            /**\n             * Response object for synchronous syntactic diagnostics request.\n             */\n            export interface SyntacticDiagnosticsSyncResponse extends Response {\n                body?: Diagnostic[] | DiagnosticWithLinePosition[];\n            }\n            /**\n             * Arguments for GeterrForProject request.\n             */\n            export interface GeterrForProjectRequestArgs {\n                /**\n                 * the file requesting project error list\n                 */\n                file: string;\n                /**\n                 * Delay in milliseconds to wait before starting to compute\n                 * errors for the files in the file list\n                 */\n                delay: number;\n            }\n            /**\n             * GeterrForProjectRequest request; value of command field is\n             * \"geterrForProject\". It works similarly with 'Geterr', only\n             * it request for every file in this project.\n             */\n            export interface GeterrForProjectRequest extends Request {\n                command: CommandTypes.GeterrForProject;\n                arguments: GeterrForProjectRequestArgs;\n            }\n            /**\n             * Arguments for geterr messages.\n             */\n            export interface GeterrRequestArgs {\n                /**\n                 * List of file names for which to compute compiler errors.\n                 * The files will be checked in list order.\n                 */\n                files: (string | FileRangesRequestArgs)[];\n                /**\n                 * Delay in milliseconds to wait before starting to compute\n                 * errors for the files in the file list\n                 */\n                delay: number;\n            }\n            /**\n             * Geterr request; value of command field is \"geterr\". Wait for\n             * delay milliseconds and then, if during the wait no change or\n             * reload messages have arrived for the first file in the files\n             * list, get the syntactic errors for the file, field requests,\n             * and then get the semantic errors for the file.  Repeat with a\n             * smaller delay for each subsequent file on the files list.  Best\n             * practice for an editor is to send a file list containing each\n             * file that is currently visible, in most-recently-used order.\n             */\n            export interface GeterrRequest extends Request {\n                command: CommandTypes.Geterr;\n                arguments: GeterrRequestArgs;\n            }\n            export interface FileRange {\n                /**\n                 * The line number for the request (1-based).\n                 */\n                startLine: number;\n                /**\n                 * The character offset (on the line) for the request (1-based).\n                 */\n                startOffset: number;\n                /**\n                 * The line number for the request (1-based).\n                 */\n                endLine: number;\n                /**\n                 * The character offset (on the line) for the request (1-based).\n                 */\n                endOffset: number;\n            }\n            export interface FileRangesRequestArgs extends Pick<FileRequestArgs, \"file\"> {\n                ranges: FileRange[];\n            }\n            export type RequestCompletedEventName = \"requestCompleted\";\n            /**\n             * Event that is sent when server have finished processing request with specified id.\n             */\n            export interface RequestCompletedEvent extends Event {\n                event: RequestCompletedEventName;\n                body: RequestCompletedEventBody;\n            }\n            export interface RequestCompletedEventBody {\n                request_seq: number;\n                performanceData?: PerformanceData;\n            }\n            /**\n             * Item of diagnostic information found in a DiagnosticEvent message.\n             */\n            export interface Diagnostic {\n                /**\n                 * Starting file location at which text applies.\n                 */\n                start: Location;\n                /**\n                 * The last file location at which the text applies.\n                 */\n                end: Location;\n                /**\n                 * Text of diagnostic message.\n                 */\n                text: string;\n                /**\n                 * The category of the diagnostic message, e.g. \"error\", \"warning\", or \"suggestion\".\n                 */\n                category: string;\n                reportsUnnecessary?: {};\n                reportsDeprecated?: {};\n                /**\n                 * Any related spans the diagnostic may have, such as other locations relevant to an error, such as declarartion sites\n                 */\n                relatedInformation?: DiagnosticRelatedInformation[];\n                /**\n                 * The error code of the diagnostic message.\n                 */\n                code?: number;\n                /**\n                 * The name of the plugin reporting the message.\n                 */\n                source?: string;\n            }\n            export interface DiagnosticWithFileName extends Diagnostic {\n                /**\n                 * Name of the file the diagnostic is in\n                 */\n                fileName: string;\n            }\n            /**\n             * Represents additional spans returned with a diagnostic which are relevant to it\n             */\n            export interface DiagnosticRelatedInformation {\n                /**\n                 * The category of the related information message, e.g. \"error\", \"warning\", or \"suggestion\".\n                 */\n                category: string;\n                /**\n                 * The code used ot identify the related information\n                 */\n                code: number;\n                /**\n                 * Text of related or additional information.\n                 */\n                message: string;\n                /**\n                 * Associated location\n                 */\n                span?: FileSpan;\n            }\n            export interface DiagnosticEventBody {\n                /**\n                 * The file for which diagnostic information is reported.\n                 */\n                file: string;\n                /**\n                 * An array of diagnostic information items.\n                 */\n                diagnostics: Diagnostic[];\n                /**\n                 * Spans where the region diagnostic was requested, if this is a region semantic diagnostic event.\n                 */\n                spans?: TextSpan[];\n            }\n            export type DiagnosticEventKind = \"semanticDiag\" | \"syntaxDiag\" | \"suggestionDiag\" | \"regionSemanticDiag\";\n            /**\n             * Event message for DiagnosticEventKind event types.\n             * These events provide syntactic and semantic errors for a file.\n             */\n            export interface DiagnosticEvent extends Event {\n                body?: DiagnosticEventBody;\n                event: DiagnosticEventKind;\n            }\n            export interface ConfigFileDiagnosticEventBody {\n                /**\n                 * The file which trigged the searching and error-checking of the config file\n                 */\n                triggerFile: string;\n                /**\n                 * The name of the found config file.\n                 */\n                configFile: string;\n                /**\n                 * An arry of diagnostic information items for the found config file.\n                 */\n                diagnostics: DiagnosticWithFileName[];\n            }\n            /**\n             * Event message for \"configFileDiag\" event type.\n             * This event provides errors for a found config file.\n             */\n            export interface ConfigFileDiagnosticEvent extends Event {\n                body?: ConfigFileDiagnosticEventBody;\n                event: \"configFileDiag\";\n            }\n            export type ProjectLanguageServiceStateEventName = \"projectLanguageServiceState\";\n            export interface ProjectLanguageServiceStateEvent extends Event {\n                event: ProjectLanguageServiceStateEventName;\n                body?: ProjectLanguageServiceStateEventBody;\n            }\n            export interface ProjectLanguageServiceStateEventBody {\n                /**\n                 * Project name that has changes in the state of language service.\n                 * For configured projects this will be the config file path.\n                 * For external projects this will be the name of the projects specified when project was open.\n                 * For inferred projects this event is not raised.\n                 */\n                projectName: string;\n                /**\n                 * True if language service state switched from disabled to enabled\n                 * and false otherwise.\n                 */\n                languageServiceEnabled: boolean;\n            }\n            export type ProjectsUpdatedInBackgroundEventName = \"projectsUpdatedInBackground\";\n            export interface ProjectsUpdatedInBackgroundEvent extends Event {\n                event: ProjectsUpdatedInBackgroundEventName;\n                body: ProjectsUpdatedInBackgroundEventBody;\n            }\n            export interface ProjectsUpdatedInBackgroundEventBody {\n                /**\n                 * Current set of open files\n                 */\n                openFiles: string[];\n            }\n            export type ProjectLoadingStartEventName = \"projectLoadingStart\";\n            export interface ProjectLoadingStartEvent extends Event {\n                event: ProjectLoadingStartEventName;\n                body: ProjectLoadingStartEventBody;\n            }\n            export interface ProjectLoadingStartEventBody {\n                /** name of the project */\n                projectName: string;\n                /** reason for loading */\n                reason: string;\n            }\n            export type ProjectLoadingFinishEventName = \"projectLoadingFinish\";\n            export interface ProjectLoadingFinishEvent extends Event {\n                event: ProjectLoadingFinishEventName;\n                body: ProjectLoadingFinishEventBody;\n            }\n            export interface ProjectLoadingFinishEventBody {\n                /** name of the project */\n                projectName: string;\n            }\n            export type SurveyReadyEventName = \"surveyReady\";\n            export interface SurveyReadyEvent extends Event {\n                event: SurveyReadyEventName;\n                body: SurveyReadyEventBody;\n            }\n            export interface SurveyReadyEventBody {\n                /** Name of the survey. This is an internal machine- and programmer-friendly name */\n                surveyId: string;\n            }\n            export type LargeFileReferencedEventName = \"largeFileReferenced\";\n            export interface LargeFileReferencedEvent extends Event {\n                event: LargeFileReferencedEventName;\n                body: LargeFileReferencedEventBody;\n            }\n            export interface LargeFileReferencedEventBody {\n                /**\n                 * name of the large file being loaded\n                 */\n                file: string;\n                /**\n                 * size of the file\n                 */\n                fileSize: number;\n                /**\n                 * max file size allowed on the server\n                 */\n                maxFileSize: number;\n            }\n            export type CreateFileWatcherEventName = \"createFileWatcher\";\n            export interface CreateFileWatcherEvent extends Event {\n                readonly event: CreateFileWatcherEventName;\n                readonly body: CreateFileWatcherEventBody;\n            }\n            export interface CreateFileWatcherEventBody {\n                readonly id: number;\n                readonly path: string;\n            }\n            export type CreateDirectoryWatcherEventName = \"createDirectoryWatcher\";\n            export interface CreateDirectoryWatcherEvent extends Event {\n                readonly event: CreateDirectoryWatcherEventName;\n                readonly body: CreateDirectoryWatcherEventBody;\n            }\n            export interface CreateDirectoryWatcherEventBody {\n                readonly id: number;\n                readonly path: string;\n                readonly recursive: boolean;\n                readonly ignoreUpdate?: boolean;\n            }\n            export type CloseFileWatcherEventName = \"closeFileWatcher\";\n            export interface CloseFileWatcherEvent extends Event {\n                readonly event: CloseFileWatcherEventName;\n                readonly body: CloseFileWatcherEventBody;\n            }\n            export interface CloseFileWatcherEventBody {\n                readonly id: number;\n            }\n            /**\n             * Arguments for reload request.\n             */\n            export interface ReloadRequestArgs extends FileRequestArgs {\n                /**\n                 * Name of temporary file from which to reload file\n                 * contents. May be same as file.\n                 */\n                tmpfile: string;\n            }\n            /**\n             * Reload request message; value of command field is \"reload\".\n             * Reload contents of file with name given by the 'file' argument\n             * from temporary file with name given by the 'tmpfile' argument.\n             * The two names can be identical.\n             */\n            export interface ReloadRequest extends FileRequest {\n                command: CommandTypes.Reload;\n                arguments: ReloadRequestArgs;\n            }\n            /**\n             * Response to \"reload\" request. This is just an acknowledgement, so\n             * no body field is required.\n             */\n            export interface ReloadResponse extends Response {\n            }\n            /**\n             * Arguments for saveto request.\n             */\n            export interface SavetoRequestArgs extends FileRequestArgs {\n                /**\n                 * Name of temporary file into which to save server's view of\n                 * file contents.\n                 */\n                tmpfile: string;\n            }\n            /**\n             * Saveto request message; value of command field is \"saveto\".\n             * For debugging purposes, save to a temporaryfile (named by\n             * argument 'tmpfile') the contents of file named by argument\n             * 'file'.  The server does not currently send a response to a\n             * \"saveto\" request.\n             */\n            export interface SavetoRequest extends FileRequest {\n                command: CommandTypes.Saveto;\n                arguments: SavetoRequestArgs;\n            }\n            /**\n             * Arguments for navto request message.\n             */\n            export interface NavtoRequestArgs {\n                /**\n                 * Search term to navigate to from current location; term can\n                 * be '.*' or an identifier prefix.\n                 */\n                searchValue: string;\n                /**\n                 *  Optional limit on the number of items to return.\n                 */\n                maxResultCount?: number;\n                /**\n                 * The file for the request (absolute pathname required).\n                 */\n                file?: string;\n                /**\n                 * Optional flag to indicate we want results for just the current file\n                 * or the entire project.\n                 */\n                currentFileOnly?: boolean;\n                projectFileName?: string;\n            }\n            /**\n             * Navto request message; value of command field is \"navto\".\n             * Return list of objects giving file locations and symbols that\n             * match the search term given in argument 'searchTerm'.  The\n             * context for the search is given by the named file.\n             */\n            export interface NavtoRequest extends Request {\n                command: CommandTypes.Navto;\n                arguments: NavtoRequestArgs;\n            }\n            /**\n             * An item found in a navto response.\n             */\n            export interface NavtoItem extends FileSpan {\n                /**\n                 * The symbol's name.\n                 */\n                name: string;\n                /**\n                 * The symbol's kind (such as 'className' or 'parameterName').\n                 */\n                kind: ScriptElementKind;\n                /**\n                 * exact, substring, or prefix.\n                 */\n                matchKind: string;\n                /**\n                 * If this was a case sensitive or insensitive match.\n                 */\n                isCaseSensitive: boolean;\n                /**\n                 * Optional modifiers for the kind (such as 'public').\n                 */\n                kindModifiers?: string;\n                /**\n                 * Name of symbol's container symbol (if any); for example,\n                 * the class name if symbol is a class member.\n                 */\n                containerName?: string;\n                /**\n                 * Kind of symbol's container symbol (if any).\n                 */\n                containerKind?: ScriptElementKind;\n            }\n            /**\n             * Navto response message. Body is an array of navto items.  Each\n             * item gives a symbol that matched the search term.\n             */\n            export interface NavtoResponse extends Response {\n                body?: NavtoItem[];\n            }\n            /**\n             * Arguments for change request message.\n             */\n            export interface ChangeRequestArgs extends FormatRequestArgs {\n                /**\n                 * Optional string to insert at location (file, line, offset).\n                 */\n                insertString?: string;\n            }\n            /**\n             * Change request message; value of command field is \"change\".\n             * Update the server's view of the file named by argument 'file'.\n             * Server does not currently send a response to a change request.\n             */\n            export interface ChangeRequest extends FileLocationRequest {\n                command: CommandTypes.Change;\n                arguments: ChangeRequestArgs;\n            }\n            /**\n             * Response to \"brace\" request.\n             */\n            export interface BraceResponse extends Response {\n                body?: TextSpan[];\n            }\n            /**\n             * Brace matching request; value of command field is \"brace\".\n             * Return response giving the file locations of matching braces\n             * found in file at location line, offset.\n             */\n            export interface BraceRequest extends FileLocationRequest {\n                command: CommandTypes.Brace;\n            }\n            /**\n             * NavBar items request; value of command field is \"navbar\".\n             * Return response giving the list of navigation bar entries\n             * extracted from the requested file.\n             */\n            export interface NavBarRequest extends FileRequest {\n                command: CommandTypes.NavBar;\n            }\n            /**\n             * NavTree request; value of command field is \"navtree\".\n             * Return response giving the navigation tree of the requested file.\n             */\n            export interface NavTreeRequest extends FileRequest {\n                command: CommandTypes.NavTree;\n            }\n            export interface NavigationBarItem {\n                /**\n                 * The item's display text.\n                 */\n                text: string;\n                /**\n                 * The symbol's kind (such as 'className' or 'parameterName').\n                 */\n                kind: ScriptElementKind;\n                /**\n                 * Optional modifiers for the kind (such as 'public').\n                 */\n                kindModifiers?: string;\n                /**\n                 * The definition locations of the item.\n                 */\n                spans: TextSpan[];\n                /**\n                 * Optional children.\n                 */\n                childItems?: NavigationBarItem[];\n                /**\n                 * Number of levels deep this item should appear.\n                 */\n                indent: number;\n            }\n            /** protocol.NavigationTree is identical to ts.NavigationTree, except using protocol.TextSpan instead of ts.TextSpan */\n            export interface NavigationTree {\n                text: string;\n                kind: ScriptElementKind;\n                kindModifiers: string;\n                spans: TextSpan[];\n                nameSpan: TextSpan | undefined;\n                childItems?: NavigationTree[];\n            }\n            export type TelemetryEventName = \"telemetry\";\n            export interface TelemetryEvent extends Event {\n                event: TelemetryEventName;\n                body: TelemetryEventBody;\n            }\n            export interface TelemetryEventBody {\n                telemetryEventName: string;\n                payload: any;\n            }\n            export type TypesInstallerInitializationFailedEventName = \"typesInstallerInitializationFailed\";\n            export interface TypesInstallerInitializationFailedEvent extends Event {\n                event: TypesInstallerInitializationFailedEventName;\n                body: TypesInstallerInitializationFailedEventBody;\n            }\n            export interface TypesInstallerInitializationFailedEventBody {\n                message: string;\n            }\n            export type TypingsInstalledTelemetryEventName = \"typingsInstalled\";\n            export interface TypingsInstalledTelemetryEventBody extends TelemetryEventBody {\n                telemetryEventName: TypingsInstalledTelemetryEventName;\n                payload: TypingsInstalledTelemetryEventPayload;\n            }\n            export interface TypingsInstalledTelemetryEventPayload {\n                /**\n                 * Comma separated list of installed typing packages\n                 */\n                installedPackages: string;\n                /**\n                 * true if install request succeeded, otherwise - false\n                 */\n                installSuccess: boolean;\n                /**\n                 * version of typings installer\n                 */\n                typingsInstallerVersion: string;\n            }\n            export type BeginInstallTypesEventName = \"beginInstallTypes\";\n            export type EndInstallTypesEventName = \"endInstallTypes\";\n            export interface BeginInstallTypesEvent extends Event {\n                event: BeginInstallTypesEventName;\n                body: BeginInstallTypesEventBody;\n            }\n            export interface EndInstallTypesEvent extends Event {\n                event: EndInstallTypesEventName;\n                body: EndInstallTypesEventBody;\n            }\n            export interface InstallTypesEventBody {\n                /**\n                 * correlation id to match begin and end events\n                 */\n                eventId: number;\n                /**\n                 * list of packages to install\n                 */\n                packages: readonly string[];\n            }\n            export interface BeginInstallTypesEventBody extends InstallTypesEventBody {\n            }\n            export interface EndInstallTypesEventBody extends InstallTypesEventBody {\n                /**\n                 * true if installation succeeded, otherwise false\n                 */\n                success: boolean;\n            }\n            export interface NavBarResponse extends Response {\n                body?: NavigationBarItem[];\n            }\n            export interface NavTreeResponse extends Response {\n                body?: NavigationTree;\n            }\n            export type CallHierarchyItem = ChangePropertyTypes<ts.CallHierarchyItem, {\n                span: TextSpan;\n                selectionSpan: TextSpan;\n            }>;\n            export interface CallHierarchyIncomingCall {\n                from: CallHierarchyItem;\n                fromSpans: TextSpan[];\n            }\n            export interface CallHierarchyOutgoingCall {\n                to: CallHierarchyItem;\n                fromSpans: TextSpan[];\n            }\n            export interface PrepareCallHierarchyRequest extends FileLocationRequest {\n                command: CommandTypes.PrepareCallHierarchy;\n            }\n            export interface PrepareCallHierarchyResponse extends Response {\n                readonly body: CallHierarchyItem | CallHierarchyItem[];\n            }\n            export interface ProvideCallHierarchyIncomingCallsRequest extends FileLocationRequest {\n                command: CommandTypes.ProvideCallHierarchyIncomingCalls;\n            }\n            export interface ProvideCallHierarchyIncomingCallsResponse extends Response {\n                readonly body: CallHierarchyIncomingCall[];\n            }\n            export interface ProvideCallHierarchyOutgoingCallsRequest extends FileLocationRequest {\n                command: CommandTypes.ProvideCallHierarchyOutgoingCalls;\n            }\n            export interface ProvideCallHierarchyOutgoingCallsResponse extends Response {\n                readonly body: CallHierarchyOutgoingCall[];\n            }\n            export enum IndentStyle {\n                None = \"None\",\n                Block = \"Block\",\n                Smart = \"Smart\",\n            }\n            export type EditorSettings = ChangePropertyTypes<ts.EditorSettings, {\n                indentStyle: IndentStyle | ts.IndentStyle;\n            }>;\n            export type FormatCodeSettings = ChangePropertyTypes<ts.FormatCodeSettings, {\n                indentStyle: IndentStyle | ts.IndentStyle;\n            }>;\n            export type CompilerOptions = ChangePropertyTypes<ChangeStringIndexSignature<ts.CompilerOptions, CompilerOptionsValue>, {\n                jsx: JsxEmit | ts.JsxEmit;\n                module: ModuleKind | ts.ModuleKind;\n                moduleResolution: ModuleResolutionKind | ts.ModuleResolutionKind;\n                newLine: NewLineKind | ts.NewLineKind;\n                target: ScriptTarget | ts.ScriptTarget;\n            }>;\n            export enum JsxEmit {\n                None = \"none\",\n                Preserve = \"preserve\",\n                ReactNative = \"react-native\",\n                React = \"react\",\n                ReactJSX = \"react-jsx\",\n                ReactJSXDev = \"react-jsxdev\",\n            }\n            export enum ModuleKind {\n                None = \"none\",\n                CommonJS = \"commonjs\",\n                AMD = \"amd\",\n                UMD = \"umd\",\n                System = \"system\",\n                ES6 = \"es6\",\n                ES2015 = \"es2015\",\n                ES2020 = \"es2020\",\n                ES2022 = \"es2022\",\n                ESNext = \"esnext\",\n                Node16 = \"node16\",\n                Node18 = \"node18\",\n                Node20 = \"node20\",\n                NodeNext = \"nodenext\",\n                Preserve = \"preserve\",\n            }\n            export enum ModuleResolutionKind {\n                Classic = \"classic\",\n                /** @deprecated Renamed to `Node10` */\n                Node = \"node\",\n                /** @deprecated Renamed to `Node10` */\n                NodeJs = \"node\",\n                Node10 = \"node10\",\n                Node16 = \"node16\",\n                NodeNext = \"nodenext\",\n                Bundler = \"bundler\",\n            }\n            export enum NewLineKind {\n                Crlf = \"Crlf\",\n                Lf = \"Lf\",\n            }\n            export enum ScriptTarget {\n                /** @deprecated */\n                ES3 = \"es3\",\n                ES5 = \"es5\",\n                ES6 = \"es6\",\n                ES2015 = \"es2015\",\n                ES2016 = \"es2016\",\n                ES2017 = \"es2017\",\n                ES2018 = \"es2018\",\n                ES2019 = \"es2019\",\n                ES2020 = \"es2020\",\n                ES2021 = \"es2021\",\n                ES2022 = \"es2022\",\n                ES2023 = \"es2023\",\n                ES2024 = \"es2024\",\n                ESNext = \"esnext\",\n                JSON = \"json\",\n                Latest = \"esnext\",\n            }\n        }\n        namespace typingsInstaller {\n            interface Log {\n                isEnabled(): boolean;\n                writeLine(text: string): void;\n            }\n            type RequestCompletedAction = (success: boolean) => void;\n            interface PendingRequest {\n                requestId: number;\n                packageNames: string[];\n                cwd: string;\n                onRequestCompleted: RequestCompletedAction;\n            }\n            abstract class TypingsInstaller {\n                protected readonly installTypingHost: InstallTypingHost;\n                private readonly globalCachePath;\n                private readonly safeListPath;\n                private readonly typesMapLocation;\n                private readonly throttleLimit;\n                protected readonly log: Log;\n                private readonly packageNameToTypingLocation;\n                private readonly missingTypingsSet;\n                private readonly knownCachesSet;\n                private readonly projectWatchers;\n                private safeList;\n                private pendingRunRequests;\n                private installRunCount;\n                private inFlightRequestCount;\n                abstract readonly typesRegistry: Map<string, MapLike<string>>;\n                constructor(installTypingHost: InstallTypingHost, globalCachePath: string, safeListPath: Path, typesMapLocation: Path, throttleLimit: number, log?: Log);\n                closeProject(req: CloseProject): void;\n                private closeWatchers;\n                install(req: DiscoverTypings): void;\n                private initializeSafeList;\n                private processCacheLocation;\n                private filterTypings;\n                protected ensurePackageDirectoryExists(directory: string): void;\n                private installTypings;\n                private ensureDirectoryExists;\n                private watchFiles;\n                private createSetTypings;\n                private installTypingsAsync;\n                private executeWithThrottling;\n                protected abstract installWorker(requestId: number, packageNames: string[], cwd: string, onRequestCompleted: RequestCompletedAction): void;\n                protected abstract sendResponse(response: SetTypings | InvalidateCachedTypings | BeginInstallTypes | EndInstallTypes | WatchTypingLocations): void;\n                protected readonly latestDistTag = \"latest\";\n            }\n        }\n        type ActionSet = \"action::set\";\n        type ActionInvalidate = \"action::invalidate\";\n        type ActionPackageInstalled = \"action::packageInstalled\";\n        type EventTypesRegistry = \"event::typesRegistry\";\n        type EventBeginInstallTypes = \"event::beginInstallTypes\";\n        type EventEndInstallTypes = \"event::endInstallTypes\";\n        type EventInitializationFailed = \"event::initializationFailed\";\n        type ActionWatchTypingLocations = \"action::watchTypingLocations\";\n        interface TypingInstallerResponse {\n            readonly kind: ActionSet | ActionInvalidate | EventTypesRegistry | ActionPackageInstalled | EventBeginInstallTypes | EventEndInstallTypes | EventInitializationFailed | ActionWatchTypingLocations;\n        }\n        interface TypingInstallerRequestWithProjectName {\n            readonly projectName: string;\n        }\n        interface DiscoverTypings extends TypingInstallerRequestWithProjectName {\n            readonly fileNames: string[];\n            readonly projectRootPath: Path;\n            readonly compilerOptions: CompilerOptions;\n            readonly typeAcquisition: TypeAcquisition;\n            readonly unresolvedImports: SortedReadonlyArray<string>;\n            readonly cachePath?: string;\n            readonly kind: \"discover\";\n        }\n        interface CloseProject extends TypingInstallerRequestWithProjectName {\n            readonly kind: \"closeProject\";\n        }\n        interface TypesRegistryRequest {\n            readonly kind: \"typesRegistry\";\n        }\n        interface InstallPackageRequest extends TypingInstallerRequestWithProjectName {\n            readonly kind: \"installPackage\";\n            readonly fileName: Path;\n            readonly packageName: string;\n            readonly projectRootPath: Path;\n            readonly id: number;\n        }\n        interface PackageInstalledResponse extends ProjectResponse {\n            readonly kind: ActionPackageInstalled;\n            readonly id: number;\n            readonly success: boolean;\n            readonly message: string;\n        }\n        interface InitializationFailedResponse extends TypingInstallerResponse {\n            readonly kind: EventInitializationFailed;\n            readonly message: string;\n            readonly stack?: string;\n        }\n        interface ProjectResponse extends TypingInstallerResponse {\n            readonly projectName: string;\n        }\n        interface InvalidateCachedTypings extends ProjectResponse {\n            readonly kind: ActionInvalidate;\n        }\n        interface InstallTypes extends ProjectResponse {\n            readonly kind: EventBeginInstallTypes | EventEndInstallTypes;\n            readonly eventId: number;\n            readonly typingsInstallerVersion: string;\n            readonly packagesToInstall: readonly string[];\n        }\n        interface BeginInstallTypes extends InstallTypes {\n            readonly kind: EventBeginInstallTypes;\n        }\n        interface EndInstallTypes extends InstallTypes {\n            readonly kind: EventEndInstallTypes;\n            readonly installSuccess: boolean;\n        }\n        interface InstallTypingHost extends JsTyping.TypingResolutionHost {\n            useCaseSensitiveFileNames: boolean;\n            writeFile(path: string, content: string): void;\n            createDirectory(path: string): void;\n            getCurrentDirectory?(): string;\n        }\n        interface SetTypings extends ProjectResponse {\n            readonly typeAcquisition: TypeAcquisition;\n            readonly compilerOptions: CompilerOptions;\n            readonly typings: string[];\n            readonly unresolvedImports: SortedReadonlyArray<string>;\n            readonly kind: ActionSet;\n        }\n        interface WatchTypingLocations extends ProjectResponse {\n            /** if files is undefined, retain same set of watchers */\n            readonly files: readonly string[] | undefined;\n            readonly kind: ActionWatchTypingLocations;\n        }\n        interface CompressedData {\n            length: number;\n            compressionKind: string;\n            data: any;\n        }\n        type ModuleImportResult = {\n            module: {};\n            error: undefined;\n        } | {\n            module: undefined;\n            error: {\n                stack?: string;\n                message?: string;\n            };\n        };\n        /** @deprecated Use {@link ModuleImportResult} instead. */\n        type RequireResult = ModuleImportResult;\n        interface ServerHost extends System {\n            watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions): FileWatcher;\n            watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions): FileWatcher;\n            preferNonRecursiveWatch?: boolean;\n            setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;\n            clearTimeout(timeoutId: any): void;\n            setImmediate(callback: (...args: any[]) => void, ...args: any[]): any;\n            clearImmediate(timeoutId: any): void;\n            gc?(): void;\n            trace?(s: string): void;\n            require?(initialPath: string, moduleName: string): ModuleImportResult;\n        }\n        interface InstallPackageOptionsWithProject extends InstallPackageOptions {\n            projectName: string;\n            projectRootPath: Path;\n        }\n        interface ITypingsInstaller {\n            isKnownTypesPackageName(name: string): boolean;\n            installPackage(options: InstallPackageOptionsWithProject): Promise<ApplyCodeActionCommandResult>;\n            enqueueInstallTypingsRequest(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | undefined): void;\n            attach(projectService: ProjectService): void;\n            onProjectClosed(p: Project): void;\n            readonly globalTypingsCacheLocation: string | undefined;\n        }\n        function createInstallTypingsRequest(project: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, cachePath?: string): DiscoverTypings;\n        function toNormalizedPath(fileName: string): NormalizedPath;\n        function normalizedPathToPath(normalizedPath: NormalizedPath, currentDirectory: string, getCanonicalFileName: (f: string) => string): Path;\n        function asNormalizedPath(fileName: string): NormalizedPath;\n        function createNormalizedPathMap<T>(): NormalizedPathMap<T>;\n        function isInferredProjectName(name: string): boolean;\n        function makeInferredProjectName(counter: number): string;\n        function createSortedArray<T>(): SortedArray<T>;\n        enum LogLevel {\n            terse = 0,\n            normal = 1,\n            requestTime = 2,\n            verbose = 3,\n        }\n        const emptyArray: SortedReadonlyArray<never>;\n        interface Logger {\n            close(): void;\n            hasLevel(level: LogLevel): boolean;\n            loggingEnabled(): boolean;\n            perftrc(s: string): void;\n            info(s: string): void;\n            startGroup(): void;\n            endGroup(): void;\n            msg(s: string, type?: Msg): void;\n            getLogFileName(): string | undefined;\n        }\n        enum Msg {\n            Err = \"Err\",\n            Info = \"Info\",\n            Perf = \"Perf\",\n        }\n        namespace Errors {\n            function ThrowNoProject(): never;\n            function ThrowProjectLanguageServiceDisabled(): never;\n            function ThrowProjectDoesNotContainDocument(fileName: string, project: Project): never;\n        }\n        type NormalizedPath = string & {\n            __normalizedPathTag: any;\n        };\n        interface NormalizedPathMap<T> {\n            get(path: NormalizedPath): T | undefined;\n            set(path: NormalizedPath, value: T): void;\n            contains(path: NormalizedPath): boolean;\n            remove(path: NormalizedPath): void;\n        }\n        function isDynamicFileName(fileName: NormalizedPath): boolean;\n        class ScriptInfo {\n            private readonly host;\n            readonly fileName: NormalizedPath;\n            readonly scriptKind: ScriptKind;\n            readonly hasMixedContent: boolean;\n            readonly path: Path;\n            /**\n             * All projects that include this file\n             */\n            readonly containingProjects: Project[];\n            private formatSettings;\n            private preferences;\n            private realpath;\n            constructor(host: ServerHost, fileName: NormalizedPath, scriptKind: ScriptKind, hasMixedContent: boolean, path: Path, initialVersion?: number);\n            isScriptOpen(): boolean;\n            open(newText: string | undefined): void;\n            close(fileExists?: boolean): void;\n            getSnapshot(): IScriptSnapshot;\n            private ensureRealPath;\n            getFormatCodeSettings(): FormatCodeSettings | undefined;\n            getPreferences(): protocol.UserPreferences | undefined;\n            attachToProject(project: Project): boolean;\n            isAttached(project: Project): boolean;\n            detachFromProject(project: Project): void;\n            detachAllProjects(): void;\n            getDefaultProject(): Project;\n            registerFileUpdate(): void;\n            setOptions(formatSettings: FormatCodeSettings, preferences: protocol.UserPreferences | undefined): void;\n            getLatestVersion(): string;\n            saveTo(fileName: string): void;\n            reloadFromFile(tempFileName?: NormalizedPath): boolean;\n            editContent(start: number, end: number, newText: string): void;\n            markContainingProjectsAsDirty(): void;\n            isOrphan(): boolean;\n            /**\n             *  @param line 1 based index\n             */\n            lineToTextSpan(line: number): TextSpan;\n            /**\n             * @param line 1 based index\n             * @param offset 1 based index\n             */\n            lineOffsetToPosition(line: number, offset: number): number;\n            positionToLineOffset(position: number): protocol.Location;\n            isJavaScript(): boolean;\n        }\n        function allRootFilesAreJsOrDts(project: Project): boolean;\n        function allFilesAreJsOrDts(project: Project): boolean;\n        enum ProjectKind {\n            Inferred = 0,\n            Configured = 1,\n            External = 2,\n            AutoImportProvider = 3,\n            Auxiliary = 4,\n        }\n        interface PluginCreateInfo {\n            project: Project;\n            languageService: LanguageService;\n            languageServiceHost: LanguageServiceHost;\n            serverHost: ServerHost;\n            session?: Session<unknown>;\n            config: any;\n        }\n        interface PluginModule {\n            create(createInfo: PluginCreateInfo): LanguageService;\n            getExternalFiles?(proj: Project, updateLevel: ProgramUpdateLevel): string[];\n            onConfigurationChanged?(config: any): void;\n        }\n        interface PluginModuleWithName {\n            name: string;\n            module: PluginModule;\n        }\n        type PluginModuleFactory = (mod: {\n            typescript: typeof ts;\n        }) => PluginModule;\n        abstract class Project implements LanguageServiceHost, ModuleResolutionHost {\n            readonly projectKind: ProjectKind;\n            readonly projectService: ProjectService;\n            private compilerOptions;\n            compileOnSaveEnabled: boolean;\n            protected watchOptions: WatchOptions | undefined;\n            private rootFilesMap;\n            private program;\n            private externalFiles;\n            private missingFilesMap;\n            private generatedFilesMap;\n            private hasAddedorRemovedFiles;\n            private hasAddedOrRemovedSymlinks;\n            protected languageService: LanguageService;\n            languageServiceEnabled: boolean;\n            readonly trace?: (s: string) => void;\n            readonly realpath?: (path: string) => string;\n            private builderState;\n            private updatedFileNames;\n            private lastReportedFileNames;\n            private lastReportedVersion;\n            protected projectErrors: Diagnostic[] | undefined;\n            private typingsCache;\n            private typingWatchers;\n            private readonly cancellationToken;\n            isNonTsProject(): boolean;\n            isJsOnlyProject(): boolean;\n            static resolveModule(moduleName: string, initialDir: string, host: ServerHost, log: (message: string) => void): {} | undefined;\n            private exportMapCache;\n            private changedFilesForExportMapCache;\n            private moduleSpecifierCache;\n            private symlinks;\n            readonly jsDocParsingMode: JSDocParsingMode | undefined;\n            isKnownTypesPackageName(name: string): boolean;\n            installPackage(options: InstallPackageOptions): Promise<ApplyCodeActionCommandResult>;\n            getCompilationSettings(): CompilerOptions;\n            getCompilerOptions(): CompilerOptions;\n            getNewLine(): string;\n            getProjectVersion(): string;\n            getProjectReferences(): readonly ProjectReference[] | undefined;\n            getScriptFileNames(): string[];\n            private getOrCreateScriptInfoAndAttachToProject;\n            getScriptKind(fileName: string): ScriptKind;\n            getScriptVersion(filename: string): string;\n            getScriptSnapshot(filename: string): IScriptSnapshot | undefined;\n            getCancellationToken(): HostCancellationToken;\n            getCurrentDirectory(): string;\n            getDefaultLibFileName(): string;\n            useCaseSensitiveFileNames(): boolean;\n            readDirectory(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];\n            readFile(fileName: string): string | undefined;\n            writeFile(fileName: string, content: string): void;\n            fileExists(file: string): boolean;\n            directoryExists(path: string): boolean;\n            getDirectories(path: string): string[];\n            log(s: string): void;\n            error(s: string): void;\n            private setInternalCompilerOptionsForEmittingJsFiles;\n            /**\n             * Get the errors that dont have any file name associated\n             */\n            getGlobalProjectErrors(): readonly Diagnostic[];\n            /**\n             * Get all the project errors\n             */\n            getAllProjectErrors(): readonly Diagnostic[];\n            setProjectErrors(projectErrors: Diagnostic[] | undefined): void;\n            getLanguageService(ensureSynchronized?: boolean): LanguageService;\n            getCompileOnSaveAffectedFileList(scriptInfo: ScriptInfo): string[];\n            /**\n             * Returns true if emit was conducted\n             */\n            emitFile(scriptInfo: ScriptInfo, writeFile: (path: string, data: string, writeByteOrderMark?: boolean) => void): EmitResult;\n            enableLanguageService(): void;\n            disableLanguageService(lastFileExceededProgramSize?: string): void;\n            getProjectName(): string;\n            protected removeLocalTypingsFromTypeAcquisition(newTypeAcquisition: TypeAcquisition): TypeAcquisition;\n            getExternalFiles(updateLevel?: ProgramUpdateLevel): SortedReadonlyArray<string>;\n            getSourceFile(path: Path): SourceFile | undefined;\n            close(): void;\n            private detachScriptInfoIfNotRoot;\n            isClosed(): boolean;\n            hasRoots(): boolean;\n            getRootFiles(): NormalizedPath[];\n            getRootScriptInfos(): ScriptInfo[];\n            getScriptInfos(): ScriptInfo[];\n            getExcludedFiles(): readonly NormalizedPath[];\n            getFileNames(excludeFilesFromExternalLibraries?: boolean, excludeConfigFiles?: boolean): NormalizedPath[];\n            hasConfigFile(configFilePath: NormalizedPath): boolean;\n            containsScriptInfo(info: ScriptInfo): boolean;\n            containsFile(filename: NormalizedPath, requireOpen?: boolean): boolean;\n            isRoot(info: ScriptInfo): boolean;\n            addRoot(info: ScriptInfo, fileName?: NormalizedPath): void;\n            addMissingFileRoot(fileName: NormalizedPath): void;\n            removeFile(info: ScriptInfo, fileExists: boolean, detachFromProject: boolean): void;\n            registerFileUpdate(fileName: string): void;\n            /**\n             * Updates set of files that contribute to this project\n             * @returns: true if set of files in the project stays the same and false - otherwise.\n             */\n            updateGraph(): boolean;\n            private closeWatchingTypingLocations;\n            private onTypingInstallerWatchInvoke;\n            protected removeExistingTypings(include: string[]): string[];\n            private updateGraphWorker;\n            private detachScriptInfoFromProject;\n            private addMissingFileWatcher;\n            private isWatchedMissingFile;\n            private createGeneratedFileWatcher;\n            private isValidGeneratedFileWatcher;\n            private clearGeneratedFileWatch;\n            getScriptInfoForNormalizedPath(fileName: NormalizedPath): ScriptInfo | undefined;\n            getScriptInfo(uncheckedFileName: string): ScriptInfo | undefined;\n            filesToString(writeProjectFileNames: boolean): string;\n            private filesToStringWorker;\n            setCompilerOptions(compilerOptions: CompilerOptions): void;\n            setTypeAcquisition(newTypeAcquisition: TypeAcquisition | undefined): void;\n            getTypeAcquisition(): TypeAcquisition;\n            protected removeRoot(info: ScriptInfo): void;\n            protected enableGlobalPlugins(options: CompilerOptions): void;\n            protected enablePlugin(pluginConfigEntry: PluginImport, searchPaths: string[]): void;\n            /** Starts a new check for diagnostics. Call this if some file has updated that would cause diagnostics to be changed. */\n            refreshDiagnostics(): void;\n            private isDefaultProjectForOpenFiles;\n        }\n        /**\n         * If a file is opened and no tsconfig (or jsconfig) is found,\n         * the file and its imports/references are put into an InferredProject.\n         */\n        class InferredProject extends Project {\n            private _isJsInferredProject;\n            toggleJsInferredProject(isJsInferredProject: boolean): void;\n            setCompilerOptions(options?: CompilerOptions): void;\n            /** this is canonical project root path */\n            readonly projectRootPath: string | undefined;\n            addRoot(info: ScriptInfo): void;\n            removeRoot(info: ScriptInfo): void;\n            isProjectWithSingleRoot(): boolean;\n            close(): void;\n            getTypeAcquisition(): TypeAcquisition;\n        }\n        class AutoImportProviderProject extends Project {\n            private hostProject;\n            private static readonly maxDependencies;\n            private rootFileNames;\n            updateGraph(): boolean;\n            hasRoots(): boolean;\n            getScriptFileNames(): string[];\n            getLanguageService(): never;\n            getHostForAutoImportProvider(): never;\n            getProjectReferences(): readonly ProjectReference[] | undefined;\n        }\n        /**\n         * If a file is opened, the server will look for a tsconfig (or jsconfig)\n         * and if successful create a ConfiguredProject for it.\n         * Otherwise it will create an InferredProject.\n         */\n        class ConfiguredProject extends Project {\n            readonly canonicalConfigFilePath: NormalizedPath;\n            private projectReferences;\n            private compilerHost?;\n            private releaseParsedConfig;\n            /**\n             * If the project has reload from disk pending, it reloads (and then updates graph as part of that) instead of just updating the graph\n             * @returns: true if set of files in the project stays the same and false - otherwise.\n             */\n            updateGraph(): boolean;\n            getConfigFilePath(): NormalizedPath;\n            getProjectReferences(): readonly ProjectReference[] | undefined;\n            updateReferences(refs: readonly ProjectReference[] | undefined): void;\n            /**\n             * Get the errors that dont have any file name associated\n             */\n            getGlobalProjectErrors(): readonly Diagnostic[];\n            /**\n             * Get all the project errors\n             */\n            getAllProjectErrors(): readonly Diagnostic[];\n            setProjectErrors(projectErrors: Diagnostic[]): void;\n            close(): void;\n            getEffectiveTypeRoots(): string[];\n        }\n        /**\n         * Project whose configuration is handled externally, such as in a '.csproj'.\n         * These are created only if a host explicitly calls `openExternalProject`.\n         */\n        class ExternalProject extends Project {\n            externalProjectName: string;\n            compileOnSaveEnabled: boolean;\n            excludedFiles: readonly NormalizedPath[];\n            updateGraph(): boolean;\n            getExcludedFiles(): readonly NormalizedPath[];\n        }\n        function convertFormatOptions(protocolOptions: protocol.FormatCodeSettings): FormatCodeSettings;\n        function convertCompilerOptions(protocolOptions: protocol.ExternalProjectCompilerOptions): CompilerOptions & protocol.CompileOnSaveMixin;\n        function convertWatchOptions(protocolOptions: protocol.ExternalProjectCompilerOptions, currentDirectory?: string): WatchOptionsAndErrors | undefined;\n        function convertTypeAcquisition(protocolOptions: protocol.InferredProjectCompilerOptions): TypeAcquisition | undefined;\n        function tryConvertScriptKindName(scriptKindName: protocol.ScriptKindName | ScriptKind): ScriptKind;\n        function convertScriptKindName(scriptKindName: protocol.ScriptKindName): ScriptKind;\n        const maxProgramSizeForNonTsFiles: number;\n        const ProjectsUpdatedInBackgroundEvent = \"projectsUpdatedInBackground\";\n        interface ProjectsUpdatedInBackgroundEvent {\n            eventName: typeof ProjectsUpdatedInBackgroundEvent;\n            data: {\n                openFiles: string[];\n            };\n        }\n        const ProjectLoadingStartEvent = \"projectLoadingStart\";\n        interface ProjectLoadingStartEvent {\n            eventName: typeof ProjectLoadingStartEvent;\n            data: {\n                project: Project;\n                reason: string;\n            };\n        }\n        const ProjectLoadingFinishEvent = \"projectLoadingFinish\";\n        interface ProjectLoadingFinishEvent {\n            eventName: typeof ProjectLoadingFinishEvent;\n            data: {\n                project: Project;\n            };\n        }\n        const LargeFileReferencedEvent = \"largeFileReferenced\";\n        interface LargeFileReferencedEvent {\n            eventName: typeof LargeFileReferencedEvent;\n            data: {\n                file: string;\n                fileSize: number;\n                maxFileSize: number;\n            };\n        }\n        const ConfigFileDiagEvent = \"configFileDiag\";\n        interface ConfigFileDiagEvent {\n            eventName: typeof ConfigFileDiagEvent;\n            data: {\n                triggerFile: string;\n                configFileName: string;\n                diagnostics: readonly Diagnostic[];\n            };\n        }\n        const ProjectLanguageServiceStateEvent = \"projectLanguageServiceState\";\n        interface ProjectLanguageServiceStateEvent {\n            eventName: typeof ProjectLanguageServiceStateEvent;\n            data: {\n                project: Project;\n                languageServiceEnabled: boolean;\n            };\n        }\n        const ProjectInfoTelemetryEvent = \"projectInfo\";\n        /** This will be converted to the payload of a protocol.TelemetryEvent in session.defaultEventHandler. */\n        interface ProjectInfoTelemetryEvent {\n            readonly eventName: typeof ProjectInfoTelemetryEvent;\n            readonly data: ProjectInfoTelemetryEventData;\n        }\n        const OpenFileInfoTelemetryEvent = \"openFileInfo\";\n        /**\n         * Info that we may send about a file that was just opened.\n         * Info about a file will only be sent once per session, even if the file changes in ways that might affect the info.\n         * Currently this is only sent for '.js' files.\n         */\n        interface OpenFileInfoTelemetryEvent {\n            readonly eventName: typeof OpenFileInfoTelemetryEvent;\n            readonly data: OpenFileInfoTelemetryEventData;\n        }\n        const CreateFileWatcherEvent: protocol.CreateFileWatcherEventName;\n        interface CreateFileWatcherEvent {\n            readonly eventName: protocol.CreateFileWatcherEventName;\n            readonly data: protocol.CreateFileWatcherEventBody;\n        }\n        const CreateDirectoryWatcherEvent: protocol.CreateDirectoryWatcherEventName;\n        interface CreateDirectoryWatcherEvent {\n            readonly eventName: protocol.CreateDirectoryWatcherEventName;\n            readonly data: protocol.CreateDirectoryWatcherEventBody;\n        }\n        const CloseFileWatcherEvent: protocol.CloseFileWatcherEventName;\n        interface CloseFileWatcherEvent {\n            readonly eventName: protocol.CloseFileWatcherEventName;\n            readonly data: protocol.CloseFileWatcherEventBody;\n        }\n        interface ProjectInfoTelemetryEventData {\n            /** Cryptographically secure hash of project file location. */\n            readonly projectId: string;\n            /** Count of file extensions seen in the project. */\n            readonly fileStats: FileStats;\n            /**\n             * Any compiler options that might contain paths will be taken out.\n             * Enum compiler options will be converted to strings.\n             */\n            readonly compilerOptions: CompilerOptions;\n            readonly extends: boolean | undefined;\n            readonly files: boolean | undefined;\n            readonly include: boolean | undefined;\n            readonly exclude: boolean | undefined;\n            readonly compileOnSave: boolean;\n            readonly typeAcquisition: ProjectInfoTypeAcquisitionData;\n            readonly configFileName: \"tsconfig.json\" | \"jsconfig.json\" | \"other\";\n            readonly projectType: \"external\" | \"configured\";\n            readonly languageServiceEnabled: boolean;\n            /** TypeScript version used by the server. */\n            readonly version: string;\n        }\n        interface OpenFileInfoTelemetryEventData {\n            readonly info: OpenFileInfo;\n        }\n        interface ProjectInfoTypeAcquisitionData {\n            readonly enable: boolean | undefined;\n            readonly include: boolean;\n            readonly exclude: boolean;\n        }\n        interface FileStats {\n            readonly js: number;\n            readonly jsSize?: number;\n            readonly jsx: number;\n            readonly jsxSize?: number;\n            readonly ts: number;\n            readonly tsSize?: number;\n            readonly tsx: number;\n            readonly tsxSize?: number;\n            readonly dts: number;\n            readonly dtsSize?: number;\n            readonly deferred: number;\n            readonly deferredSize?: number;\n        }\n        interface OpenFileInfo {\n            readonly checkJs: boolean;\n        }\n        type ProjectServiceEvent = LargeFileReferencedEvent | ProjectsUpdatedInBackgroundEvent | ProjectLoadingStartEvent | ProjectLoadingFinishEvent | ConfigFileDiagEvent | ProjectLanguageServiceStateEvent | ProjectInfoTelemetryEvent | OpenFileInfoTelemetryEvent | CreateFileWatcherEvent | CreateDirectoryWatcherEvent | CloseFileWatcherEvent;\n        type ProjectServiceEventHandler = (event: ProjectServiceEvent) => void;\n        interface SafeList {\n            [name: string]: {\n                match: RegExp;\n                exclude?: (string | number)[][];\n                types?: string[];\n            };\n        }\n        interface TypesMapFile {\n            typesMap: SafeList;\n            simpleMap: {\n                [libName: string]: string;\n            };\n        }\n        interface HostConfiguration {\n            formatCodeOptions: FormatCodeSettings;\n            preferences: protocol.UserPreferences;\n            hostInfo: string;\n            extraFileExtensions?: FileExtensionInfo[];\n            watchOptions?: WatchOptions;\n        }\n        interface OpenConfiguredProjectResult {\n            configFileName?: NormalizedPath;\n            configFileErrors?: readonly Diagnostic[];\n        }\n        const nullTypingsInstaller: ITypingsInstaller;\n        interface ProjectServiceOptions {\n            host: ServerHost;\n            logger: Logger;\n            cancellationToken: HostCancellationToken;\n            useSingleInferredProject: boolean;\n            useInferredProjectPerProjectRoot: boolean;\n            typingsInstaller?: ITypingsInstaller;\n            eventHandler?: ProjectServiceEventHandler;\n            canUseWatchEvents?: boolean;\n            suppressDiagnosticEvents?: boolean;\n            throttleWaitMilliseconds?: number;\n            globalPlugins?: readonly string[];\n            pluginProbeLocations?: readonly string[];\n            allowLocalPluginLoads?: boolean;\n            typesMapLocation?: string;\n            serverMode?: LanguageServiceMode;\n            session: Session<unknown> | undefined;\n            jsDocParsingMode?: JSDocParsingMode;\n        }\n        interface WatchOptionsAndErrors {\n            watchOptions: WatchOptions;\n            errors: Diagnostic[] | undefined;\n        }\n        class ProjectService {\n            private readonly nodeModulesWatchers;\n            private readonly filenameToScriptInfoVersion;\n            private readonly allJsFilesForOpenFileTelemetry;\n            private readonly externalProjectToConfiguredProjectMap;\n            /**\n             * external projects (configuration and list of root files is not controlled by tsserver)\n             */\n            readonly externalProjects: ExternalProject[];\n            /**\n             * projects built from openFileRoots\n             */\n            readonly inferredProjects: InferredProject[];\n            /**\n             * projects specified by a tsconfig.json file\n             */\n            readonly configuredProjects: Map<string, ConfiguredProject>;\n            /**\n             * Open files: with value being project root path, and key being Path of the file that is open\n             */\n            readonly openFiles: Map<Path, NormalizedPath | undefined>;\n            private readonly configFileForOpenFiles;\n            private rootOfInferredProjects;\n            private readonly openFilesWithNonRootedDiskPath;\n            private compilerOptionsForInferredProjects;\n            private compilerOptionsForInferredProjectsPerProjectRoot;\n            private watchOptionsForInferredProjects;\n            private watchOptionsForInferredProjectsPerProjectRoot;\n            private typeAcquisitionForInferredProjects;\n            private typeAcquisitionForInferredProjectsPerProjectRoot;\n            private readonly projectToSizeMap;\n            private readonly hostConfiguration;\n            private safelist;\n            private readonly legacySafelist;\n            private pendingProjectUpdates;\n            private pendingOpenFileProjectUpdates?;\n            readonly currentDirectory: NormalizedPath;\n            readonly toCanonicalFileName: (f: string) => string;\n            readonly host: ServerHost;\n            readonly logger: Logger;\n            readonly cancellationToken: HostCancellationToken;\n            readonly useSingleInferredProject: boolean;\n            readonly useInferredProjectPerProjectRoot: boolean;\n            readonly typingsInstaller: ITypingsInstaller;\n            private readonly globalCacheLocationDirectoryPath;\n            readonly throttleWaitMilliseconds?: number;\n            private readonly suppressDiagnosticEvents?;\n            readonly globalPlugins: readonly string[];\n            readonly pluginProbeLocations: readonly string[];\n            readonly allowLocalPluginLoads: boolean;\n            readonly typesMapLocation: string | undefined;\n            readonly serverMode: LanguageServiceMode;\n            private readonly seenProjects;\n            private readonly sharedExtendedConfigFileWatchers;\n            private readonly extendedConfigCache;\n            private packageJsonFilesMap;\n            private incompleteCompletionsCache;\n            private performanceEventHandler?;\n            private pendingPluginEnablements?;\n            private currentPluginEnablementPromise?;\n            readonly jsDocParsingMode: JSDocParsingMode | undefined;\n            constructor(opts: ProjectServiceOptions);\n            toPath(fileName: string): Path;\n            private loadTypesMap;\n            updateTypingsForProject(response: SetTypings | InvalidateCachedTypings | PackageInstalledResponse): void;\n            private delayUpdateProjectGraph;\n            private delayUpdateProjectGraphs;\n            setCompilerOptionsForInferredProjects(projectCompilerOptions: protocol.InferredProjectCompilerOptions, projectRootPath?: string): void;\n            findProject(projectName: string): Project | undefined;\n            getDefaultProjectForFile(fileName: NormalizedPath, ensureProject: boolean): Project | undefined;\n            private tryGetDefaultProjectForEnsuringConfiguredProjectForFile;\n            private doEnsureDefaultProjectForFile;\n            getScriptInfoEnsuringProjectsUptoDate(uncheckedFileName: string): ScriptInfo | undefined;\n            private ensureProjectStructuresUptoDate;\n            getFormatCodeOptions(file: NormalizedPath): FormatCodeSettings;\n            getPreferences(file: NormalizedPath): protocol.UserPreferences;\n            getHostFormatCodeOptions(): FormatCodeSettings;\n            getHostPreferences(): protocol.UserPreferences;\n            private onSourceFileChanged;\n            private handleSourceMapProjects;\n            private delayUpdateSourceInfoProjects;\n            private delayUpdateProjectsOfScriptInfoPath;\n            private handleDeletedFile;\n            private watchWildcardDirectory;\n            private onWildCardDirectoryWatcherInvoke;\n            private delayUpdateProjectsFromParsedConfigOnConfigFileChange;\n            private onConfigFileChanged;\n            private removeProject;\n            private assignOrphanScriptInfosToInferredProject;\n            private closeOpenFile;\n            private deleteScriptInfo;\n            private configFileExists;\n            private createConfigFileWatcherForParsedConfig;\n            private ensureConfigFileWatcherForProject;\n            private forEachConfigFileLocation;\n            private getConfigFileNameForFileFromCache;\n            private setConfigFileNameForFileInCache;\n            private printProjects;\n            private getConfiguredProjectByCanonicalConfigFilePath;\n            private findExternalProjectByProjectName;\n            private getFilenameForExceededTotalSizeLimitForNonTsFiles;\n            private createExternalProject;\n            private addFilesToNonInferredProject;\n            private loadConfiguredProject;\n            private updateNonInferredProjectFiles;\n            private updateRootAndOptionsOfNonInferredProject;\n            private reloadFileNamesOfParsedConfig;\n            private setProjectForReload;\n            private clearSemanticCache;\n            private getOrCreateInferredProjectForProjectRootPathIfEnabled;\n            private getOrCreateSingleInferredProjectIfEnabled;\n            private getOrCreateSingleInferredWithoutProjectRoot;\n            private createInferredProject;\n            getScriptInfo(uncheckedFileName: string): ScriptInfo | undefined;\n            private watchClosedScriptInfo;\n            private createNodeModulesWatcher;\n            private watchClosedScriptInfoInNodeModules;\n            private getModifiedTime;\n            private refreshScriptInfo;\n            private refreshScriptInfosInDirectory;\n            private stopWatchingScriptInfo;\n            private getOrCreateScriptInfoNotOpenedByClientForNormalizedPath;\n            getOrCreateScriptInfoForNormalizedPath(fileName: NormalizedPath, openedByClient: boolean, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, hostToQueryFileExistsOn?: {\n                fileExists(path: string): boolean;\n            }): ScriptInfo | undefined;\n            private getOrCreateScriptInfoWorker;\n            /**\n             * This gets the script info for the normalized path. If the path is not rooted disk path then the open script info with project root context is preferred\n             */\n            getScriptInfoForNormalizedPath(fileName: NormalizedPath): ScriptInfo | undefined;\n            getScriptInfoForPath(fileName: Path): ScriptInfo | undefined;\n            private addSourceInfoToSourceMap;\n            private addMissingSourceMapFile;\n            setHostConfiguration(args: protocol.ConfigureRequestArguments): void;\n            private getWatchOptionsFromProjectWatchOptions;\n            closeLog(): void;\n            private sendSourceFileChange;\n            /**\n             * This function rebuilds the project for every file opened by the client\n             * This does not reload contents of open files from disk. But we could do that if needed\n             */\n            reloadProjects(): void;\n            private removeRootOfInferredProjectIfNowPartOfOtherProject;\n            private ensureProjectForOpenFiles;\n            /**\n             * Open file whose contents is managed by the client\n             * @param filename is absolute pathname\n             * @param fileContent is a known version of the file content that is more up to date than the one on disk\n             */\n            openClientFile(fileName: string, fileContent?: string, scriptKind?: ScriptKind, projectRootPath?: string): OpenConfiguredProjectResult;\n            private findExternalProjectContainingOpenScriptInfo;\n            private getOrCreateOpenScriptInfo;\n            private assignProjectToOpenedScriptInfo;\n            private tryFindDefaultConfiguredProjectForOpenScriptInfo;\n            private isMatchedByConfig;\n            private tryFindDefaultConfiguredProjectForOpenScriptInfoOrClosedFileInfo;\n            private tryFindDefaultConfiguredProjectAndLoadAncestorsForOpenScriptInfo;\n            private ensureProjectChildren;\n            private cleanupConfiguredProjects;\n            private cleanupProjectsAndScriptInfos;\n            private tryInvokeWildCardDirectories;\n            openClientFileWithNormalizedPath(fileName: NormalizedPath, fileContent?: string, scriptKind?: ScriptKind, hasMixedContent?: boolean, projectRootPath?: NormalizedPath): OpenConfiguredProjectResult;\n            private removeOrphanScriptInfos;\n            private telemetryOnOpenFile;\n            /**\n             * Close file whose contents is managed by the client\n             * @param filename is absolute pathname\n             */\n            closeClientFile(uncheckedFileName: string): void;\n            private collectChanges;\n            closeExternalProject(uncheckedFileName: string): void;\n            openExternalProjects(projects: protocol.ExternalProject[]): void;\n            private static readonly filenameEscapeRegexp;\n            private static escapeFilenameForRegex;\n            resetSafeList(): void;\n            applySafeList(proj: protocol.ExternalProject): NormalizedPath[];\n            private applySafeListWorker;\n            openExternalProject(proj: protocol.ExternalProject): void;\n            hasDeferredExtension(): boolean;\n            private endEnablePlugin;\n            private enableRequestedPluginsAsync;\n            private enableRequestedPluginsWorker;\n            configurePlugin(args: protocol.ConfigurePluginRequestArguments): void;\n            private watchPackageJsonFile;\n            private onPackageJsonChange;\n        }\n        function formatMessage<T extends protocol.Message>(msg: T, logger: Logger, byteLength: (s: string, encoding: BufferEncoding) => number, newLine: string): string;\n        interface ServerCancellationToken extends HostCancellationToken {\n            setRequest(requestId: number): void;\n            resetRequest(requestId: number): void;\n        }\n        const nullCancellationToken: ServerCancellationToken;\n        /** @deprecated use ts.server.protocol.CommandTypes */\n        type CommandNames = protocol.CommandTypes;\n        /** @deprecated use ts.server.protocol.CommandTypes */\n        const CommandNames: any;\n        type Event = <T extends object>(body: T, eventName: string) => void;\n        interface EventSender {\n            event: Event;\n        }\n        interface SessionOptions {\n            host: ServerHost;\n            cancellationToken: ServerCancellationToken;\n            useSingleInferredProject: boolean;\n            useInferredProjectPerProjectRoot: boolean;\n            typingsInstaller?: ITypingsInstaller;\n            byteLength: (buf: string, encoding?: BufferEncoding) => number;\n            hrtime: (start?: [\n                number,\n                number,\n            ]) => [\n                number,\n                number,\n            ];\n            logger: Logger;\n            /**\n             * If falsy, all events are suppressed.\n             */\n            canUseEvents: boolean;\n            canUseWatchEvents?: boolean;\n            eventHandler?: ProjectServiceEventHandler;\n            /** Has no effect if eventHandler is also specified. */\n            suppressDiagnosticEvents?: boolean;\n            serverMode?: LanguageServiceMode;\n            throttleWaitMilliseconds?: number;\n            noGetErrOnBackgroundUpdate?: boolean;\n            globalPlugins?: readonly string[];\n            pluginProbeLocations?: readonly string[];\n            allowLocalPluginLoads?: boolean;\n            typesMapLocation?: string;\n        }\n        class Session<TMessage = string> implements EventSender {\n            private readonly gcTimer;\n            protected projectService: ProjectService;\n            private changeSeq;\n            private performanceData;\n            private currentRequestId;\n            private errorCheck;\n            protected host: ServerHost;\n            private readonly cancellationToken;\n            protected readonly typingsInstaller: ITypingsInstaller;\n            protected byteLength: (buf: string, encoding?: BufferEncoding) => number;\n            private hrtime;\n            protected logger: Logger;\n            protected canUseEvents: boolean;\n            private suppressDiagnosticEvents?;\n            private eventHandler;\n            private readonly noGetErrOnBackgroundUpdate?;\n            constructor(opts: SessionOptions);\n            private sendRequestCompletedEvent;\n            private addPerformanceData;\n            private addDiagnosticsPerformanceData;\n            private performanceEventHandler;\n            private defaultEventHandler;\n            private projectsUpdatedInBackgroundEvent;\n            logError(err: Error, cmd: string): void;\n            private logErrorWorker;\n            send(msg: protocol.Message): void;\n            protected writeMessage(msg: protocol.Message): void;\n            event<T extends object>(body: T, eventName: string): void;\n            private semanticCheck;\n            private syntacticCheck;\n            private suggestionCheck;\n            private regionSemanticCheck;\n            private sendDiagnosticsEvent;\n            private updateErrorCheck;\n            private cleanProjects;\n            private cleanup;\n            private getEncodedSyntacticClassifications;\n            private getEncodedSemanticClassifications;\n            private getProject;\n            private getConfigFileAndProject;\n            private getConfigFileDiagnostics;\n            private convertToDiagnosticsWithLinePositionFromDiagnosticFile;\n            private getCompilerOptionsDiagnostics;\n            private convertToDiagnosticsWithLinePosition;\n            private getDiagnosticsWorker;\n            private getDefinition;\n            private mapDefinitionInfoLocations;\n            private getDefinitionAndBoundSpan;\n            private findSourceDefinition;\n            private getEmitOutput;\n            private mapJSDocTagInfo;\n            private mapDisplayParts;\n            private mapSignatureHelpItems;\n            private mapDefinitionInfo;\n            private static mapToOriginalLocation;\n            private toFileSpan;\n            private toFileSpanWithContext;\n            private getTypeDefinition;\n            private mapImplementationLocations;\n            private getImplementation;\n            private getSyntacticDiagnosticsSync;\n            private getSemanticDiagnosticsSync;\n            private getSuggestionDiagnosticsSync;\n            private getJsxClosingTag;\n            private getLinkedEditingRange;\n            private getDocumentHighlights;\n            private provideInlayHints;\n            private mapCode;\n            private getCopilotRelatedInfo;\n            private setCompilerOptionsForInferredProjects;\n            private getProjectInfo;\n            private getProjectInfoWorker;\n            private getDefaultConfiguredProjectInfo;\n            private getRenameInfo;\n            private getProjects;\n            private getDefaultProject;\n            private getRenameLocations;\n            private mapRenameInfo;\n            private toSpanGroups;\n            private getReferences;\n            private getFileReferences;\n            private openClientFile;\n            private getPosition;\n            private getPositionInFile;\n            private getFileAndProject;\n            private getFileAndLanguageServiceForSyntacticOperation;\n            private getFileAndProjectWorker;\n            private getOutliningSpans;\n            private getTodoComments;\n            private getDocCommentTemplate;\n            private getSpanOfEnclosingComment;\n            private getIndentation;\n            private getBreakpointStatement;\n            private getNameOrDottedNameSpan;\n            private isValidBraceCompletion;\n            private getQuickInfoWorker;\n            private getFormattingEditsForRange;\n            private getFormattingEditsForRangeFull;\n            private getFormattingEditsForDocumentFull;\n            private getFormattingEditsAfterKeystrokeFull;\n            private getFormattingEditsAfterKeystroke;\n            private getCompletions;\n            private getCompletionEntryDetails;\n            private getCompileOnSaveAffectedFileList;\n            private emitFile;\n            private getSignatureHelpItems;\n            private toPendingErrorCheck;\n            private getDiagnostics;\n            private change;\n            private reload;\n            private saveToTmp;\n            private closeClientFile;\n            private mapLocationNavigationBarItems;\n            private getNavigationBarItems;\n            private toLocationNavigationTree;\n            private getNavigationTree;\n            private getNavigateToItems;\n            private getFullNavigateToItems;\n            private getSupportedCodeFixes;\n            private isLocation;\n            private extractPositionOrRange;\n            private getRange;\n            private getApplicableRefactors;\n            private getEditsForRefactor;\n            private getMoveToRefactoringFileSuggestions;\n            private preparePasteEdits;\n            private getPasteEdits;\n            private organizeImports;\n            private getEditsForFileRename;\n            private getCodeFixes;\n            private getCombinedCodeFix;\n            private applyCodeActionCommand;\n            private getStartAndEndPosition;\n            private mapCodeAction;\n            private mapCodeFixAction;\n            private mapPasteEditsAction;\n            private mapTextChangesToCodeEdits;\n            private mapTextChangeToCodeEdit;\n            private convertTextChangeToCodeEdit;\n            private getBraceMatching;\n            private getDiagnosticsForProject;\n            private configurePlugin;\n            private getSmartSelectionRange;\n            private toggleLineComment;\n            private toggleMultilineComment;\n            private commentSelection;\n            private uncommentSelection;\n            private mapSelectionRange;\n            private getScriptInfoFromProjectService;\n            private toProtocolCallHierarchyItem;\n            private toProtocolCallHierarchyIncomingCall;\n            private toProtocolCallHierarchyOutgoingCall;\n            private prepareCallHierarchy;\n            private provideCallHierarchyIncomingCalls;\n            private provideCallHierarchyOutgoingCalls;\n            getCanonicalFileName(fileName: string): string;\n            exit(): void;\n            private notRequired;\n            private requiredResponse;\n            private handlers;\n            addProtocolHandler(command: string, handler: (request: protocol.Request) => HandlerResponse): void;\n            private setCurrentRequest;\n            private resetCurrentRequest;\n            executeWithRequestId<T>(requestId: number, f: () => T): T;\n            executeCommand(request: protocol.Request): HandlerResponse;\n            onMessage(message: TMessage): void;\n            protected parseMessage(message: TMessage): protocol.Request;\n            protected toStringMessage(message: TMessage): string;\n            private getFormatOptions;\n            private getPreferences;\n            private getHostFormatOptions;\n            private getHostPreferences;\n        }\n        interface HandlerResponse {\n            response?: {};\n            responseRequired?: boolean;\n        }\n    }\n    namespace JsTyping {\n        interface TypingResolutionHost {\n            directoryExists(path: string): boolean;\n            fileExists(fileName: string): boolean;\n            readFile(path: string, encoding?: string): string | undefined;\n            readDirectory(rootDir: string, extensions: readonly string[], excludes: readonly string[] | undefined, includes: readonly string[] | undefined, depth?: number): string[];\n        }\n    }\n    const versionMajorMinor = \"5.9\";\n    /** The version of the TypeScript compiler release */\n    const version: string;\n    /**\n     * Type of objects whose values are all of the same type.\n     * The `in` and `for-in` operators can *not* be safely used,\n     * since `Object.prototype` may be modified by outside code.\n     */\n    interface MapLike<T> {\n        [index: string]: T;\n    }\n    interface SortedReadonlyArray<T> extends ReadonlyArray<T> {\n        \" __sortedArrayBrand\": any;\n    }\n    interface SortedArray<T> extends Array<T> {\n        \" __sortedArrayBrand\": any;\n    }\n    type Path = string & {\n        __pathBrand: any;\n    };\n    interface TextRange {\n        pos: number;\n        end: number;\n    }\n    interface ReadonlyTextRange {\n        readonly pos: number;\n        readonly end: number;\n    }\n    enum SyntaxKind {\n        Unknown = 0,\n        EndOfFileToken = 1,\n        SingleLineCommentTrivia = 2,\n        MultiLineCommentTrivia = 3,\n        NewLineTrivia = 4,\n        WhitespaceTrivia = 5,\n        ShebangTrivia = 6,\n        ConflictMarkerTrivia = 7,\n        NonTextFileMarkerTrivia = 8,\n        NumericLiteral = 9,\n        BigIntLiteral = 10,\n        StringLiteral = 11,\n        JsxText = 12,\n        JsxTextAllWhiteSpaces = 13,\n        RegularExpressionLiteral = 14,\n        NoSubstitutionTemplateLiteral = 15,\n        TemplateHead = 16,\n        TemplateMiddle = 17,\n        TemplateTail = 18,\n        OpenBraceToken = 19,\n        CloseBraceToken = 20,\n        OpenParenToken = 21,\n        CloseParenToken = 22,\n        OpenBracketToken = 23,\n        CloseBracketToken = 24,\n        DotToken = 25,\n        DotDotDotToken = 26,\n        SemicolonToken = 27,\n        CommaToken = 28,\n        QuestionDotToken = 29,\n        LessThanToken = 30,\n        LessThanSlashToken = 31,\n        GreaterThanToken = 32,\n        LessThanEqualsToken = 33,\n        GreaterThanEqualsToken = 34,\n        EqualsEqualsToken = 35,\n        ExclamationEqualsToken = 36,\n        EqualsEqualsEqualsToken = 37,\n        ExclamationEqualsEqualsToken = 38,\n        EqualsGreaterThanToken = 39,\n        PlusToken = 40,\n        MinusToken = 41,\n        AsteriskToken = 42,\n        AsteriskAsteriskToken = 43,\n        SlashToken = 44,\n        PercentToken = 45,\n        PlusPlusToken = 46,\n        MinusMinusToken = 47,\n        LessThanLessThanToken = 48,\n        GreaterThanGreaterThanToken = 49,\n        GreaterThanGreaterThanGreaterThanToken = 50,\n        AmpersandToken = 51,\n        BarToken = 52,\n        CaretToken = 53,\n        ExclamationToken = 54,\n        TildeToken = 55,\n        AmpersandAmpersandToken = 56,\n        BarBarToken = 57,\n        QuestionToken = 58,\n        ColonToken = 59,\n        AtToken = 60,\n        QuestionQuestionToken = 61,\n        /** Only the JSDoc scanner produces BacktickToken. The normal scanner produces NoSubstitutionTemplateLiteral and related kinds. */\n        BacktickToken = 62,\n        /** Only the JSDoc scanner produces HashToken. The normal scanner produces PrivateIdentifier. */\n        HashToken = 63,\n        EqualsToken = 64,\n        PlusEqualsToken = 65,\n        MinusEqualsToken = 66,\n        AsteriskEqualsToken = 67,\n        AsteriskAsteriskEqualsToken = 68,\n        SlashEqualsToken = 69,\n        PercentEqualsToken = 70,\n        LessThanLessThanEqualsToken = 71,\n        GreaterThanGreaterThanEqualsToken = 72,\n        GreaterThanGreaterThanGreaterThanEqualsToken = 73,\n        AmpersandEqualsToken = 74,\n        BarEqualsToken = 75,\n        BarBarEqualsToken = 76,\n        AmpersandAmpersandEqualsToken = 77,\n        QuestionQuestionEqualsToken = 78,\n        CaretEqualsToken = 79,\n        Identifier = 80,\n        PrivateIdentifier = 81,\n        BreakKeyword = 83,\n        CaseKeyword = 84,\n        CatchKeyword = 85,\n        ClassKeyword = 86,\n        ConstKeyword = 87,\n        ContinueKeyword = 88,\n        DebuggerKeyword = 89,\n        DefaultKeyword = 90,\n        DeleteKeyword = 91,\n        DoKeyword = 92,\n        ElseKeyword = 93,\n        EnumKeyword = 94,\n        ExportKeyword = 95,\n        ExtendsKeyword = 96,\n        FalseKeyword = 97,\n        FinallyKeyword = 98,\n        ForKeyword = 99,\n        FunctionKeyword = 100,\n        IfKeyword = 101,\n        ImportKeyword = 102,\n        InKeyword = 103,\n        InstanceOfKeyword = 104,\n        NewKeyword = 105,\n        NullKeyword = 106,\n        ReturnKeyword = 107,\n        SuperKeyword = 108,\n        SwitchKeyword = 109,\n        ThisKeyword = 110,\n        ThrowKeyword = 111,\n        TrueKeyword = 112,\n        TryKeyword = 113,\n        TypeOfKeyword = 114,\n        VarKeyword = 115,\n        VoidKeyword = 116,\n        WhileKeyword = 117,\n        WithKeyword = 118,\n        ImplementsKeyword = 119,\n        InterfaceKeyword = 120,\n        LetKeyword = 121,\n        PackageKeyword = 122,\n        PrivateKeyword = 123,\n        ProtectedKeyword = 124,\n        PublicKeyword = 125,\n        StaticKeyword = 126,\n        YieldKeyword = 127,\n        AbstractKeyword = 128,\n        AccessorKeyword = 129,\n        AsKeyword = 130,\n        AssertsKeyword = 131,\n        AssertKeyword = 132,\n        AnyKeyword = 133,\n        AsyncKeyword = 134,\n        AwaitKeyword = 135,\n        BooleanKeyword = 136,\n        ConstructorKeyword = 137,\n        DeclareKeyword = 138,\n        GetKeyword = 139,\n        InferKeyword = 140,\n        IntrinsicKeyword = 141,\n        IsKeyword = 142,\n        KeyOfKeyword = 143,\n        ModuleKeyword = 144,\n        NamespaceKeyword = 145,\n        NeverKeyword = 146,\n        OutKeyword = 147,\n        ReadonlyKeyword = 148,\n        RequireKeyword = 149,\n        NumberKeyword = 150,\n        ObjectKeyword = 151,\n        SatisfiesKeyword = 152,\n        SetKeyword = 153,\n        StringKeyword = 154,\n        SymbolKeyword = 155,\n        TypeKeyword = 156,\n        UndefinedKeyword = 157,\n        UniqueKeyword = 158,\n        UnknownKeyword = 159,\n        UsingKeyword = 160,\n        FromKeyword = 161,\n        GlobalKeyword = 162,\n        BigIntKeyword = 163,\n        OverrideKeyword = 164,\n        OfKeyword = 165,\n        DeferKeyword = 166,\n        QualifiedName = 167,\n        ComputedPropertyName = 168,\n        TypeParameter = 169,\n        Parameter = 170,\n        Decorator = 171,\n        PropertySignature = 172,\n        PropertyDeclaration = 173,\n        MethodSignature = 174,\n        MethodDeclaration = 175,\n        ClassStaticBlockDeclaration = 176,\n        Constructor = 177,\n        GetAccessor = 178,\n        SetAccessor = 179,\n        CallSignature = 180,\n        ConstructSignature = 181,\n        IndexSignature = 182,\n        TypePredicate = 183,\n        TypeReference = 184,\n        FunctionType = 185,\n        ConstructorType = 186,\n        TypeQuery = 187,\n        TypeLiteral = 188,\n        ArrayType = 189,\n        TupleType = 190,\n        OptionalType = 191,\n        RestType = 192,\n        UnionType = 193,\n        IntersectionType = 194,\n        ConditionalType = 195,\n        InferType = 196,\n        ParenthesizedType = 197,\n        ThisType = 198,\n        TypeOperator = 199,\n        IndexedAccessType = 200,\n        MappedType = 201,\n        LiteralType = 202,\n        NamedTupleMember = 203,\n        TemplateLiteralType = 204,\n        TemplateLiteralTypeSpan = 205,\n        ImportType = 206,\n        ObjectBindingPattern = 207,\n        ArrayBindingPattern = 208,\n        BindingElement = 209,\n        ArrayLiteralExpression = 210,\n        ObjectLiteralExpression = 211,\n        PropertyAccessExpression = 212,\n        ElementAccessExpression = 213,\n        CallExpression = 214,\n        NewExpression = 215,\n        TaggedTemplateExpression = 216,\n        TypeAssertionExpression = 217,\n        ParenthesizedExpression = 218,\n        FunctionExpression = 219,\n        ArrowFunction = 220,\n        DeleteExpression = 221,\n        TypeOfExpression = 222,\n        VoidExpression = 223,\n        AwaitExpression = 224,\n        PrefixUnaryExpression = 225,\n        PostfixUnaryExpression = 226,\n        BinaryExpression = 227,\n        ConditionalExpression = 228,\n        TemplateExpression = 229,\n        YieldExpression = 230,\n        SpreadElement = 231,\n        ClassExpression = 232,\n        OmittedExpression = 233,\n        ExpressionWithTypeArguments = 234,\n        AsExpression = 235,\n        NonNullExpression = 236,\n        MetaProperty = 237,\n        SyntheticExpression = 238,\n        SatisfiesExpression = 239,\n        TemplateSpan = 240,\n        SemicolonClassElement = 241,\n        Block = 242,\n        EmptyStatement = 243,\n        VariableStatement = 244,\n        ExpressionStatement = 245,\n        IfStatement = 246,\n        DoStatement = 247,\n        WhileStatement = 248,\n        ForStatement = 249,\n        ForInStatement = 250,\n        ForOfStatement = 251,\n        ContinueStatement = 252,\n        BreakStatement = 253,\n        ReturnStatement = 254,\n        WithStatement = 255,\n        SwitchStatement = 256,\n        LabeledStatement = 257,\n        ThrowStatement = 258,\n        TryStatement = 259,\n        DebuggerStatement = 260,\n        VariableDeclaration = 261,\n        VariableDeclarationList = 262,\n        FunctionDeclaration = 263,\n        ClassDeclaration = 264,\n        InterfaceDeclaration = 265,\n        TypeAliasDeclaration = 266,\n        EnumDeclaration = 267,\n        ModuleDeclaration = 268,\n        ModuleBlock = 269,\n        CaseBlock = 270,\n        NamespaceExportDeclaration = 271,\n        ImportEqualsDeclaration = 272,\n        ImportDeclaration = 273,\n        ImportClause = 274,\n        NamespaceImport = 275,\n        NamedImports = 276,\n        ImportSpecifier = 277,\n        ExportAssignment = 278,\n        ExportDeclaration = 279,\n        NamedExports = 280,\n        NamespaceExport = 281,\n        ExportSpecifier = 282,\n        MissingDeclaration = 283,\n        ExternalModuleReference = 284,\n        JsxElement = 285,\n        JsxSelfClosingElement = 286,\n        JsxOpeningElement = 287,\n        JsxClosingElement = 288,\n        JsxFragment = 289,\n        JsxOpeningFragment = 290,\n        JsxClosingFragment = 291,\n        JsxAttribute = 292,\n        JsxAttributes = 293,\n        JsxSpreadAttribute = 294,\n        JsxExpression = 295,\n        JsxNamespacedName = 296,\n        CaseClause = 297,\n        DefaultClause = 298,\n        HeritageClause = 299,\n        CatchClause = 300,\n        ImportAttributes = 301,\n        ImportAttribute = 302,\n        /** @deprecated */ AssertClause = 301,\n        /** @deprecated */ AssertEntry = 302,\n        /** @deprecated */ ImportTypeAssertionContainer = 303,\n        PropertyAssignment = 304,\n        ShorthandPropertyAssignment = 305,\n        SpreadAssignment = 306,\n        EnumMember = 307,\n        SourceFile = 308,\n        Bundle = 309,\n        JSDocTypeExpression = 310,\n        JSDocNameReference = 311,\n        JSDocMemberName = 312,\n        JSDocAllType = 313,\n        JSDocUnknownType = 314,\n        JSDocNullableType = 315,\n        JSDocNonNullableType = 316,\n        JSDocOptionalType = 317,\n        JSDocFunctionType = 318,\n        JSDocVariadicType = 319,\n        JSDocNamepathType = 320,\n        JSDoc = 321,\n        /** @deprecated Use SyntaxKind.JSDoc */\n        JSDocComment = 321,\n        JSDocText = 322,\n        JSDocTypeLiteral = 323,\n        JSDocSignature = 324,\n        JSDocLink = 325,\n        JSDocLinkCode = 326,\n        JSDocLinkPlain = 327,\n        JSDocTag = 328,\n        JSDocAugmentsTag = 329,\n        JSDocImplementsTag = 330,\n        JSDocAuthorTag = 331,\n        JSDocDeprecatedTag = 332,\n        JSDocClassTag = 333,\n        JSDocPublicTag = 334,\n        JSDocPrivateTag = 335,\n        JSDocProtectedTag = 336,\n        JSDocReadonlyTag = 337,\n        JSDocOverrideTag = 338,\n        JSDocCallbackTag = 339,\n        JSDocOverloadTag = 340,\n        JSDocEnumTag = 341,\n        JSDocParameterTag = 342,\n        JSDocReturnTag = 343,\n        JSDocThisTag = 344,\n        JSDocTypeTag = 345,\n        JSDocTemplateTag = 346,\n        JSDocTypedefTag = 347,\n        JSDocSeeTag = 348,\n        JSDocPropertyTag = 349,\n        JSDocThrowsTag = 350,\n        JSDocSatisfiesTag = 351,\n        JSDocImportTag = 352,\n        SyntaxList = 353,\n        NotEmittedStatement = 354,\n        NotEmittedTypeElement = 355,\n        PartiallyEmittedExpression = 356,\n        CommaListExpression = 357,\n        SyntheticReferenceExpression = 358,\n        Count = 359,\n        FirstAssignment = 64,\n        LastAssignment = 79,\n        FirstCompoundAssignment = 65,\n        LastCompoundAssignment = 79,\n        FirstReservedWord = 83,\n        LastReservedWord = 118,\n        FirstKeyword = 83,\n        LastKeyword = 166,\n        FirstFutureReservedWord = 119,\n        LastFutureReservedWord = 127,\n        FirstTypeNode = 183,\n        LastTypeNode = 206,\n        FirstPunctuation = 19,\n        LastPunctuation = 79,\n        FirstToken = 0,\n        LastToken = 166,\n        FirstTriviaToken = 2,\n        LastTriviaToken = 7,\n        FirstLiteralToken = 9,\n        LastLiteralToken = 15,\n        FirstTemplateToken = 15,\n        LastTemplateToken = 18,\n        FirstBinaryOperator = 30,\n        LastBinaryOperator = 79,\n        FirstStatement = 244,\n        LastStatement = 260,\n        FirstNode = 167,\n        FirstJSDocNode = 310,\n        LastJSDocNode = 352,\n        FirstJSDocTagNode = 328,\n        LastJSDocTagNode = 352,\n    }\n    type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;\n    type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;\n    type PseudoLiteralSyntaxKind = SyntaxKind.TemplateHead | SyntaxKind.TemplateMiddle | SyntaxKind.TemplateTail;\n    type PunctuationSyntaxKind =\n        | SyntaxKind.OpenBraceToken\n        | SyntaxKind.CloseBraceToken\n        | SyntaxKind.OpenParenToken\n        | SyntaxKind.CloseParenToken\n        | SyntaxKind.OpenBracketToken\n        | SyntaxKind.CloseBracketToken\n        | SyntaxKind.DotToken\n        | SyntaxKind.DotDotDotToken\n        | SyntaxKind.SemicolonToken\n        | SyntaxKind.CommaToken\n        | SyntaxKind.QuestionDotToken\n        | SyntaxKind.LessThanToken\n        | SyntaxKind.LessThanSlashToken\n        | SyntaxKind.GreaterThanToken\n        | SyntaxKind.LessThanEqualsToken\n        | SyntaxKind.GreaterThanEqualsToken\n        | SyntaxKind.EqualsEqualsToken\n        | SyntaxKind.ExclamationEqualsToken\n        | SyntaxKind.EqualsEqualsEqualsToken\n        | SyntaxKind.ExclamationEqualsEqualsToken\n        | SyntaxKind.EqualsGreaterThanToken\n        | SyntaxKind.PlusToken\n        | SyntaxKind.MinusToken\n        | SyntaxKind.AsteriskToken\n        | SyntaxKind.AsteriskAsteriskToken\n        | SyntaxKind.SlashToken\n        | SyntaxKind.PercentToken\n        | SyntaxKind.PlusPlusToken\n        | SyntaxKind.MinusMinusToken\n        | SyntaxKind.LessThanLessThanToken\n        | SyntaxKind.GreaterThanGreaterThanToken\n        | SyntaxKind.GreaterThanGreaterThanGreaterThanToken\n        | SyntaxKind.AmpersandToken\n        | SyntaxKind.BarToken\n        | SyntaxKind.CaretToken\n        | SyntaxKind.ExclamationToken\n        | SyntaxKind.TildeToken\n        | SyntaxKind.AmpersandAmpersandToken\n        | SyntaxKind.AmpersandAmpersandEqualsToken\n        | SyntaxKind.BarBarToken\n        | SyntaxKind.BarBarEqualsToken\n        | SyntaxKind.QuestionQuestionToken\n        | SyntaxKind.QuestionQuestionEqualsToken\n        | SyntaxKind.QuestionToken\n        | SyntaxKind.ColonToken\n        | SyntaxKind.AtToken\n        | SyntaxKind.BacktickToken\n        | SyntaxKind.HashToken\n        | SyntaxKind.EqualsToken\n        | SyntaxKind.PlusEqualsToken\n        | SyntaxKind.MinusEqualsToken\n        | SyntaxKind.AsteriskEqualsToken\n        | SyntaxKind.AsteriskAsteriskEqualsToken\n        | SyntaxKind.SlashEqualsToken\n        | SyntaxKind.PercentEqualsToken\n        | SyntaxKind.LessThanLessThanEqualsToken\n        | SyntaxKind.GreaterThanGreaterThanEqualsToken\n        | SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken\n        | SyntaxKind.AmpersandEqualsToken\n        | SyntaxKind.BarEqualsToken\n        | SyntaxKind.CaretEqualsToken;\n    type KeywordSyntaxKind =\n        | SyntaxKind.AbstractKeyword\n        | SyntaxKind.AccessorKeyword\n        | SyntaxKind.AnyKeyword\n        | SyntaxKind.AsKeyword\n        | SyntaxKind.AssertsKeyword\n        | SyntaxKind.AssertKeyword\n        | SyntaxKind.AsyncKeyword\n        | SyntaxKind.AwaitKeyword\n        | SyntaxKind.BigIntKeyword\n        | SyntaxKind.BooleanKeyword\n        | SyntaxKind.BreakKeyword\n        | SyntaxKind.CaseKeyword\n        | SyntaxKind.CatchKeyword\n        | SyntaxKind.ClassKeyword\n        | SyntaxKind.ConstKeyword\n        | SyntaxKind.ConstructorKeyword\n        | SyntaxKind.ContinueKeyword\n        | SyntaxKind.DebuggerKeyword\n        | SyntaxKind.DeclareKeyword\n        | SyntaxKind.DefaultKeyword\n        | SyntaxKind.DeferKeyword\n        | SyntaxKind.DeleteKeyword\n        | SyntaxKind.DoKeyword\n        | SyntaxKind.ElseKeyword\n        | SyntaxKind.EnumKeyword\n        | SyntaxKind.ExportKeyword\n        | SyntaxKind.ExtendsKeyword\n        | SyntaxKind.FalseKeyword\n        | SyntaxKind.FinallyKeyword\n        | SyntaxKind.ForKeyword\n        | SyntaxKind.FromKeyword\n        | SyntaxKind.FunctionKeyword\n        | SyntaxKind.GetKeyword\n        | SyntaxKind.GlobalKeyword\n        | SyntaxKind.IfKeyword\n        | SyntaxKind.ImplementsKeyword\n        | SyntaxKind.ImportKeyword\n        | SyntaxKind.InferKeyword\n        | SyntaxKind.InKeyword\n        | SyntaxKind.InstanceOfKeyword\n        | SyntaxKind.InterfaceKeyword\n        | SyntaxKind.IntrinsicKeyword\n        | SyntaxKind.IsKeyword\n        | SyntaxKind.KeyOfKeyword\n        | SyntaxKind.LetKeyword\n        | SyntaxKind.ModuleKeyword\n        | SyntaxKind.NamespaceKeyword\n        | SyntaxKind.NeverKeyword\n        | SyntaxKind.NewKeyword\n        | SyntaxKind.NullKeyword\n        | SyntaxKind.NumberKeyword\n        | SyntaxKind.ObjectKeyword\n        | SyntaxKind.OfKeyword\n        | SyntaxKind.PackageKeyword\n        | SyntaxKind.PrivateKeyword\n        | SyntaxKind.ProtectedKeyword\n        | SyntaxKind.PublicKeyword\n        | SyntaxKind.ReadonlyKeyword\n        | SyntaxKind.OutKeyword\n        | SyntaxKind.OverrideKeyword\n        | SyntaxKind.RequireKeyword\n        | SyntaxKind.ReturnKeyword\n        | SyntaxKind.SatisfiesKeyword\n        | SyntaxKind.SetKeyword\n        | SyntaxKind.StaticKeyword\n        | SyntaxKind.StringKeyword\n        | SyntaxKind.SuperKeyword\n        | SyntaxKind.SwitchKeyword\n        | SyntaxKind.SymbolKeyword\n        | SyntaxKind.ThisKeyword\n        | SyntaxKind.ThrowKeyword\n        | SyntaxKind.TrueKeyword\n        | SyntaxKind.TryKeyword\n        | SyntaxKind.TypeKeyword\n        | SyntaxKind.TypeOfKeyword\n        | SyntaxKind.UndefinedKeyword\n        | SyntaxKind.UniqueKeyword\n        | SyntaxKind.UnknownKeyword\n        | SyntaxKind.UsingKeyword\n        | SyntaxKind.VarKeyword\n        | SyntaxKind.VoidKeyword\n        | SyntaxKind.WhileKeyword\n        | SyntaxKind.WithKeyword\n        | SyntaxKind.YieldKeyword;\n    type ModifierSyntaxKind = SyntaxKind.AbstractKeyword | SyntaxKind.AccessorKeyword | SyntaxKind.AsyncKeyword | SyntaxKind.ConstKeyword | SyntaxKind.DeclareKeyword | SyntaxKind.DefaultKeyword | SyntaxKind.ExportKeyword | SyntaxKind.InKeyword | SyntaxKind.PrivateKeyword | SyntaxKind.ProtectedKeyword | SyntaxKind.PublicKeyword | SyntaxKind.ReadonlyKeyword | SyntaxKind.OutKeyword | SyntaxKind.OverrideKeyword | SyntaxKind.StaticKeyword;\n    type KeywordTypeSyntaxKind = SyntaxKind.AnyKeyword | SyntaxKind.BigIntKeyword | SyntaxKind.BooleanKeyword | SyntaxKind.IntrinsicKeyword | SyntaxKind.NeverKeyword | SyntaxKind.NumberKeyword | SyntaxKind.ObjectKeyword | SyntaxKind.StringKeyword | SyntaxKind.SymbolKeyword | SyntaxKind.UndefinedKeyword | SyntaxKind.UnknownKeyword | SyntaxKind.VoidKeyword;\n    type TokenSyntaxKind = SyntaxKind.Unknown | SyntaxKind.EndOfFileToken | TriviaSyntaxKind | LiteralSyntaxKind | PseudoLiteralSyntaxKind | PunctuationSyntaxKind | SyntaxKind.Identifier | KeywordSyntaxKind;\n    type JsxTokenSyntaxKind = SyntaxKind.LessThanSlashToken | SyntaxKind.EndOfFileToken | SyntaxKind.ConflictMarkerTrivia | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.OpenBraceToken | SyntaxKind.LessThanToken;\n    type JSDocSyntaxKind = SyntaxKind.EndOfFileToken | SyntaxKind.WhitespaceTrivia | SyntaxKind.AtToken | SyntaxKind.NewLineTrivia | SyntaxKind.AsteriskToken | SyntaxKind.OpenBraceToken | SyntaxKind.CloseBraceToken | SyntaxKind.LessThanToken | SyntaxKind.GreaterThanToken | SyntaxKind.OpenBracketToken | SyntaxKind.CloseBracketToken | SyntaxKind.OpenParenToken | SyntaxKind.CloseParenToken | SyntaxKind.EqualsToken | SyntaxKind.CommaToken | SyntaxKind.DotToken | SyntaxKind.Identifier | SyntaxKind.BacktickToken | SyntaxKind.HashToken | SyntaxKind.Unknown | KeywordSyntaxKind;\n    enum NodeFlags {\n        None = 0,\n        Let = 1,\n        Const = 2,\n        Using = 4,\n        AwaitUsing = 6,\n        NestedNamespace = 8,\n        Synthesized = 16,\n        Namespace = 32,\n        OptionalChain = 64,\n        ExportContext = 128,\n        ContainsThis = 256,\n        HasImplicitReturn = 512,\n        HasExplicitReturn = 1024,\n        GlobalAugmentation = 2048,\n        HasAsyncFunctions = 4096,\n        DisallowInContext = 8192,\n        YieldContext = 16384,\n        DecoratorContext = 32768,\n        AwaitContext = 65536,\n        DisallowConditionalTypesContext = 131072,\n        ThisNodeHasError = 262144,\n        JavaScriptFile = 524288,\n        ThisNodeOrAnySubNodesHasError = 1048576,\n        HasAggregatedChildData = 2097152,\n        JSDoc = 16777216,\n        JsonFile = 134217728,\n        BlockScoped = 7,\n        Constant = 6,\n        ReachabilityCheckFlags = 1536,\n        ReachabilityAndEmitFlags = 5632,\n        ContextFlags = 101441536,\n        TypeExcludesFlags = 81920,\n    }\n    enum ModifierFlags {\n        None = 0,\n        Public = 1,\n        Private = 2,\n        Protected = 4,\n        Readonly = 8,\n        Override = 16,\n        Export = 32,\n        Abstract = 64,\n        Ambient = 128,\n        Static = 256,\n        Accessor = 512,\n        Async = 1024,\n        Default = 2048,\n        Const = 4096,\n        In = 8192,\n        Out = 16384,\n        Decorator = 32768,\n        Deprecated = 65536,\n        HasComputedJSDocModifiers = 268435456,\n        HasComputedFlags = 536870912,\n        AccessibilityModifier = 7,\n        ParameterPropertyModifier = 31,\n        NonPublicAccessibilityModifier = 6,\n        TypeScriptModifier = 28895,\n        ExportDefault = 2080,\n        All = 131071,\n        Modifier = 98303,\n    }\n    enum JsxFlags {\n        None = 0,\n        /** An element from a named property of the JSX.IntrinsicElements interface */\n        IntrinsicNamedElement = 1,\n        /** An element inferred from the string index signature of the JSX.IntrinsicElements interface */\n        IntrinsicIndexedElement = 2,\n        IntrinsicElement = 3,\n    }\n    interface Node extends ReadonlyTextRange {\n        readonly kind: SyntaxKind;\n        readonly flags: NodeFlags;\n        readonly parent: Node;\n    }\n    interface Node {\n        getSourceFile(): SourceFile;\n        getChildCount(sourceFile?: SourceFile): number;\n        getChildAt(index: number, sourceFile?: SourceFile): Node;\n        getChildren(sourceFile?: SourceFile): readonly Node[];\n        getStart(sourceFile?: SourceFile, includeJsDocComment?: boolean): number;\n        getFullStart(): number;\n        getEnd(): number;\n        getWidth(sourceFile?: SourceFileLike): number;\n        getFullWidth(): number;\n        getLeadingTriviaWidth(sourceFile?: SourceFile): number;\n        getFullText(sourceFile?: SourceFile): string;\n        getText(sourceFile?: SourceFile): string;\n        getFirstToken(sourceFile?: SourceFile): Node | undefined;\n        getLastToken(sourceFile?: SourceFile): Node | undefined;\n        forEachChild<T>(cbNode: (node: Node) => T | undefined, cbNodeArray?: (nodes: NodeArray<Node>) => T | undefined): T | undefined;\n    }\n    interface JSDocContainer extends Node {\n        _jsdocContainerBrand: any;\n    }\n    interface LocalsContainer extends Node {\n        _localsContainerBrand: any;\n    }\n    interface FlowContainer extends Node {\n        _flowContainerBrand: any;\n    }\n    type HasJSDoc =\n        | AccessorDeclaration\n        | ArrowFunction\n        | BinaryExpression\n        | Block\n        | BreakStatement\n        | CallSignatureDeclaration\n        | CaseClause\n        | ClassLikeDeclaration\n        | ClassStaticBlockDeclaration\n        | ConstructorDeclaration\n        | ConstructorTypeNode\n        | ConstructSignatureDeclaration\n        | ContinueStatement\n        | DebuggerStatement\n        | DoStatement\n        | ElementAccessExpression\n        | EmptyStatement\n        | EndOfFileToken\n        | EnumDeclaration\n        | EnumMember\n        | ExportAssignment\n        | ExportDeclaration\n        | ExportSpecifier\n        | ExpressionStatement\n        | ForInStatement\n        | ForOfStatement\n        | ForStatement\n        | FunctionDeclaration\n        | FunctionExpression\n        | FunctionTypeNode\n        | Identifier\n        | IfStatement\n        | ImportDeclaration\n        | ImportEqualsDeclaration\n        | IndexSignatureDeclaration\n        | InterfaceDeclaration\n        | JSDocFunctionType\n        | JSDocSignature\n        | LabeledStatement\n        | MethodDeclaration\n        | MethodSignature\n        | ModuleDeclaration\n        | NamedTupleMember\n        | NamespaceExportDeclaration\n        | ObjectLiteralExpression\n        | ParameterDeclaration\n        | ParenthesizedExpression\n        | PropertyAccessExpression\n        | PropertyAssignment\n        | PropertyDeclaration\n        | PropertySignature\n        | ReturnStatement\n        | SemicolonClassElement\n        | ShorthandPropertyAssignment\n        | SpreadAssignment\n        | SwitchStatement\n        | ThrowStatement\n        | TryStatement\n        | TypeAliasDeclaration\n        | TypeParameterDeclaration\n        | VariableDeclaration\n        | VariableStatement\n        | WhileStatement\n        | WithStatement;\n    type HasType = SignatureDeclaration | VariableDeclaration | ParameterDeclaration | PropertySignature | PropertyDeclaration | TypePredicateNode | ParenthesizedTypeNode | TypeOperatorNode | MappedTypeNode | AssertionExpression | TypeAliasDeclaration | JSDocTypeExpression | JSDocNonNullableType | JSDocNullableType | JSDocOptionalType | JSDocVariadicType;\n    type HasTypeArguments = CallExpression | NewExpression | TaggedTemplateExpression | JsxOpeningElement | JsxSelfClosingElement;\n    type HasInitializer = HasExpressionInitializer | ForStatement | ForInStatement | ForOfStatement | JsxAttribute;\n    type HasExpressionInitializer = VariableDeclaration | ParameterDeclaration | BindingElement | PropertyDeclaration | PropertyAssignment | EnumMember;\n    type HasDecorators = ParameterDeclaration | PropertyDeclaration | MethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ClassExpression | ClassDeclaration;\n    type HasModifiers = TypeParameterDeclaration | ParameterDeclaration | ConstructorTypeNode | PropertySignature | PropertyDeclaration | MethodSignature | MethodDeclaration | ConstructorDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | IndexSignatureDeclaration | FunctionExpression | ArrowFunction | ClassExpression | VariableStatement | FunctionDeclaration | ClassDeclaration | InterfaceDeclaration | TypeAliasDeclaration | EnumDeclaration | ModuleDeclaration | ImportEqualsDeclaration | ImportDeclaration | ExportAssignment | ExportDeclaration;\n    interface NodeArray<T extends Node> extends ReadonlyArray<T>, ReadonlyTextRange {\n        readonly hasTrailingComma: boolean;\n    }\n    interface Token<TKind extends SyntaxKind> extends Node {\n        readonly kind: TKind;\n    }\n    type EndOfFileToken = Token<SyntaxKind.EndOfFileToken> & JSDocContainer;\n    interface PunctuationToken<TKind extends PunctuationSyntaxKind> extends Token<TKind> {\n    }\n    type DotToken = PunctuationToken<SyntaxKind.DotToken>;\n    type DotDotDotToken = PunctuationToken<SyntaxKind.DotDotDotToken>;\n    type QuestionToken = PunctuationToken<SyntaxKind.QuestionToken>;\n    type ExclamationToken = PunctuationToken<SyntaxKind.ExclamationToken>;\n    type ColonToken = PunctuationToken<SyntaxKind.ColonToken>;\n    type EqualsToken = PunctuationToken<SyntaxKind.EqualsToken>;\n    type AmpersandAmpersandEqualsToken = PunctuationToken<SyntaxKind.AmpersandAmpersandEqualsToken>;\n    type BarBarEqualsToken = PunctuationToken<SyntaxKind.BarBarEqualsToken>;\n    type QuestionQuestionEqualsToken = PunctuationToken<SyntaxKind.QuestionQuestionEqualsToken>;\n    type AsteriskToken = PunctuationToken<SyntaxKind.AsteriskToken>;\n    type EqualsGreaterThanToken = PunctuationToken<SyntaxKind.EqualsGreaterThanToken>;\n    type PlusToken = PunctuationToken<SyntaxKind.PlusToken>;\n    type MinusToken = PunctuationToken<SyntaxKind.MinusToken>;\n    type QuestionDotToken = PunctuationToken<SyntaxKind.QuestionDotToken>;\n    interface KeywordToken<TKind extends KeywordSyntaxKind> extends Token<TKind> {\n    }\n    type AssertsKeyword = KeywordToken<SyntaxKind.AssertsKeyword>;\n    type AssertKeyword = KeywordToken<SyntaxKind.AssertKeyword>;\n    type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>;\n    type CaseKeyword = KeywordToken<SyntaxKind.CaseKeyword>;\n    interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> {\n    }\n    type AbstractKeyword = ModifierToken<SyntaxKind.AbstractKeyword>;\n    type AccessorKeyword = ModifierToken<SyntaxKind.AccessorKeyword>;\n    type AsyncKeyword = ModifierToken<SyntaxKind.AsyncKeyword>;\n    type ConstKeyword = ModifierToken<SyntaxKind.ConstKeyword>;\n    type DeclareKeyword = ModifierToken<SyntaxKind.DeclareKeyword>;\n    type DefaultKeyword = ModifierToken<SyntaxKind.DefaultKeyword>;\n    type ExportKeyword = ModifierToken<SyntaxKind.ExportKeyword>;\n    type InKeyword = ModifierToken<SyntaxKind.InKeyword>;\n    type PrivateKeyword = ModifierToken<SyntaxKind.PrivateKeyword>;\n    type ProtectedKeyword = ModifierToken<SyntaxKind.ProtectedKeyword>;\n    type PublicKeyword = ModifierToken<SyntaxKind.PublicKeyword>;\n    type ReadonlyKeyword = ModifierToken<SyntaxKind.ReadonlyKeyword>;\n    type OutKeyword = ModifierToken<SyntaxKind.OutKeyword>;\n    type OverrideKeyword = ModifierToken<SyntaxKind.OverrideKeyword>;\n    type StaticKeyword = ModifierToken<SyntaxKind.StaticKeyword>;\n    type Modifier = AbstractKeyword | AccessorKeyword | AsyncKeyword | ConstKeyword | DeclareKeyword | DefaultKeyword | ExportKeyword | InKeyword | PrivateKeyword | ProtectedKeyword | PublicKeyword | OutKeyword | OverrideKeyword | ReadonlyKeyword | StaticKeyword;\n    type ModifierLike = Modifier | Decorator;\n    type AccessibilityModifier = PublicKeyword | PrivateKeyword | ProtectedKeyword;\n    type ParameterPropertyModifier = AccessibilityModifier | ReadonlyKeyword;\n    type ClassMemberModifier = AccessibilityModifier | ReadonlyKeyword | StaticKeyword | AccessorKeyword;\n    type ModifiersArray = NodeArray<Modifier>;\n    enum GeneratedIdentifierFlags {\n        None = 0,\n        ReservedInNestedScopes = 8,\n        Optimistic = 16,\n        FileLevel = 32,\n        AllowNameSubstitution = 64,\n    }\n    interface Identifier extends PrimaryExpression, Declaration, JSDocContainer, FlowContainer {\n        readonly kind: SyntaxKind.Identifier;\n        /**\n         * Prefer to use `id.unescapedText`. (Note: This is available only in services, not internally to the TypeScript compiler.)\n         * Text of identifier, but if the identifier begins with two underscores, this will begin with three.\n         */\n        readonly escapedText: __String;\n    }\n    interface Identifier {\n        readonly text: string;\n    }\n    interface TransientIdentifier extends Identifier {\n        resolvedSymbol: Symbol;\n    }\n    interface QualifiedName extends Node, FlowContainer {\n        readonly kind: SyntaxKind.QualifiedName;\n        readonly left: EntityName;\n        readonly right: Identifier;\n    }\n    type EntityName = Identifier | QualifiedName;\n    type PropertyName = Identifier | StringLiteral | NoSubstitutionTemplateLiteral | NumericLiteral | ComputedPropertyName | PrivateIdentifier | BigIntLiteral;\n    type MemberName = Identifier | PrivateIdentifier;\n    type DeclarationName = PropertyName | JsxAttributeName | StringLiteralLike | ElementAccessExpression | BindingPattern | EntityNameExpression;\n    interface Declaration extends Node {\n        _declarationBrand: any;\n    }\n    interface NamedDeclaration extends Declaration {\n        readonly name?: DeclarationName;\n    }\n    interface DeclarationStatement extends NamedDeclaration, Statement {\n        readonly name?: Identifier | StringLiteral | NumericLiteral;\n    }\n    interface ComputedPropertyName extends Node {\n        readonly kind: SyntaxKind.ComputedPropertyName;\n        readonly parent: Declaration;\n        readonly expression: Expression;\n    }\n    interface PrivateIdentifier extends PrimaryExpression {\n        readonly kind: SyntaxKind.PrivateIdentifier;\n        readonly escapedText: __String;\n    }\n    interface PrivateIdentifier {\n        readonly text: string;\n    }\n    interface Decorator extends Node {\n        readonly kind: SyntaxKind.Decorator;\n        readonly parent: NamedDeclaration;\n        readonly expression: LeftHandSideExpression;\n    }\n    interface TypeParameterDeclaration extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.TypeParameter;\n        readonly parent: DeclarationWithTypeParameterChildren | InferTypeNode;\n        readonly modifiers?: NodeArray<Modifier>;\n        readonly name: Identifier;\n        /** Note: Consider calling `getEffectiveConstraintOfTypeParameter` */\n        readonly constraint?: TypeNode;\n        readonly default?: TypeNode;\n        expression?: Expression;\n    }\n    interface SignatureDeclarationBase extends NamedDeclaration, JSDocContainer {\n        readonly kind: SignatureDeclaration[\"kind\"];\n        readonly name?: PropertyName;\n        readonly typeParameters?: NodeArray<TypeParameterDeclaration> | undefined;\n        readonly parameters: NodeArray<ParameterDeclaration>;\n        readonly type?: TypeNode | undefined;\n    }\n    type SignatureDeclaration = CallSignatureDeclaration | ConstructSignatureDeclaration | MethodSignature | IndexSignatureDeclaration | FunctionTypeNode | ConstructorTypeNode | JSDocFunctionType | FunctionDeclaration | MethodDeclaration | ConstructorDeclaration | AccessorDeclaration | FunctionExpression | ArrowFunction;\n    interface CallSignatureDeclaration extends SignatureDeclarationBase, TypeElement, LocalsContainer {\n        readonly kind: SyntaxKind.CallSignature;\n    }\n    interface ConstructSignatureDeclaration extends SignatureDeclarationBase, TypeElement, LocalsContainer {\n        readonly kind: SyntaxKind.ConstructSignature;\n    }\n    type BindingName = Identifier | BindingPattern;\n    interface VariableDeclaration extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.VariableDeclaration;\n        readonly parent: VariableDeclarationList | CatchClause;\n        readonly name: BindingName;\n        readonly exclamationToken?: ExclamationToken;\n        readonly type?: TypeNode;\n        readonly initializer?: Expression;\n    }\n    interface VariableDeclarationList extends Node {\n        readonly kind: SyntaxKind.VariableDeclarationList;\n        readonly parent: VariableStatement | ForStatement | ForOfStatement | ForInStatement;\n        readonly declarations: NodeArray<VariableDeclaration>;\n    }\n    interface ParameterDeclaration extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.Parameter;\n        readonly parent: SignatureDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly dotDotDotToken?: DotDotDotToken;\n        readonly name: BindingName;\n        readonly questionToken?: QuestionToken;\n        readonly type?: TypeNode;\n        readonly initializer?: Expression;\n    }\n    interface BindingElement extends NamedDeclaration, FlowContainer {\n        readonly kind: SyntaxKind.BindingElement;\n        readonly parent: BindingPattern;\n        readonly propertyName?: PropertyName;\n        readonly dotDotDotToken?: DotDotDotToken;\n        readonly name: BindingName;\n        readonly initializer?: Expression;\n    }\n    interface PropertySignature extends TypeElement, JSDocContainer {\n        readonly kind: SyntaxKind.PropertySignature;\n        readonly parent: TypeLiteralNode | InterfaceDeclaration;\n        readonly modifiers?: NodeArray<Modifier>;\n        readonly name: PropertyName;\n        readonly questionToken?: QuestionToken;\n        readonly type?: TypeNode;\n    }\n    interface PropertyDeclaration extends ClassElement, JSDocContainer {\n        readonly kind: SyntaxKind.PropertyDeclaration;\n        readonly parent: ClassLikeDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: PropertyName;\n        readonly questionToken?: QuestionToken;\n        readonly exclamationToken?: ExclamationToken;\n        readonly type?: TypeNode;\n        readonly initializer?: Expression;\n    }\n    interface AutoAccessorPropertyDeclaration extends PropertyDeclaration {\n        _autoAccessorBrand: any;\n    }\n    interface ObjectLiteralElement extends NamedDeclaration {\n        _objectLiteralBrand: any;\n        readonly name?: PropertyName;\n    }\n    /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */\n    type ObjectLiteralElementLike = PropertyAssignment | ShorthandPropertyAssignment | SpreadAssignment | MethodDeclaration | AccessorDeclaration;\n    interface PropertyAssignment extends ObjectLiteralElement, JSDocContainer {\n        readonly kind: SyntaxKind.PropertyAssignment;\n        readonly parent: ObjectLiteralExpression;\n        readonly name: PropertyName;\n        readonly initializer: Expression;\n    }\n    interface ShorthandPropertyAssignment extends ObjectLiteralElement, JSDocContainer {\n        readonly kind: SyntaxKind.ShorthandPropertyAssignment;\n        readonly parent: ObjectLiteralExpression;\n        readonly name: Identifier;\n        readonly equalsToken?: EqualsToken;\n        readonly objectAssignmentInitializer?: Expression;\n    }\n    interface SpreadAssignment extends ObjectLiteralElement, JSDocContainer {\n        readonly kind: SyntaxKind.SpreadAssignment;\n        readonly parent: ObjectLiteralExpression;\n        readonly expression: Expression;\n    }\n    type VariableLikeDeclaration = VariableDeclaration | ParameterDeclaration | BindingElement | PropertyDeclaration | PropertyAssignment | PropertySignature | JsxAttribute | ShorthandPropertyAssignment | EnumMember | JSDocPropertyTag | JSDocParameterTag;\n    interface ObjectBindingPattern extends Node {\n        readonly kind: SyntaxKind.ObjectBindingPattern;\n        readonly parent: VariableDeclaration | ParameterDeclaration | BindingElement;\n        readonly elements: NodeArray<BindingElement>;\n    }\n    interface ArrayBindingPattern extends Node {\n        readonly kind: SyntaxKind.ArrayBindingPattern;\n        readonly parent: VariableDeclaration | ParameterDeclaration | BindingElement;\n        readonly elements: NodeArray<ArrayBindingElement>;\n    }\n    type BindingPattern = ObjectBindingPattern | ArrayBindingPattern;\n    type ArrayBindingElement = BindingElement | OmittedExpression;\n    /**\n     * Several node kinds share function-like features such as a signature,\n     * a name, and a body. These nodes should extend FunctionLikeDeclarationBase.\n     * Examples:\n     * - FunctionDeclaration\n     * - MethodDeclaration\n     * - AccessorDeclaration\n     */\n    interface FunctionLikeDeclarationBase extends SignatureDeclarationBase {\n        _functionLikeDeclarationBrand: any;\n        readonly asteriskToken?: AsteriskToken | undefined;\n        readonly questionToken?: QuestionToken | undefined;\n        readonly exclamationToken?: ExclamationToken | undefined;\n        readonly body?: Block | Expression | undefined;\n    }\n    type FunctionLikeDeclaration = FunctionDeclaration | MethodDeclaration | GetAccessorDeclaration | SetAccessorDeclaration | ConstructorDeclaration | FunctionExpression | ArrowFunction;\n    /** @deprecated Use SignatureDeclaration */\n    type FunctionLike = SignatureDeclaration;\n    interface FunctionDeclaration extends FunctionLikeDeclarationBase, DeclarationStatement, LocalsContainer {\n        readonly kind: SyntaxKind.FunctionDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name?: Identifier;\n        readonly body?: FunctionBody;\n    }\n    interface MethodSignature extends SignatureDeclarationBase, TypeElement, LocalsContainer {\n        readonly kind: SyntaxKind.MethodSignature;\n        readonly parent: TypeLiteralNode | InterfaceDeclaration;\n        readonly modifiers?: NodeArray<Modifier>;\n        readonly name: PropertyName;\n    }\n    interface MethodDeclaration extends FunctionLikeDeclarationBase, ClassElement, ObjectLiteralElement, JSDocContainer, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.MethodDeclaration;\n        readonly parent: ClassLikeDeclaration | ObjectLiteralExpression;\n        readonly modifiers?: NodeArray<ModifierLike> | undefined;\n        readonly name: PropertyName;\n        readonly body?: FunctionBody | undefined;\n    }\n    interface ConstructorDeclaration extends FunctionLikeDeclarationBase, ClassElement, JSDocContainer, LocalsContainer {\n        readonly kind: SyntaxKind.Constructor;\n        readonly parent: ClassLikeDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike> | undefined;\n        readonly body?: FunctionBody | undefined;\n    }\n    /** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements. */\n    interface SemicolonClassElement extends ClassElement, JSDocContainer {\n        readonly kind: SyntaxKind.SemicolonClassElement;\n        readonly parent: ClassLikeDeclaration;\n    }\n    interface GetAccessorDeclaration extends FunctionLikeDeclarationBase, ClassElement, TypeElement, ObjectLiteralElement, JSDocContainer, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.GetAccessor;\n        readonly parent: ClassLikeDeclaration | ObjectLiteralExpression | TypeLiteralNode | InterfaceDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: PropertyName;\n        readonly body?: FunctionBody;\n    }\n    interface SetAccessorDeclaration extends FunctionLikeDeclarationBase, ClassElement, TypeElement, ObjectLiteralElement, JSDocContainer, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.SetAccessor;\n        readonly parent: ClassLikeDeclaration | ObjectLiteralExpression | TypeLiteralNode | InterfaceDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: PropertyName;\n        readonly body?: FunctionBody;\n    }\n    type AccessorDeclaration = GetAccessorDeclaration | SetAccessorDeclaration;\n    interface IndexSignatureDeclaration extends SignatureDeclarationBase, ClassElement, TypeElement, LocalsContainer {\n        readonly kind: SyntaxKind.IndexSignature;\n        readonly parent: ObjectTypeDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly type: TypeNode;\n    }\n    interface ClassStaticBlockDeclaration extends ClassElement, JSDocContainer, LocalsContainer {\n        readonly kind: SyntaxKind.ClassStaticBlockDeclaration;\n        readonly parent: ClassDeclaration | ClassExpression;\n        readonly body: Block;\n    }\n    interface TypeNode extends Node {\n        _typeNodeBrand: any;\n    }\n    interface KeywordTypeNode<TKind extends KeywordTypeSyntaxKind = KeywordTypeSyntaxKind> extends KeywordToken<TKind>, TypeNode {\n        readonly kind: TKind;\n    }\n    /** @deprecated */\n    interface ImportTypeAssertionContainer extends Node {\n        readonly kind: SyntaxKind.ImportTypeAssertionContainer;\n        readonly parent: ImportTypeNode;\n        /** @deprecated */ readonly assertClause: AssertClause;\n        readonly multiLine?: boolean;\n    }\n    interface ImportTypeNode extends NodeWithTypeArguments {\n        readonly kind: SyntaxKind.ImportType;\n        readonly isTypeOf: boolean;\n        readonly argument: TypeNode;\n        /** @deprecated */ readonly assertions?: ImportTypeAssertionContainer;\n        readonly attributes?: ImportAttributes;\n        readonly qualifier?: EntityName;\n    }\n    interface ThisTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.ThisType;\n    }\n    type FunctionOrConstructorTypeNode = FunctionTypeNode | ConstructorTypeNode;\n    interface FunctionOrConstructorTypeNodeBase extends TypeNode, SignatureDeclarationBase {\n        readonly kind: SyntaxKind.FunctionType | SyntaxKind.ConstructorType;\n        readonly type: TypeNode;\n    }\n    interface FunctionTypeNode extends FunctionOrConstructorTypeNodeBase, LocalsContainer {\n        readonly kind: SyntaxKind.FunctionType;\n    }\n    interface ConstructorTypeNode extends FunctionOrConstructorTypeNodeBase, LocalsContainer {\n        readonly kind: SyntaxKind.ConstructorType;\n        readonly modifiers?: NodeArray<Modifier>;\n    }\n    interface NodeWithTypeArguments extends TypeNode {\n        readonly typeArguments?: NodeArray<TypeNode>;\n    }\n    type TypeReferenceType = TypeReferenceNode | ExpressionWithTypeArguments;\n    interface TypeReferenceNode extends NodeWithTypeArguments {\n        readonly kind: SyntaxKind.TypeReference;\n        readonly typeName: EntityName;\n    }\n    interface TypePredicateNode extends TypeNode {\n        readonly kind: SyntaxKind.TypePredicate;\n        readonly parent: SignatureDeclaration | JSDocTypeExpression;\n        readonly assertsModifier?: AssertsKeyword;\n        readonly parameterName: Identifier | ThisTypeNode;\n        readonly type?: TypeNode;\n    }\n    interface TypeQueryNode extends NodeWithTypeArguments {\n        readonly kind: SyntaxKind.TypeQuery;\n        readonly exprName: EntityName;\n    }\n    interface TypeLiteralNode extends TypeNode, Declaration {\n        readonly kind: SyntaxKind.TypeLiteral;\n        readonly members: NodeArray<TypeElement>;\n    }\n    interface ArrayTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.ArrayType;\n        readonly elementType: TypeNode;\n    }\n    interface TupleTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.TupleType;\n        readonly elements: NodeArray<TypeNode | NamedTupleMember>;\n    }\n    interface NamedTupleMember extends TypeNode, Declaration, JSDocContainer {\n        readonly kind: SyntaxKind.NamedTupleMember;\n        readonly dotDotDotToken?: Token<SyntaxKind.DotDotDotToken>;\n        readonly name: Identifier;\n        readonly questionToken?: Token<SyntaxKind.QuestionToken>;\n        readonly type: TypeNode;\n    }\n    interface OptionalTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.OptionalType;\n        readonly type: TypeNode;\n    }\n    interface RestTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.RestType;\n        readonly type: TypeNode;\n    }\n    type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;\n    interface UnionTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.UnionType;\n        readonly types: NodeArray<TypeNode>;\n    }\n    interface IntersectionTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.IntersectionType;\n        readonly types: NodeArray<TypeNode>;\n    }\n    interface ConditionalTypeNode extends TypeNode, LocalsContainer {\n        readonly kind: SyntaxKind.ConditionalType;\n        readonly checkType: TypeNode;\n        readonly extendsType: TypeNode;\n        readonly trueType: TypeNode;\n        readonly falseType: TypeNode;\n    }\n    interface InferTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.InferType;\n        readonly typeParameter: TypeParameterDeclaration;\n    }\n    interface ParenthesizedTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.ParenthesizedType;\n        readonly type: TypeNode;\n    }\n    interface TypeOperatorNode extends TypeNode {\n        readonly kind: SyntaxKind.TypeOperator;\n        readonly operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword;\n        readonly type: TypeNode;\n    }\n    interface IndexedAccessTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.IndexedAccessType;\n        readonly objectType: TypeNode;\n        readonly indexType: TypeNode;\n    }\n    interface MappedTypeNode extends TypeNode, Declaration, LocalsContainer {\n        readonly kind: SyntaxKind.MappedType;\n        readonly readonlyToken?: ReadonlyKeyword | PlusToken | MinusToken;\n        readonly typeParameter: TypeParameterDeclaration;\n        readonly nameType?: TypeNode;\n        readonly questionToken?: QuestionToken | PlusToken | MinusToken;\n        readonly type?: TypeNode;\n        /** Used only to produce grammar errors */\n        readonly members?: NodeArray<TypeElement>;\n    }\n    interface LiteralTypeNode extends TypeNode {\n        readonly kind: SyntaxKind.LiteralType;\n        readonly literal: NullLiteral | BooleanLiteral | LiteralExpression | PrefixUnaryExpression;\n    }\n    interface StringLiteral extends LiteralExpression, Declaration {\n        readonly kind: SyntaxKind.StringLiteral;\n    }\n    type StringLiteralLike = StringLiteral | NoSubstitutionTemplateLiteral;\n    type PropertyNameLiteral = Identifier | StringLiteralLike | NumericLiteral | JsxNamespacedName | BigIntLiteral;\n    interface TemplateLiteralTypeNode extends TypeNode {\n        kind: SyntaxKind.TemplateLiteralType;\n        readonly head: TemplateHead;\n        readonly templateSpans: NodeArray<TemplateLiteralTypeSpan>;\n    }\n    interface TemplateLiteralTypeSpan extends TypeNode {\n        readonly kind: SyntaxKind.TemplateLiteralTypeSpan;\n        readonly parent: TemplateLiteralTypeNode;\n        readonly type: TypeNode;\n        readonly literal: TemplateMiddle | TemplateTail;\n    }\n    interface Expression extends Node {\n        _expressionBrand: any;\n    }\n    interface OmittedExpression extends Expression {\n        readonly kind: SyntaxKind.OmittedExpression;\n    }\n    interface PartiallyEmittedExpression extends LeftHandSideExpression {\n        readonly kind: SyntaxKind.PartiallyEmittedExpression;\n        readonly expression: Expression;\n    }\n    interface UnaryExpression extends Expression {\n        _unaryExpressionBrand: any;\n    }\n    /** Deprecated, please use UpdateExpression */\n    type IncrementExpression = UpdateExpression;\n    interface UpdateExpression extends UnaryExpression {\n        _updateExpressionBrand: any;\n    }\n    type PrefixUnaryOperator = SyntaxKind.PlusPlusToken | SyntaxKind.MinusMinusToken | SyntaxKind.PlusToken | SyntaxKind.MinusToken | SyntaxKind.TildeToken | SyntaxKind.ExclamationToken;\n    interface PrefixUnaryExpression extends UpdateExpression {\n        readonly kind: SyntaxKind.PrefixUnaryExpression;\n        readonly operator: PrefixUnaryOperator;\n        readonly operand: UnaryExpression;\n    }\n    type PostfixUnaryOperator = SyntaxKind.PlusPlusToken | SyntaxKind.MinusMinusToken;\n    interface PostfixUnaryExpression extends UpdateExpression {\n        readonly kind: SyntaxKind.PostfixUnaryExpression;\n        readonly operand: LeftHandSideExpression;\n        readonly operator: PostfixUnaryOperator;\n    }\n    interface LeftHandSideExpression extends UpdateExpression {\n        _leftHandSideExpressionBrand: any;\n    }\n    interface MemberExpression extends LeftHandSideExpression {\n        _memberExpressionBrand: any;\n    }\n    interface PrimaryExpression extends MemberExpression {\n        _primaryExpressionBrand: any;\n    }\n    interface NullLiteral extends PrimaryExpression {\n        readonly kind: SyntaxKind.NullKeyword;\n    }\n    interface TrueLiteral extends PrimaryExpression {\n        readonly kind: SyntaxKind.TrueKeyword;\n    }\n    interface FalseLiteral extends PrimaryExpression {\n        readonly kind: SyntaxKind.FalseKeyword;\n    }\n    type BooleanLiteral = TrueLiteral | FalseLiteral;\n    interface ThisExpression extends PrimaryExpression, FlowContainer {\n        readonly kind: SyntaxKind.ThisKeyword;\n    }\n    interface SuperExpression extends PrimaryExpression, FlowContainer {\n        readonly kind: SyntaxKind.SuperKeyword;\n    }\n    interface ImportExpression extends PrimaryExpression {\n        readonly kind: SyntaxKind.ImportKeyword;\n    }\n    interface DeleteExpression extends UnaryExpression {\n        readonly kind: SyntaxKind.DeleteExpression;\n        readonly expression: UnaryExpression;\n    }\n    interface TypeOfExpression extends UnaryExpression {\n        readonly kind: SyntaxKind.TypeOfExpression;\n        readonly expression: UnaryExpression;\n    }\n    interface VoidExpression extends UnaryExpression {\n        readonly kind: SyntaxKind.VoidExpression;\n        readonly expression: UnaryExpression;\n    }\n    interface AwaitExpression extends UnaryExpression {\n        readonly kind: SyntaxKind.AwaitExpression;\n        readonly expression: UnaryExpression;\n    }\n    interface YieldExpression extends Expression {\n        readonly kind: SyntaxKind.YieldExpression;\n        readonly asteriskToken?: AsteriskToken;\n        readonly expression?: Expression;\n    }\n    interface SyntheticExpression extends Expression {\n        readonly kind: SyntaxKind.SyntheticExpression;\n        readonly isSpread: boolean;\n        readonly type: Type;\n        readonly tupleNameSource?: ParameterDeclaration | NamedTupleMember;\n    }\n    type ExponentiationOperator = SyntaxKind.AsteriskAsteriskToken;\n    type MultiplicativeOperator = SyntaxKind.AsteriskToken | SyntaxKind.SlashToken | SyntaxKind.PercentToken;\n    type MultiplicativeOperatorOrHigher = ExponentiationOperator | MultiplicativeOperator;\n    type AdditiveOperator = SyntaxKind.PlusToken | SyntaxKind.MinusToken;\n    type AdditiveOperatorOrHigher = MultiplicativeOperatorOrHigher | AdditiveOperator;\n    type ShiftOperator = SyntaxKind.LessThanLessThanToken | SyntaxKind.GreaterThanGreaterThanToken | SyntaxKind.GreaterThanGreaterThanGreaterThanToken;\n    type ShiftOperatorOrHigher = AdditiveOperatorOrHigher | ShiftOperator;\n    type RelationalOperator = SyntaxKind.LessThanToken | SyntaxKind.LessThanEqualsToken | SyntaxKind.GreaterThanToken | SyntaxKind.GreaterThanEqualsToken | SyntaxKind.InstanceOfKeyword | SyntaxKind.InKeyword;\n    type RelationalOperatorOrHigher = ShiftOperatorOrHigher | RelationalOperator;\n    type EqualityOperator = SyntaxKind.EqualsEqualsToken | SyntaxKind.EqualsEqualsEqualsToken | SyntaxKind.ExclamationEqualsEqualsToken | SyntaxKind.ExclamationEqualsToken;\n    type EqualityOperatorOrHigher = RelationalOperatorOrHigher | EqualityOperator;\n    type BitwiseOperator = SyntaxKind.AmpersandToken | SyntaxKind.BarToken | SyntaxKind.CaretToken;\n    type BitwiseOperatorOrHigher = EqualityOperatorOrHigher | BitwiseOperator;\n    type LogicalOperator = SyntaxKind.AmpersandAmpersandToken | SyntaxKind.BarBarToken;\n    type LogicalOperatorOrHigher = BitwiseOperatorOrHigher | LogicalOperator;\n    type CompoundAssignmentOperator = SyntaxKind.PlusEqualsToken | SyntaxKind.MinusEqualsToken | SyntaxKind.AsteriskAsteriskEqualsToken | SyntaxKind.AsteriskEqualsToken | SyntaxKind.SlashEqualsToken | SyntaxKind.PercentEqualsToken | SyntaxKind.AmpersandEqualsToken | SyntaxKind.BarEqualsToken | SyntaxKind.CaretEqualsToken | SyntaxKind.LessThanLessThanEqualsToken | SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken | SyntaxKind.GreaterThanGreaterThanEqualsToken | SyntaxKind.BarBarEqualsToken | SyntaxKind.AmpersandAmpersandEqualsToken | SyntaxKind.QuestionQuestionEqualsToken;\n    type AssignmentOperator = SyntaxKind.EqualsToken | CompoundAssignmentOperator;\n    type AssignmentOperatorOrHigher = SyntaxKind.QuestionQuestionToken | LogicalOperatorOrHigher | AssignmentOperator;\n    type BinaryOperator = AssignmentOperatorOrHigher | SyntaxKind.CommaToken;\n    type LogicalOrCoalescingAssignmentOperator = SyntaxKind.AmpersandAmpersandEqualsToken | SyntaxKind.BarBarEqualsToken | SyntaxKind.QuestionQuestionEqualsToken;\n    type BinaryOperatorToken = Token<BinaryOperator>;\n    interface BinaryExpression extends Expression, Declaration, JSDocContainer {\n        readonly kind: SyntaxKind.BinaryExpression;\n        readonly left: Expression;\n        readonly operatorToken: BinaryOperatorToken;\n        readonly right: Expression;\n    }\n    type AssignmentOperatorToken = Token<AssignmentOperator>;\n    interface AssignmentExpression<TOperator extends AssignmentOperatorToken> extends BinaryExpression {\n        readonly left: LeftHandSideExpression;\n        readonly operatorToken: TOperator;\n    }\n    interface ObjectDestructuringAssignment extends AssignmentExpression<EqualsToken> {\n        readonly left: ObjectLiteralExpression;\n    }\n    interface ArrayDestructuringAssignment extends AssignmentExpression<EqualsToken> {\n        readonly left: ArrayLiteralExpression;\n    }\n    type DestructuringAssignment = ObjectDestructuringAssignment | ArrayDestructuringAssignment;\n    type BindingOrAssignmentElement = VariableDeclaration | ParameterDeclaration | ObjectBindingOrAssignmentElement | ArrayBindingOrAssignmentElement;\n    type ObjectBindingOrAssignmentElement = BindingElement | PropertyAssignment | ShorthandPropertyAssignment | SpreadAssignment;\n    type ArrayBindingOrAssignmentElement = BindingElement | OmittedExpression | SpreadElement | ArrayLiteralExpression | ObjectLiteralExpression | AssignmentExpression<EqualsToken> | Identifier | PropertyAccessExpression | ElementAccessExpression;\n    type BindingOrAssignmentElementRestIndicator = DotDotDotToken | SpreadElement | SpreadAssignment;\n    type BindingOrAssignmentElementTarget = BindingOrAssignmentPattern | Identifier | PropertyAccessExpression | ElementAccessExpression | OmittedExpression;\n    type ObjectBindingOrAssignmentPattern = ObjectBindingPattern | ObjectLiteralExpression;\n    type ArrayBindingOrAssignmentPattern = ArrayBindingPattern | ArrayLiteralExpression;\n    type AssignmentPattern = ObjectLiteralExpression | ArrayLiteralExpression;\n    type BindingOrAssignmentPattern = ObjectBindingOrAssignmentPattern | ArrayBindingOrAssignmentPattern;\n    interface ConditionalExpression extends Expression {\n        readonly kind: SyntaxKind.ConditionalExpression;\n        readonly condition: Expression;\n        readonly questionToken: QuestionToken;\n        readonly whenTrue: Expression;\n        readonly colonToken: ColonToken;\n        readonly whenFalse: Expression;\n    }\n    type FunctionBody = Block;\n    type ConciseBody = FunctionBody | Expression;\n    interface FunctionExpression extends PrimaryExpression, FunctionLikeDeclarationBase, JSDocContainer, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.FunctionExpression;\n        readonly modifiers?: NodeArray<Modifier>;\n        readonly name?: Identifier;\n        readonly body: FunctionBody;\n    }\n    interface ArrowFunction extends Expression, FunctionLikeDeclarationBase, JSDocContainer, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.ArrowFunction;\n        readonly modifiers?: NodeArray<Modifier>;\n        readonly equalsGreaterThanToken: EqualsGreaterThanToken;\n        readonly body: ConciseBody;\n        readonly name: never;\n    }\n    interface LiteralLikeNode extends Node {\n        text: string;\n        isUnterminated?: boolean;\n        hasExtendedUnicodeEscape?: boolean;\n    }\n    interface TemplateLiteralLikeNode extends LiteralLikeNode {\n        rawText?: string;\n    }\n    interface LiteralExpression extends LiteralLikeNode, PrimaryExpression {\n        _literalExpressionBrand: any;\n    }\n    interface RegularExpressionLiteral extends LiteralExpression {\n        readonly kind: SyntaxKind.RegularExpressionLiteral;\n    }\n    interface NoSubstitutionTemplateLiteral extends LiteralExpression, TemplateLiteralLikeNode, Declaration {\n        readonly kind: SyntaxKind.NoSubstitutionTemplateLiteral;\n    }\n    enum TokenFlags {\n        None = 0,\n        Scientific = 16,\n        Octal = 32,\n        HexSpecifier = 64,\n        BinarySpecifier = 128,\n        OctalSpecifier = 256,\n    }\n    interface NumericLiteral extends LiteralExpression, Declaration {\n        readonly kind: SyntaxKind.NumericLiteral;\n    }\n    interface BigIntLiteral extends LiteralExpression {\n        readonly kind: SyntaxKind.BigIntLiteral;\n    }\n    type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpressionLiteral | NoSubstitutionTemplateLiteral;\n    interface TemplateHead extends TemplateLiteralLikeNode {\n        readonly kind: SyntaxKind.TemplateHead;\n        readonly parent: TemplateExpression | TemplateLiteralTypeNode;\n    }\n    interface TemplateMiddle extends TemplateLiteralLikeNode {\n        readonly kind: SyntaxKind.TemplateMiddle;\n        readonly parent: TemplateSpan | TemplateLiteralTypeSpan;\n    }\n    interface TemplateTail extends TemplateLiteralLikeNode {\n        readonly kind: SyntaxKind.TemplateTail;\n        readonly parent: TemplateSpan | TemplateLiteralTypeSpan;\n    }\n    type PseudoLiteralToken = TemplateHead | TemplateMiddle | TemplateTail;\n    type TemplateLiteralToken = NoSubstitutionTemplateLiteral | PseudoLiteralToken;\n    interface TemplateExpression extends PrimaryExpression {\n        readonly kind: SyntaxKind.TemplateExpression;\n        readonly head: TemplateHead;\n        readonly templateSpans: NodeArray<TemplateSpan>;\n    }\n    type TemplateLiteral = TemplateExpression | NoSubstitutionTemplateLiteral;\n    interface TemplateSpan extends Node {\n        readonly kind: SyntaxKind.TemplateSpan;\n        readonly parent: TemplateExpression;\n        readonly expression: Expression;\n        readonly literal: TemplateMiddle | TemplateTail;\n    }\n    interface ParenthesizedExpression extends PrimaryExpression, JSDocContainer {\n        readonly kind: SyntaxKind.ParenthesizedExpression;\n        readonly expression: Expression;\n    }\n    interface ArrayLiteralExpression extends PrimaryExpression {\n        readonly kind: SyntaxKind.ArrayLiteralExpression;\n        readonly elements: NodeArray<Expression>;\n    }\n    interface SpreadElement extends Expression {\n        readonly kind: SyntaxKind.SpreadElement;\n        readonly parent: ArrayLiteralExpression | CallExpression | NewExpression;\n        readonly expression: Expression;\n    }\n    /**\n     * This interface is a base interface for ObjectLiteralExpression and JSXAttributes to extend from. JSXAttributes is similar to\n     * ObjectLiteralExpression in that it contains array of properties; however, JSXAttributes' properties can only be\n     * JSXAttribute or JSXSpreadAttribute. ObjectLiteralExpression, on the other hand, can only have properties of type\n     * ObjectLiteralElement (e.g. PropertyAssignment, ShorthandPropertyAssignment etc.)\n     */\n    interface ObjectLiteralExpressionBase<T extends ObjectLiteralElement> extends PrimaryExpression, Declaration {\n        readonly properties: NodeArray<T>;\n    }\n    interface ObjectLiteralExpression extends ObjectLiteralExpressionBase<ObjectLiteralElementLike>, JSDocContainer {\n        readonly kind: SyntaxKind.ObjectLiteralExpression;\n    }\n    type EntityNameExpression = Identifier | PropertyAccessEntityNameExpression;\n    type EntityNameOrEntityNameExpression = EntityName | EntityNameExpression;\n    type AccessExpression = PropertyAccessExpression | ElementAccessExpression;\n    interface PropertyAccessExpression extends MemberExpression, NamedDeclaration, JSDocContainer, FlowContainer {\n        readonly kind: SyntaxKind.PropertyAccessExpression;\n        readonly expression: LeftHandSideExpression;\n        readonly questionDotToken?: QuestionDotToken;\n        readonly name: MemberName;\n    }\n    interface PropertyAccessChain extends PropertyAccessExpression {\n        _optionalChainBrand: any;\n        readonly name: MemberName;\n    }\n    interface SuperPropertyAccessExpression extends PropertyAccessExpression {\n        readonly expression: SuperExpression;\n    }\n    /** Brand for a PropertyAccessExpression which, like a QualifiedName, consists of a sequence of identifiers separated by dots. */\n    interface PropertyAccessEntityNameExpression extends PropertyAccessExpression {\n        _propertyAccessExpressionLikeQualifiedNameBrand?: any;\n        readonly expression: EntityNameExpression;\n        readonly name: Identifier;\n    }\n    interface ElementAccessExpression extends MemberExpression, Declaration, JSDocContainer, FlowContainer {\n        readonly kind: SyntaxKind.ElementAccessExpression;\n        readonly expression: LeftHandSideExpression;\n        readonly questionDotToken?: QuestionDotToken;\n        readonly argumentExpression: Expression;\n    }\n    interface ElementAccessChain extends ElementAccessExpression {\n        _optionalChainBrand: any;\n    }\n    interface SuperElementAccessExpression extends ElementAccessExpression {\n        readonly expression: SuperExpression;\n    }\n    type SuperProperty = SuperPropertyAccessExpression | SuperElementAccessExpression;\n    interface CallExpression extends LeftHandSideExpression, Declaration {\n        readonly kind: SyntaxKind.CallExpression;\n        readonly expression: LeftHandSideExpression;\n        readonly questionDotToken?: QuestionDotToken;\n        readonly typeArguments?: NodeArray<TypeNode>;\n        readonly arguments: NodeArray<Expression>;\n    }\n    interface CallChain extends CallExpression {\n        _optionalChainBrand: any;\n    }\n    type OptionalChain = PropertyAccessChain | ElementAccessChain | CallChain | NonNullChain;\n    interface SuperCall extends CallExpression {\n        readonly expression: SuperExpression;\n    }\n    interface ImportCall extends CallExpression {\n        readonly expression: ImportExpression | ImportDeferProperty;\n    }\n    interface ExpressionWithTypeArguments extends MemberExpression, NodeWithTypeArguments {\n        readonly kind: SyntaxKind.ExpressionWithTypeArguments;\n        readonly expression: LeftHandSideExpression;\n    }\n    interface NewExpression extends PrimaryExpression, Declaration {\n        readonly kind: SyntaxKind.NewExpression;\n        readonly expression: LeftHandSideExpression;\n        readonly typeArguments?: NodeArray<TypeNode>;\n        readonly arguments?: NodeArray<Expression>;\n    }\n    interface TaggedTemplateExpression extends MemberExpression {\n        readonly kind: SyntaxKind.TaggedTemplateExpression;\n        readonly tag: LeftHandSideExpression;\n        readonly typeArguments?: NodeArray<TypeNode>;\n        readonly template: TemplateLiteral;\n    }\n    interface InstanceofExpression extends BinaryExpression {\n        readonly operatorToken: Token<SyntaxKind.InstanceOfKeyword>;\n    }\n    type CallLikeExpression = CallExpression | NewExpression | TaggedTemplateExpression | Decorator | JsxCallLike | InstanceofExpression;\n    interface AsExpression extends Expression {\n        readonly kind: SyntaxKind.AsExpression;\n        readonly expression: Expression;\n        readonly type: TypeNode;\n    }\n    interface TypeAssertion extends UnaryExpression {\n        readonly kind: SyntaxKind.TypeAssertionExpression;\n        readonly type: TypeNode;\n        readonly expression: UnaryExpression;\n    }\n    interface SatisfiesExpression extends Expression {\n        readonly kind: SyntaxKind.SatisfiesExpression;\n        readonly expression: Expression;\n        readonly type: TypeNode;\n    }\n    type AssertionExpression = TypeAssertion | AsExpression;\n    interface NonNullExpression extends LeftHandSideExpression {\n        readonly kind: SyntaxKind.NonNullExpression;\n        readonly expression: Expression;\n    }\n    interface NonNullChain extends NonNullExpression {\n        _optionalChainBrand: any;\n    }\n    interface MetaProperty extends PrimaryExpression, FlowContainer {\n        readonly kind: SyntaxKind.MetaProperty;\n        readonly keywordToken: SyntaxKind.NewKeyword | SyntaxKind.ImportKeyword;\n        readonly name: Identifier;\n    }\n    interface ImportDeferProperty extends MetaProperty {\n        readonly keywordToken: SyntaxKind.ImportKeyword;\n        readonly name: Identifier & {\n            readonly escapedText: __String & \"defer\";\n        };\n    }\n    interface JsxElement extends PrimaryExpression {\n        readonly kind: SyntaxKind.JsxElement;\n        readonly openingElement: JsxOpeningElement;\n        readonly children: NodeArray<JsxChild>;\n        readonly closingElement: JsxClosingElement;\n    }\n    type JsxOpeningLikeElement = JsxSelfClosingElement | JsxOpeningElement;\n    type JsxCallLike = JsxOpeningLikeElement | JsxOpeningFragment;\n    type JsxAttributeLike = JsxAttribute | JsxSpreadAttribute;\n    type JsxAttributeName = Identifier | JsxNamespacedName;\n    type JsxTagNameExpression = Identifier | ThisExpression | JsxTagNamePropertyAccess | JsxNamespacedName;\n    interface JsxTagNamePropertyAccess extends PropertyAccessExpression {\n        readonly expression: Identifier | ThisExpression | JsxTagNamePropertyAccess;\n    }\n    interface JsxAttributes extends PrimaryExpression, Declaration {\n        readonly properties: NodeArray<JsxAttributeLike>;\n        readonly kind: SyntaxKind.JsxAttributes;\n        readonly parent: JsxOpeningLikeElement;\n    }\n    interface JsxNamespacedName extends Node {\n        readonly kind: SyntaxKind.JsxNamespacedName;\n        readonly name: Identifier;\n        readonly namespace: Identifier;\n    }\n    interface JsxOpeningElement extends Expression {\n        readonly kind: SyntaxKind.JsxOpeningElement;\n        readonly parent: JsxElement;\n        readonly tagName: JsxTagNameExpression;\n        readonly typeArguments?: NodeArray<TypeNode>;\n        readonly attributes: JsxAttributes;\n    }\n    interface JsxSelfClosingElement extends PrimaryExpression {\n        readonly kind: SyntaxKind.JsxSelfClosingElement;\n        readonly tagName: JsxTagNameExpression;\n        readonly typeArguments?: NodeArray<TypeNode>;\n        readonly attributes: JsxAttributes;\n    }\n    interface JsxFragment extends PrimaryExpression {\n        readonly kind: SyntaxKind.JsxFragment;\n        readonly openingFragment: JsxOpeningFragment;\n        readonly children: NodeArray<JsxChild>;\n        readonly closingFragment: JsxClosingFragment;\n    }\n    interface JsxOpeningFragment extends Expression {\n        readonly kind: SyntaxKind.JsxOpeningFragment;\n        readonly parent: JsxFragment;\n    }\n    interface JsxClosingFragment extends Expression {\n        readonly kind: SyntaxKind.JsxClosingFragment;\n        readonly parent: JsxFragment;\n    }\n    interface JsxAttribute extends Declaration {\n        readonly kind: SyntaxKind.JsxAttribute;\n        readonly parent: JsxAttributes;\n        readonly name: JsxAttributeName;\n        readonly initializer?: JsxAttributeValue;\n    }\n    type JsxAttributeValue = StringLiteral | JsxExpression | JsxElement | JsxSelfClosingElement | JsxFragment;\n    interface JsxSpreadAttribute extends ObjectLiteralElement {\n        readonly kind: SyntaxKind.JsxSpreadAttribute;\n        readonly parent: JsxAttributes;\n        readonly expression: Expression;\n    }\n    interface JsxClosingElement extends Node {\n        readonly kind: SyntaxKind.JsxClosingElement;\n        readonly parent: JsxElement;\n        readonly tagName: JsxTagNameExpression;\n    }\n    interface JsxExpression extends Expression {\n        readonly kind: SyntaxKind.JsxExpression;\n        readonly parent: JsxElement | JsxFragment | JsxAttributeLike;\n        readonly dotDotDotToken?: Token<SyntaxKind.DotDotDotToken>;\n        readonly expression?: Expression;\n    }\n    interface JsxText extends LiteralLikeNode {\n        readonly kind: SyntaxKind.JsxText;\n        readonly parent: JsxElement | JsxFragment;\n        readonly containsOnlyTriviaWhiteSpaces: boolean;\n    }\n    type JsxChild = JsxText | JsxExpression | JsxElement | JsxSelfClosingElement | JsxFragment;\n    interface Statement extends Node, JSDocContainer {\n        _statementBrand: any;\n    }\n    interface NotEmittedStatement extends Statement {\n        readonly kind: SyntaxKind.NotEmittedStatement;\n    }\n    interface NotEmittedTypeElement extends TypeElement {\n        readonly kind: SyntaxKind.NotEmittedTypeElement;\n    }\n    /**\n     * A list of comma-separated expressions. This node is only created by transformations.\n     */\n    interface CommaListExpression extends Expression {\n        readonly kind: SyntaxKind.CommaListExpression;\n        readonly elements: NodeArray<Expression>;\n    }\n    interface EmptyStatement extends Statement {\n        readonly kind: SyntaxKind.EmptyStatement;\n    }\n    interface DebuggerStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.DebuggerStatement;\n    }\n    interface MissingDeclaration extends DeclarationStatement, PrimaryExpression {\n        readonly kind: SyntaxKind.MissingDeclaration;\n        readonly name?: Identifier;\n    }\n    type BlockLike = SourceFile | Block | ModuleBlock | CaseOrDefaultClause;\n    interface Block extends Statement, LocalsContainer {\n        readonly kind: SyntaxKind.Block;\n        readonly statements: NodeArray<Statement>;\n    }\n    interface VariableStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.VariableStatement;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly declarationList: VariableDeclarationList;\n    }\n    interface ExpressionStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.ExpressionStatement;\n        readonly expression: Expression;\n    }\n    interface IfStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.IfStatement;\n        readonly expression: Expression;\n        readonly thenStatement: Statement;\n        readonly elseStatement?: Statement;\n    }\n    interface IterationStatement extends Statement {\n        readonly statement: Statement;\n    }\n    interface DoStatement extends IterationStatement, FlowContainer {\n        readonly kind: SyntaxKind.DoStatement;\n        readonly expression: Expression;\n    }\n    interface WhileStatement extends IterationStatement, FlowContainer {\n        readonly kind: SyntaxKind.WhileStatement;\n        readonly expression: Expression;\n    }\n    type ForInitializer = VariableDeclarationList | Expression;\n    interface ForStatement extends IterationStatement, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.ForStatement;\n        readonly initializer?: ForInitializer;\n        readonly condition?: Expression;\n        readonly incrementor?: Expression;\n    }\n    type ForInOrOfStatement = ForInStatement | ForOfStatement;\n    interface ForInStatement extends IterationStatement, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.ForInStatement;\n        readonly initializer: ForInitializer;\n        readonly expression: Expression;\n    }\n    interface ForOfStatement extends IterationStatement, LocalsContainer, FlowContainer {\n        readonly kind: SyntaxKind.ForOfStatement;\n        readonly awaitModifier?: AwaitKeyword;\n        readonly initializer: ForInitializer;\n        readonly expression: Expression;\n    }\n    interface BreakStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.BreakStatement;\n        readonly label?: Identifier;\n    }\n    interface ContinueStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.ContinueStatement;\n        readonly label?: Identifier;\n    }\n    type BreakOrContinueStatement = BreakStatement | ContinueStatement;\n    interface ReturnStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.ReturnStatement;\n        readonly expression?: Expression;\n    }\n    interface WithStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.WithStatement;\n        readonly expression: Expression;\n        readonly statement: Statement;\n    }\n    interface SwitchStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.SwitchStatement;\n        readonly expression: Expression;\n        readonly caseBlock: CaseBlock;\n        possiblyExhaustive?: boolean;\n    }\n    interface CaseBlock extends Node, LocalsContainer {\n        readonly kind: SyntaxKind.CaseBlock;\n        readonly parent: SwitchStatement;\n        readonly clauses: NodeArray<CaseOrDefaultClause>;\n    }\n    interface CaseClause extends Node, JSDocContainer {\n        readonly kind: SyntaxKind.CaseClause;\n        readonly parent: CaseBlock;\n        readonly expression: Expression;\n        readonly statements: NodeArray<Statement>;\n    }\n    interface DefaultClause extends Node {\n        readonly kind: SyntaxKind.DefaultClause;\n        readonly parent: CaseBlock;\n        readonly statements: NodeArray<Statement>;\n    }\n    type CaseOrDefaultClause = CaseClause | DefaultClause;\n    interface LabeledStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.LabeledStatement;\n        readonly label: Identifier;\n        readonly statement: Statement;\n    }\n    interface ThrowStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.ThrowStatement;\n        readonly expression: Expression;\n    }\n    interface TryStatement extends Statement, FlowContainer {\n        readonly kind: SyntaxKind.TryStatement;\n        readonly tryBlock: Block;\n        readonly catchClause?: CatchClause;\n        readonly finallyBlock?: Block;\n    }\n    interface CatchClause extends Node, LocalsContainer {\n        readonly kind: SyntaxKind.CatchClause;\n        readonly parent: TryStatement;\n        readonly variableDeclaration?: VariableDeclaration;\n        readonly block: Block;\n    }\n    type ObjectTypeDeclaration = ClassLikeDeclaration | InterfaceDeclaration | TypeLiteralNode;\n    type DeclarationWithTypeParameters = DeclarationWithTypeParameterChildren | JSDocTypedefTag | JSDocCallbackTag | JSDocSignature;\n    type DeclarationWithTypeParameterChildren = SignatureDeclaration | ClassLikeDeclaration | InterfaceDeclaration | TypeAliasDeclaration | JSDocTemplateTag;\n    interface ClassLikeDeclarationBase extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.ClassDeclaration | SyntaxKind.ClassExpression;\n        readonly name?: Identifier;\n        readonly typeParameters?: NodeArray<TypeParameterDeclaration>;\n        readonly heritageClauses?: NodeArray<HeritageClause>;\n        readonly members: NodeArray<ClassElement>;\n    }\n    interface ClassDeclaration extends ClassLikeDeclarationBase, DeclarationStatement {\n        readonly kind: SyntaxKind.ClassDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        /** May be undefined in `export default class { ... }`. */\n        readonly name?: Identifier;\n    }\n    interface ClassExpression extends ClassLikeDeclarationBase, PrimaryExpression {\n        readonly kind: SyntaxKind.ClassExpression;\n        readonly modifiers?: NodeArray<ModifierLike>;\n    }\n    type ClassLikeDeclaration = ClassDeclaration | ClassExpression;\n    interface ClassElement extends NamedDeclaration {\n        _classElementBrand: any;\n        readonly name?: PropertyName;\n    }\n    interface TypeElement extends NamedDeclaration {\n        _typeElementBrand: any;\n        readonly name?: PropertyName;\n        readonly questionToken?: QuestionToken | undefined;\n    }\n    interface InterfaceDeclaration extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.InterfaceDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: Identifier;\n        readonly typeParameters?: NodeArray<TypeParameterDeclaration>;\n        readonly heritageClauses?: NodeArray<HeritageClause>;\n        readonly members: NodeArray<TypeElement>;\n    }\n    interface HeritageClause extends Node {\n        readonly kind: SyntaxKind.HeritageClause;\n        readonly parent: InterfaceDeclaration | ClassLikeDeclaration;\n        readonly token: SyntaxKind.ExtendsKeyword | SyntaxKind.ImplementsKeyword;\n        readonly types: NodeArray<ExpressionWithTypeArguments>;\n    }\n    interface TypeAliasDeclaration extends DeclarationStatement, JSDocContainer, LocalsContainer {\n        readonly kind: SyntaxKind.TypeAliasDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: Identifier;\n        readonly typeParameters?: NodeArray<TypeParameterDeclaration>;\n        readonly type: TypeNode;\n    }\n    interface EnumMember extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.EnumMember;\n        readonly parent: EnumDeclaration;\n        readonly name: PropertyName;\n        readonly initializer?: Expression;\n    }\n    interface EnumDeclaration extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.EnumDeclaration;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: Identifier;\n        readonly members: NodeArray<EnumMember>;\n    }\n    type ModuleName = Identifier | StringLiteral;\n    type ModuleBody = NamespaceBody | JSDocNamespaceBody;\n    interface ModuleDeclaration extends DeclarationStatement, JSDocContainer, LocalsContainer {\n        readonly kind: SyntaxKind.ModuleDeclaration;\n        readonly parent: ModuleBody | SourceFile;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: ModuleName;\n        readonly body?: ModuleBody | JSDocNamespaceDeclaration;\n    }\n    type NamespaceBody = ModuleBlock | NamespaceDeclaration;\n    interface NamespaceDeclaration extends ModuleDeclaration {\n        readonly name: Identifier;\n        readonly body: NamespaceBody;\n    }\n    type JSDocNamespaceBody = Identifier | JSDocNamespaceDeclaration;\n    interface JSDocNamespaceDeclaration extends ModuleDeclaration {\n        readonly name: Identifier;\n        readonly body?: JSDocNamespaceBody;\n    }\n    interface ModuleBlock extends Node, Statement {\n        readonly kind: SyntaxKind.ModuleBlock;\n        readonly parent: ModuleDeclaration;\n        readonly statements: NodeArray<Statement>;\n    }\n    type ModuleReference = EntityName | ExternalModuleReference;\n    /**\n     * One of:\n     * - import x = require(\"mod\");\n     * - import x = M.x;\n     */\n    interface ImportEqualsDeclaration extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.ImportEqualsDeclaration;\n        readonly parent: SourceFile | ModuleBlock;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly name: Identifier;\n        readonly isTypeOnly: boolean;\n        readonly moduleReference: ModuleReference;\n    }\n    interface ExternalModuleReference extends Node {\n        readonly kind: SyntaxKind.ExternalModuleReference;\n        readonly parent: ImportEqualsDeclaration;\n        readonly expression: Expression;\n    }\n    interface ImportDeclaration extends Statement {\n        readonly kind: SyntaxKind.ImportDeclaration;\n        readonly parent: SourceFile | ModuleBlock;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly importClause?: ImportClause;\n        /** If this is not a StringLiteral it will be a grammar error. */\n        readonly moduleSpecifier: Expression;\n        /** @deprecated */ readonly assertClause?: AssertClause;\n        readonly attributes?: ImportAttributes;\n    }\n    type NamedImportBindings = NamespaceImport | NamedImports;\n    type NamedExportBindings = NamespaceExport | NamedExports;\n    interface ImportClause extends NamedDeclaration {\n        readonly kind: SyntaxKind.ImportClause;\n        readonly parent: ImportDeclaration | JSDocImportTag;\n        /** @deprecated Use `phaseModifier` instead */\n        readonly isTypeOnly: boolean;\n        readonly phaseModifier: undefined | ImportPhaseModifierSyntaxKind;\n        readonly name?: Identifier;\n        readonly namedBindings?: NamedImportBindings;\n    }\n    type ImportPhaseModifierSyntaxKind = SyntaxKind.TypeKeyword | SyntaxKind.DeferKeyword;\n    /** @deprecated */\n    type AssertionKey = ImportAttributeName;\n    /** @deprecated */\n    interface AssertEntry extends ImportAttribute {\n    }\n    /** @deprecated */\n    interface AssertClause extends ImportAttributes {\n    }\n    type ImportAttributeName = Identifier | StringLiteral;\n    interface ImportAttribute extends Node {\n        readonly kind: SyntaxKind.ImportAttribute;\n        readonly parent: ImportAttributes;\n        readonly name: ImportAttributeName;\n        readonly value: Expression;\n    }\n    interface ImportAttributes extends Node {\n        readonly token: SyntaxKind.WithKeyword | SyntaxKind.AssertKeyword;\n        readonly kind: SyntaxKind.ImportAttributes;\n        readonly parent: ImportDeclaration | ExportDeclaration;\n        readonly elements: NodeArray<ImportAttribute>;\n        readonly multiLine?: boolean;\n    }\n    interface NamespaceImport extends NamedDeclaration {\n        readonly kind: SyntaxKind.NamespaceImport;\n        readonly parent: ImportClause;\n        readonly name: Identifier;\n    }\n    interface NamespaceExport extends NamedDeclaration {\n        readonly kind: SyntaxKind.NamespaceExport;\n        readonly parent: ExportDeclaration;\n        readonly name: ModuleExportName;\n    }\n    interface NamespaceExportDeclaration extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.NamespaceExportDeclaration;\n        readonly name: Identifier;\n    }\n    interface ExportDeclaration extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.ExportDeclaration;\n        readonly parent: SourceFile | ModuleBlock;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly isTypeOnly: boolean;\n        /** Will not be assigned in the case of `export * from \"foo\";` */\n        readonly exportClause?: NamedExportBindings;\n        /** If this is not a StringLiteral it will be a grammar error. */\n        readonly moduleSpecifier?: Expression;\n        /** @deprecated */ readonly assertClause?: AssertClause;\n        readonly attributes?: ImportAttributes;\n    }\n    interface NamedImports extends Node {\n        readonly kind: SyntaxKind.NamedImports;\n        readonly parent: ImportClause;\n        readonly elements: NodeArray<ImportSpecifier>;\n    }\n    interface NamedExports extends Node {\n        readonly kind: SyntaxKind.NamedExports;\n        readonly parent: ExportDeclaration;\n        readonly elements: NodeArray<ExportSpecifier>;\n    }\n    type NamedImportsOrExports = NamedImports | NamedExports;\n    interface ImportSpecifier extends NamedDeclaration {\n        readonly kind: SyntaxKind.ImportSpecifier;\n        readonly parent: NamedImports;\n        readonly propertyName?: ModuleExportName;\n        readonly name: Identifier;\n        readonly isTypeOnly: boolean;\n    }\n    interface ExportSpecifier extends NamedDeclaration, JSDocContainer {\n        readonly kind: SyntaxKind.ExportSpecifier;\n        readonly parent: NamedExports;\n        readonly isTypeOnly: boolean;\n        readonly propertyName?: ModuleExportName;\n        readonly name: ModuleExportName;\n    }\n    type ModuleExportName = Identifier | StringLiteral;\n    type ImportOrExportSpecifier = ImportSpecifier | ExportSpecifier;\n    type TypeOnlyCompatibleAliasDeclaration = ImportClause | ImportEqualsDeclaration | NamespaceImport | ImportOrExportSpecifier | ExportDeclaration | NamespaceExport;\n    type TypeOnlyImportDeclaration =\n        | ImportClause & {\n            readonly isTypeOnly: true;\n            readonly name: Identifier;\n        }\n        | ImportEqualsDeclaration & {\n            readonly isTypeOnly: true;\n        }\n        | NamespaceImport & {\n            readonly parent: ImportClause & {\n                readonly isTypeOnly: true;\n            };\n        }\n        | ImportSpecifier\n            & ({\n                readonly isTypeOnly: true;\n            } | {\n                readonly parent: NamedImports & {\n                    readonly parent: ImportClause & {\n                        readonly isTypeOnly: true;\n                    };\n                };\n            });\n    type TypeOnlyExportDeclaration =\n        | ExportSpecifier\n            & ({\n                readonly isTypeOnly: true;\n            } | {\n                readonly parent: NamedExports & {\n                    readonly parent: ExportDeclaration & {\n                        readonly isTypeOnly: true;\n                    };\n                };\n            })\n        | ExportDeclaration & {\n            readonly isTypeOnly: true;\n            readonly moduleSpecifier: Expression;\n        }\n        | NamespaceExport & {\n            readonly parent: ExportDeclaration & {\n                readonly isTypeOnly: true;\n                readonly moduleSpecifier: Expression;\n            };\n        };\n    type TypeOnlyAliasDeclaration = TypeOnlyImportDeclaration | TypeOnlyExportDeclaration;\n    /**\n     * This is either an `export =` or an `export default` declaration.\n     * Unless `isExportEquals` is set, this node was parsed as an `export default`.\n     */\n    interface ExportAssignment extends DeclarationStatement, JSDocContainer {\n        readonly kind: SyntaxKind.ExportAssignment;\n        readonly parent: SourceFile;\n        readonly modifiers?: NodeArray<ModifierLike>;\n        readonly isExportEquals?: boolean;\n        readonly expression: Expression;\n    }\n    interface FileReference extends TextRange {\n        fileName: string;\n        resolutionMode?: ResolutionMode;\n        preserve?: boolean;\n    }\n    interface CheckJsDirective extends TextRange {\n        enabled: boolean;\n    }\n    type CommentKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia;\n    interface CommentRange extends TextRange {\n        hasTrailingNewLine?: boolean;\n        kind: CommentKind;\n    }\n    interface SynthesizedComment extends CommentRange {\n        text: string;\n        pos: -1;\n        end: -1;\n        hasLeadingNewline?: boolean;\n    }\n    interface JSDocTypeExpression extends TypeNode {\n        readonly kind: SyntaxKind.JSDocTypeExpression;\n        readonly type: TypeNode;\n    }\n    interface JSDocNameReference extends Node {\n        readonly kind: SyntaxKind.JSDocNameReference;\n        readonly name: EntityName | JSDocMemberName;\n    }\n    /** Class#method reference in JSDoc */\n    interface JSDocMemberName extends Node {\n        readonly kind: SyntaxKind.JSDocMemberName;\n        readonly left: EntityName | JSDocMemberName;\n        readonly right: Identifier;\n    }\n    interface JSDocType extends TypeNode {\n        _jsDocTypeBrand: any;\n    }\n    interface JSDocAllType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocAllType;\n    }\n    interface JSDocUnknownType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocUnknownType;\n    }\n    interface JSDocNonNullableType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocNonNullableType;\n        readonly type: TypeNode;\n        readonly postfix: boolean;\n    }\n    interface JSDocNullableType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocNullableType;\n        readonly type: TypeNode;\n        readonly postfix: boolean;\n    }\n    interface JSDocOptionalType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocOptionalType;\n        readonly type: TypeNode;\n    }\n    interface JSDocFunctionType extends JSDocType, SignatureDeclarationBase, LocalsContainer {\n        readonly kind: SyntaxKind.JSDocFunctionType;\n    }\n    interface JSDocVariadicType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocVariadicType;\n        readonly type: TypeNode;\n    }\n    interface JSDocNamepathType extends JSDocType {\n        readonly kind: SyntaxKind.JSDocNamepathType;\n        readonly type: TypeNode;\n    }\n    type JSDocTypeReferencingNode = JSDocVariadicType | JSDocOptionalType | JSDocNullableType | JSDocNonNullableType;\n    interface JSDoc extends Node {\n        readonly kind: SyntaxKind.JSDoc;\n        readonly parent: HasJSDoc;\n        readonly tags?: NodeArray<JSDocTag>;\n        readonly comment?: string | NodeArray<JSDocComment>;\n    }\n    interface JSDocTag extends Node {\n        readonly parent: JSDoc | JSDocTypeLiteral;\n        readonly tagName: Identifier;\n        readonly comment?: string | NodeArray<JSDocComment>;\n    }\n    interface JSDocLink extends Node {\n        readonly kind: SyntaxKind.JSDocLink;\n        readonly name?: EntityName | JSDocMemberName;\n        text: string;\n    }\n    interface JSDocLinkCode extends Node {\n        readonly kind: SyntaxKind.JSDocLinkCode;\n        readonly name?: EntityName | JSDocMemberName;\n        text: string;\n    }\n    interface JSDocLinkPlain extends Node {\n        readonly kind: SyntaxKind.JSDocLinkPlain;\n        readonly name?: EntityName | JSDocMemberName;\n        text: string;\n    }\n    type JSDocComment = JSDocText | JSDocLink | JSDocLinkCode | JSDocLinkPlain;\n    interface JSDocText extends Node {\n        readonly kind: SyntaxKind.JSDocText;\n        text: string;\n    }\n    interface JSDocUnknownTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocTag;\n    }\n    /**\n     * Note that `@extends` is a synonym of `@augments`.\n     * Both tags are represented by this interface.\n     */\n    interface JSDocAugmentsTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocAugmentsTag;\n        readonly class: ExpressionWithTypeArguments & {\n            readonly expression: Identifier | PropertyAccessEntityNameExpression;\n        };\n    }\n    interface JSDocImplementsTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocImplementsTag;\n        readonly class: ExpressionWithTypeArguments & {\n            readonly expression: Identifier | PropertyAccessEntityNameExpression;\n        };\n    }\n    interface JSDocAuthorTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocAuthorTag;\n    }\n    interface JSDocDeprecatedTag extends JSDocTag {\n        kind: SyntaxKind.JSDocDeprecatedTag;\n    }\n    interface JSDocClassTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocClassTag;\n    }\n    interface JSDocPublicTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocPublicTag;\n    }\n    interface JSDocPrivateTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocPrivateTag;\n    }\n    interface JSDocProtectedTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocProtectedTag;\n    }\n    interface JSDocReadonlyTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocReadonlyTag;\n    }\n    interface JSDocOverrideTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocOverrideTag;\n    }\n    interface JSDocEnumTag extends JSDocTag, Declaration, LocalsContainer {\n        readonly kind: SyntaxKind.JSDocEnumTag;\n        readonly parent: JSDoc;\n        readonly typeExpression: JSDocTypeExpression;\n    }\n    interface JSDocThisTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocThisTag;\n        readonly typeExpression: JSDocTypeExpression;\n    }\n    interface JSDocTemplateTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocTemplateTag;\n        readonly constraint: JSDocTypeExpression | undefined;\n        readonly typeParameters: NodeArray<TypeParameterDeclaration>;\n    }\n    interface JSDocSeeTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocSeeTag;\n        readonly name?: JSDocNameReference;\n    }\n    interface JSDocReturnTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocReturnTag;\n        readonly typeExpression?: JSDocTypeExpression;\n    }\n    interface JSDocTypeTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocTypeTag;\n        readonly typeExpression: JSDocTypeExpression;\n    }\n    interface JSDocTypedefTag extends JSDocTag, NamedDeclaration, LocalsContainer {\n        readonly kind: SyntaxKind.JSDocTypedefTag;\n        readonly parent: JSDoc;\n        readonly fullName?: JSDocNamespaceDeclaration | Identifier;\n        readonly name?: Identifier;\n        readonly typeExpression?: JSDocTypeExpression | JSDocTypeLiteral;\n    }\n    interface JSDocCallbackTag extends JSDocTag, NamedDeclaration, LocalsContainer {\n        readonly kind: SyntaxKind.JSDocCallbackTag;\n        readonly parent: JSDoc;\n        readonly fullName?: JSDocNamespaceDeclaration | Identifier;\n        readonly name?: Identifier;\n        readonly typeExpression: JSDocSignature;\n    }\n    interface JSDocOverloadTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocOverloadTag;\n        readonly parent: JSDoc;\n        readonly typeExpression: JSDocSignature;\n    }\n    interface JSDocThrowsTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocThrowsTag;\n        readonly typeExpression?: JSDocTypeExpression;\n    }\n    interface JSDocSignature extends JSDocType, Declaration, JSDocContainer, LocalsContainer {\n        readonly kind: SyntaxKind.JSDocSignature;\n        readonly typeParameters?: readonly JSDocTemplateTag[];\n        readonly parameters: readonly JSDocParameterTag[];\n        readonly type: JSDocReturnTag | undefined;\n    }\n    interface JSDocPropertyLikeTag extends JSDocTag, Declaration {\n        readonly parent: JSDoc;\n        readonly name: EntityName;\n        readonly typeExpression?: JSDocTypeExpression;\n        /** Whether the property name came before the type -- non-standard for JSDoc, but Typescript-like */\n        readonly isNameFirst: boolean;\n        readonly isBracketed: boolean;\n    }\n    interface JSDocPropertyTag extends JSDocPropertyLikeTag {\n        readonly kind: SyntaxKind.JSDocPropertyTag;\n    }\n    interface JSDocParameterTag extends JSDocPropertyLikeTag {\n        readonly kind: SyntaxKind.JSDocParameterTag;\n    }\n    interface JSDocTypeLiteral extends JSDocType, Declaration {\n        readonly kind: SyntaxKind.JSDocTypeLiteral;\n        readonly jsDocPropertyTags?: readonly JSDocPropertyLikeTag[];\n        /** If true, then this type literal represents an *array* of its type. */\n        readonly isArrayType: boolean;\n    }\n    interface JSDocSatisfiesTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocSatisfiesTag;\n        readonly typeExpression: JSDocTypeExpression;\n    }\n    interface JSDocImportTag extends JSDocTag {\n        readonly kind: SyntaxKind.JSDocImportTag;\n        readonly parent: JSDoc;\n        readonly importClause?: ImportClause;\n        readonly moduleSpecifier: Expression;\n        readonly attributes?: ImportAttributes;\n    }\n    type FlowType = Type | IncompleteType;\n    interface IncompleteType {\n        flags: TypeFlags | 0;\n        type: Type;\n    }\n    interface AmdDependency {\n        path: string;\n        name?: string;\n    }\n    /**\n     * Subset of properties from SourceFile that are used in multiple utility functions\n     */\n    interface SourceFileLike {\n        readonly text: string;\n    }\n    interface SourceFileLike {\n        getLineAndCharacterOfPosition(pos: number): LineAndCharacter;\n    }\n    type ResolutionMode = ModuleKind.ESNext | ModuleKind.CommonJS | undefined;\n    interface SourceFile extends Declaration, LocalsContainer {\n        readonly kind: SyntaxKind.SourceFile;\n        readonly statements: NodeArray<Statement>;\n        readonly endOfFileToken: Token<SyntaxKind.EndOfFileToken>;\n        fileName: string;\n        text: string;\n        amdDependencies: readonly AmdDependency[];\n        moduleName?: string;\n        referencedFiles: readonly FileReference[];\n        typeReferenceDirectives: readonly FileReference[];\n        libReferenceDirectives: readonly FileReference[];\n        languageVariant: LanguageVariant;\n        isDeclarationFile: boolean;\n        /**\n         * lib.d.ts should have a reference comment like\n         *\n         *  /// <reference no-default-lib=\"true\"/>\n         *\n         * If any other file has this comment, it signals not to include lib.d.ts\n         * because this containing file is intended to act as a default library.\n         */\n        hasNoDefaultLib: boolean;\n        languageVersion: ScriptTarget;\n        /**\n         * When `module` is `Node16` or `NodeNext`, this field controls whether the\n         * source file in question is an ESNext-output-format file, or a CommonJS-output-format\n         * module. This is derived by the module resolver as it looks up the file, since\n         * it is derived from either the file extension of the module, or the containing\n         * `package.json` context, and affects both checking and emit.\n         *\n         * It is _public_ so that (pre)transformers can set this field,\n         * since it switches the builtin `node` module transform. Generally speaking, if unset,\n         * the field is treated as though it is `ModuleKind.CommonJS`.\n         *\n         * Note that this field is only set by the module resolution process when\n         * `moduleResolution` is `Node16` or `NodeNext`, which is implied by the `module` setting\n         * of `Node16` or `NodeNext`, respectively, but may be overriden (eg, by a `moduleResolution`\n         * of `node`). If so, this field will be unset and source files will be considered to be\n         * CommonJS-output-format by the node module transformer and type checker, regardless of extension or context.\n         */\n        impliedNodeFormat?: ResolutionMode;\n    }\n    interface SourceFile {\n        getLineAndCharacterOfPosition(pos: number): LineAndCharacter;\n        getLineEndOfPosition(pos: number): number;\n        getLineStarts(): readonly number[];\n        getPositionOfLineAndCharacter(line: number, character: number): number;\n        update(newText: string, textChangeRange: TextChangeRange): SourceFile;\n    }\n    interface Bundle extends Node {\n        readonly kind: SyntaxKind.Bundle;\n        readonly sourceFiles: readonly SourceFile[];\n    }\n    interface JsonSourceFile extends SourceFile {\n        readonly statements: NodeArray<JsonObjectExpressionStatement>;\n    }\n    interface TsConfigSourceFile extends JsonSourceFile {\n        extendedSourceFiles?: string[];\n    }\n    interface JsonMinusNumericLiteral extends PrefixUnaryExpression {\n        readonly kind: SyntaxKind.PrefixUnaryExpression;\n        readonly operator: SyntaxKind.MinusToken;\n        readonly operand: NumericLiteral;\n    }\n    type JsonObjectExpression = ObjectLiteralExpression | ArrayLiteralExpression | JsonMinusNumericLiteral | NumericLiteral | StringLiteral | BooleanLiteral | NullLiteral;\n    interface JsonObjectExpressionStatement extends ExpressionStatement {\n        readonly expression: JsonObjectExpression;\n    }\n    interface ScriptReferenceHost {\n        getCompilerOptions(): CompilerOptions;\n        getSourceFile(fileName: string): SourceFile | undefined;\n        getSourceFileByPath(path: Path): SourceFile | undefined;\n        getCurrentDirectory(): string;\n    }\n    interface ParseConfigHost extends ModuleResolutionHost {\n        useCaseSensitiveFileNames: boolean;\n        readDirectory(rootDir: string, extensions: readonly string[], excludes: readonly string[] | undefined, includes: readonly string[], depth?: number): readonly string[];\n        /**\n         * Gets a value indicating whether the specified path exists and is a file.\n         * @param path The path to test.\n         */\n        fileExists(path: string): boolean;\n        readFile(path: string): string | undefined;\n        trace?(s: string): void;\n    }\n    /**\n     * Branded string for keeping track of when we've turned an ambiguous path\n     * specified like \"./blah\" to an absolute path to an actual\n     * tsconfig file, e.g. \"/root/blah/tsconfig.json\"\n     */\n    type ResolvedConfigFileName = string & {\n        _isResolvedConfigFileName: never;\n    };\n    interface WriteFileCallbackData {\n    }\n    type WriteFileCallback = (fileName: string, text: string, writeByteOrderMark: boolean, onError?: (message: string) => void, sourceFiles?: readonly SourceFile[], data?: WriteFileCallbackData) => void;\n    class OperationCanceledException {\n    }\n    interface CancellationToken {\n        isCancellationRequested(): boolean;\n        /** @throws OperationCanceledException if isCancellationRequested is true */\n        throwIfCancellationRequested(): void;\n    }\n    interface Program extends ScriptReferenceHost {\n        getCurrentDirectory(): string;\n        /**\n         * Get a list of root file names that were passed to a 'createProgram'\n         */\n        getRootFileNames(): readonly string[];\n        /**\n         * Get a list of files in the program\n         */\n        getSourceFiles(): readonly SourceFile[];\n        /**\n         * Emits the JavaScript and declaration files.  If targetSourceFile is not specified, then\n         * the JavaScript and declaration files will be produced for all the files in this program.\n         * If targetSourceFile is specified, then only the JavaScript and declaration for that\n         * specific file will be generated.\n         *\n         * If writeFile is not specified then the writeFile callback from the compiler host will be\n         * used for writing the JavaScript and declaration files.  Otherwise, the writeFile parameter\n         * will be invoked when writing the JavaScript and declaration files.\n         */\n        emit(targetSourceFile?: SourceFile, writeFile?: WriteFileCallback, cancellationToken?: CancellationToken, emitOnlyDtsFiles?: boolean, customTransformers?: CustomTransformers): EmitResult;\n        getOptionsDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getGlobalDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getSyntacticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly DiagnosticWithLocation[];\n        /** The first time this is called, it will return global diagnostics (no location). */\n        getSemanticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getDeclarationDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly DiagnosticWithLocation[];\n        getConfigFileParsingDiagnostics(): readonly Diagnostic[];\n        /**\n         * Gets a type checker that can be used to semantically analyze source files in the program.\n         */\n        getTypeChecker(): TypeChecker;\n        getNodeCount(): number;\n        getIdentifierCount(): number;\n        getSymbolCount(): number;\n        getTypeCount(): number;\n        getInstantiationCount(): number;\n        getRelationCacheSizes(): {\n            assignable: number;\n            identity: number;\n            subtype: number;\n            strictSubtype: number;\n        };\n        isSourceFileFromExternalLibrary(file: SourceFile): boolean;\n        isSourceFileDefaultLibrary(file: SourceFile): boolean;\n        /**\n         * Calculates the final resolution mode for a given module reference node. This function only returns a result when module resolution\n         * settings allow differing resolution between ESM imports and CJS requires, or when a mode is explicitly provided via import attributes,\n         * which cause an `import` or `require` condition to be used during resolution regardless of module resolution settings. In absence of\n         * overriding attributes, and in modes that support differing resolution, the result indicates the syntax the usage would emit to JavaScript.\n         * Some examples:\n         *\n         * ```ts\n         * // tsc foo.mts --module nodenext\n         * import {} from \"mod\";\n         * // Result: ESNext - the import emits as ESM due to `impliedNodeFormat` set by .mts file extension\n         *\n         * // tsc foo.cts --module nodenext\n         * import {} from \"mod\";\n         * // Result: CommonJS - the import emits as CJS due to `impliedNodeFormat` set by .cts file extension\n         *\n         * // tsc foo.ts --module preserve --moduleResolution bundler\n         * import {} from \"mod\";\n         * // Result: ESNext - the import emits as ESM due to `--module preserve` and `--moduleResolution bundler`\n         * // supports conditional imports/exports\n         *\n         * // tsc foo.ts --module preserve --moduleResolution node10\n         * import {} from \"mod\";\n         * // Result: undefined - the import emits as ESM due to `--module preserve`, but `--moduleResolution node10`\n         * // does not support conditional imports/exports\n         *\n         * // tsc foo.ts --module commonjs --moduleResolution node10\n         * import type {} from \"mod\" with { \"resolution-mode\": \"import\" };\n         * // Result: ESNext - conditional imports/exports always supported with \"resolution-mode\" attribute\n         * ```\n         */\n        getModeForUsageLocation(file: SourceFile, usage: StringLiteralLike): ResolutionMode;\n        /**\n         * Calculates the final resolution mode for an import at some index within a file's `imports` list. This function only returns a result\n         * when module resolution settings allow differing resolution between ESM imports and CJS requires, or when a mode is explicitly provided\n         * via import attributes, which cause an `import` or `require` condition to be used during resolution regardless of module resolution\n         * settings. In absence of overriding attributes, and in modes that support differing resolution, the result indicates the syntax the\n         * usage would emit to JavaScript. Some examples:\n         *\n         * ```ts\n         * // tsc foo.mts --module nodenext\n         * import {} from \"mod\";\n         * // Result: ESNext - the import emits as ESM due to `impliedNodeFormat` set by .mts file extension\n         *\n         * // tsc foo.cts --module nodenext\n         * import {} from \"mod\";\n         * // Result: CommonJS - the import emits as CJS due to `impliedNodeFormat` set by .cts file extension\n         *\n         * // tsc foo.ts --module preserve --moduleResolution bundler\n         * import {} from \"mod\";\n         * // Result: ESNext - the import emits as ESM due to `--module preserve` and `--moduleResolution bundler`\n         * // supports conditional imports/exports\n         *\n         * // tsc foo.ts --module preserve --moduleResolution node10\n         * import {} from \"mod\";\n         * // Result: undefined - the import emits as ESM due to `--module preserve`, but `--moduleResolution node10`\n         * // does not support conditional imports/exports\n         *\n         * // tsc foo.ts --module commonjs --moduleResolution node10\n         * import type {} from \"mod\" with { \"resolution-mode\": \"import\" };\n         * // Result: ESNext - conditional imports/exports always supported with \"resolution-mode\" attribute\n         * ```\n         */\n        getModeForResolutionAtIndex(file: SourceFile, index: number): ResolutionMode;\n        getProjectReferences(): readonly ProjectReference[] | undefined;\n        getResolvedProjectReferences(): readonly (ResolvedProjectReference | undefined)[] | undefined;\n    }\n    interface ResolvedProjectReference {\n        commandLine: ParsedCommandLine;\n        sourceFile: SourceFile;\n        references?: readonly (ResolvedProjectReference | undefined)[];\n    }\n    type CustomTransformerFactory = (context: TransformationContext) => CustomTransformer;\n    interface CustomTransformer {\n        transformSourceFile(node: SourceFile): SourceFile;\n        transformBundle(node: Bundle): Bundle;\n    }\n    interface CustomTransformers {\n        /** Custom transformers to evaluate before built-in .js transformations. */\n        before?: (TransformerFactory<SourceFile> | CustomTransformerFactory)[];\n        /** Custom transformers to evaluate after built-in .js transformations. */\n        after?: (TransformerFactory<SourceFile> | CustomTransformerFactory)[];\n        /** Custom transformers to evaluate after built-in .d.ts transformations. */\n        afterDeclarations?: (TransformerFactory<Bundle | SourceFile> | CustomTransformerFactory)[];\n    }\n    interface SourceMapSpan {\n        /** Line number in the .js file. */\n        emittedLine: number;\n        /** Column number in the .js file. */\n        emittedColumn: number;\n        /** Line number in the .ts file. */\n        sourceLine: number;\n        /** Column number in the .ts file. */\n        sourceColumn: number;\n        /** Optional name (index into names array) associated with this span. */\n        nameIndex?: number;\n        /** .ts file (index into sources array) associated with this span */\n        sourceIndex: number;\n    }\n    /** Return code used by getEmitOutput function to indicate status of the function */\n    enum ExitStatus {\n        Success = 0,\n        DiagnosticsPresent_OutputsSkipped = 1,\n        DiagnosticsPresent_OutputsGenerated = 2,\n        InvalidProject_OutputsSkipped = 3,\n        ProjectReferenceCycle_OutputsSkipped = 4,\n    }\n    interface EmitResult {\n        emitSkipped: boolean;\n        /** Contains declaration emit diagnostics */\n        diagnostics: readonly Diagnostic[];\n        emittedFiles?: string[];\n    }\n    interface TypeChecker {\n        getTypeOfSymbolAtLocation(symbol: Symbol, node: Node): Type;\n        getTypeOfSymbol(symbol: Symbol): Type;\n        getDeclaredTypeOfSymbol(symbol: Symbol): Type;\n        getPropertiesOfType(type: Type): Symbol[];\n        getPropertyOfType(type: Type, propertyName: string): Symbol | undefined;\n        getPrivateIdentifierPropertyOfType(leftType: Type, name: string, location: Node): Symbol | undefined;\n        getIndexInfoOfType(type: Type, kind: IndexKind): IndexInfo | undefined;\n        getIndexInfosOfType(type: Type): readonly IndexInfo[];\n        getIndexInfosOfIndexSymbol: (indexSymbol: Symbol, siblingSymbols?: Symbol[] | undefined) => IndexInfo[];\n        getSignaturesOfType(type: Type, kind: SignatureKind): readonly Signature[];\n        getIndexTypeOfType(type: Type, kind: IndexKind): Type | undefined;\n        getBaseTypes(type: InterfaceType): BaseType[];\n        getBaseTypeOfLiteralType(type: Type): Type;\n        getWidenedType(type: Type): Type;\n        /**\n         * Gets the \"awaited type\" of a type.\n         *\n         * If an expression has a Promise-like type, the \"awaited type\" of the expression is\n         * derived from the type of the first argument of the fulfillment callback for that\n         * Promise's `then` method. If the \"awaited type\" is itself a Promise-like, it is\n         * recursively unwrapped in the same manner until a non-promise type is found.\n         *\n         * If an expression does not have a Promise-like type, its \"awaited type\" is the type\n         * of the expression.\n         *\n         * If the resulting \"awaited type\" is a generic object type, then it is wrapped in\n         * an `Awaited<T>`.\n         *\n         * In the event the \"awaited type\" circularly references itself, or is a non-Promise\n         * object-type with a callable `then()` method, an \"awaited type\" cannot be determined\n         * and the value `undefined` will be returned.\n         *\n         * This is used to reflect the runtime behavior of the `await` keyword.\n         */\n        getAwaitedType(type: Type): Type | undefined;\n        getReturnTypeOfSignature(signature: Signature): Type;\n        getNullableType(type: Type, flags: TypeFlags): Type;\n        getNonNullableType(type: Type): Type;\n        getTypeArguments(type: TypeReference): readonly Type[];\n        /** Note that the resulting nodes cannot be checked. */\n        typeToTypeNode(type: Type, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): TypeNode | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        signatureToSignatureDeclaration(signature: Signature, kind: SyntaxKind, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined):\n            | SignatureDeclaration & {\n                typeArguments?: NodeArray<TypeNode>;\n            }\n            | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        indexInfoToIndexSignatureDeclaration(indexInfo: IndexInfo, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): IndexSignatureDeclaration | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        symbolToEntityName(symbol: Symbol, meaning: SymbolFlags, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): EntityName | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        symbolToExpression(symbol: Symbol, meaning: SymbolFlags, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): Expression | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        symbolToTypeParameterDeclarations(symbol: Symbol, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): NodeArray<TypeParameterDeclaration> | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        symbolToParameterDeclaration(symbol: Symbol, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): ParameterDeclaration | undefined;\n        /** Note that the resulting nodes cannot be checked. */\n        typeParameterToDeclaration(parameter: TypeParameter, enclosingDeclaration: Node | undefined, flags: NodeBuilderFlags | undefined): TypeParameterDeclaration | undefined;\n        getSymbolsInScope(location: Node, meaning: SymbolFlags): Symbol[];\n        getSymbolAtLocation(node: Node): Symbol | undefined;\n        getSymbolsOfParameterPropertyDeclaration(parameter: ParameterDeclaration, parameterName: string): Symbol[];\n        /**\n         * The function returns the value (local variable) symbol of an identifier in the short-hand property assignment.\n         * This is necessary as an identifier in short-hand property assignment can contains two meaning: property name and property value.\n         */\n        getShorthandAssignmentValueSymbol(location: Node | undefined): Symbol | undefined;\n        getExportSpecifierLocalTargetSymbol(location: ExportSpecifier | Identifier): Symbol | undefined;\n        /**\n         * If a symbol is a local symbol with an associated exported symbol, returns the exported symbol.\n         * Otherwise returns its input.\n         * For example, at `export type T = number;`:\n         *     - `getSymbolAtLocation` at the location `T` will return the exported symbol for `T`.\n         *     - But the result of `getSymbolsInScope` will contain the *local* symbol for `T`, not the exported symbol.\n         *     - Calling `getExportSymbolOfSymbol` on that local symbol will return the exported symbol.\n         */\n        getExportSymbolOfSymbol(symbol: Symbol): Symbol;\n        getPropertySymbolOfDestructuringAssignment(location: Identifier): Symbol | undefined;\n        getTypeOfAssignmentPattern(pattern: AssignmentPattern): Type;\n        getTypeAtLocation(node: Node): Type;\n        getTypeFromTypeNode(node: TypeNode): Type;\n        signatureToString(signature: Signature, enclosingDeclaration?: Node, flags?: TypeFormatFlags, kind?: SignatureKind): string;\n        typeToString(type: Type, enclosingDeclaration?: Node, flags?: TypeFormatFlags): string;\n        symbolToString(symbol: Symbol, enclosingDeclaration?: Node, meaning?: SymbolFlags, flags?: SymbolFormatFlags): string;\n        typePredicateToString(predicate: TypePredicate, enclosingDeclaration?: Node, flags?: TypeFormatFlags): string;\n        getFullyQualifiedName(symbol: Symbol): string;\n        getAugmentedPropertiesOfType(type: Type): Symbol[];\n        getRootSymbols(symbol: Symbol): readonly Symbol[];\n        getSymbolOfExpando(node: Node, allowDeclaration: boolean): Symbol | undefined;\n        getContextualType(node: Expression): Type | undefined;\n        /**\n         * returns unknownSignature in the case of an error.\n         * returns undefined if the node is not valid.\n         * @param argumentCount Apparent number of arguments, passed in case of a possibly incomplete call. This should come from an ArgumentListInfo. See `signatureHelp.ts`.\n         */\n        getResolvedSignature(node: CallLikeExpression, candidatesOutArray?: Signature[], argumentCount?: number): Signature | undefined;\n        getSignatureFromDeclaration(declaration: SignatureDeclaration): Signature | undefined;\n        isImplementationOfOverload(node: SignatureDeclaration): boolean | undefined;\n        isUndefinedSymbol(symbol: Symbol): boolean;\n        isArgumentsSymbol(symbol: Symbol): boolean;\n        isUnknownSymbol(symbol: Symbol): boolean;\n        getMergedSymbol(symbol: Symbol): Symbol;\n        getConstantValue(node: EnumMember | PropertyAccessExpression | ElementAccessExpression): string | number | undefined;\n        isValidPropertyAccess(node: PropertyAccessExpression | QualifiedName | ImportTypeNode, propertyName: string): boolean;\n        /** Follow all aliases to get the original symbol. */\n        getAliasedSymbol(symbol: Symbol): Symbol;\n        /** Follow a *single* alias to get the immediately aliased symbol. */\n        getImmediateAliasedSymbol(symbol: Symbol): Symbol | undefined;\n        getExportsOfModule(moduleSymbol: Symbol): Symbol[];\n        getJsxIntrinsicTagNamesAt(location: Node): Symbol[];\n        isOptionalParameter(node: ParameterDeclaration): boolean;\n        getAmbientModules(): Symbol[];\n        tryGetMemberInModuleExports(memberName: string, moduleSymbol: Symbol): Symbol | undefined;\n        getApparentType(type: Type): Type;\n        getBaseConstraintOfType(type: Type): Type | undefined;\n        getDefaultFromTypeParameter(type: Type): Type | undefined;\n        /**\n         * Gets the intrinsic `any` type. There are multiple types that act as `any` used internally in the compiler,\n         * so the type returned by this function should not be used in equality checks to determine if another type\n         * is `any`. Instead, use `type.flags & TypeFlags.Any`.\n         */\n        getAnyType(): Type;\n        getStringType(): Type;\n        getStringLiteralType(value: string): StringLiteralType;\n        getNumberType(): Type;\n        getNumberLiteralType(value: number): NumberLiteralType;\n        getBigIntType(): Type;\n        getBigIntLiteralType(value: PseudoBigInt): BigIntLiteralType;\n        getBooleanType(): Type;\n        getUnknownType(): Type;\n        getFalseType(): Type;\n        getTrueType(): Type;\n        getVoidType(): Type;\n        /**\n         * Gets the intrinsic `undefined` type. There are multiple types that act as `undefined` used internally in the compiler\n         * depending on compiler options, so the type returned by this function should not be used in equality checks to determine\n         * if another type is `undefined`. Instead, use `type.flags & TypeFlags.Undefined`.\n         */\n        getUndefinedType(): Type;\n        /**\n         * Gets the intrinsic `null` type. There are multiple types that act as `null` used internally in the compiler,\n         * so the type returned by this function should not be used in equality checks to determine if another type\n         * is `null`. Instead, use `type.flags & TypeFlags.Null`.\n         */\n        getNullType(): Type;\n        getESSymbolType(): Type;\n        /**\n         * Gets the intrinsic `never` type. There are multiple types that act as `never` used internally in the compiler,\n         * so the type returned by this function should not be used in equality checks to determine if another type\n         * is `never`. Instead, use `type.flags & TypeFlags.Never`.\n         */\n        getNeverType(): Type;\n        /**\n         * Gets the intrinsic `object` type.\n         */\n        getNonPrimitiveType(): Type;\n        /**\n         * Returns true if the \"source\" type is assignable to the \"target\" type.\n         *\n         * ```ts\n         * declare const abcLiteral: ts.Type; // Type of \"abc\"\n         * declare const stringType: ts.Type; // Type of string\n         *\n         * isTypeAssignableTo(abcLiteral, abcLiteral); // true; \"abc\" is assignable to \"abc\"\n         * isTypeAssignableTo(abcLiteral, stringType); // true; \"abc\" is assignable to string\n         * isTypeAssignableTo(stringType, abcLiteral); // false; string is not assignable to \"abc\"\n         * isTypeAssignableTo(stringType, stringType); // true; string is assignable to string\n         * ```\n         */\n        isTypeAssignableTo(source: Type, target: Type): boolean;\n        /**\n         * True if this type is the `Array` or `ReadonlyArray` type from lib.d.ts.\n         * This function will _not_ return true if passed a type which\n         * extends `Array` (for example, the TypeScript AST's `NodeArray` type).\n         */\n        isArrayType(type: Type): boolean;\n        /**\n         * True if this type is a tuple type. This function will _not_ return true if\n         * passed a type which extends from a tuple.\n         */\n        isTupleType(type: Type): boolean;\n        /**\n         * True if this type is assignable to `ReadonlyArray<any>`.\n         */\n        isArrayLikeType(type: Type): boolean;\n        resolveName(name: string, location: Node | undefined, meaning: SymbolFlags, excludeGlobals: boolean): Symbol | undefined;\n        getTypePredicateOfSignature(signature: Signature): TypePredicate | undefined;\n        /**\n         * Depending on the operation performed, it may be appropriate to throw away the checker\n         * if the cancellation token is triggered. Typically, if it is used for error checking\n         * and the operation is cancelled, then it should be discarded, otherwise it is safe to keep.\n         */\n        runWithCancellationToken<T>(token: CancellationToken, cb: (checker: TypeChecker) => T): T;\n        getTypeArgumentsForResolvedSignature(signature: Signature): readonly Type[] | undefined;\n    }\n    enum NodeBuilderFlags {\n        None = 0,\n        NoTruncation = 1,\n        WriteArrayAsGenericType = 2,\n        GenerateNamesForShadowedTypeParams = 4,\n        UseStructuralFallback = 8,\n        ForbidIndexedAccessSymbolReferences = 16,\n        WriteTypeArgumentsOfSignature = 32,\n        UseFullyQualifiedType = 64,\n        UseOnlyExternalAliasing = 128,\n        SuppressAnyReturnType = 256,\n        WriteTypeParametersInQualifiedName = 512,\n        MultilineObjectLiterals = 1024,\n        WriteClassExpressionAsTypeLiteral = 2048,\n        UseTypeOfFunction = 4096,\n        OmitParameterModifiers = 8192,\n        UseAliasDefinedOutsideCurrentScope = 16384,\n        UseSingleQuotesForStringLiteralType = 268435456,\n        NoTypeReduction = 536870912,\n        OmitThisParameter = 33554432,\n        AllowThisInObjectLiteral = 32768,\n        AllowQualifiedNameInPlaceOfIdentifier = 65536,\n        AllowAnonymousIdentifier = 131072,\n        AllowEmptyUnionOrIntersection = 262144,\n        AllowEmptyTuple = 524288,\n        AllowUniqueESSymbolType = 1048576,\n        AllowEmptyIndexInfoType = 2097152,\n        AllowNodeModulesRelativePaths = 67108864,\n        IgnoreErrors = 70221824,\n        InObjectTypeLiteral = 4194304,\n        InTypeAlias = 8388608,\n        InInitialEntityName = 16777216,\n    }\n    enum TypeFormatFlags {\n        None = 0,\n        NoTruncation = 1,\n        WriteArrayAsGenericType = 2,\n        GenerateNamesForShadowedTypeParams = 4,\n        UseStructuralFallback = 8,\n        WriteTypeArgumentsOfSignature = 32,\n        UseFullyQualifiedType = 64,\n        SuppressAnyReturnType = 256,\n        MultilineObjectLiterals = 1024,\n        WriteClassExpressionAsTypeLiteral = 2048,\n        UseTypeOfFunction = 4096,\n        OmitParameterModifiers = 8192,\n        UseAliasDefinedOutsideCurrentScope = 16384,\n        UseSingleQuotesForStringLiteralType = 268435456,\n        NoTypeReduction = 536870912,\n        OmitThisParameter = 33554432,\n        AllowUniqueESSymbolType = 1048576,\n        AddUndefined = 131072,\n        WriteArrowStyleSignature = 262144,\n        InArrayType = 524288,\n        InElementType = 2097152,\n        InFirstTypeArgument = 4194304,\n        InTypeAlias = 8388608,\n        NodeBuilderFlagsMask = 848330095,\n    }\n    enum SymbolFormatFlags {\n        None = 0,\n        WriteTypeParametersOrArguments = 1,\n        UseOnlyExternalAliasing = 2,\n        AllowAnyNodeKind = 4,\n        UseAliasDefinedOutsideCurrentScope = 8,\n    }\n    enum TypePredicateKind {\n        This = 0,\n        Identifier = 1,\n        AssertsThis = 2,\n        AssertsIdentifier = 3,\n    }\n    interface TypePredicateBase {\n        kind: TypePredicateKind;\n        type: Type | undefined;\n    }\n    interface ThisTypePredicate extends TypePredicateBase {\n        kind: TypePredicateKind.This;\n        parameterName: undefined;\n        parameterIndex: undefined;\n        type: Type;\n    }\n    interface IdentifierTypePredicate extends TypePredicateBase {\n        kind: TypePredicateKind.Identifier;\n        parameterName: string;\n        parameterIndex: number;\n        type: Type;\n    }\n    interface AssertsThisTypePredicate extends TypePredicateBase {\n        kind: TypePredicateKind.AssertsThis;\n        parameterName: undefined;\n        parameterIndex: undefined;\n        type: Type | undefined;\n    }\n    interface AssertsIdentifierTypePredicate extends TypePredicateBase {\n        kind: TypePredicateKind.AssertsIdentifier;\n        parameterName: string;\n        parameterIndex: number;\n        type: Type | undefined;\n    }\n    type TypePredicate = ThisTypePredicate | IdentifierTypePredicate | AssertsThisTypePredicate | AssertsIdentifierTypePredicate;\n    enum SymbolFlags {\n        None = 0,\n        FunctionScopedVariable = 1,\n        BlockScopedVariable = 2,\n        Property = 4,\n        EnumMember = 8,\n        Function = 16,\n        Class = 32,\n        Interface = 64,\n        ConstEnum = 128,\n        RegularEnum = 256,\n        ValueModule = 512,\n        NamespaceModule = 1024,\n        TypeLiteral = 2048,\n        ObjectLiteral = 4096,\n        Method = 8192,\n        Constructor = 16384,\n        GetAccessor = 32768,\n        SetAccessor = 65536,\n        Signature = 131072,\n        TypeParameter = 262144,\n        TypeAlias = 524288,\n        ExportValue = 1048576,\n        Alias = 2097152,\n        Prototype = 4194304,\n        ExportStar = 8388608,\n        Optional = 16777216,\n        Transient = 33554432,\n        Assignment = 67108864,\n        ModuleExports = 134217728,\n        All = -1,\n        Enum = 384,\n        Variable = 3,\n        Value = 111551,\n        Type = 788968,\n        Namespace = 1920,\n        Module = 1536,\n        Accessor = 98304,\n        FunctionScopedVariableExcludes = 111550,\n        BlockScopedVariableExcludes = 111551,\n        ParameterExcludes = 111551,\n        PropertyExcludes = 0,\n        EnumMemberExcludes = 900095,\n        FunctionExcludes = 110991,\n        ClassExcludes = 899503,\n        InterfaceExcludes = 788872,\n        RegularEnumExcludes = 899327,\n        ConstEnumExcludes = 899967,\n        ValueModuleExcludes = 110735,\n        NamespaceModuleExcludes = 0,\n        MethodExcludes = 103359,\n        GetAccessorExcludes = 46015,\n        SetAccessorExcludes = 78783,\n        AccessorExcludes = 13247,\n        TypeParameterExcludes = 526824,\n        TypeAliasExcludes = 788968,\n        AliasExcludes = 2097152,\n        ModuleMember = 2623475,\n        ExportHasLocal = 944,\n        BlockScoped = 418,\n        PropertyOrAccessor = 98308,\n        ClassMember = 106500,\n    }\n    interface Symbol {\n        flags: SymbolFlags;\n        escapedName: __String;\n        declarations?: Declaration[];\n        valueDeclaration?: Declaration;\n        members?: SymbolTable;\n        exports?: SymbolTable;\n        globalExports?: SymbolTable;\n    }\n    interface Symbol {\n        readonly name: string;\n        getFlags(): SymbolFlags;\n        getEscapedName(): __String;\n        getName(): string;\n        getDeclarations(): Declaration[] | undefined;\n        getDocumentationComment(typeChecker: TypeChecker | undefined): SymbolDisplayPart[];\n        getJsDocTags(checker?: TypeChecker): JSDocTagInfo[];\n    }\n    enum InternalSymbolName {\n        Call = \"__call\",\n        Constructor = \"__constructor\",\n        New = \"__new\",\n        Index = \"__index\",\n        ExportStar = \"__export\",\n        Global = \"__global\",\n        Missing = \"__missing\",\n        Type = \"__type\",\n        Object = \"__object\",\n        JSXAttributes = \"__jsxAttributes\",\n        Class = \"__class\",\n        Function = \"__function\",\n        Computed = \"__computed\",\n        Resolving = \"__resolving__\",\n        ExportEquals = \"export=\",\n        Default = \"default\",\n        This = \"this\",\n        InstantiationExpression = \"__instantiationExpression\",\n        ImportAttributes = \"__importAttributes\",\n    }\n    /**\n     * This represents a string whose leading underscore have been escaped by adding extra leading underscores.\n     * The shape of this brand is rather unique compared to others we've used.\n     * Instead of just an intersection of a string and an object, it is that union-ed\n     * with an intersection of void and an object. This makes it wholly incompatible\n     * with a normal string (which is good, it cannot be misused on assignment or on usage),\n     * while still being comparable with a normal string via === (also good) and castable from a string.\n     */\n    type __String =\n        | (string & {\n            __escapedIdentifier: void;\n        })\n        | (void & {\n            __escapedIdentifier: void;\n        })\n        | InternalSymbolName;\n    /** @deprecated Use ReadonlyMap<__String, T> instead. */\n    type ReadonlyUnderscoreEscapedMap<T> = ReadonlyMap<__String, T>;\n    /** @deprecated Use Map<__String, T> instead. */\n    type UnderscoreEscapedMap<T> = Map<__String, T>;\n    /** SymbolTable based on ES6 Map interface. */\n    type SymbolTable = Map<__String, Symbol>;\n    enum TypeFlags {\n        Any = 1,\n        Unknown = 2,\n        String = 4,\n        Number = 8,\n        Boolean = 16,\n        Enum = 32,\n        BigInt = 64,\n        StringLiteral = 128,\n        NumberLiteral = 256,\n        BooleanLiteral = 512,\n        EnumLiteral = 1024,\n        BigIntLiteral = 2048,\n        ESSymbol = 4096,\n        UniqueESSymbol = 8192,\n        Void = 16384,\n        Undefined = 32768,\n        Null = 65536,\n        Never = 131072,\n        TypeParameter = 262144,\n        Object = 524288,\n        Union = 1048576,\n        Intersection = 2097152,\n        Index = 4194304,\n        IndexedAccess = 8388608,\n        Conditional = 16777216,\n        Substitution = 33554432,\n        NonPrimitive = 67108864,\n        TemplateLiteral = 134217728,\n        StringMapping = 268435456,\n        Literal = 2944,\n        Unit = 109472,\n        Freshable = 2976,\n        StringOrNumberLiteral = 384,\n        PossiblyFalsy = 117724,\n        StringLike = 402653316,\n        NumberLike = 296,\n        BigIntLike = 2112,\n        BooleanLike = 528,\n        EnumLike = 1056,\n        ESSymbolLike = 12288,\n        VoidLike = 49152,\n        UnionOrIntersection = 3145728,\n        StructuredType = 3670016,\n        TypeVariable = 8650752,\n        InstantiableNonPrimitive = 58982400,\n        InstantiablePrimitive = 406847488,\n        Instantiable = 465829888,\n        StructuredOrInstantiable = 469499904,\n        Narrowable = 536624127,\n    }\n    type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;\n    interface Type {\n        flags: TypeFlags;\n        symbol: Symbol;\n        pattern?: DestructuringPattern;\n        aliasSymbol?: Symbol;\n        aliasTypeArguments?: readonly Type[];\n    }\n    interface Type {\n        getFlags(): TypeFlags;\n        getSymbol(): Symbol | undefined;\n        getProperties(): Symbol[];\n        getProperty(propertyName: string): Symbol | undefined;\n        getApparentProperties(): Symbol[];\n        getCallSignatures(): readonly Signature[];\n        getConstructSignatures(): readonly Signature[];\n        getStringIndexType(): Type | undefined;\n        getNumberIndexType(): Type | undefined;\n        getBaseTypes(): BaseType[] | undefined;\n        getNonNullableType(): Type;\n        getConstraint(): Type | undefined;\n        getDefault(): Type | undefined;\n        isUnion(): this is UnionType;\n        isIntersection(): this is IntersectionType;\n        isUnionOrIntersection(): this is UnionOrIntersectionType;\n        isLiteral(): this is LiteralType;\n        isStringLiteral(): this is StringLiteralType;\n        isNumberLiteral(): this is NumberLiteralType;\n        isTypeParameter(): this is TypeParameter;\n        isClassOrInterface(): this is InterfaceType;\n        isClass(): this is InterfaceType;\n        isIndexType(): this is IndexType;\n    }\n    interface FreshableType extends Type {\n        freshType: FreshableType;\n        regularType: FreshableType;\n    }\n    interface LiteralType extends FreshableType {\n        value: string | number | PseudoBigInt;\n    }\n    interface UniqueESSymbolType extends Type {\n        symbol: Symbol;\n        escapedName: __String;\n    }\n    interface StringLiteralType extends LiteralType {\n        value: string;\n    }\n    interface NumberLiteralType extends LiteralType {\n        value: number;\n    }\n    interface BigIntLiteralType extends LiteralType {\n        value: PseudoBigInt;\n    }\n    interface EnumType extends FreshableType {\n    }\n    enum ObjectFlags {\n        None = 0,\n        Class = 1,\n        Interface = 2,\n        Reference = 4,\n        Tuple = 8,\n        Anonymous = 16,\n        Mapped = 32,\n        Instantiated = 64,\n        ObjectLiteral = 128,\n        EvolvingArray = 256,\n        ObjectLiteralPatternWithComputedProperties = 512,\n        ReverseMapped = 1024,\n        JsxAttributes = 2048,\n        JSLiteral = 4096,\n        FreshLiteral = 8192,\n        ArrayLiteral = 16384,\n        SingleSignatureType = 134217728,\n        ClassOrInterface = 3,\n        ContainsSpread = 2097152,\n        ObjectRestType = 4194304,\n        InstantiationExpressionType = 8388608,\n    }\n    interface ObjectType extends Type {\n        objectFlags: ObjectFlags;\n    }\n    /** Class and interface types (ObjectFlags.Class and ObjectFlags.Interface). */\n    interface InterfaceType extends ObjectType {\n        typeParameters: TypeParameter[] | undefined;\n        outerTypeParameters: TypeParameter[] | undefined;\n        localTypeParameters: TypeParameter[] | undefined;\n        thisType: TypeParameter | undefined;\n    }\n    type BaseType = ObjectType | IntersectionType | TypeVariable;\n    interface InterfaceTypeWithDeclaredMembers extends InterfaceType {\n        declaredProperties: Symbol[];\n        declaredCallSignatures: Signature[];\n        declaredConstructSignatures: Signature[];\n        declaredIndexInfos: IndexInfo[];\n    }\n    /**\n     * Type references (ObjectFlags.Reference). When a class or interface has type parameters or\n     * a \"this\" type, references to the class or interface are made using type references. The\n     * typeArguments property specifies the types to substitute for the type parameters of the\n     * class or interface and optionally includes an extra element that specifies the type to\n     * substitute for \"this\" in the resulting instantiation. When no extra argument is present,\n     * the type reference itself is substituted for \"this\". The typeArguments property is undefined\n     * if the class or interface has no type parameters and the reference isn't specifying an\n     * explicit \"this\" argument.\n     */\n    interface TypeReference extends ObjectType {\n        target: GenericType;\n        node?: TypeReferenceNode | ArrayTypeNode | TupleTypeNode;\n    }\n    interface TypeReference {\n        typeArguments?: readonly Type[];\n    }\n    interface DeferredTypeReference extends TypeReference {\n    }\n    interface GenericType extends InterfaceType, TypeReference {\n    }\n    enum ElementFlags {\n        Required = 1,\n        Optional = 2,\n        Rest = 4,\n        Variadic = 8,\n        Fixed = 3,\n        Variable = 12,\n        NonRequired = 14,\n        NonRest = 11,\n    }\n    interface TupleType extends GenericType {\n        elementFlags: readonly ElementFlags[];\n        /** Number of required or variadic elements */\n        minLength: number;\n        /** Number of initial required or optional elements */\n        fixedLength: number;\n        /**\n         * True if tuple has any rest or variadic elements\n         *\n         * @deprecated Use `.combinedFlags & ElementFlags.Variable` instead\n         */\n        hasRestElement: boolean;\n        combinedFlags: ElementFlags;\n        readonly: boolean;\n        labeledElementDeclarations?: readonly (NamedTupleMember | ParameterDeclaration | undefined)[];\n    }\n    interface TupleTypeReference extends TypeReference {\n        target: TupleType;\n    }\n    interface UnionOrIntersectionType extends Type {\n        types: Type[];\n    }\n    interface UnionType extends UnionOrIntersectionType {\n    }\n    interface IntersectionType extends UnionOrIntersectionType {\n    }\n    type StructuredType = ObjectType | UnionType | IntersectionType;\n    interface EvolvingArrayType extends ObjectType {\n        elementType: Type;\n        finalArrayType?: Type;\n    }\n    interface InstantiableType extends Type {\n    }\n    interface TypeParameter extends InstantiableType {\n    }\n    interface IndexedAccessType extends InstantiableType {\n        objectType: Type;\n        indexType: Type;\n        constraint?: Type;\n        simplifiedForReading?: Type;\n        simplifiedForWriting?: Type;\n    }\n    type TypeVariable = TypeParameter | IndexedAccessType;\n    interface IndexType extends InstantiableType {\n        type: InstantiableType | UnionOrIntersectionType;\n    }\n    interface ConditionalRoot {\n        node: ConditionalTypeNode;\n        checkType: Type;\n        extendsType: Type;\n        isDistributive: boolean;\n        inferTypeParameters?: TypeParameter[];\n        outerTypeParameters?: TypeParameter[];\n        instantiations?: Map<string, Type>;\n        aliasSymbol?: Symbol;\n        aliasTypeArguments?: Type[];\n    }\n    interface ConditionalType extends InstantiableType {\n        root: ConditionalRoot;\n        checkType: Type;\n        extendsType: Type;\n        resolvedTrueType?: Type;\n        resolvedFalseType?: Type;\n    }\n    interface TemplateLiteralType extends InstantiableType {\n        texts: readonly string[];\n        types: readonly Type[];\n    }\n    interface StringMappingType extends InstantiableType {\n        symbol: Symbol;\n        type: Type;\n    }\n    interface SubstitutionType extends InstantiableType {\n        objectFlags: ObjectFlags;\n        baseType: Type;\n        constraint: Type;\n    }\n    enum SignatureKind {\n        Call = 0,\n        Construct = 1,\n    }\n    interface Signature {\n        declaration?: SignatureDeclaration | JSDocSignature;\n        typeParameters?: readonly TypeParameter[];\n        parameters: readonly Symbol[];\n        thisParameter?: Symbol;\n    }\n    interface Signature {\n        getDeclaration(): SignatureDeclaration;\n        getTypeParameters(): TypeParameter[] | undefined;\n        getParameters(): Symbol[];\n        getTypeParameterAtPosition(pos: number): Type;\n        getReturnType(): Type;\n        getDocumentationComment(typeChecker: TypeChecker | undefined): SymbolDisplayPart[];\n        getJsDocTags(): JSDocTagInfo[];\n    }\n    enum IndexKind {\n        String = 0,\n        Number = 1,\n    }\n    type ElementWithComputedPropertyName = (ClassElement | ObjectLiteralElement) & {\n        name: ComputedPropertyName;\n    };\n    interface IndexInfo {\n        keyType: Type;\n        type: Type;\n        isReadonly: boolean;\n        declaration?: IndexSignatureDeclaration;\n        components?: ElementWithComputedPropertyName[];\n    }\n    enum InferencePriority {\n        None = 0,\n        NakedTypeVariable = 1,\n        SpeculativeTuple = 2,\n        SubstituteSource = 4,\n        HomomorphicMappedType = 8,\n        PartialHomomorphicMappedType = 16,\n        MappedTypeConstraint = 32,\n        ContravariantConditional = 64,\n        ReturnType = 128,\n        LiteralKeyof = 256,\n        NoConstraints = 512,\n        AlwaysStrict = 1024,\n        MaxValue = 2048,\n        PriorityImpliesCombination = 416,\n        Circularity = -1,\n    }\n    interface FileExtensionInfo {\n        extension: string;\n        isMixedContent: boolean;\n        scriptKind?: ScriptKind;\n    }\n    interface DiagnosticMessage {\n        key: string;\n        category: DiagnosticCategory;\n        code: number;\n        message: string;\n        reportsUnnecessary?: {};\n        reportsDeprecated?: {};\n    }\n    /**\n     * A linked list of formatted diagnostic messages to be used as part of a multiline message.\n     * It is built from the bottom up, leaving the head to be the \"main\" diagnostic.\n     * While it seems that DiagnosticMessageChain is structurally similar to DiagnosticMessage,\n     * the difference is that messages are all preformatted in DMC.\n     */\n    interface DiagnosticMessageChain {\n        messageText: string;\n        category: DiagnosticCategory;\n        code: number;\n        next?: DiagnosticMessageChain[];\n    }\n    interface Diagnostic extends DiagnosticRelatedInformation {\n        /** May store more in future. For now, this will simply be `true` to indicate when a diagnostic is an unused-identifier diagnostic. */\n        reportsUnnecessary?: {};\n        reportsDeprecated?: {};\n        source?: string;\n        relatedInformation?: DiagnosticRelatedInformation[];\n    }\n    interface DiagnosticRelatedInformation {\n        category: DiagnosticCategory;\n        code: number;\n        file: SourceFile | undefined;\n        start: number | undefined;\n        length: number | undefined;\n        messageText: string | DiagnosticMessageChain;\n    }\n    interface DiagnosticWithLocation extends Diagnostic {\n        file: SourceFile;\n        start: number;\n        length: number;\n    }\n    enum DiagnosticCategory {\n        Warning = 0,\n        Error = 1,\n        Suggestion = 2,\n        Message = 3,\n    }\n    enum ModuleResolutionKind {\n        Classic = 1,\n        /**\n         * @deprecated\n         * `NodeJs` was renamed to `Node10` to better reflect the version of Node that it targets.\n         * Use the new name or consider switching to a modern module resolution target.\n         */\n        NodeJs = 2,\n        Node10 = 2,\n        Node16 = 3,\n        NodeNext = 99,\n        Bundler = 100,\n    }\n    enum ModuleDetectionKind {\n        /**\n         * Files with imports, exports and/or import.meta are considered modules\n         */\n        Legacy = 1,\n        /**\n         * Legacy, but also files with jsx under react-jsx or react-jsxdev and esm mode files under moduleResolution: node16+\n         */\n        Auto = 2,\n        /**\n         * Consider all non-declaration files modules, regardless of present syntax\n         */\n        Force = 3,\n    }\n    interface PluginImport {\n        name: string;\n    }\n    interface ProjectReference {\n        /** A normalized path on disk */\n        path: string;\n        /** The path as the user originally wrote it */\n        originalPath?: string;\n        /** @deprecated */\n        prepend?: boolean;\n        /** True if it is intended that this reference form a circularity */\n        circular?: boolean;\n    }\n    enum WatchFileKind {\n        FixedPollingInterval = 0,\n        PriorityPollingInterval = 1,\n        DynamicPriorityPolling = 2,\n        FixedChunkSizePolling = 3,\n        UseFsEvents = 4,\n        UseFsEventsOnParentDirectory = 5,\n    }\n    enum WatchDirectoryKind {\n        UseFsEvents = 0,\n        FixedPollingInterval = 1,\n        DynamicPriorityPolling = 2,\n        FixedChunkSizePolling = 3,\n    }\n    enum PollingWatchKind {\n        FixedInterval = 0,\n        PriorityInterval = 1,\n        DynamicPriority = 2,\n        FixedChunkSize = 3,\n    }\n    type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;\n    interface CompilerOptions {\n        allowImportingTsExtensions?: boolean;\n        allowJs?: boolean;\n        allowArbitraryExtensions?: boolean;\n        allowSyntheticDefaultImports?: boolean;\n        allowUmdGlobalAccess?: boolean;\n        allowUnreachableCode?: boolean;\n        allowUnusedLabels?: boolean;\n        alwaysStrict?: boolean;\n        baseUrl?: string;\n        /** @deprecated */\n        charset?: string;\n        checkJs?: boolean;\n        customConditions?: string[];\n        declaration?: boolean;\n        declarationMap?: boolean;\n        emitDeclarationOnly?: boolean;\n        declarationDir?: string;\n        disableSizeLimit?: boolean;\n        disableSourceOfProjectReferenceRedirect?: boolean;\n        disableSolutionSearching?: boolean;\n        disableReferencedProjectLoad?: boolean;\n        downlevelIteration?: boolean;\n        emitBOM?: boolean;\n        emitDecoratorMetadata?: boolean;\n        exactOptionalPropertyTypes?: boolean;\n        experimentalDecorators?: boolean;\n        forceConsistentCasingInFileNames?: boolean;\n        ignoreDeprecations?: string;\n        importHelpers?: boolean;\n        /** @deprecated */\n        importsNotUsedAsValues?: ImportsNotUsedAsValues;\n        inlineSourceMap?: boolean;\n        inlineSources?: boolean;\n        isolatedModules?: boolean;\n        isolatedDeclarations?: boolean;\n        jsx?: JsxEmit;\n        /** @deprecated */\n        keyofStringsOnly?: boolean;\n        lib?: string[];\n        libReplacement?: boolean;\n        locale?: string;\n        mapRoot?: string;\n        maxNodeModuleJsDepth?: number;\n        module?: ModuleKind;\n        moduleResolution?: ModuleResolutionKind;\n        moduleSuffixes?: string[];\n        moduleDetection?: ModuleDetectionKind;\n        newLine?: NewLineKind;\n        noEmit?: boolean;\n        noCheck?: boolean;\n        noEmitHelpers?: boolean;\n        noEmitOnError?: boolean;\n        noErrorTruncation?: boolean;\n        noFallthroughCasesInSwitch?: boolean;\n        noImplicitAny?: boolean;\n        noImplicitReturns?: boolean;\n        noImplicitThis?: boolean;\n        /** @deprecated */\n        noStrictGenericChecks?: boolean;\n        noUnusedLocals?: boolean;\n        noUnusedParameters?: boolean;\n        /** @deprecated */\n        noImplicitUseStrict?: boolean;\n        noPropertyAccessFromIndexSignature?: boolean;\n        assumeChangesOnlyAffectDirectDependencies?: boolean;\n        noLib?: boolean;\n        noResolve?: boolean;\n        noUncheckedIndexedAccess?: boolean;\n        /** @deprecated */\n        out?: string;\n        outDir?: string;\n        outFile?: string;\n        paths?: MapLike<string[]>;\n        preserveConstEnums?: boolean;\n        noImplicitOverride?: boolean;\n        preserveSymlinks?: boolean;\n        /** @deprecated */\n        preserveValueImports?: boolean;\n        project?: string;\n        reactNamespace?: string;\n        jsxFactory?: string;\n        jsxFragmentFactory?: string;\n        jsxImportSource?: string;\n        composite?: boolean;\n        incremental?: boolean;\n        tsBuildInfoFile?: string;\n        removeComments?: boolean;\n        resolvePackageJsonExports?: boolean;\n        resolvePackageJsonImports?: boolean;\n        rewriteRelativeImportExtensions?: boolean;\n        rootDir?: string;\n        rootDirs?: string[];\n        skipLibCheck?: boolean;\n        skipDefaultLibCheck?: boolean;\n        sourceMap?: boolean;\n        sourceRoot?: string;\n        strict?: boolean;\n        strictFunctionTypes?: boolean;\n        strictBindCallApply?: boolean;\n        strictNullChecks?: boolean;\n        strictPropertyInitialization?: boolean;\n        strictBuiltinIteratorReturn?: boolean;\n        stripInternal?: boolean;\n        /** @deprecated */\n        suppressExcessPropertyErrors?: boolean;\n        /** @deprecated */\n        suppressImplicitAnyIndexErrors?: boolean;\n        target?: ScriptTarget;\n        traceResolution?: boolean;\n        useUnknownInCatchVariables?: boolean;\n        noUncheckedSideEffectImports?: boolean;\n        resolveJsonModule?: boolean;\n        types?: string[];\n        /** Paths used to compute primary types search locations */\n        typeRoots?: string[];\n        verbatimModuleSyntax?: boolean;\n        erasableSyntaxOnly?: boolean;\n        esModuleInterop?: boolean;\n        useDefineForClassFields?: boolean;\n        [option: string]: CompilerOptionsValue | TsConfigSourceFile | undefined;\n    }\n    interface WatchOptions {\n        watchFile?: WatchFileKind;\n        watchDirectory?: WatchDirectoryKind;\n        fallbackPolling?: PollingWatchKind;\n        synchronousWatchDirectory?: boolean;\n        excludeDirectories?: string[];\n        excludeFiles?: string[];\n        [option: string]: CompilerOptionsValue | undefined;\n    }\n    interface TypeAcquisition {\n        enable?: boolean;\n        include?: string[];\n        exclude?: string[];\n        disableFilenameBasedTypeAcquisition?: boolean;\n        [option: string]: CompilerOptionsValue | undefined;\n    }\n    enum ModuleKind {\n        None = 0,\n        CommonJS = 1,\n        AMD = 2,\n        UMD = 3,\n        System = 4,\n        ES2015 = 5,\n        ES2020 = 6,\n        ES2022 = 7,\n        ESNext = 99,\n        Node16 = 100,\n        Node18 = 101,\n        Node20 = 102,\n        NodeNext = 199,\n        Preserve = 200,\n    }\n    enum JsxEmit {\n        None = 0,\n        Preserve = 1,\n        React = 2,\n        ReactNative = 3,\n        ReactJSX = 4,\n        ReactJSXDev = 5,\n    }\n    /** @deprecated */\n    enum ImportsNotUsedAsValues {\n        Remove = 0,\n        Preserve = 1,\n        Error = 2,\n    }\n    enum NewLineKind {\n        CarriageReturnLineFeed = 0,\n        LineFeed = 1,\n    }\n    interface LineAndCharacter {\n        /** 0-based. */\n        line: number;\n        character: number;\n    }\n    enum ScriptKind {\n        Unknown = 0,\n        JS = 1,\n        JSX = 2,\n        TS = 3,\n        TSX = 4,\n        External = 5,\n        JSON = 6,\n        /**\n         * Used on extensions that doesn't define the ScriptKind but the content defines it.\n         * Deferred extensions are going to be included in all project contexts.\n         */\n        Deferred = 7,\n    }\n    enum ScriptTarget {\n        /** @deprecated */\n        ES3 = 0,\n        ES5 = 1,\n        ES2015 = 2,\n        ES2016 = 3,\n        ES2017 = 4,\n        ES2018 = 5,\n        ES2019 = 6,\n        ES2020 = 7,\n        ES2021 = 8,\n        ES2022 = 9,\n        ES2023 = 10,\n        ES2024 = 11,\n        ESNext = 99,\n        JSON = 100,\n        Latest = 99,\n    }\n    enum LanguageVariant {\n        Standard = 0,\n        JSX = 1,\n    }\n    /** Either a parsed command line or a parsed tsconfig.json */\n    interface ParsedCommandLine {\n        options: CompilerOptions;\n        typeAcquisition?: TypeAcquisition;\n        fileNames: string[];\n        projectReferences?: readonly ProjectReference[];\n        watchOptions?: WatchOptions;\n        raw?: any;\n        errors: Diagnostic[];\n        wildcardDirectories?: MapLike<WatchDirectoryFlags>;\n        compileOnSave?: boolean;\n    }\n    enum WatchDirectoryFlags {\n        None = 0,\n        Recursive = 1,\n    }\n    interface CreateProgramOptions {\n        rootNames: readonly string[];\n        options: CompilerOptions;\n        projectReferences?: readonly ProjectReference[];\n        host?: CompilerHost;\n        oldProgram?: Program;\n        configFileParsingDiagnostics?: readonly Diagnostic[];\n    }\n    interface ModuleResolutionHost {\n        fileExists(fileName: string): boolean;\n        readFile(fileName: string): string | undefined;\n        trace?(s: string): void;\n        directoryExists?(directoryName: string): boolean;\n        /**\n         * Resolve a symbolic link.\n         * @see https://nodejs.org/api/fs.html#fs_fs_realpathsync_path_options\n         */\n        realpath?(path: string): string;\n        getCurrentDirectory?(): string;\n        getDirectories?(path: string): string[];\n        useCaseSensitiveFileNames?: boolean | (() => boolean) | undefined;\n    }\n    /**\n     * Used by services to specify the minimum host area required to set up source files under any compilation settings\n     */\n    interface MinimalResolutionCacheHost extends ModuleResolutionHost {\n        getCompilationSettings(): CompilerOptions;\n        getCompilerHost?(): CompilerHost | undefined;\n    }\n    /**\n     * Represents the result of module resolution.\n     * Module resolution will pick up tsx/jsx/js files even if '--jsx' and '--allowJs' are turned off.\n     * The Program will then filter results based on these flags.\n     *\n     * Prefer to return a `ResolvedModuleFull` so that the file type does not have to be inferred.\n     */\n    interface ResolvedModule {\n        /** Path of the file the module was resolved to. */\n        resolvedFileName: string;\n        /** True if `resolvedFileName` comes from `node_modules`. */\n        isExternalLibraryImport?: boolean;\n        /**\n         * True if the original module reference used a .ts extension to refer directly to a .ts file,\n         * which should produce an error during checking if emit is enabled.\n         */\n        resolvedUsingTsExtension?: boolean;\n    }\n    /**\n     * ResolvedModule with an explicitly provided `extension` property.\n     * Prefer this over `ResolvedModule`.\n     * If changing this, remember to change `moduleResolutionIsEqualTo`.\n     */\n    interface ResolvedModuleFull extends ResolvedModule {\n        /**\n         * Extension of resolvedFileName. This must match what's at the end of resolvedFileName.\n         * This is optional for backwards-compatibility, but will be added if not provided.\n         */\n        extension: string;\n        packageId?: PackageId;\n    }\n    /**\n     * Unique identifier with a package name and version.\n     * If changing this, remember to change `packageIdIsEqual`.\n     */\n    interface PackageId {\n        /**\n         * Name of the package.\n         * Should not include `@types`.\n         * If accessing a non-index file, this should include its name e.g. \"foo/bar\".\n         */\n        name: string;\n        /**\n         * Name of a submodule within this package.\n         * May be \"\".\n         */\n        subModuleName: string;\n        /** Version of the package, e.g. \"1.2.3\" */\n        version: string;\n    }\n    enum Extension {\n        Ts = \".ts\",\n        Tsx = \".tsx\",\n        Dts = \".d.ts\",\n        Js = \".js\",\n        Jsx = \".jsx\",\n        Json = \".json\",\n        TsBuildInfo = \".tsbuildinfo\",\n        Mjs = \".mjs\",\n        Mts = \".mts\",\n        Dmts = \".d.mts\",\n        Cjs = \".cjs\",\n        Cts = \".cts\",\n        Dcts = \".d.cts\",\n    }\n    interface ResolvedModuleWithFailedLookupLocations {\n        readonly resolvedModule: ResolvedModuleFull | undefined;\n    }\n    interface ResolvedTypeReferenceDirective {\n        primary: boolean;\n        resolvedFileName: string | undefined;\n        packageId?: PackageId;\n        /** True if `resolvedFileName` comes from `node_modules`. */\n        isExternalLibraryImport?: boolean;\n    }\n    interface ResolvedTypeReferenceDirectiveWithFailedLookupLocations {\n        readonly resolvedTypeReferenceDirective: ResolvedTypeReferenceDirective | undefined;\n    }\n    interface CompilerHost extends ModuleResolutionHost {\n        getSourceFile(fileName: string, languageVersionOrOptions: ScriptTarget | CreateSourceFileOptions, onError?: (message: string) => void, shouldCreateNewSourceFile?: boolean): SourceFile | undefined;\n        getSourceFileByPath?(fileName: string, path: Path, languageVersionOrOptions: ScriptTarget | CreateSourceFileOptions, onError?: (message: string) => void, shouldCreateNewSourceFile?: boolean): SourceFile | undefined;\n        getCancellationToken?(): CancellationToken;\n        getDefaultLibFileName(options: CompilerOptions): string;\n        getDefaultLibLocation?(): string;\n        writeFile: WriteFileCallback;\n        getCurrentDirectory(): string;\n        getCanonicalFileName(fileName: string): string;\n        useCaseSensitiveFileNames(): boolean;\n        getNewLine(): string;\n        readDirectory?(rootDir: string, extensions: readonly string[], excludes: readonly string[] | undefined, includes: readonly string[], depth?: number): string[];\n        /** @deprecated supply resolveModuleNameLiterals instead for resolution that can handle newer resolution modes like nodenext */\n        resolveModuleNames?(moduleNames: string[], containingFile: string, reusedNames: string[] | undefined, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile?: SourceFile): (ResolvedModule | undefined)[];\n        /**\n         * Returns the module resolution cache used by a provided `resolveModuleNames` implementation so that any non-name module resolution operations (eg, package.json lookup) can reuse it\n         */\n        getModuleResolutionCache?(): ModuleResolutionCache | undefined;\n        /**\n         * @deprecated supply resolveTypeReferenceDirectiveReferences instead for resolution that can handle newer resolution modes like nodenext\n         *\n         * This method is a companion for 'resolveModuleNames' and is used to resolve 'types' references to actual type declaration files\n         */\n        resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: ResolutionMode): (ResolvedTypeReferenceDirective | undefined)[];\n        resolveModuleNameLiterals?(moduleLiterals: readonly StringLiteralLike[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined): readonly ResolvedModuleWithFailedLookupLocations[];\n        resolveTypeReferenceDirectiveReferences?<T extends FileReference | string>(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile | undefined, reusedNames: readonly T[] | undefined): readonly ResolvedTypeReferenceDirectiveWithFailedLookupLocations[];\n        getEnvironmentVariable?(name: string): string | undefined;\n        /** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */\n        hasInvalidatedResolutions?(filePath: Path): boolean;\n        createHash?(data: string): string;\n        getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;\n        jsDocParsingMode?: JSDocParsingMode;\n    }\n    interface SourceMapRange extends TextRange {\n        source?: SourceMapSource;\n    }\n    interface SourceMapSource {\n        fileName: string;\n        text: string;\n        skipTrivia?: (pos: number) => number;\n    }\n    interface SourceMapSource {\n        getLineAndCharacterOfPosition(pos: number): LineAndCharacter;\n    }\n    enum EmitFlags {\n        None = 0,\n        SingleLine = 1,\n        MultiLine = 2,\n        AdviseOnEmitNode = 4,\n        NoSubstitution = 8,\n        CapturesThis = 16,\n        NoLeadingSourceMap = 32,\n        NoTrailingSourceMap = 64,\n        NoSourceMap = 96,\n        NoNestedSourceMaps = 128,\n        NoTokenLeadingSourceMaps = 256,\n        NoTokenTrailingSourceMaps = 512,\n        NoTokenSourceMaps = 768,\n        NoLeadingComments = 1024,\n        NoTrailingComments = 2048,\n        NoComments = 3072,\n        NoNestedComments = 4096,\n        HelperName = 8192,\n        ExportName = 16384,\n        LocalName = 32768,\n        InternalName = 65536,\n        Indented = 131072,\n        NoIndentation = 262144,\n        AsyncFunctionBody = 524288,\n        ReuseTempVariableScope = 1048576,\n        CustomPrologue = 2097152,\n        NoHoisting = 4194304,\n        Iterator = 8388608,\n        NoAsciiEscaping = 16777216,\n    }\n    interface EmitHelperBase {\n        readonly name: string;\n        readonly scoped: boolean;\n        readonly text: string | ((node: EmitHelperUniqueNameCallback) => string);\n        readonly priority?: number;\n        readonly dependencies?: EmitHelper[];\n    }\n    interface ScopedEmitHelper extends EmitHelperBase {\n        readonly scoped: true;\n    }\n    interface UnscopedEmitHelper extends EmitHelperBase {\n        readonly scoped: false;\n        readonly text: string;\n    }\n    type EmitHelper = ScopedEmitHelper | UnscopedEmitHelper;\n    type EmitHelperUniqueNameCallback = (name: string) => string;\n    enum EmitHint {\n        SourceFile = 0,\n        Expression = 1,\n        IdentifierName = 2,\n        MappedTypeParameter = 3,\n        Unspecified = 4,\n        EmbeddedStatement = 5,\n        JsxAttributeValue = 6,\n        ImportTypeNodeAttributes = 7,\n    }\n    enum OuterExpressionKinds {\n        Parentheses = 1,\n        TypeAssertions = 2,\n        NonNullAssertions = 4,\n        PartiallyEmittedExpressions = 8,\n        ExpressionsWithTypeArguments = 16,\n        Satisfies = 32,\n        Assertions = 38,\n        All = 63,\n        ExcludeJSDocTypeAssertion = -2147483648,\n    }\n    type ImmediatelyInvokedFunctionExpression = CallExpression & {\n        readonly expression: FunctionExpression;\n    };\n    type ImmediatelyInvokedArrowFunction = CallExpression & {\n        readonly expression: ParenthesizedExpression & {\n            readonly expression: ArrowFunction;\n        };\n    };\n    interface NodeFactory {\n        createNodeArray<T extends Node>(elements?: readonly T[], hasTrailingComma?: boolean): NodeArray<T>;\n        createNumericLiteral(value: string | number, numericLiteralFlags?: TokenFlags): NumericLiteral;\n        createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral;\n        createStringLiteral(text: string, isSingleQuote?: boolean): StringLiteral;\n        createStringLiteralFromNode(sourceNode: PropertyNameLiteral | PrivateIdentifier, isSingleQuote?: boolean): StringLiteral;\n        createRegularExpressionLiteral(text: string): RegularExpressionLiteral;\n        createIdentifier(text: string): Identifier;\n        /**\n         * Create a unique temporary variable.\n         * @param recordTempVariable An optional callback used to record the temporary variable name. This\n         * should usually be a reference to `hoistVariableDeclaration` from a `TransformationContext`, but\n         * can be `undefined` if you plan to record the temporary variable manually.\n         * @param reservedInNestedScopes When `true`, reserves the temporary variable name in all nested scopes\n         * during emit so that the variable can be referenced in a nested function body. This is an alternative to\n         * setting `EmitFlags.ReuseTempVariableScope` on the nested function itself.\n         */\n        createTempVariable(recordTempVariable: ((node: Identifier) => void) | undefined, reservedInNestedScopes?: boolean): Identifier;\n        /**\n         * Create a unique temporary variable for use in a loop.\n         * @param reservedInNestedScopes When `true`, reserves the temporary variable name in all nested scopes\n         * during emit so that the variable can be referenced in a nested function body. This is an alternative to\n         * setting `EmitFlags.ReuseTempVariableScope` on the nested function itself.\n         */\n        createLoopVariable(reservedInNestedScopes?: boolean): Identifier;\n        /** Create a unique name based on the supplied text. */\n        createUniqueName(text: string, flags?: GeneratedIdentifierFlags): Identifier;\n        /** Create a unique name generated for a node. */\n        getGeneratedNameForNode(node: Node | undefined, flags?: GeneratedIdentifierFlags): Identifier;\n        createPrivateIdentifier(text: string): PrivateIdentifier;\n        createUniquePrivateName(text?: string): PrivateIdentifier;\n        getGeneratedPrivateNameForNode(node: Node): PrivateIdentifier;\n        createToken(token: SyntaxKind.SuperKeyword): SuperExpression;\n        createToken(token: SyntaxKind.ThisKeyword): ThisExpression;\n        createToken(token: SyntaxKind.NullKeyword): NullLiteral;\n        createToken(token: SyntaxKind.TrueKeyword): TrueLiteral;\n        createToken(token: SyntaxKind.FalseKeyword): FalseLiteral;\n        createToken(token: SyntaxKind.EndOfFileToken): EndOfFileToken;\n        createToken(token: SyntaxKind.Unknown): Token<SyntaxKind.Unknown>;\n        createToken<TKind extends PunctuationSyntaxKind>(token: TKind): PunctuationToken<TKind>;\n        createToken<TKind extends KeywordTypeSyntaxKind>(token: TKind): KeywordTypeNode<TKind>;\n        createToken<TKind extends ModifierSyntaxKind>(token: TKind): ModifierToken<TKind>;\n        createToken<TKind extends KeywordSyntaxKind>(token: TKind): KeywordToken<TKind>;\n        createSuper(): SuperExpression;\n        createThis(): ThisExpression;\n        createNull(): NullLiteral;\n        createTrue(): TrueLiteral;\n        createFalse(): FalseLiteral;\n        createModifier<T extends ModifierSyntaxKind>(kind: T): ModifierToken<T>;\n        createModifiersFromModifierFlags(flags: ModifierFlags): Modifier[] | undefined;\n        createQualifiedName(left: EntityName, right: string | Identifier): QualifiedName;\n        updateQualifiedName(node: QualifiedName, left: EntityName, right: Identifier): QualifiedName;\n        createComputedPropertyName(expression: Expression): ComputedPropertyName;\n        updateComputedPropertyName(node: ComputedPropertyName, expression: Expression): ComputedPropertyName;\n        createTypeParameterDeclaration(modifiers: readonly Modifier[] | undefined, name: string | Identifier, constraint?: TypeNode, defaultType?: TypeNode): TypeParameterDeclaration;\n        updateTypeParameterDeclaration(node: TypeParameterDeclaration, modifiers: readonly Modifier[] | undefined, name: Identifier, constraint: TypeNode | undefined, defaultType: TypeNode | undefined): TypeParameterDeclaration;\n        createParameterDeclaration(modifiers: readonly ModifierLike[] | undefined, dotDotDotToken: DotDotDotToken | undefined, name: string | BindingName, questionToken?: QuestionToken, type?: TypeNode, initializer?: Expression): ParameterDeclaration;\n        updateParameterDeclaration(node: ParameterDeclaration, modifiers: readonly ModifierLike[] | undefined, dotDotDotToken: DotDotDotToken | undefined, name: string | BindingName, questionToken: QuestionToken | undefined, type: TypeNode | undefined, initializer: Expression | undefined): ParameterDeclaration;\n        createDecorator(expression: Expression): Decorator;\n        updateDecorator(node: Decorator, expression: Expression): Decorator;\n        createPropertySignature(modifiers: readonly Modifier[] | undefined, name: PropertyName | string, questionToken: QuestionToken | undefined, type: TypeNode | undefined): PropertySignature;\n        updatePropertySignature(node: PropertySignature, modifiers: readonly Modifier[] | undefined, name: PropertyName, questionToken: QuestionToken | undefined, type: TypeNode | undefined): PropertySignature;\n        createPropertyDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | PropertyName, questionOrExclamationToken: QuestionToken | ExclamationToken | undefined, type: TypeNode | undefined, initializer: Expression | undefined): PropertyDeclaration;\n        updatePropertyDeclaration(node: PropertyDeclaration, modifiers: readonly ModifierLike[] | undefined, name: string | PropertyName, questionOrExclamationToken: QuestionToken | ExclamationToken | undefined, type: TypeNode | undefined, initializer: Expression | undefined): PropertyDeclaration;\n        createMethodSignature(modifiers: readonly Modifier[] | undefined, name: string | PropertyName, questionToken: QuestionToken | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined): MethodSignature;\n        updateMethodSignature(node: MethodSignature, modifiers: readonly Modifier[] | undefined, name: PropertyName, questionToken: QuestionToken | undefined, typeParameters: NodeArray<TypeParameterDeclaration> | undefined, parameters: NodeArray<ParameterDeclaration>, type: TypeNode | undefined): MethodSignature;\n        createMethodDeclaration(modifiers: readonly ModifierLike[] | undefined, asteriskToken: AsteriskToken | undefined, name: string | PropertyName, questionToken: QuestionToken | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): MethodDeclaration;\n        updateMethodDeclaration(node: MethodDeclaration, modifiers: readonly ModifierLike[] | undefined, asteriskToken: AsteriskToken | undefined, name: PropertyName, questionToken: QuestionToken | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): MethodDeclaration;\n        createConstructorDeclaration(modifiers: readonly ModifierLike[] | undefined, parameters: readonly ParameterDeclaration[], body: Block | undefined): ConstructorDeclaration;\n        updateConstructorDeclaration(node: ConstructorDeclaration, modifiers: readonly ModifierLike[] | undefined, parameters: readonly ParameterDeclaration[], body: Block | undefined): ConstructorDeclaration;\n        createGetAccessorDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | PropertyName, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): GetAccessorDeclaration;\n        updateGetAccessorDeclaration(node: GetAccessorDeclaration, modifiers: readonly ModifierLike[] | undefined, name: PropertyName, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): GetAccessorDeclaration;\n        createSetAccessorDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | PropertyName, parameters: readonly ParameterDeclaration[], body: Block | undefined): SetAccessorDeclaration;\n        updateSetAccessorDeclaration(node: SetAccessorDeclaration, modifiers: readonly ModifierLike[] | undefined, name: PropertyName, parameters: readonly ParameterDeclaration[], body: Block | undefined): SetAccessorDeclaration;\n        createCallSignature(typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined): CallSignatureDeclaration;\n        updateCallSignature(node: CallSignatureDeclaration, typeParameters: NodeArray<TypeParameterDeclaration> | undefined, parameters: NodeArray<ParameterDeclaration>, type: TypeNode | undefined): CallSignatureDeclaration;\n        createConstructSignature(typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined): ConstructSignatureDeclaration;\n        updateConstructSignature(node: ConstructSignatureDeclaration, typeParameters: NodeArray<TypeParameterDeclaration> | undefined, parameters: NodeArray<ParameterDeclaration>, type: TypeNode | undefined): ConstructSignatureDeclaration;\n        createIndexSignature(modifiers: readonly ModifierLike[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode): IndexSignatureDeclaration;\n        updateIndexSignature(node: IndexSignatureDeclaration, modifiers: readonly ModifierLike[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode): IndexSignatureDeclaration;\n        createTemplateLiteralTypeSpan(type: TypeNode, literal: TemplateMiddle | TemplateTail): TemplateLiteralTypeSpan;\n        updateTemplateLiteralTypeSpan(node: TemplateLiteralTypeSpan, type: TypeNode, literal: TemplateMiddle | TemplateTail): TemplateLiteralTypeSpan;\n        createClassStaticBlockDeclaration(body: Block): ClassStaticBlockDeclaration;\n        updateClassStaticBlockDeclaration(node: ClassStaticBlockDeclaration, body: Block): ClassStaticBlockDeclaration;\n        createKeywordTypeNode<TKind extends KeywordTypeSyntaxKind>(kind: TKind): KeywordTypeNode<TKind>;\n        createTypePredicateNode(assertsModifier: AssertsKeyword | undefined, parameterName: Identifier | ThisTypeNode | string, type: TypeNode | undefined): TypePredicateNode;\n        updateTypePredicateNode(node: TypePredicateNode, assertsModifier: AssertsKeyword | undefined, parameterName: Identifier | ThisTypeNode, type: TypeNode | undefined): TypePredicateNode;\n        createTypeReferenceNode(typeName: string | EntityName, typeArguments?: readonly TypeNode[]): TypeReferenceNode;\n        updateTypeReferenceNode(node: TypeReferenceNode, typeName: EntityName, typeArguments: NodeArray<TypeNode> | undefined): TypeReferenceNode;\n        createFunctionTypeNode(typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode): FunctionTypeNode;\n        updateFunctionTypeNode(node: FunctionTypeNode, typeParameters: NodeArray<TypeParameterDeclaration> | undefined, parameters: NodeArray<ParameterDeclaration>, type: TypeNode): FunctionTypeNode;\n        createConstructorTypeNode(modifiers: readonly Modifier[] | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode): ConstructorTypeNode;\n        updateConstructorTypeNode(node: ConstructorTypeNode, modifiers: readonly Modifier[] | undefined, typeParameters: NodeArray<TypeParameterDeclaration> | undefined, parameters: NodeArray<ParameterDeclaration>, type: TypeNode): ConstructorTypeNode;\n        createTypeQueryNode(exprName: EntityName, typeArguments?: readonly TypeNode[]): TypeQueryNode;\n        updateTypeQueryNode(node: TypeQueryNode, exprName: EntityName, typeArguments?: readonly TypeNode[]): TypeQueryNode;\n        createTypeLiteralNode(members: readonly TypeElement[] | undefined): TypeLiteralNode;\n        updateTypeLiteralNode(node: TypeLiteralNode, members: NodeArray<TypeElement>): TypeLiteralNode;\n        createArrayTypeNode(elementType: TypeNode): ArrayTypeNode;\n        updateArrayTypeNode(node: ArrayTypeNode, elementType: TypeNode): ArrayTypeNode;\n        createTupleTypeNode(elements: readonly (TypeNode | NamedTupleMember)[]): TupleTypeNode;\n        updateTupleTypeNode(node: TupleTypeNode, elements: readonly (TypeNode | NamedTupleMember)[]): TupleTypeNode;\n        createNamedTupleMember(dotDotDotToken: DotDotDotToken | undefined, name: Identifier, questionToken: QuestionToken | undefined, type: TypeNode): NamedTupleMember;\n        updateNamedTupleMember(node: NamedTupleMember, dotDotDotToken: DotDotDotToken | undefined, name: Identifier, questionToken: QuestionToken | undefined, type: TypeNode): NamedTupleMember;\n        createOptionalTypeNode(type: TypeNode): OptionalTypeNode;\n        updateOptionalTypeNode(node: OptionalTypeNode, type: TypeNode): OptionalTypeNode;\n        createRestTypeNode(type: TypeNode): RestTypeNode;\n        updateRestTypeNode(node: RestTypeNode, type: TypeNode): RestTypeNode;\n        createUnionTypeNode(types: readonly TypeNode[]): UnionTypeNode;\n        updateUnionTypeNode(node: UnionTypeNode, types: NodeArray<TypeNode>): UnionTypeNode;\n        createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;\n        updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTypeNode;\n        createConditionalTypeNode(checkType: TypeNode, extendsType: TypeNode, trueType: TypeNode, falseType: TypeNode): ConditionalTypeNode;\n        updateConditionalTypeNode(node: ConditionalTypeNode, checkType: TypeNode, extendsType: TypeNode, trueType: TypeNode, falseType: TypeNode): ConditionalTypeNode;\n        createInferTypeNode(typeParameter: TypeParameterDeclaration): InferTypeNode;\n        updateInferTypeNode(node: InferTypeNode, typeParameter: TypeParameterDeclaration): InferTypeNode;\n        createImportTypeNode(argument: TypeNode, attributes?: ImportAttributes, qualifier?: EntityName, typeArguments?: readonly TypeNode[], isTypeOf?: boolean): ImportTypeNode;\n        updateImportTypeNode(node: ImportTypeNode, argument: TypeNode, attributes: ImportAttributes | undefined, qualifier: EntityName | undefined, typeArguments: readonly TypeNode[] | undefined, isTypeOf?: boolean): ImportTypeNode;\n        createParenthesizedType(type: TypeNode): ParenthesizedTypeNode;\n        updateParenthesizedType(node: ParenthesizedTypeNode, type: TypeNode): ParenthesizedTypeNode;\n        createThisTypeNode(): ThisTypeNode;\n        createTypeOperatorNode(operator: SyntaxKind.KeyOfKeyword | SyntaxKind.UniqueKeyword | SyntaxKind.ReadonlyKeyword, type: TypeNode): TypeOperatorNode;\n        updateTypeOperatorNode(node: TypeOperatorNode, type: TypeNode): TypeOperatorNode;\n        createIndexedAccessTypeNode(objectType: TypeNode, indexType: TypeNode): IndexedAccessTypeNode;\n        updateIndexedAccessTypeNode(node: IndexedAccessTypeNode, objectType: TypeNode, indexType: TypeNode): IndexedAccessTypeNode;\n        createMappedTypeNode(readonlyToken: ReadonlyKeyword | PlusToken | MinusToken | undefined, typeParameter: TypeParameterDeclaration, nameType: TypeNode | undefined, questionToken: QuestionToken | PlusToken | MinusToken | undefined, type: TypeNode | undefined, members: NodeArray<TypeElement> | undefined): MappedTypeNode;\n        updateMappedTypeNode(node: MappedTypeNode, readonlyToken: ReadonlyKeyword | PlusToken | MinusToken | undefined, typeParameter: TypeParameterDeclaration, nameType: TypeNode | undefined, questionToken: QuestionToken | PlusToken | MinusToken | undefined, type: TypeNode | undefined, members: NodeArray<TypeElement> | undefined): MappedTypeNode;\n        createLiteralTypeNode(literal: LiteralTypeNode[\"literal\"]): LiteralTypeNode;\n        updateLiteralTypeNode(node: LiteralTypeNode, literal: LiteralTypeNode[\"literal\"]): LiteralTypeNode;\n        createTemplateLiteralType(head: TemplateHead, templateSpans: readonly TemplateLiteralTypeSpan[]): TemplateLiteralTypeNode;\n        updateTemplateLiteralType(node: TemplateLiteralTypeNode, head: TemplateHead, templateSpans: readonly TemplateLiteralTypeSpan[]): TemplateLiteralTypeNode;\n        createObjectBindingPattern(elements: readonly BindingElement[]): ObjectBindingPattern;\n        updateObjectBindingPattern(node: ObjectBindingPattern, elements: readonly BindingElement[]): ObjectBindingPattern;\n        createArrayBindingPattern(elements: readonly ArrayBindingElement[]): ArrayBindingPattern;\n        updateArrayBindingPattern(node: ArrayBindingPattern, elements: readonly ArrayBindingElement[]): ArrayBindingPattern;\n        createBindingElement(dotDotDotToken: DotDotDotToken | undefined, propertyName: string | PropertyName | undefined, name: string | BindingName, initializer?: Expression): BindingElement;\n        updateBindingElement(node: BindingElement, dotDotDotToken: DotDotDotToken | undefined, propertyName: PropertyName | undefined, name: BindingName, initializer: Expression | undefined): BindingElement;\n        createArrayLiteralExpression(elements?: readonly Expression[], multiLine?: boolean): ArrayLiteralExpression;\n        updateArrayLiteralExpression(node: ArrayLiteralExpression, elements: readonly Expression[]): ArrayLiteralExpression;\n        createObjectLiteralExpression(properties?: readonly ObjectLiteralElementLike[], multiLine?: boolean): ObjectLiteralExpression;\n        updateObjectLiteralExpression(node: ObjectLiteralExpression, properties: readonly ObjectLiteralElementLike[]): ObjectLiteralExpression;\n        createPropertyAccessExpression(expression: Expression, name: string | MemberName): PropertyAccessExpression;\n        updatePropertyAccessExpression(node: PropertyAccessExpression, expression: Expression, name: MemberName): PropertyAccessExpression;\n        createPropertyAccessChain(expression: Expression, questionDotToken: QuestionDotToken | undefined, name: string | MemberName): PropertyAccessChain;\n        updatePropertyAccessChain(node: PropertyAccessChain, expression: Expression, questionDotToken: QuestionDotToken | undefined, name: MemberName): PropertyAccessChain;\n        createElementAccessExpression(expression: Expression, index: number | Expression): ElementAccessExpression;\n        updateElementAccessExpression(node: ElementAccessExpression, expression: Expression, argumentExpression: Expression): ElementAccessExpression;\n        createElementAccessChain(expression: Expression, questionDotToken: QuestionDotToken | undefined, index: number | Expression): ElementAccessChain;\n        updateElementAccessChain(node: ElementAccessChain, expression: Expression, questionDotToken: QuestionDotToken | undefined, argumentExpression: Expression): ElementAccessChain;\n        createCallExpression(expression: Expression, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[] | undefined): CallExpression;\n        updateCallExpression(node: CallExpression, expression: Expression, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[]): CallExpression;\n        createCallChain(expression: Expression, questionDotToken: QuestionDotToken | undefined, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[] | undefined): CallChain;\n        updateCallChain(node: CallChain, expression: Expression, questionDotToken: QuestionDotToken | undefined, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[]): CallChain;\n        createNewExpression(expression: Expression, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[] | undefined): NewExpression;\n        updateNewExpression(node: NewExpression, expression: Expression, typeArguments: readonly TypeNode[] | undefined, argumentsArray: readonly Expression[] | undefined): NewExpression;\n        createTaggedTemplateExpression(tag: Expression, typeArguments: readonly TypeNode[] | undefined, template: TemplateLiteral): TaggedTemplateExpression;\n        updateTaggedTemplateExpression(node: TaggedTemplateExpression, tag: Expression, typeArguments: readonly TypeNode[] | undefined, template: TemplateLiteral): TaggedTemplateExpression;\n        createTypeAssertion(type: TypeNode, expression: Expression): TypeAssertion;\n        updateTypeAssertion(node: TypeAssertion, type: TypeNode, expression: Expression): TypeAssertion;\n        createParenthesizedExpression(expression: Expression): ParenthesizedExpression;\n        updateParenthesizedExpression(node: ParenthesizedExpression, expression: Expression): ParenthesizedExpression;\n        createFunctionExpression(modifiers: readonly Modifier[] | undefined, asteriskToken: AsteriskToken | undefined, name: string | Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[] | undefined, type: TypeNode | undefined, body: Block): FunctionExpression;\n        updateFunctionExpression(node: FunctionExpression, modifiers: readonly Modifier[] | undefined, asteriskToken: AsteriskToken | undefined, name: Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block): FunctionExpression;\n        createArrowFunction(modifiers: readonly Modifier[] | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, equalsGreaterThanToken: EqualsGreaterThanToken | undefined, body: ConciseBody): ArrowFunction;\n        updateArrowFunction(node: ArrowFunction, modifiers: readonly Modifier[] | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, equalsGreaterThanToken: EqualsGreaterThanToken, body: ConciseBody): ArrowFunction;\n        createDeleteExpression(expression: Expression): DeleteExpression;\n        updateDeleteExpression(node: DeleteExpression, expression: Expression): DeleteExpression;\n        createTypeOfExpression(expression: Expression): TypeOfExpression;\n        updateTypeOfExpression(node: TypeOfExpression, expression: Expression): TypeOfExpression;\n        createVoidExpression(expression: Expression): VoidExpression;\n        updateVoidExpression(node: VoidExpression, expression: Expression): VoidExpression;\n        createAwaitExpression(expression: Expression): AwaitExpression;\n        updateAwaitExpression(node: AwaitExpression, expression: Expression): AwaitExpression;\n        createPrefixUnaryExpression(operator: PrefixUnaryOperator, operand: Expression): PrefixUnaryExpression;\n        updatePrefixUnaryExpression(node: PrefixUnaryExpression, operand: Expression): PrefixUnaryExpression;\n        createPostfixUnaryExpression(operand: Expression, operator: PostfixUnaryOperator): PostfixUnaryExpression;\n        updatePostfixUnaryExpression(node: PostfixUnaryExpression, operand: Expression): PostfixUnaryExpression;\n        createBinaryExpression(left: Expression, operator: BinaryOperator | BinaryOperatorToken, right: Expression): BinaryExpression;\n        updateBinaryExpression(node: BinaryExpression, left: Expression, operator: BinaryOperator | BinaryOperatorToken, right: Expression): BinaryExpression;\n        createConditionalExpression(condition: Expression, questionToken: QuestionToken | undefined, whenTrue: Expression, colonToken: ColonToken | undefined, whenFalse: Expression): ConditionalExpression;\n        updateConditionalExpression(node: ConditionalExpression, condition: Expression, questionToken: QuestionToken, whenTrue: Expression, colonToken: ColonToken, whenFalse: Expression): ConditionalExpression;\n        createTemplateExpression(head: TemplateHead, templateSpans: readonly TemplateSpan[]): TemplateExpression;\n        updateTemplateExpression(node: TemplateExpression, head: TemplateHead, templateSpans: readonly TemplateSpan[]): TemplateExpression;\n        createTemplateHead(text: string, rawText?: string, templateFlags?: TokenFlags): TemplateHead;\n        createTemplateHead(text: string | undefined, rawText: string, templateFlags?: TokenFlags): TemplateHead;\n        createTemplateMiddle(text: string, rawText?: string, templateFlags?: TokenFlags): TemplateMiddle;\n        createTemplateMiddle(text: string | undefined, rawText: string, templateFlags?: TokenFlags): TemplateMiddle;\n        createTemplateTail(text: string, rawText?: string, templateFlags?: TokenFlags): TemplateTail;\n        createTemplateTail(text: string | undefined, rawText: string, templateFlags?: TokenFlags): TemplateTail;\n        createNoSubstitutionTemplateLiteral(text: string, rawText?: string): NoSubstitutionTemplateLiteral;\n        createNoSubstitutionTemplateLiteral(text: string | undefined, rawText: string): NoSubstitutionTemplateLiteral;\n        createYieldExpression(asteriskToken: AsteriskToken, expression: Expression): YieldExpression;\n        createYieldExpression(asteriskToken: undefined, expression: Expression | undefined): YieldExpression;\n        updateYieldExpression(node: YieldExpression, asteriskToken: AsteriskToken | undefined, expression: Expression | undefined): YieldExpression;\n        createSpreadElement(expression: Expression): SpreadElement;\n        updateSpreadElement(node: SpreadElement, expression: Expression): SpreadElement;\n        createClassExpression(modifiers: readonly ModifierLike[] | undefined, name: string | Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;\n        updateClassExpression(node: ClassExpression, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassExpression;\n        createOmittedExpression(): OmittedExpression;\n        createExpressionWithTypeArguments(expression: Expression, typeArguments: readonly TypeNode[] | undefined): ExpressionWithTypeArguments;\n        updateExpressionWithTypeArguments(node: ExpressionWithTypeArguments, expression: Expression, typeArguments: readonly TypeNode[] | undefined): ExpressionWithTypeArguments;\n        createAsExpression(expression: Expression, type: TypeNode): AsExpression;\n        updateAsExpression(node: AsExpression, expression: Expression, type: TypeNode): AsExpression;\n        createNonNullExpression(expression: Expression): NonNullExpression;\n        updateNonNullExpression(node: NonNullExpression, expression: Expression): NonNullExpression;\n        createNonNullChain(expression: Expression): NonNullChain;\n        updateNonNullChain(node: NonNullChain, expression: Expression): NonNullChain;\n        createMetaProperty(keywordToken: MetaProperty[\"keywordToken\"], name: Identifier): MetaProperty;\n        updateMetaProperty(node: MetaProperty, name: Identifier): MetaProperty;\n        createSatisfiesExpression(expression: Expression, type: TypeNode): SatisfiesExpression;\n        updateSatisfiesExpression(node: SatisfiesExpression, expression: Expression, type: TypeNode): SatisfiesExpression;\n        createTemplateSpan(expression: Expression, literal: TemplateMiddle | TemplateTail): TemplateSpan;\n        updateTemplateSpan(node: TemplateSpan, expression: Expression, literal: TemplateMiddle | TemplateTail): TemplateSpan;\n        createSemicolonClassElement(): SemicolonClassElement;\n        createBlock(statements: readonly Statement[], multiLine?: boolean): Block;\n        updateBlock(node: Block, statements: readonly Statement[]): Block;\n        createVariableStatement(modifiers: readonly ModifierLike[] | undefined, declarationList: VariableDeclarationList | readonly VariableDeclaration[]): VariableStatement;\n        updateVariableStatement(node: VariableStatement, modifiers: readonly ModifierLike[] | undefined, declarationList: VariableDeclarationList): VariableStatement;\n        createEmptyStatement(): EmptyStatement;\n        createExpressionStatement(expression: Expression): ExpressionStatement;\n        updateExpressionStatement(node: ExpressionStatement, expression: Expression): ExpressionStatement;\n        createIfStatement(expression: Expression, thenStatement: Statement, elseStatement?: Statement): IfStatement;\n        updateIfStatement(node: IfStatement, expression: Expression, thenStatement: Statement, elseStatement: Statement | undefined): IfStatement;\n        createDoStatement(statement: Statement, expression: Expression): DoStatement;\n        updateDoStatement(node: DoStatement, statement: Statement, expression: Expression): DoStatement;\n        createWhileStatement(expression: Expression, statement: Statement): WhileStatement;\n        updateWhileStatement(node: WhileStatement, expression: Expression, statement: Statement): WhileStatement;\n        createForStatement(initializer: ForInitializer | undefined, condition: Expression | undefined, incrementor: Expression | undefined, statement: Statement): ForStatement;\n        updateForStatement(node: ForStatement, initializer: ForInitializer | undefined, condition: Expression | undefined, incrementor: Expression | undefined, statement: Statement): ForStatement;\n        createForInStatement(initializer: ForInitializer, expression: Expression, statement: Statement): ForInStatement;\n        updateForInStatement(node: ForInStatement, initializer: ForInitializer, expression: Expression, statement: Statement): ForInStatement;\n        createForOfStatement(awaitModifier: AwaitKeyword | undefined, initializer: ForInitializer, expression: Expression, statement: Statement): ForOfStatement;\n        updateForOfStatement(node: ForOfStatement, awaitModifier: AwaitKeyword | undefined, initializer: ForInitializer, expression: Expression, statement: Statement): ForOfStatement;\n        createContinueStatement(label?: string | Identifier): ContinueStatement;\n        updateContinueStatement(node: ContinueStatement, label: Identifier | undefined): ContinueStatement;\n        createBreakStatement(label?: string | Identifier): BreakStatement;\n        updateBreakStatement(node: BreakStatement, label: Identifier | undefined): BreakStatement;\n        createReturnStatement(expression?: Expression): ReturnStatement;\n        updateReturnStatement(node: ReturnStatement, expression: Expression | undefined): ReturnStatement;\n        createWithStatement(expression: Expression, statement: Statement): WithStatement;\n        updateWithStatement(node: WithStatement, expression: Expression, statement: Statement): WithStatement;\n        createSwitchStatement(expression: Expression, caseBlock: CaseBlock): SwitchStatement;\n        updateSwitchStatement(node: SwitchStatement, expression: Expression, caseBlock: CaseBlock): SwitchStatement;\n        createLabeledStatement(label: string | Identifier, statement: Statement): LabeledStatement;\n        updateLabeledStatement(node: LabeledStatement, label: Identifier, statement: Statement): LabeledStatement;\n        createThrowStatement(expression: Expression): ThrowStatement;\n        updateThrowStatement(node: ThrowStatement, expression: Expression): ThrowStatement;\n        createTryStatement(tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | undefined): TryStatement;\n        updateTryStatement(node: TryStatement, tryBlock: Block, catchClause: CatchClause | undefined, finallyBlock: Block | undefined): TryStatement;\n        createDebuggerStatement(): DebuggerStatement;\n        createVariableDeclaration(name: string | BindingName, exclamationToken?: ExclamationToken, type?: TypeNode, initializer?: Expression): VariableDeclaration;\n        updateVariableDeclaration(node: VariableDeclaration, name: BindingName, exclamationToken: ExclamationToken | undefined, type: TypeNode | undefined, initializer: Expression | undefined): VariableDeclaration;\n        createVariableDeclarationList(declarations: readonly VariableDeclaration[], flags?: NodeFlags): VariableDeclarationList;\n        updateVariableDeclarationList(node: VariableDeclarationList, declarations: readonly VariableDeclaration[]): VariableDeclarationList;\n        createFunctionDeclaration(modifiers: readonly ModifierLike[] | undefined, asteriskToken: AsteriskToken | undefined, name: string | Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): FunctionDeclaration;\n        updateFunctionDeclaration(node: FunctionDeclaration, modifiers: readonly ModifierLike[] | undefined, asteriskToken: AsteriskToken | undefined, name: Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined, body: Block | undefined): FunctionDeclaration;\n        createClassDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassDeclaration;\n        updateClassDeclaration(node: ClassDeclaration, modifiers: readonly ModifierLike[] | undefined, name: Identifier | undefined, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly ClassElement[]): ClassDeclaration;\n        createInterfaceDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | Identifier, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly TypeElement[]): InterfaceDeclaration;\n        updateInterfaceDeclaration(node: InterfaceDeclaration, modifiers: readonly ModifierLike[] | undefined, name: Identifier, typeParameters: readonly TypeParameterDeclaration[] | undefined, heritageClauses: readonly HeritageClause[] | undefined, members: readonly TypeElement[]): InterfaceDeclaration;\n        createTypeAliasDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | Identifier, typeParameters: readonly TypeParameterDeclaration[] | undefined, type: TypeNode): TypeAliasDeclaration;\n        updateTypeAliasDeclaration(node: TypeAliasDeclaration, modifiers: readonly ModifierLike[] | undefined, name: Identifier, typeParameters: readonly TypeParameterDeclaration[] | undefined, type: TypeNode): TypeAliasDeclaration;\n        createEnumDeclaration(modifiers: readonly ModifierLike[] | undefined, name: string | Identifier, members: readonly EnumMember[]): EnumDeclaration;\n        updateEnumDeclaration(node: EnumDeclaration, modifiers: readonly ModifierLike[] | undefined, name: Identifier, members: readonly EnumMember[]): EnumDeclaration;\n        createModuleDeclaration(modifiers: readonly ModifierLike[] | undefined, name: ModuleName, body: ModuleBody | undefined, flags?: NodeFlags): ModuleDeclaration;\n        updateModuleDeclaration(node: ModuleDeclaration, modifiers: readonly ModifierLike[] | undefined, name: ModuleName, body: ModuleBody | undefined): ModuleDeclaration;\n        createModuleBlock(statements: readonly Statement[]): ModuleBlock;\n        updateModuleBlock(node: ModuleBlock, statements: readonly Statement[]): ModuleBlock;\n        createCaseBlock(clauses: readonly CaseOrDefaultClause[]): CaseBlock;\n        updateCaseBlock(node: CaseBlock, clauses: readonly CaseOrDefaultClause[]): CaseBlock;\n        createNamespaceExportDeclaration(name: string | Identifier): NamespaceExportDeclaration;\n        updateNamespaceExportDeclaration(node: NamespaceExportDeclaration, name: Identifier): NamespaceExportDeclaration;\n        createImportEqualsDeclaration(modifiers: readonly ModifierLike[] | undefined, isTypeOnly: boolean, name: string | Identifier, moduleReference: ModuleReference): ImportEqualsDeclaration;\n        updateImportEqualsDeclaration(node: ImportEqualsDeclaration, modifiers: readonly ModifierLike[] | undefined, isTypeOnly: boolean, name: Identifier, moduleReference: ModuleReference): ImportEqualsDeclaration;\n        createImportDeclaration(modifiers: readonly ModifierLike[] | undefined, importClause: ImportClause | undefined, moduleSpecifier: Expression, attributes?: ImportAttributes): ImportDeclaration;\n        updateImportDeclaration(node: ImportDeclaration, modifiers: readonly ModifierLike[] | undefined, importClause: ImportClause | undefined, moduleSpecifier: Expression, attributes: ImportAttributes | undefined): ImportDeclaration;\n        createImportClause(phaseModifier: ImportPhaseModifierSyntaxKind | undefined, name: Identifier | undefined, namedBindings: NamedImportBindings | undefined): ImportClause;\n        /** @deprecated */ createImportClause(isTypeOnly: boolean, name: Identifier | undefined, namedBindings: NamedImportBindings | undefined): ImportClause;\n        updateImportClause(node: ImportClause, phaseModifier: ImportPhaseModifierSyntaxKind | undefined, name: Identifier | undefined, namedBindings: NamedImportBindings | undefined): ImportClause;\n        /** @deprecated */ updateImportClause(node: ImportClause, isTypeOnly: boolean, name: Identifier | undefined, namedBindings: NamedImportBindings | undefined): ImportClause;\n        /** @deprecated */ createAssertClause(elements: NodeArray<AssertEntry>, multiLine?: boolean): AssertClause;\n        /** @deprecated */ updateAssertClause(node: AssertClause, elements: NodeArray<AssertEntry>, multiLine?: boolean): AssertClause;\n        /** @deprecated */ createAssertEntry(name: AssertionKey, value: Expression): AssertEntry;\n        /** @deprecated */ updateAssertEntry(node: AssertEntry, name: AssertionKey, value: Expression): AssertEntry;\n        /** @deprecated */ createImportTypeAssertionContainer(clause: AssertClause, multiLine?: boolean): ImportTypeAssertionContainer;\n        /** @deprecated */ updateImportTypeAssertionContainer(node: ImportTypeAssertionContainer, clause: AssertClause, multiLine?: boolean): ImportTypeAssertionContainer;\n        createImportAttributes(elements: NodeArray<ImportAttribute>, multiLine?: boolean): ImportAttributes;\n        updateImportAttributes(node: ImportAttributes, elements: NodeArray<ImportAttribute>, multiLine?: boolean): ImportAttributes;\n        createImportAttribute(name: ImportAttributeName, value: Expression): ImportAttribute;\n        updateImportAttribute(node: ImportAttribute, name: ImportAttributeName, value: Expression): ImportAttribute;\n        createNamespaceImport(name: Identifier): NamespaceImport;\n        updateNamespaceImport(node: NamespaceImport, name: Identifier): NamespaceImport;\n        createNamespaceExport(name: ModuleExportName): NamespaceExport;\n        updateNamespaceExport(node: NamespaceExport, name: ModuleExportName): NamespaceExport;\n        createNamedImports(elements: readonly ImportSpecifier[]): NamedImports;\n        updateNamedImports(node: NamedImports, elements: readonly ImportSpecifier[]): NamedImports;\n        createImportSpecifier(isTypeOnly: boolean, propertyName: ModuleExportName | undefined, name: Identifier): ImportSpecifier;\n        updateImportSpecifier(node: ImportSpecifier, isTypeOnly: boolean, propertyName: ModuleExportName | undefined, name: Identifier): ImportSpecifier;\n        createExportAssignment(modifiers: readonly ModifierLike[] | undefined, isExportEquals: boolean | undefined, expression: Expression): ExportAssignment;\n        updateExportAssignment(node: ExportAssignment, modifiers: readonly ModifierLike[] | undefined, expression: Expression): ExportAssignment;\n        createExportDeclaration(modifiers: readonly ModifierLike[] | undefined, isTypeOnly: boolean, exportClause: NamedExportBindings | undefined, moduleSpecifier?: Expression, attributes?: ImportAttributes): ExportDeclaration;\n        updateExportDeclaration(node: ExportDeclaration, modifiers: readonly ModifierLike[] | undefined, isTypeOnly: boolean, exportClause: NamedExportBindings | undefined, moduleSpecifier: Expression | undefined, attributes: ImportAttributes | undefined): ExportDeclaration;\n        createNamedExports(elements: readonly ExportSpecifier[]): NamedExports;\n        updateNamedExports(node: NamedExports, elements: readonly ExportSpecifier[]): NamedExports;\n        createExportSpecifier(isTypeOnly: boolean, propertyName: string | ModuleExportName | undefined, name: string | ModuleExportName): ExportSpecifier;\n        updateExportSpecifier(node: ExportSpecifier, isTypeOnly: boolean, propertyName: ModuleExportName | undefined, name: ModuleExportName): ExportSpecifier;\n        createExternalModuleReference(expression: Expression): ExternalModuleReference;\n        updateExternalModuleReference(node: ExternalModuleReference, expression: Expression): ExternalModuleReference;\n        createJSDocAllType(): JSDocAllType;\n        createJSDocUnknownType(): JSDocUnknownType;\n        createJSDocNonNullableType(type: TypeNode, postfix?: boolean): JSDocNonNullableType;\n        updateJSDocNonNullableType(node: JSDocNonNullableType, type: TypeNode): JSDocNonNullableType;\n        createJSDocNullableType(type: TypeNode, postfix?: boolean): JSDocNullableType;\n        updateJSDocNullableType(node: JSDocNullableType, type: TypeNode): JSDocNullableType;\n        createJSDocOptionalType(type: TypeNode): JSDocOptionalType;\n        updateJSDocOptionalType(node: JSDocOptionalType, type: TypeNode): JSDocOptionalType;\n        createJSDocFunctionType(parameters: readonly ParameterDeclaration[], type: TypeNode | undefined): JSDocFunctionType;\n        updateJSDocFunctionType(node: JSDocFunctionType, parameters: readonly ParameterDeclaration[], type: TypeNode | undefined): JSDocFunctionType;\n        createJSDocVariadicType(type: TypeNode): JSDocVariadicType;\n        updateJSDocVariadicType(node: JSDocVariadicType, type: TypeNode): JSDocVariadicType;\n        createJSDocNamepathType(type: TypeNode): JSDocNamepathType;\n        updateJSDocNamepathType(node: JSDocNamepathType, type: TypeNode): JSDocNamepathType;\n        createJSDocTypeExpression(type: TypeNode): JSDocTypeExpression;\n        updateJSDocTypeExpression(node: JSDocTypeExpression, type: TypeNode): JSDocTypeExpression;\n        createJSDocNameReference(name: EntityName | JSDocMemberName): JSDocNameReference;\n        updateJSDocNameReference(node: JSDocNameReference, name: EntityName | JSDocMemberName): JSDocNameReference;\n        createJSDocMemberName(left: EntityName | JSDocMemberName, right: Identifier): JSDocMemberName;\n        updateJSDocMemberName(node: JSDocMemberName, left: EntityName | JSDocMemberName, right: Identifier): JSDocMemberName;\n        createJSDocLink(name: EntityName | JSDocMemberName | undefined, text: string): JSDocLink;\n        updateJSDocLink(node: JSDocLink, name: EntityName | JSDocMemberName | undefined, text: string): JSDocLink;\n        createJSDocLinkCode(name: EntityName | JSDocMemberName | undefined, text: string): JSDocLinkCode;\n        updateJSDocLinkCode(node: JSDocLinkCode, name: EntityName | JSDocMemberName | undefined, text: string): JSDocLinkCode;\n        createJSDocLinkPlain(name: EntityName | JSDocMemberName | undefined, text: string): JSDocLinkPlain;\n        updateJSDocLinkPlain(node: JSDocLinkPlain, name: EntityName | JSDocMemberName | undefined, text: string): JSDocLinkPlain;\n        createJSDocTypeLiteral(jsDocPropertyTags?: readonly JSDocPropertyLikeTag[], isArrayType?: boolean): JSDocTypeLiteral;\n        updateJSDocTypeLiteral(node: JSDocTypeLiteral, jsDocPropertyTags: readonly JSDocPropertyLikeTag[] | undefined, isArrayType: boolean | undefined): JSDocTypeLiteral;\n        createJSDocSignature(typeParameters: readonly JSDocTemplateTag[] | undefined, parameters: readonly JSDocParameterTag[], type?: JSDocReturnTag): JSDocSignature;\n        updateJSDocSignature(node: JSDocSignature, typeParameters: readonly JSDocTemplateTag[] | undefined, parameters: readonly JSDocParameterTag[], type: JSDocReturnTag | undefined): JSDocSignature;\n        createJSDocTemplateTag(tagName: Identifier | undefined, constraint: JSDocTypeExpression | undefined, typeParameters: readonly TypeParameterDeclaration[], comment?: string | NodeArray<JSDocComment>): JSDocTemplateTag;\n        updateJSDocTemplateTag(node: JSDocTemplateTag, tagName: Identifier | undefined, constraint: JSDocTypeExpression | undefined, typeParameters: readonly TypeParameterDeclaration[], comment: string | NodeArray<JSDocComment> | undefined): JSDocTemplateTag;\n        createJSDocTypedefTag(tagName: Identifier | undefined, typeExpression?: JSDocTypeExpression | JSDocTypeLiteral, fullName?: Identifier | JSDocNamespaceDeclaration, comment?: string | NodeArray<JSDocComment>): JSDocTypedefTag;\n        updateJSDocTypedefTag(node: JSDocTypedefTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | JSDocTypeLiteral | undefined, fullName: Identifier | JSDocNamespaceDeclaration | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocTypedefTag;\n        createJSDocParameterTag(tagName: Identifier | undefined, name: EntityName, isBracketed: boolean, typeExpression?: JSDocTypeExpression, isNameFirst?: boolean, comment?: string | NodeArray<JSDocComment>): JSDocParameterTag;\n        updateJSDocParameterTag(node: JSDocParameterTag, tagName: Identifier | undefined, name: EntityName, isBracketed: boolean, typeExpression: JSDocTypeExpression | undefined, isNameFirst: boolean, comment: string | NodeArray<JSDocComment> | undefined): JSDocParameterTag;\n        createJSDocPropertyTag(tagName: Identifier | undefined, name: EntityName, isBracketed: boolean, typeExpression?: JSDocTypeExpression, isNameFirst?: boolean, comment?: string | NodeArray<JSDocComment>): JSDocPropertyTag;\n        updateJSDocPropertyTag(node: JSDocPropertyTag, tagName: Identifier | undefined, name: EntityName, isBracketed: boolean, typeExpression: JSDocTypeExpression | undefined, isNameFirst: boolean, comment: string | NodeArray<JSDocComment> | undefined): JSDocPropertyTag;\n        createJSDocTypeTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocTypeTag;\n        updateJSDocTypeTag(node: JSDocTypeTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocTypeTag;\n        createJSDocSeeTag(tagName: Identifier | undefined, nameExpression: JSDocNameReference | undefined, comment?: string | NodeArray<JSDocComment>): JSDocSeeTag;\n        updateJSDocSeeTag(node: JSDocSeeTag, tagName: Identifier | undefined, nameExpression: JSDocNameReference | undefined, comment?: string | NodeArray<JSDocComment>): JSDocSeeTag;\n        createJSDocReturnTag(tagName: Identifier | undefined, typeExpression?: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocReturnTag;\n        updateJSDocReturnTag(node: JSDocReturnTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocReturnTag;\n        createJSDocThisTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocThisTag;\n        updateJSDocThisTag(node: JSDocThisTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocThisTag;\n        createJSDocEnumTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocEnumTag;\n        updateJSDocEnumTag(node: JSDocEnumTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocEnumTag;\n        createJSDocCallbackTag(tagName: Identifier | undefined, typeExpression: JSDocSignature, fullName?: Identifier | JSDocNamespaceDeclaration, comment?: string | NodeArray<JSDocComment>): JSDocCallbackTag;\n        updateJSDocCallbackTag(node: JSDocCallbackTag, tagName: Identifier | undefined, typeExpression: JSDocSignature, fullName: Identifier | JSDocNamespaceDeclaration | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocCallbackTag;\n        createJSDocOverloadTag(tagName: Identifier | undefined, typeExpression: JSDocSignature, comment?: string | NodeArray<JSDocComment>): JSDocOverloadTag;\n        updateJSDocOverloadTag(node: JSDocOverloadTag, tagName: Identifier | undefined, typeExpression: JSDocSignature, comment: string | NodeArray<JSDocComment> | undefined): JSDocOverloadTag;\n        createJSDocAugmentsTag(tagName: Identifier | undefined, className: JSDocAugmentsTag[\"class\"], comment?: string | NodeArray<JSDocComment>): JSDocAugmentsTag;\n        updateJSDocAugmentsTag(node: JSDocAugmentsTag, tagName: Identifier | undefined, className: JSDocAugmentsTag[\"class\"], comment: string | NodeArray<JSDocComment> | undefined): JSDocAugmentsTag;\n        createJSDocImplementsTag(tagName: Identifier | undefined, className: JSDocImplementsTag[\"class\"], comment?: string | NodeArray<JSDocComment>): JSDocImplementsTag;\n        updateJSDocImplementsTag(node: JSDocImplementsTag, tagName: Identifier | undefined, className: JSDocImplementsTag[\"class\"], comment: string | NodeArray<JSDocComment> | undefined): JSDocImplementsTag;\n        createJSDocAuthorTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocAuthorTag;\n        updateJSDocAuthorTag(node: JSDocAuthorTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocAuthorTag;\n        createJSDocClassTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocClassTag;\n        updateJSDocClassTag(node: JSDocClassTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocClassTag;\n        createJSDocPublicTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocPublicTag;\n        updateJSDocPublicTag(node: JSDocPublicTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocPublicTag;\n        createJSDocPrivateTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocPrivateTag;\n        updateJSDocPrivateTag(node: JSDocPrivateTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocPrivateTag;\n        createJSDocProtectedTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocProtectedTag;\n        updateJSDocProtectedTag(node: JSDocProtectedTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocProtectedTag;\n        createJSDocReadonlyTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocReadonlyTag;\n        updateJSDocReadonlyTag(node: JSDocReadonlyTag, tagName: Identifier | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocReadonlyTag;\n        createJSDocUnknownTag(tagName: Identifier, comment?: string | NodeArray<JSDocComment>): JSDocUnknownTag;\n        updateJSDocUnknownTag(node: JSDocUnknownTag, tagName: Identifier, comment: string | NodeArray<JSDocComment> | undefined): JSDocUnknownTag;\n        createJSDocDeprecatedTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocDeprecatedTag;\n        updateJSDocDeprecatedTag(node: JSDocDeprecatedTag, tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocDeprecatedTag;\n        createJSDocOverrideTag(tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocOverrideTag;\n        updateJSDocOverrideTag(node: JSDocOverrideTag, tagName: Identifier | undefined, comment?: string | NodeArray<JSDocComment>): JSDocOverrideTag;\n        createJSDocThrowsTag(tagName: Identifier, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment>): JSDocThrowsTag;\n        updateJSDocThrowsTag(node: JSDocThrowsTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression | undefined, comment?: string | NodeArray<JSDocComment> | undefined): JSDocThrowsTag;\n        createJSDocSatisfiesTag(tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment?: string | NodeArray<JSDocComment>): JSDocSatisfiesTag;\n        updateJSDocSatisfiesTag(node: JSDocSatisfiesTag, tagName: Identifier | undefined, typeExpression: JSDocTypeExpression, comment: string | NodeArray<JSDocComment> | undefined): JSDocSatisfiesTag;\n        createJSDocImportTag(tagName: Identifier | undefined, importClause: ImportClause | undefined, moduleSpecifier: Expression, attributes?: ImportAttributes, comment?: string | NodeArray<JSDocComment>): JSDocImportTag;\n        updateJSDocImportTag(node: JSDocImportTag, tagName: Identifier | undefined, importClause: ImportClause | undefined, moduleSpecifier: Expression, attributes: ImportAttributes | undefined, comment: string | NodeArray<JSDocComment> | undefined): JSDocImportTag;\n        createJSDocText(text: string): JSDocText;\n        updateJSDocText(node: JSDocText, text: string): JSDocText;\n        createJSDocComment(comment?: string | NodeArray<JSDocComment> | undefined, tags?: readonly JSDocTag[] | undefined): JSDoc;\n        updateJSDocComment(node: JSDoc, comment: string | NodeArray<JSDocComment> | undefined, tags: readonly JSDocTag[] | undefined): JSDoc;\n        createJsxElement(openingElement: JsxOpeningElement, children: readonly JsxChild[], closingElement: JsxClosingElement): JsxElement;\n        updateJsxElement(node: JsxElement, openingElement: JsxOpeningElement, children: readonly JsxChild[], closingElement: JsxClosingElement): JsxElement;\n        createJsxSelfClosingElement(tagName: JsxTagNameExpression, typeArguments: readonly TypeNode[] | undefined, attributes: JsxAttributes): JsxSelfClosingElement;\n        updateJsxSelfClosingElement(node: JsxSelfClosingElement, tagName: JsxTagNameExpression, typeArguments: readonly TypeNode[] | undefined, attributes: JsxAttributes): JsxSelfClosingElement;\n        createJsxOpeningElement(tagName: JsxTagNameExpression, typeArguments: readonly TypeNode[] | undefined, attributes: JsxAttributes): JsxOpeningElement;\n        updateJsxOpeningElement(node: JsxOpeningElement, tagName: JsxTagNameExpression, typeArguments: readonly TypeNode[] | undefined, attributes: JsxAttributes): JsxOpeningElement;\n        createJsxClosingElement(tagName: JsxTagNameExpression): JsxClosingElement;\n        updateJsxClosingElement(node: JsxClosingElement, tagName: JsxTagNameExpression): JsxClosingElement;\n        createJsxFragment(openingFragment: JsxOpeningFragment, children: readonly JsxChild[], closingFragment: JsxClosingFragment): JsxFragment;\n        createJsxText(text: string, containsOnlyTriviaWhiteSpaces?: boolean): JsxText;\n        updateJsxText(node: JsxText, text: string, containsOnlyTriviaWhiteSpaces?: boolean): JsxText;\n        createJsxOpeningFragment(): JsxOpeningFragment;\n        createJsxJsxClosingFragment(): JsxClosingFragment;\n        updateJsxFragment(node: JsxFragment, openingFragment: JsxOpeningFragment, children: readonly JsxChild[], closingFragment: JsxClosingFragment): JsxFragment;\n        createJsxAttribute(name: JsxAttributeName, initializer: JsxAttributeValue | undefined): JsxAttribute;\n        updateJsxAttribute(node: JsxAttribute, name: JsxAttributeName, initializer: JsxAttributeValue | undefined): JsxAttribute;\n        createJsxAttributes(properties: readonly JsxAttributeLike[]): JsxAttributes;\n        updateJsxAttributes(node: JsxAttributes, properties: readonly JsxAttributeLike[]): JsxAttributes;\n        createJsxSpreadAttribute(expression: Expression): JsxSpreadAttribute;\n        updateJsxSpreadAttribute(node: JsxSpreadAttribute, expression: Expression): JsxSpreadAttribute;\n        createJsxExpression(dotDotDotToken: DotDotDotToken | undefined, expression: Expression | undefined): JsxExpression;\n        updateJsxExpression(node: JsxExpression, expression: Expression | undefined): JsxExpression;\n        createJsxNamespacedName(namespace: Identifier, name: Identifier): JsxNamespacedName;\n        updateJsxNamespacedName(node: JsxNamespacedName, namespace: Identifier, name: Identifier): JsxNamespacedName;\n        createCaseClause(expression: Expression, statements: readonly Statement[]): CaseClause;\n        updateCaseClause(node: CaseClause, expression: Expression, statements: readonly Statement[]): CaseClause;\n        createDefaultClause(statements: readonly Statement[]): DefaultClause;\n        updateDefaultClause(node: DefaultClause, statements: readonly Statement[]): DefaultClause;\n        createHeritageClause(token: HeritageClause[\"token\"], types: readonly ExpressionWithTypeArguments[]): HeritageClause;\n        updateHeritageClause(node: HeritageClause, types: readonly ExpressionWithTypeArguments[]): HeritageClause;\n        createCatchClause(variableDeclaration: string | BindingName | VariableDeclaration | undefined, block: Block): CatchClause;\n        updateCatchClause(node: CatchClause, variableDeclaration: VariableDeclaration | undefined, block: Block): CatchClause;\n        createPropertyAssignment(name: string | PropertyName, initializer: Expression): PropertyAssignment;\n        updatePropertyAssignment(node: PropertyAssignment, name: PropertyName, initializer: Expression): PropertyAssignment;\n        createShorthandPropertyAssignment(name: string | Identifier, objectAssignmentInitializer?: Expression): ShorthandPropertyAssignment;\n        updateShorthandPropertyAssignment(node: ShorthandPropertyAssignment, name: Identifier, objectAssignmentInitializer: Expression | undefined): ShorthandPropertyAssignment;\n        createSpreadAssignment(expression: Expression): SpreadAssignment;\n        updateSpreadAssignment(node: SpreadAssignment, expression: Expression): SpreadAssignment;\n        createEnumMember(name: string | PropertyName, initializer?: Expression): EnumMember;\n        updateEnumMember(node: EnumMember, name: PropertyName, initializer: Expression | undefined): EnumMember;\n        createSourceFile(statements: readonly Statement[], endOfFileToken: EndOfFileToken, flags: NodeFlags): SourceFile;\n        updateSourceFile(node: SourceFile, statements: readonly Statement[], isDeclarationFile?: boolean, referencedFiles?: readonly FileReference[], typeReferences?: readonly FileReference[], hasNoDefaultLib?: boolean, libReferences?: readonly FileReference[]): SourceFile;\n        createNotEmittedStatement(original: Node): NotEmittedStatement;\n        createNotEmittedTypeElement(): NotEmittedTypeElement;\n        createPartiallyEmittedExpression(expression: Expression, original?: Node): PartiallyEmittedExpression;\n        updatePartiallyEmittedExpression(node: PartiallyEmittedExpression, expression: Expression): PartiallyEmittedExpression;\n        createCommaListExpression(elements: readonly Expression[]): CommaListExpression;\n        updateCommaListExpression(node: CommaListExpression, elements: readonly Expression[]): CommaListExpression;\n        createBundle(sourceFiles: readonly SourceFile[]): Bundle;\n        updateBundle(node: Bundle, sourceFiles: readonly SourceFile[]): Bundle;\n        createComma(left: Expression, right: Expression): BinaryExpression;\n        createAssignment(left: ObjectLiteralExpression | ArrayLiteralExpression, right: Expression): DestructuringAssignment;\n        createAssignment(left: Expression, right: Expression): AssignmentExpression<EqualsToken>;\n        createLogicalOr(left: Expression, right: Expression): BinaryExpression;\n        createLogicalAnd(left: Expression, right: Expression): BinaryExpression;\n        createBitwiseOr(left: Expression, right: Expression): BinaryExpression;\n        createBitwiseXor(left: Expression, right: Expression): BinaryExpression;\n        createBitwiseAnd(left: Expression, right: Expression): BinaryExpression;\n        createStrictEquality(left: Expression, right: Expression): BinaryExpression;\n        createStrictInequality(left: Expression, right: Expression): BinaryExpression;\n        createEquality(left: Expression, right: Expression): BinaryExpression;\n        createInequality(left: Expression, right: Expression): BinaryExpression;\n        createLessThan(left: Expression, right: Expression): BinaryExpression;\n        createLessThanEquals(left: Expression, right: Expression): BinaryExpression;\n        createGreaterThan(left: Expression, right: Expression): BinaryExpression;\n        createGreaterThanEquals(left: Expression, right: Expression): BinaryExpression;\n        createLeftShift(left: Expression, right: Expression): BinaryExpression;\n        createRightShift(left: Expression, right: Expression): BinaryExpression;\n        createUnsignedRightShift(left: Expression, right: Expression): BinaryExpression;\n        createAdd(left: Expression, right: Expression): BinaryExpression;\n        createSubtract(left: Expression, right: Expression): BinaryExpression;\n        createMultiply(left: Expression, right: Expression): BinaryExpression;\n        createDivide(left: Expression, right: Expression): BinaryExpression;\n        createModulo(left: Expression, right: Expression): BinaryExpression;\n        createExponent(left: Expression, right: Expression): BinaryExpression;\n        createPrefixPlus(operand: Expression): PrefixUnaryExpression;\n        createPrefixMinus(operand: Expression): PrefixUnaryExpression;\n        createPrefixIncrement(operand: Expression): PrefixUnaryExpression;\n        createPrefixDecrement(operand: Expression): PrefixUnaryExpression;\n        createBitwiseNot(operand: Expression): PrefixUnaryExpression;\n        createLogicalNot(operand: Expression): PrefixUnaryExpression;\n        createPostfixIncrement(operand: Expression): PostfixUnaryExpression;\n        createPostfixDecrement(operand: Expression): PostfixUnaryExpression;\n        createImmediatelyInvokedFunctionExpression(statements: readonly Statement[]): CallExpression;\n        createImmediatelyInvokedFunctionExpression(statements: readonly Statement[], param: ParameterDeclaration, paramValue: Expression): CallExpression;\n        createImmediatelyInvokedArrowFunction(statements: readonly Statement[]): ImmediatelyInvokedArrowFunction;\n        createImmediatelyInvokedArrowFunction(statements: readonly Statement[], param: ParameterDeclaration, paramValue: Expression): ImmediatelyInvokedArrowFunction;\n        createVoidZero(): VoidExpression;\n        createExportDefault(expression: Expression): ExportAssignment;\n        createExternalModuleExport(exportName: Identifier): ExportDeclaration;\n        restoreOuterExpressions(outerExpression: Expression | undefined, innerExpression: Expression, kinds?: OuterExpressionKinds): Expression;\n        /**\n         * Updates a node that may contain modifiers, replacing only the modifiers of the node.\n         */\n        replaceModifiers<T extends HasModifiers>(node: T, modifiers: readonly Modifier[] | ModifierFlags | undefined): T;\n        /**\n         * Updates a node that may contain decorators or modifiers, replacing only the decorators and modifiers of the node.\n         */\n        replaceDecoratorsAndModifiers<T extends HasModifiers & HasDecorators>(node: T, modifiers: readonly ModifierLike[] | undefined): T;\n        /**\n         * Updates a node that contains a property name, replacing only the name of the node.\n         */\n        replacePropertyName<T extends AccessorDeclaration | MethodDeclaration | MethodSignature | PropertyDeclaration | PropertySignature | PropertyAssignment>(node: T, name: T[\"name\"]): T;\n    }\n    interface CoreTransformationContext {\n        readonly factory: NodeFactory;\n        /** Gets the compiler options supplied to the transformer. */\n        getCompilerOptions(): CompilerOptions;\n        /** Starts a new lexical environment. */\n        startLexicalEnvironment(): void;\n        /** Suspends the current lexical environment, usually after visiting a parameter list. */\n        suspendLexicalEnvironment(): void;\n        /** Resumes a suspended lexical environment, usually before visiting a function body. */\n        resumeLexicalEnvironment(): void;\n        /** Ends a lexical environment, returning any declarations. */\n        endLexicalEnvironment(): Statement[] | undefined;\n        /** Hoists a function declaration to the containing scope. */\n        hoistFunctionDeclaration(node: FunctionDeclaration): void;\n        /** Hoists a variable declaration to the containing scope. */\n        hoistVariableDeclaration(node: Identifier): void;\n    }\n    interface TransformationContext extends CoreTransformationContext {\n        /** Records a request for a non-scoped emit helper in the current context. */\n        requestEmitHelper(helper: EmitHelper): void;\n        /** Gets and resets the requested non-scoped emit helpers. */\n        readEmitHelpers(): EmitHelper[] | undefined;\n        /** Enables expression substitutions in the pretty printer for the provided SyntaxKind. */\n        enableSubstitution(kind: SyntaxKind): void;\n        /** Determines whether expression substitutions are enabled for the provided node. */\n        isSubstitutionEnabled(node: Node): boolean;\n        /**\n         * Hook used by transformers to substitute expressions just before they\n         * are emitted by the pretty printer.\n         *\n         * NOTE: Transformation hooks should only be modified during `Transformer` initialization,\n         * before returning the `NodeTransformer` callback.\n         */\n        onSubstituteNode: (hint: EmitHint, node: Node) => Node;\n        /**\n         * Enables before/after emit notifications in the pretty printer for the provided\n         * SyntaxKind.\n         */\n        enableEmitNotification(kind: SyntaxKind): void;\n        /**\n         * Determines whether before/after emit notifications should be raised in the pretty\n         * printer when it emits a node.\n         */\n        isEmitNotificationEnabled(node: Node): boolean;\n        /**\n         * Hook used to allow transformers to capture state before or after\n         * the printer emits a node.\n         *\n         * NOTE: Transformation hooks should only be modified during `Transformer` initialization,\n         * before returning the `NodeTransformer` callback.\n         */\n        onEmitNode: (hint: EmitHint, node: Node, emitCallback: (hint: EmitHint, node: Node) => void) => void;\n    }\n    interface TransformationResult<T extends Node> {\n        /** Gets the transformed source files. */\n        transformed: T[];\n        /** Gets diagnostics for the transformation. */\n        diagnostics?: DiagnosticWithLocation[];\n        /**\n         * Gets a substitute for a node, if one is available; otherwise, returns the original node.\n         *\n         * @param hint A hint as to the intended usage of the node.\n         * @param node The node to substitute.\n         */\n        substituteNode(hint: EmitHint, node: Node): Node;\n        /**\n         * Emits a node with possible notification.\n         *\n         * @param hint A hint as to the intended usage of the node.\n         * @param node The node to emit.\n         * @param emitCallback A callback used to emit the node.\n         */\n        emitNodeWithNotification(hint: EmitHint, node: Node, emitCallback: (hint: EmitHint, node: Node) => void): void;\n        /**\n         * Indicates if a given node needs an emit notification\n         *\n         * @param node The node to emit.\n         */\n        isEmitNotificationEnabled?(node: Node): boolean;\n        /**\n         * Clean up EmitNode entries on any parse-tree nodes.\n         */\n        dispose(): void;\n    }\n    /**\n     * A function that is used to initialize and return a `Transformer` callback, which in turn\n     * will be used to transform one or more nodes.\n     */\n    type TransformerFactory<T extends Node> = (context: TransformationContext) => Transformer<T>;\n    /**\n     * A function that transforms a node.\n     */\n    type Transformer<T extends Node> = (node: T) => T;\n    /**\n     * A function that accepts and possibly transforms a node.\n     */\n    type Visitor<TIn extends Node = Node, TOut extends Node | undefined = TIn | undefined> = (node: TIn) => VisitResult<TOut>;\n    /**\n     * A function that walks a node using the given visitor, lifting node arrays into single nodes,\n     * returning an node which satisfies the test.\n     *\n     * - If the input node is undefined, then the output is undefined.\n     * - If the visitor returns undefined, then the output is undefined.\n     * - If the output node is not undefined, then it will satisfy the test function.\n     * - In order to obtain a return type that is more specific than `Node`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * For the canonical implementation of this type, @see {visitNode}.\n     */\n    interface NodeVisitor {\n        <TIn extends Node | undefined, TVisited extends Node | undefined, TOut extends Node>(node: TIn, visitor: Visitor<NonNullable<TIn>, TVisited>, test: (node: Node) => node is TOut, lift?: (node: readonly Node[]) => Node): TOut | (TIn & undefined) | (TVisited & undefined);\n        <TIn extends Node | undefined, TVisited extends Node | undefined>(node: TIn, visitor: Visitor<NonNullable<TIn>, TVisited>, test?: (node: Node) => boolean, lift?: (node: readonly Node[]) => Node): Node | (TIn & undefined) | (TVisited & undefined);\n    }\n    /**\n     * A function that walks a node array using the given visitor, returning an array whose contents satisfy the test.\n     *\n     * - If the input node array is undefined, the output is undefined.\n     * - If the visitor can return undefined, the node it visits in the array will be reused.\n     * - If the output node array is not undefined, then its contents will satisfy the test.\n     * - In order to obtain a return type that is more specific than `NodeArray<Node>`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * For the canonical implementation of this type, @see {visitNodes}.\n     */\n    interface NodesVisitor {\n        <TIn extends Node, TInArray extends NodeArray<TIn> | undefined, TOut extends Node>(nodes: TInArray, visitor: Visitor<TIn, Node | undefined>, test: (node: Node) => node is TOut, start?: number, count?: number): NodeArray<TOut> | (TInArray & undefined);\n        <TIn extends Node, TInArray extends NodeArray<TIn> | undefined>(nodes: TInArray, visitor: Visitor<TIn, Node | undefined>, test?: (node: Node) => boolean, start?: number, count?: number): NodeArray<Node> | (TInArray & undefined);\n    }\n    type VisitResult<T extends Node | undefined> = T | readonly Node[];\n    interface Printer {\n        /**\n         * Print a node and its subtree as-is, without any emit transformations.\n         * @param hint A value indicating the purpose of a node. This is primarily used to\n         * distinguish between an `Identifier` used in an expression position, versus an\n         * `Identifier` used as an `IdentifierName` as part of a declaration. For most nodes you\n         * should just pass `Unspecified`.\n         * @param node The node to print. The node and its subtree are printed as-is, without any\n         * emit transformations.\n         * @param sourceFile A source file that provides context for the node. The source text of\n         * the file is used to emit the original source content for literals and identifiers, while\n         * the identifiers of the source file are used when generating unique names to avoid\n         * collisions.\n         */\n        printNode(hint: EmitHint, node: Node, sourceFile: SourceFile): string;\n        /**\n         * Prints a list of nodes using the given format flags\n         */\n        printList<T extends Node>(format: ListFormat, list: NodeArray<T>, sourceFile: SourceFile): string;\n        /**\n         * Prints a source file as-is, without any emit transformations.\n         */\n        printFile(sourceFile: SourceFile): string;\n        /**\n         * Prints a bundle of source files as-is, without any emit transformations.\n         */\n        printBundle(bundle: Bundle): string;\n    }\n    interface PrintHandlers {\n        /**\n         * A hook used by the Printer when generating unique names to avoid collisions with\n         * globally defined names that exist outside of the current source file.\n         */\n        hasGlobalName?(name: string): boolean;\n        /**\n         * A hook used by the Printer to provide notifications prior to emitting a node. A\n         * compatible implementation **must** invoke `emitCallback` with the provided `hint` and\n         * `node` values.\n         * @param hint A hint indicating the intended purpose of the node.\n         * @param node The node to emit.\n         * @param emitCallback A callback that, when invoked, will emit the node.\n         * @example\n         * ```ts\n         * var printer = createPrinter(printerOptions, {\n         *   onEmitNode(hint, node, emitCallback) {\n         *     // set up or track state prior to emitting the node...\n         *     emitCallback(hint, node);\n         *     // restore state after emitting the node...\n         *   }\n         * });\n         * ```\n         */\n        onEmitNode?(hint: EmitHint, node: Node, emitCallback: (hint: EmitHint, node: Node) => void): void;\n        /**\n         * A hook used to check if an emit notification is required for a node.\n         * @param node The node to emit.\n         */\n        isEmitNotificationEnabled?(node: Node): boolean;\n        /**\n         * A hook used by the Printer to perform just-in-time substitution of a node. This is\n         * primarily used by node transformations that need to substitute one node for another,\n         * such as replacing `myExportedVar` with `exports.myExportedVar`.\n         * @param hint A hint indicating the intended purpose of the node.\n         * @param node The node to emit.\n         * @example\n         * ```ts\n         * var printer = createPrinter(printerOptions, {\n         *   substituteNode(hint, node) {\n         *     // perform substitution if necessary...\n         *     return node;\n         *   }\n         * });\n         * ```\n         */\n        substituteNode?(hint: EmitHint, node: Node): Node;\n    }\n    interface PrinterOptions {\n        removeComments?: boolean;\n        newLine?: NewLineKind;\n        omitTrailingSemicolon?: boolean;\n        noEmitHelpers?: boolean;\n    }\n    interface GetEffectiveTypeRootsHost {\n        getCurrentDirectory?(): string;\n    }\n    interface TextSpan {\n        start: number;\n        length: number;\n    }\n    interface TextChangeRange {\n        span: TextSpan;\n        newLength: number;\n    }\n    interface SyntaxList extends Node {\n        kind: SyntaxKind.SyntaxList;\n    }\n    enum ListFormat {\n        None = 0,\n        SingleLine = 0,\n        MultiLine = 1,\n        PreserveLines = 2,\n        LinesMask = 3,\n        NotDelimited = 0,\n        BarDelimited = 4,\n        AmpersandDelimited = 8,\n        CommaDelimited = 16,\n        AsteriskDelimited = 32,\n        DelimitersMask = 60,\n        AllowTrailingComma = 64,\n        Indented = 128,\n        SpaceBetweenBraces = 256,\n        SpaceBetweenSiblings = 512,\n        Braces = 1024,\n        Parenthesis = 2048,\n        AngleBrackets = 4096,\n        SquareBrackets = 8192,\n        BracketsMask = 15360,\n        OptionalIfUndefined = 16384,\n        OptionalIfEmpty = 32768,\n        Optional = 49152,\n        PreferNewLine = 65536,\n        NoTrailingNewLine = 131072,\n        NoInterveningComments = 262144,\n        NoSpaceIfEmpty = 524288,\n        SingleElement = 1048576,\n        SpaceAfterList = 2097152,\n        Modifiers = 2359808,\n        HeritageClauses = 512,\n        SingleLineTypeLiteralMembers = 768,\n        MultiLineTypeLiteralMembers = 32897,\n        SingleLineTupleTypeElements = 528,\n        MultiLineTupleTypeElements = 657,\n        UnionTypeConstituents = 516,\n        IntersectionTypeConstituents = 520,\n        ObjectBindingPatternElements = 525136,\n        ArrayBindingPatternElements = 524880,\n        ObjectLiteralExpressionProperties = 526226,\n        ImportAttributes = 526226,\n        /** @deprecated */ ImportClauseEntries = 526226,\n        ArrayLiteralExpressionElements = 8914,\n        CommaListElements = 528,\n        CallExpressionArguments = 2576,\n        NewExpressionArguments = 18960,\n        TemplateExpressionSpans = 262144,\n        SingleLineBlockStatements = 768,\n        MultiLineBlockStatements = 129,\n        VariableDeclarationList = 528,\n        SingleLineFunctionBodyStatements = 768,\n        MultiLineFunctionBodyStatements = 1,\n        ClassHeritageClauses = 0,\n        ClassMembers = 129,\n        InterfaceMembers = 129,\n        EnumMembers = 145,\n        CaseBlockClauses = 129,\n        NamedImportsOrExportsElements = 525136,\n        JsxElementOrFragmentChildren = 262144,\n        JsxElementAttributes = 262656,\n        CaseOrDefaultClauseStatements = 163969,\n        HeritageClauseTypes = 528,\n        SourceFileStatements = 131073,\n        Decorators = 2146305,\n        TypeArguments = 53776,\n        TypeParameters = 53776,\n        Parameters = 2576,\n        IndexSignatureParameters = 8848,\n        JSDocComment = 33,\n    }\n    enum JSDocParsingMode {\n        /**\n         * Always parse JSDoc comments and include them in the AST.\n         *\n         * This is the default if no mode is provided.\n         */\n        ParseAll = 0,\n        /**\n         * Never parse JSDoc comments, mo matter the file type.\n         */\n        ParseNone = 1,\n        /**\n         * Parse only JSDoc comments which are needed to provide correct type errors.\n         *\n         * This will always parse JSDoc in non-TS files, but only parse JSDoc comments\n         * containing `@see` and `@link` in TS files.\n         */\n        ParseForTypeErrors = 2,\n        /**\n         * Parse only JSDoc comments which are needed to provide correct type info.\n         *\n         * This will always parse JSDoc in non-TS files, but never in TS files.\n         *\n         * Note: Do not use this mode if you require accurate type errors; use {@link ParseForTypeErrors} instead.\n         */\n        ParseForTypeInfo = 3,\n    }\n    interface UserPreferences {\n        readonly disableSuggestions?: boolean;\n        readonly quotePreference?: \"auto\" | \"double\" | \"single\";\n        /**\n         * If enabled, TypeScript will search through all external modules' exports and add them to the completions list.\n         * This affects lone identifier completions but not completions on the right hand side of `obj.`.\n         */\n        readonly includeCompletionsForModuleExports?: boolean;\n        /**\n         * Enables auto-import-style completions on partially-typed import statements. E.g., allows\n         * `import write|` to be completed to `import { writeFile } from \"fs\"`.\n         */\n        readonly includeCompletionsForImportStatements?: boolean;\n        /**\n         * Allows completions to be formatted with snippet text, indicated by `CompletionItem[\"isSnippet\"]`.\n         */\n        readonly includeCompletionsWithSnippetText?: boolean;\n        /**\n         * Unless this option is `false`, or `includeCompletionsWithInsertText` is not enabled,\n         * member completion lists triggered with `.` will include entries on potentially-null and potentially-undefined\n         * values, with insertion text to replace preceding `.` tokens with `?.`.\n         */\n        readonly includeAutomaticOptionalChainCompletions?: boolean;\n        /**\n         * If enabled, the completion list will include completions with invalid identifier names.\n         * For those entries, The `insertText` and `replacementSpan` properties will be set to change from `.x` property access to `[\"x\"]`.\n         */\n        readonly includeCompletionsWithInsertText?: boolean;\n        /**\n         * If enabled, completions for class members (e.g. methods and properties) will include\n         * a whole declaration for the member.\n         * E.g., `class A { f| }` could be completed to `class A { foo(): number {} }`, instead of\n         * `class A { foo }`.\n         */\n        readonly includeCompletionsWithClassMemberSnippets?: boolean;\n        /**\n         * If enabled, object literal methods will have a method declaration completion entry in addition\n         * to the regular completion entry containing just the method name.\n         * E.g., `const objectLiteral: T = { f| }` could be completed to `const objectLiteral: T = { foo(): void {} }`,\n         * in addition to `const objectLiteral: T = { foo }`.\n         */\n        readonly includeCompletionsWithObjectLiteralMethodSnippets?: boolean;\n        /**\n         * Indicates whether {@link CompletionEntry.labelDetails completion entry label details} are supported.\n         * If not, contents of `labelDetails` may be included in the {@link CompletionEntry.name} property.\n         */\n        readonly useLabelDetailsInCompletionEntries?: boolean;\n        readonly allowIncompleteCompletions?: boolean;\n        readonly importModuleSpecifierPreference?: \"shortest\" | \"project-relative\" | \"relative\" | \"non-relative\";\n        /** Determines whether we import `foo/index.ts` as \"foo\", \"foo/index\", or \"foo/index.js\" */\n        readonly importModuleSpecifierEnding?: \"auto\" | \"minimal\" | \"index\" | \"js\";\n        readonly allowTextChangesInNewFiles?: boolean;\n        readonly providePrefixAndSuffixTextForRename?: boolean;\n        readonly includePackageJsonAutoImports?: \"auto\" | \"on\" | \"off\";\n        readonly provideRefactorNotApplicableReason?: boolean;\n        readonly jsxAttributeCompletionStyle?: \"auto\" | \"braces\" | \"none\";\n        readonly includeInlayParameterNameHints?: \"none\" | \"literals\" | \"all\";\n        readonly includeInlayParameterNameHintsWhenArgumentMatchesName?: boolean;\n        readonly includeInlayFunctionParameterTypeHints?: boolean;\n        readonly includeInlayVariableTypeHints?: boolean;\n        readonly includeInlayVariableTypeHintsWhenTypeMatchesName?: boolean;\n        readonly includeInlayPropertyDeclarationTypeHints?: boolean;\n        readonly includeInlayFunctionLikeReturnTypeHints?: boolean;\n        readonly includeInlayEnumMemberValueHints?: boolean;\n        readonly interactiveInlayHints?: boolean;\n        readonly allowRenameOfImportPath?: boolean;\n        readonly autoImportFileExcludePatterns?: string[];\n        readonly autoImportSpecifierExcludeRegexes?: string[];\n        readonly preferTypeOnlyAutoImports?: boolean;\n        /**\n         * Indicates whether imports should be organized in a case-insensitive manner.\n         */\n        readonly organizeImportsIgnoreCase?: \"auto\" | boolean;\n        /**\n         * Indicates whether imports should be organized via an \"ordinal\" (binary) comparison using the numeric value\n         * of their code points, or via \"unicode\" collation (via the\n         * [Unicode Collation Algorithm](https://unicode.org/reports/tr10/#Scope)) using rules associated with the locale\n         * specified in {@link organizeImportsCollationLocale}.\n         *\n         * Default: `\"ordinal\"`.\n         */\n        readonly organizeImportsCollation?: \"ordinal\" | \"unicode\";\n        /**\n         * Indicates the locale to use for \"unicode\" collation. If not specified, the locale `\"en\"` is used as an invariant\n         * for the sake of consistent sorting. Use `\"auto\"` to use the detected UI locale.\n         *\n         * This preference is ignored if {@link organizeImportsCollation} is not `\"unicode\"`.\n         *\n         * Default: `\"en\"`\n         */\n        readonly organizeImportsLocale?: string;\n        /**\n         * Indicates whether numeric collation should be used for digit sequences in strings. When `true`, will collate\n         * strings such that `a1z < a2z < a100z`. When `false`, will collate strings such that `a1z < a100z < a2z`.\n         *\n         * This preference is ignored if {@link organizeImportsCollation} is not `\"unicode\"`.\n         *\n         * Default: `false`\n         */\n        readonly organizeImportsNumericCollation?: boolean;\n        /**\n         * Indicates whether accents and other diacritic marks are considered unequal for the purpose of collation. When\n         * `true`, characters with accents and other diacritics will be collated in the order defined by the locale specified\n         * in {@link organizeImportsCollationLocale}.\n         *\n         * This preference is ignored if {@link organizeImportsCollation} is not `\"unicode\"`.\n         *\n         * Default: `true`\n         */\n        readonly organizeImportsAccentCollation?: boolean;\n        /**\n         * Indicates whether upper case or lower case should sort first. When `false`, the default order for the locale\n         * specified in {@link organizeImportsCollationLocale} is used.\n         *\n         * This preference is ignored if {@link organizeImportsCollation} is not `\"unicode\"`. This preference is also\n         * ignored if we are using case-insensitive sorting, which occurs when {@link organizeImportsIgnoreCase} is `true`,\n         * or if {@link organizeImportsIgnoreCase} is `\"auto\"` and the auto-detected case sensitivity is determined to be\n         * case-insensitive.\n         *\n         * Default: `false`\n         */\n        readonly organizeImportsCaseFirst?: \"upper\" | \"lower\" | false;\n        /**\n         * Indicates where named type-only imports should sort. \"inline\" sorts named imports without regard to if the import is\n         * type-only.\n         *\n         * Default: `last`\n         */\n        readonly organizeImportsTypeOrder?: OrganizeImportsTypeOrder;\n        /**\n         * Indicates whether to exclude standard library and node_modules file symbols from navTo results.\n         */\n        readonly excludeLibrarySymbolsInNavTo?: boolean;\n        readonly lazyConfiguredProjectsFromExternalProject?: boolean;\n        readonly displayPartsForJSDoc?: boolean;\n        readonly generateReturnInDocTemplate?: boolean;\n        readonly disableLineTextInReferences?: boolean;\n        /**\n         * A positive integer indicating the maximum length of a hover text before it is truncated.\n         *\n         * Default: `500`\n         */\n        readonly maximumHoverLength?: number;\n    }\n    type OrganizeImportsTypeOrder = \"last\" | \"inline\" | \"first\";\n    /** Represents a bigint literal value without requiring bigint support */\n    interface PseudoBigInt {\n        negative: boolean;\n        base10Value: string;\n    }\n    enum FileWatcherEventKind {\n        Created = 0,\n        Changed = 1,\n        Deleted = 2,\n    }\n    type FileWatcherCallback = (fileName: string, eventKind: FileWatcherEventKind, modifiedTime?: Date) => void;\n    type DirectoryWatcherCallback = (fileName: string) => void;\n    type BufferEncoding = \"ascii\" | \"utf8\" | \"utf-8\" | \"utf16le\" | \"ucs2\" | \"ucs-2\" | \"base64\" | \"latin1\" | \"binary\" | \"hex\";\n    interface System {\n        args: string[];\n        newLine: string;\n        useCaseSensitiveFileNames: boolean;\n        write(s: string): void;\n        writeOutputIsTTY?(): boolean;\n        getWidthOfTerminal?(): number;\n        readFile(path: string, encoding?: string): string | undefined;\n        getFileSize?(path: string): number;\n        writeFile(path: string, data: string, writeByteOrderMark?: boolean): void;\n        /**\n         * @pollingInterval - this parameter is used in polling-based watchers and ignored in watchers that\n         * use native OS file watching\n         */\n        watchFile?(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions): FileWatcher;\n        watchDirectory?(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions): FileWatcher;\n        resolvePath(path: string): string;\n        fileExists(path: string): boolean;\n        directoryExists(path: string): boolean;\n        createDirectory(path: string): void;\n        getExecutingFilePath(): string;\n        getCurrentDirectory(): string;\n        getDirectories(path: string): string[];\n        readDirectory(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];\n        getModifiedTime?(path: string): Date | undefined;\n        setModifiedTime?(path: string, time: Date): void;\n        deleteFile?(path: string): void;\n        /**\n         * A good implementation is node.js' `crypto.createHash`. (https://nodejs.org/api/crypto.html#crypto_crypto_createhash_algorithm)\n         */\n        createHash?(data: string): string;\n        /** This must be cryptographically secure. Only implement this method using `crypto.createHash(\"sha256\")`. */\n        createSHA256Hash?(data: string): string;\n        getMemoryUsage?(): number;\n        exit(exitCode?: number): void;\n        realpath?(path: string): string;\n        setTimeout?(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;\n        clearTimeout?(timeoutId: any): void;\n        clearScreen?(): void;\n        base64decode?(input: string): string;\n        base64encode?(input: string): string;\n    }\n    interface FileWatcher {\n        close(): void;\n    }\n    let sys: System;\n    function tokenToString(t: SyntaxKind): string | undefined;\n    function getPositionOfLineAndCharacter(sourceFile: SourceFileLike, line: number, character: number): number;\n    function getLineAndCharacterOfPosition(sourceFile: SourceFileLike, position: number): LineAndCharacter;\n    function isWhiteSpaceLike(ch: number): boolean;\n    /** Does not include line breaks. For that, see isWhiteSpaceLike. */\n    function isWhiteSpaceSingleLine(ch: number): boolean;\n    function isLineBreak(ch: number): boolean;\n    function couldStartTrivia(text: string, pos: number): boolean;\n    function forEachLeadingCommentRange<U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean) => U): U | undefined;\n    function forEachLeadingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T): U | undefined;\n    function forEachTrailingCommentRange<U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean) => U): U | undefined;\n    function forEachTrailingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T): U | undefined;\n    function reduceEachLeadingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T, initial: U): U | undefined;\n    function reduceEachTrailingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T, initial: U): U | undefined;\n    function getLeadingCommentRanges(text: string, pos: number): CommentRange[] | undefined;\n    function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;\n    /** Optionally, get the shebang */\n    function getShebang(text: string): string | undefined;\n    function isIdentifierStart(ch: number, languageVersion: ScriptTarget | undefined): boolean;\n    function isIdentifierPart(ch: number, languageVersion: ScriptTarget | undefined, identifierVariant?: LanguageVariant): boolean;\n    function createScanner(languageVersion: ScriptTarget, skipTrivia: boolean, languageVariant?: LanguageVariant, textInitial?: string, onError?: ErrorCallback, start?: number, length?: number): Scanner;\n    type ErrorCallback = (message: DiagnosticMessage, length: number, arg0?: any) => void;\n    interface Scanner {\n        /** @deprecated use {@link getTokenFullStart} */\n        getStartPos(): number;\n        getToken(): SyntaxKind;\n        getTokenFullStart(): number;\n        getTokenStart(): number;\n        getTokenEnd(): number;\n        /** @deprecated use {@link getTokenEnd} */\n        getTextPos(): number;\n        /** @deprecated use {@link getTokenStart} */\n        getTokenPos(): number;\n        getTokenText(): string;\n        getTokenValue(): string;\n        hasUnicodeEscape(): boolean;\n        hasExtendedUnicodeEscape(): boolean;\n        hasPrecedingLineBreak(): boolean;\n        isIdentifier(): boolean;\n        isReservedWord(): boolean;\n        isUnterminated(): boolean;\n        reScanGreaterToken(): SyntaxKind;\n        reScanSlashToken(): SyntaxKind;\n        reScanAsteriskEqualsToken(): SyntaxKind;\n        reScanTemplateToken(isTaggedTemplate: boolean): SyntaxKind;\n        /** @deprecated use {@link reScanTemplateToken}(false) */\n        reScanTemplateHeadOrNoSubstitutionTemplate(): SyntaxKind;\n        scanJsxIdentifier(): SyntaxKind;\n        scanJsxAttributeValue(): SyntaxKind;\n        reScanJsxAttributeValue(): SyntaxKind;\n        reScanJsxToken(allowMultilineJsxText?: boolean): JsxTokenSyntaxKind;\n        reScanLessThanToken(): SyntaxKind;\n        reScanHashToken(): SyntaxKind;\n        reScanQuestionToken(): SyntaxKind;\n        reScanInvalidIdentifier(): SyntaxKind;\n        scanJsxToken(): JsxTokenSyntaxKind;\n        scanJsDocToken(): JSDocSyntaxKind;\n        scan(): SyntaxKind;\n        getText(): string;\n        setText(text: string | undefined, start?: number, length?: number): void;\n        setOnError(onError: ErrorCallback | undefined): void;\n        setScriptTarget(scriptTarget: ScriptTarget): void;\n        setLanguageVariant(variant: LanguageVariant): void;\n        setScriptKind(scriptKind: ScriptKind): void;\n        setJSDocParsingMode(kind: JSDocParsingMode): void;\n        /** @deprecated use {@link resetTokenState} */\n        setTextPos(textPos: number): void;\n        resetTokenState(pos: number): void;\n        lookAhead<T>(callback: () => T): T;\n        scanRange<T>(start: number, length: number, callback: () => T): T;\n        tryScan<T>(callback: () => T): T;\n    }\n    function isExternalModuleNameRelative(moduleName: string): boolean;\n    function sortAndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;\n    function getDefaultLibFileName(options: CompilerOptions): string;\n    function textSpanEnd(span: TextSpan): number;\n    function textSpanIsEmpty(span: TextSpan): boolean;\n    function textSpanContainsPosition(span: TextSpan, position: number): boolean;\n    function textSpanContainsTextSpan(span: TextSpan, other: TextSpan): boolean;\n    function textSpanOverlapsWith(span: TextSpan, other: TextSpan): boolean;\n    function textSpanOverlap(span1: TextSpan, span2: TextSpan): TextSpan | undefined;\n    function textSpanIntersectsWithTextSpan(span: TextSpan, other: TextSpan): boolean;\n    function textSpanIntersectsWith(span: TextSpan, start: number, length: number): boolean;\n    function decodedTextSpanIntersectsWith(start1: number, length1: number, start2: number, length2: number): boolean;\n    function textSpanIntersectsWithPosition(span: TextSpan, position: number): boolean;\n    function textSpanIntersection(span1: TextSpan, span2: TextSpan): TextSpan | undefined;\n    function createTextSpan(start: number, length: number): TextSpan;\n    function createTextSpanFromBounds(start: number, end: number): TextSpan;\n    function textChangeRangeNewSpan(range: TextChangeRange): TextSpan;\n    function textChangeRangeIsUnchanged(range: TextChangeRange): boolean;\n    function createTextChangeRange(span: TextSpan, newLength: number): TextChangeRange;\n    /**\n     * Called to merge all the changes that occurred across several versions of a script snapshot\n     * into a single change.  i.e. if a user keeps making successive edits to a script we will\n     * have a text change from V1 to V2, V2 to V3, ..., Vn.\n     *\n     * This function will then merge those changes into a single change range valid between V1 and\n     * Vn.\n     */\n    function collapseTextChangeRangesAcrossMultipleVersions(changes: readonly TextChangeRange[]): TextChangeRange;\n    function getTypeParameterOwner(d: Declaration): Declaration | undefined;\n    function isParameterPropertyDeclaration(node: Node, parent: Node): node is ParameterPropertyDeclaration;\n    function isEmptyBindingPattern(node: BindingName): node is BindingPattern;\n    function isEmptyBindingElement(node: BindingElement | ArrayBindingElement): boolean;\n    function walkUpBindingElementsAndPatterns(binding: BindingElement): VariableDeclaration | ParameterDeclaration;\n    function getCombinedModifierFlags(node: Declaration): ModifierFlags;\n    function getCombinedNodeFlags(node: Node): NodeFlags;\n    /**\n     * Checks to see if the locale is in the appropriate format,\n     * and if it is, attempts to set the appropriate language.\n     */\n    function validateLocaleAndSetLanguage(locale: string, sys: {\n        getExecutingFilePath(): string;\n        resolvePath(path: string): string;\n        fileExists(fileName: string): boolean;\n        readFile(fileName: string): string | undefined;\n    }, errors?: Diagnostic[]): void;\n    function getOriginalNode(node: Node): Node;\n    function getOriginalNode<T extends Node>(node: Node, nodeTest: (node: Node) => node is T): T;\n    function getOriginalNode(node: Node | undefined): Node | undefined;\n    function getOriginalNode<T extends Node>(node: Node | undefined, nodeTest: (node: Node) => node is T): T | undefined;\n    /**\n     * Iterates through the parent chain of a node and performs the callback on each parent until the callback\n     * returns a truthy value, then returns that value.\n     * If no such value is found, it applies the callback until the parent pointer is undefined or the callback returns \"quit\"\n     * At that point findAncestor returns undefined.\n     */\n    function findAncestor<T extends Node>(node: Node | undefined, callback: (element: Node) => element is T): T | undefined;\n    function findAncestor(node: Node | undefined, callback: (element: Node) => boolean | \"quit\"): Node | undefined;\n    /**\n     * Gets a value indicating whether a node originated in the parse tree.\n     *\n     * @param node The node to test.\n     */\n    function isParseTreeNode(node: Node): boolean;\n    /**\n     * Gets the original parse tree node for a node.\n     *\n     * @param node The original node.\n     * @returns The original parse tree node if found; otherwise, undefined.\n     */\n    function getParseTreeNode(node: Node | undefined): Node | undefined;\n    /**\n     * Gets the original parse tree node for a node.\n     *\n     * @param node The original node.\n     * @param nodeTest A callback used to ensure the correct type of parse tree node is returned.\n     * @returns The original parse tree node if found; otherwise, undefined.\n     */\n    function getParseTreeNode<T extends Node>(node: T | undefined, nodeTest?: (node: Node) => node is T): T | undefined;\n    /** Add an extra underscore to identifiers that start with two underscores to avoid issues with magic names like '__proto__' */\n    function escapeLeadingUnderscores(identifier: string): __String;\n    /**\n     * Remove extra underscore from escaped identifier text content.\n     *\n     * @param identifier The escaped identifier text.\n     * @returns The unescaped identifier text.\n     */\n    function unescapeLeadingUnderscores(identifier: __String): string;\n    function idText(identifierOrPrivateName: Identifier | PrivateIdentifier): string;\n    /**\n     * If the text of an Identifier matches a keyword (including contextual and TypeScript-specific keywords), returns the\n     * SyntaxKind for the matching keyword.\n     */\n    function identifierToKeywordKind(node: Identifier): KeywordSyntaxKind | undefined;\n    function symbolName(symbol: Symbol): string;\n    function getNameOfJSDocTypedef(declaration: JSDocTypedefTag): Identifier | PrivateIdentifier | undefined;\n    function getNameOfDeclaration(declaration: Declaration | Expression | undefined): DeclarationName | undefined;\n    function getDecorators(node: HasDecorators): readonly Decorator[] | undefined;\n    function getModifiers(node: HasModifiers): readonly Modifier[] | undefined;\n    /**\n     * Gets the JSDoc parameter tags for the node if present.\n     *\n     * @remarks Returns any JSDoc param tag whose name matches the provided\n     * parameter, whether a param tag on a containing function\n     * expression, or a param tag on a variable declaration whose\n     * initializer is the containing function. The tags closest to the\n     * node are returned first, so in the previous example, the param\n     * tag on the containing function expression would be first.\n     *\n     * For binding patterns, parameter tags are matched by position.\n     */\n    function getJSDocParameterTags(param: ParameterDeclaration): readonly JSDocParameterTag[];\n    /**\n     * Gets the JSDoc type parameter tags for the node if present.\n     *\n     * @remarks Returns any JSDoc template tag whose names match the provided\n     * parameter, whether a template tag on a containing function\n     * expression, or a template tag on a variable declaration whose\n     * initializer is the containing function. The tags closest to the\n     * node are returned first, so in the previous example, the template\n     * tag on the containing function expression would be first.\n     */\n    function getJSDocTypeParameterTags(param: TypeParameterDeclaration): readonly JSDocTemplateTag[];\n    /**\n     * Return true if the node has JSDoc parameter tags.\n     *\n     * @remarks Includes parameter tags that are not directly on the node,\n     * for example on a variable declaration whose initializer is a function expression.\n     */\n    function hasJSDocParameterTags(node: FunctionLikeDeclaration | SignatureDeclaration): boolean;\n    /** Gets the JSDoc augments tag for the node if present */\n    function getJSDocAugmentsTag(node: Node): JSDocAugmentsTag | undefined;\n    /** Gets the JSDoc implements tags for the node if present */\n    function getJSDocImplementsTags(node: Node): readonly JSDocImplementsTag[];\n    /** Gets the JSDoc class tag for the node if present */\n    function getJSDocClassTag(node: Node): JSDocClassTag | undefined;\n    /** Gets the JSDoc public tag for the node if present */\n    function getJSDocPublicTag(node: Node): JSDocPublicTag | undefined;\n    /** Gets the JSDoc private tag for the node if present */\n    function getJSDocPrivateTag(node: Node): JSDocPrivateTag | undefined;\n    /** Gets the JSDoc protected tag for the node if present */\n    function getJSDocProtectedTag(node: Node): JSDocProtectedTag | undefined;\n    /** Gets the JSDoc protected tag for the node if present */\n    function getJSDocReadonlyTag(node: Node): JSDocReadonlyTag | undefined;\n    function getJSDocOverrideTagNoCache(node: Node): JSDocOverrideTag | undefined;\n    /** Gets the JSDoc deprecated tag for the node if present */\n    function getJSDocDeprecatedTag(node: Node): JSDocDeprecatedTag | undefined;\n    /** Gets the JSDoc enum tag for the node if present */\n    function getJSDocEnumTag(node: Node): JSDocEnumTag | undefined;\n    /** Gets the JSDoc this tag for the node if present */\n    function getJSDocThisTag(node: Node): JSDocThisTag | undefined;\n    /** Gets the JSDoc return tag for the node if present */\n    function getJSDocReturnTag(node: Node): JSDocReturnTag | undefined;\n    /** Gets the JSDoc template tag for the node if present */\n    function getJSDocTemplateTag(node: Node): JSDocTemplateTag | undefined;\n    function getJSDocSatisfiesTag(node: Node): JSDocSatisfiesTag | undefined;\n    /** Gets the JSDoc type tag for the node if present and valid */\n    function getJSDocTypeTag(node: Node): JSDocTypeTag | undefined;\n    /**\n     * Gets the type node for the node if provided via JSDoc.\n     *\n     * @remarks The search includes any JSDoc param tag that relates\n     * to the provided parameter, for example a type tag on the\n     * parameter itself, or a param tag on a containing function\n     * expression, or a param tag on a variable declaration whose\n     * initializer is the containing function. The tags closest to the\n     * node are examined first, so in the previous example, the type\n     * tag directly on the node would be returned.\n     */\n    function getJSDocType(node: Node): TypeNode | undefined;\n    /**\n     * Gets the return type node for the node if provided via JSDoc return tag or type tag.\n     *\n     * @remarks `getJSDocReturnTag` just gets the whole JSDoc tag. This function\n     * gets the type from inside the braces, after the fat arrow, etc.\n     */\n    function getJSDocReturnType(node: Node): TypeNode | undefined;\n    /** Get all JSDoc tags related to a node, including those on parent nodes. */\n    function getJSDocTags(node: Node): readonly JSDocTag[];\n    /** Gets all JSDoc tags that match a specified predicate */\n    function getAllJSDocTags<T extends JSDocTag>(node: Node, predicate: (tag: JSDocTag) => tag is T): readonly T[];\n    /** Gets all JSDoc tags of a specified kind */\n    function getAllJSDocTagsOfKind(node: Node, kind: SyntaxKind): readonly JSDocTag[];\n    /** Gets the text of a jsdoc comment, flattening links to their text. */\n    function getTextOfJSDocComment(comment?: string | NodeArray<JSDocComment>): string | undefined;\n    /**\n     * Gets the effective type parameters. If the node was parsed in a\n     * JavaScript file, gets the type parameters from the `@template` tag from JSDoc.\n     *\n     * This does *not* return type parameters from a jsdoc reference to a generic type, eg\n     *\n     * type Id = <T>(x: T) => T\n     * /** @type {Id} /\n     * function id(x) { return x }\n     */\n    function getEffectiveTypeParameterDeclarations(node: DeclarationWithTypeParameters): readonly TypeParameterDeclaration[];\n    function getEffectiveConstraintOfTypeParameter(node: TypeParameterDeclaration): TypeNode | undefined;\n    function isMemberName(node: Node): node is MemberName;\n    function isPropertyAccessChain(node: Node): node is PropertyAccessChain;\n    function isElementAccessChain(node: Node): node is ElementAccessChain;\n    function isCallChain(node: Node): node is CallChain;\n    function isOptionalChain(node: Node): node is PropertyAccessChain | ElementAccessChain | CallChain | NonNullChain;\n    function isNullishCoalesce(node: Node): boolean;\n    function isConstTypeReference(node: Node): boolean;\n    function skipPartiallyEmittedExpressions(node: Expression): Expression;\n    function skipPartiallyEmittedExpressions(node: Node): Node;\n    function isNonNullChain(node: Node): node is NonNullChain;\n    function isBreakOrContinueStatement(node: Node): node is BreakOrContinueStatement;\n    function isNamedExportBindings(node: Node): node is NamedExportBindings;\n    function isJSDocPropertyLikeTag(node: Node): node is JSDocPropertyLikeTag;\n    /**\n     * True if kind is of some token syntax kind.\n     * For example, this is true for an IfKeyword but not for an IfStatement.\n     * Literals are considered tokens, except TemplateLiteral, but does include TemplateHead/Middle/Tail.\n     */\n    function isTokenKind(kind: SyntaxKind): boolean;\n    /**\n     * True if node is of some token syntax kind.\n     * For example, this is true for an IfKeyword but not for an IfStatement.\n     * Literals are considered tokens, except TemplateLiteral, but does include TemplateHead/Middle/Tail.\n     */\n    function isToken(n: Node): boolean;\n    function isLiteralExpression(node: Node): node is LiteralExpression;\n    function isTemplateLiteralToken(node: Node): node is TemplateLiteralToken;\n    function isTemplateMiddleOrTemplateTail(node: Node): node is TemplateMiddle | TemplateTail;\n    function isImportOrExportSpecifier(node: Node): node is ImportSpecifier | ExportSpecifier;\n    function isTypeOnlyImportDeclaration(node: Node): node is TypeOnlyImportDeclaration;\n    function isTypeOnlyExportDeclaration(node: Node): node is TypeOnlyExportDeclaration;\n    function isTypeOnlyImportOrExportDeclaration(node: Node): node is TypeOnlyAliasDeclaration;\n    function isPartOfTypeOnlyImportOrExportDeclaration(node: Node): boolean;\n    function isStringTextContainingNode(node: Node): node is StringLiteral | TemplateLiteralToken;\n    function isImportAttributeName(node: Node): node is ImportAttributeName;\n    function isModifier(node: Node): node is Modifier;\n    function isEntityName(node: Node): node is EntityName;\n    function isPropertyName(node: Node): node is PropertyName;\n    function isBindingName(node: Node): node is BindingName;\n    function isFunctionLike(node: Node | undefined): node is SignatureDeclaration;\n    function isClassElement(node: Node): node is ClassElement;\n    function isClassLike(node: Node): node is ClassLikeDeclaration;\n    function isAccessor(node: Node): node is AccessorDeclaration;\n    function isAutoAccessorPropertyDeclaration(node: Node): node is AutoAccessorPropertyDeclaration;\n    function isModifierLike(node: Node): node is ModifierLike;\n    function isTypeElement(node: Node): node is TypeElement;\n    function isClassOrTypeElement(node: Node): node is ClassElement | TypeElement;\n    function isObjectLiteralElementLike(node: Node): node is ObjectLiteralElementLike;\n    /**\n     * Node test that determines whether a node is a valid type node.\n     * This differs from the `isPartOfTypeNode` function which determines whether a node is *part*\n     * of a TypeNode.\n     */\n    function isTypeNode(node: Node): node is TypeNode;\n    function isFunctionOrConstructorTypeNode(node: Node): node is FunctionTypeNode | ConstructorTypeNode;\n    function isArrayBindingElement(node: Node): node is ArrayBindingElement;\n    function isPropertyAccessOrQualifiedName(node: Node): node is PropertyAccessExpression | QualifiedName;\n    function isCallLikeExpression(node: Node): node is CallLikeExpression;\n    function isCallOrNewExpression(node: Node): node is CallExpression | NewExpression;\n    function isTemplateLiteral(node: Node): node is TemplateLiteral;\n    function isLeftHandSideExpression(node: Node): node is LeftHandSideExpression;\n    function isLiteralTypeLiteral(node: Node): node is NullLiteral | BooleanLiteral | LiteralExpression | PrefixUnaryExpression;\n    /**\n     * Determines whether a node is an expression based only on its kind.\n     */\n    function isExpression(node: Node): node is Expression;\n    function isAssertionExpression(node: Node): node is AssertionExpression;\n    function isIterationStatement(node: Node, lookInLabeledStatements: false): node is IterationStatement;\n    function isIterationStatement(node: Node, lookInLabeledStatements: boolean): node is IterationStatement | LabeledStatement;\n    function isConciseBody(node: Node): node is ConciseBody;\n    function isForInitializer(node: Node): node is ForInitializer;\n    function isModuleBody(node: Node): node is ModuleBody;\n    function isNamedImportBindings(node: Node): node is NamedImportBindings;\n    function isDeclarationStatement(node: Node): node is DeclarationStatement;\n    function isStatement(node: Node): node is Statement;\n    function isModuleReference(node: Node): node is ModuleReference;\n    function isJsxTagNameExpression(node: Node): node is JsxTagNameExpression;\n    function isJsxChild(node: Node): node is JsxChild;\n    function isJsxAttributeLike(node: Node): node is JsxAttributeLike;\n    function isStringLiteralOrJsxExpression(node: Node): node is StringLiteral | JsxExpression;\n    function isJsxOpeningLikeElement(node: Node): node is JsxOpeningLikeElement;\n    function isJsxCallLike(node: Node): node is JsxCallLike;\n    function isCaseOrDefaultClause(node: Node): node is CaseOrDefaultClause;\n    /** True if node is of a kind that may contain comment text. */\n    function isJSDocCommentContainingNode(node: Node): boolean;\n    function isSetAccessor(node: Node): node is SetAccessorDeclaration;\n    function isGetAccessor(node: Node): node is GetAccessorDeclaration;\n    /** True if has initializer node attached to it. */\n    function hasOnlyExpressionInitializer(node: Node): node is HasExpressionInitializer;\n    function isObjectLiteralElement(node: Node): node is ObjectLiteralElement;\n    function isStringLiteralLike(node: Node | FileReference): node is StringLiteralLike;\n    function isJSDocLinkLike(node: Node): node is JSDocLink | JSDocLinkCode | JSDocLinkPlain;\n    function hasRestParameter(s: SignatureDeclaration | JSDocSignature): boolean;\n    function isRestParameter(node: ParameterDeclaration | JSDocParameterTag): boolean;\n    function isInternalDeclaration(node: Node, sourceFile?: SourceFile): boolean;\n    const unchangedTextChangeRange: TextChangeRange;\n    type ParameterPropertyDeclaration = ParameterDeclaration & {\n        parent: ConstructorDeclaration;\n        name: Identifier;\n    };\n    function isPartOfTypeNode(node: Node): boolean;\n    /**\n     * This function checks multiple locations for JSDoc comments that apply to a host node.\n     * At each location, the whole comment may apply to the node, or only a specific tag in\n     * the comment. In the first case, location adds the entire {@link JSDoc} object. In the\n     * second case, it adds the applicable {@link JSDocTag}.\n     *\n     * For example, a JSDoc comment before a parameter adds the entire {@link JSDoc}. But a\n     * `@param` tag on the parent function only adds the {@link JSDocTag} for the `@param`.\n     *\n     * ```ts\n     * /** JSDoc will be returned for `a` *\\/\n     * const a = 0\n     * /**\n     *  * Entire JSDoc will be returned for `b`\n     *  * @param c JSDocTag will be returned for `c`\n     *  *\\/\n     * function b(/** JSDoc will be returned for `c` *\\/ c) {}\n     * ```\n     */\n    function getJSDocCommentsAndTags(hostNode: Node): readonly (JSDoc | JSDocTag)[];\n    /**\n     * Create an external source map source file reference\n     */\n    function createSourceMapSource(fileName: string, text: string, skipTrivia?: (pos: number) => number): SourceMapSource;\n    function setOriginalNode<T extends Node>(node: T, original: Node | undefined): T;\n    const factory: NodeFactory;\n    /**\n     * Clears any `EmitNode` entries from parse-tree nodes.\n     * @param sourceFile A source file.\n     */\n    function disposeEmitNodes(sourceFile: SourceFile | undefined): void;\n    /**\n     * Sets flags that control emit behavior of a node.\n     */\n    function setEmitFlags<T extends Node>(node: T, emitFlags: EmitFlags): T;\n    /**\n     * Gets a custom text range to use when emitting source maps.\n     */\n    function getSourceMapRange(node: Node): SourceMapRange;\n    /**\n     * Sets a custom text range to use when emitting source maps.\n     */\n    function setSourceMapRange<T extends Node>(node: T, range: SourceMapRange | undefined): T;\n    /**\n     * Gets the TextRange to use for source maps for a token of a node.\n     */\n    function getTokenSourceMapRange(node: Node, token: SyntaxKind): SourceMapRange | undefined;\n    /**\n     * Sets the TextRange to use for source maps for a token of a node.\n     */\n    function setTokenSourceMapRange<T extends Node>(node: T, token: SyntaxKind, range: SourceMapRange | undefined): T;\n    /**\n     * Gets a custom text range to use when emitting comments.\n     */\n    function getCommentRange(node: Node): TextRange;\n    /**\n     * Sets a custom text range to use when emitting comments.\n     */\n    function setCommentRange<T extends Node>(node: T, range: TextRange): T;\n    function getSyntheticLeadingComments(node: Node): SynthesizedComment[] | undefined;\n    function setSyntheticLeadingComments<T extends Node>(node: T, comments: SynthesizedComment[] | undefined): T;\n    function addSyntheticLeadingComment<T extends Node>(node: T, kind: SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia, text: string, hasTrailingNewLine?: boolean): T;\n    function getSyntheticTrailingComments(node: Node): SynthesizedComment[] | undefined;\n    function setSyntheticTrailingComments<T extends Node>(node: T, comments: SynthesizedComment[] | undefined): T;\n    function addSyntheticTrailingComment<T extends Node>(node: T, kind: SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia, text: string, hasTrailingNewLine?: boolean): T;\n    function moveSyntheticComments<T extends Node>(node: T, original: Node): T;\n    /**\n     * Gets the constant value to emit for an expression representing an enum.\n     */\n    function getConstantValue(node: AccessExpression): string | number | undefined;\n    /**\n     * Sets the constant value to emit for an expression.\n     */\n    function setConstantValue(node: AccessExpression, value: string | number): AccessExpression;\n    /**\n     * Adds an EmitHelper to a node.\n     */\n    function addEmitHelper<T extends Node>(node: T, helper: EmitHelper): T;\n    /**\n     * Add EmitHelpers to a node.\n     */\n    function addEmitHelpers<T extends Node>(node: T, helpers: EmitHelper[] | undefined): T;\n    /**\n     * Removes an EmitHelper from a node.\n     */\n    function removeEmitHelper(node: Node, helper: EmitHelper): boolean;\n    /**\n     * Gets the EmitHelpers of a node.\n     */\n    function getEmitHelpers(node: Node): EmitHelper[] | undefined;\n    /**\n     * Moves matching emit helpers from a source node to a target node.\n     */\n    function moveEmitHelpers(source: Node, target: Node, predicate: (helper: EmitHelper) => boolean): void;\n    function isNumericLiteral(node: Node): node is NumericLiteral;\n    function isBigIntLiteral(node: Node): node is BigIntLiteral;\n    function isStringLiteral(node: Node): node is StringLiteral;\n    function isJsxText(node: Node): node is JsxText;\n    function isRegularExpressionLiteral(node: Node): node is RegularExpressionLiteral;\n    function isNoSubstitutionTemplateLiteral(node: Node): node is NoSubstitutionTemplateLiteral;\n    function isTemplateHead(node: Node): node is TemplateHead;\n    function isTemplateMiddle(node: Node): node is TemplateMiddle;\n    function isTemplateTail(node: Node): node is TemplateTail;\n    function isDotDotDotToken(node: Node): node is DotDotDotToken;\n    function isPlusToken(node: Node): node is PlusToken;\n    function isMinusToken(node: Node): node is MinusToken;\n    function isAsteriskToken(node: Node): node is AsteriskToken;\n    function isExclamationToken(node: Node): node is ExclamationToken;\n    function isQuestionToken(node: Node): node is QuestionToken;\n    function isColonToken(node: Node): node is ColonToken;\n    function isQuestionDotToken(node: Node): node is QuestionDotToken;\n    function isEqualsGreaterThanToken(node: Node): node is EqualsGreaterThanToken;\n    function isIdentifier(node: Node): node is Identifier;\n    function isPrivateIdentifier(node: Node): node is PrivateIdentifier;\n    function isAssertsKeyword(node: Node): node is AssertsKeyword;\n    function isAwaitKeyword(node: Node): node is AwaitKeyword;\n    function isQualifiedName(node: Node): node is QualifiedName;\n    function isComputedPropertyName(node: Node): node is ComputedPropertyName;\n    function isTypeParameterDeclaration(node: Node): node is TypeParameterDeclaration;\n    function isParameter(node: Node): node is ParameterDeclaration;\n    function isDecorator(node: Node): node is Decorator;\n    function isPropertySignature(node: Node): node is PropertySignature;\n    function isPropertyDeclaration(node: Node): node is PropertyDeclaration;\n    function isMethodSignature(node: Node): node is MethodSignature;\n    function isMethodDeclaration(node: Node): node is MethodDeclaration;\n    function isClassStaticBlockDeclaration(node: Node): node is ClassStaticBlockDeclaration;\n    function isConstructorDeclaration(node: Node): node is ConstructorDeclaration;\n    function isGetAccessorDeclaration(node: Node): node is GetAccessorDeclaration;\n    function isSetAccessorDeclaration(node: Node): node is SetAccessorDeclaration;\n    function isCallSignatureDeclaration(node: Node): node is CallSignatureDeclaration;\n    function isConstructSignatureDeclaration(node: Node): node is ConstructSignatureDeclaration;\n    function isIndexSignatureDeclaration(node: Node): node is IndexSignatureDeclaration;\n    function isTypePredicateNode(node: Node): node is TypePredicateNode;\n    function isTypeReferenceNode(node: Node): node is TypeReferenceNode;\n    function isFunctionTypeNode(node: Node): node is FunctionTypeNode;\n    function isConstructorTypeNode(node: Node): node is ConstructorTypeNode;\n    function isTypeQueryNode(node: Node): node is TypeQueryNode;\n    function isTypeLiteralNode(node: Node): node is TypeLiteralNode;\n    function isArrayTypeNode(node: Node): node is ArrayTypeNode;\n    function isTupleTypeNode(node: Node): node is TupleTypeNode;\n    function isNamedTupleMember(node: Node): node is NamedTupleMember;\n    function isOptionalTypeNode(node: Node): node is OptionalTypeNode;\n    function isRestTypeNode(node: Node): node is RestTypeNode;\n    function isUnionTypeNode(node: Node): node is UnionTypeNode;\n    function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;\n    function isConditionalTypeNode(node: Node): node is ConditionalTypeNode;\n    function isInferTypeNode(node: Node): node is InferTypeNode;\n    function isParenthesizedTypeNode(node: Node): node is ParenthesizedTypeNode;\n    function isThisTypeNode(node: Node): node is ThisTypeNode;\n    function isTypeOperatorNode(node: Node): node is TypeOperatorNode;\n    function isIndexedAccessTypeNode(node: Node): node is IndexedAccessTypeNode;\n    function isMappedTypeNode(node: Node): node is MappedTypeNode;\n    function isLiteralTypeNode(node: Node): node is LiteralTypeNode;\n    function isImportTypeNode(node: Node): node is ImportTypeNode;\n    function isTemplateLiteralTypeSpan(node: Node): node is TemplateLiteralTypeSpan;\n    function isTemplateLiteralTypeNode(node: Node): node is TemplateLiteralTypeNode;\n    function isObjectBindingPattern(node: Node): node is ObjectBindingPattern;\n    function isArrayBindingPattern(node: Node): node is ArrayBindingPattern;\n    function isBindingElement(node: Node): node is BindingElement;\n    function isArrayLiteralExpression(node: Node): node is ArrayLiteralExpression;\n    function isObjectLiteralExpression(node: Node): node is ObjectLiteralExpression;\n    function isPropertyAccessExpression(node: Node): node is PropertyAccessExpression;\n    function isElementAccessExpression(node: Node): node is ElementAccessExpression;\n    function isCallExpression(node: Node): node is CallExpression;\n    function isNewExpression(node: Node): node is NewExpression;\n    function isTaggedTemplateExpression(node: Node): node is TaggedTemplateExpression;\n    function isTypeAssertionExpression(node: Node): node is TypeAssertion;\n    function isParenthesizedExpression(node: Node): node is ParenthesizedExpression;\n    function isFunctionExpression(node: Node): node is FunctionExpression;\n    function isArrowFunction(node: Node): node is ArrowFunction;\n    function isDeleteExpression(node: Node): node is DeleteExpression;\n    function isTypeOfExpression(node: Node): node is TypeOfExpression;\n    function isVoidExpression(node: Node): node is VoidExpression;\n    function isAwaitExpression(node: Node): node is AwaitExpression;\n    function isPrefixUnaryExpression(node: Node): node is PrefixUnaryExpression;\n    function isPostfixUnaryExpression(node: Node): node is PostfixUnaryExpression;\n    function isBinaryExpression(node: Node): node is BinaryExpression;\n    function isConditionalExpression(node: Node): node is ConditionalExpression;\n    function isTemplateExpression(node: Node): node is TemplateExpression;\n    function isYieldExpression(node: Node): node is YieldExpression;\n    function isSpreadElement(node: Node): node is SpreadElement;\n    function isClassExpression(node: Node): node is ClassExpression;\n    function isOmittedExpression(node: Node): node is OmittedExpression;\n    function isExpressionWithTypeArguments(node: Node): node is ExpressionWithTypeArguments;\n    function isAsExpression(node: Node): node is AsExpression;\n    function isSatisfiesExpression(node: Node): node is SatisfiesExpression;\n    function isNonNullExpression(node: Node): node is NonNullExpression;\n    function isMetaProperty(node: Node): node is MetaProperty;\n    function isSyntheticExpression(node: Node): node is SyntheticExpression;\n    function isPartiallyEmittedExpression(node: Node): node is PartiallyEmittedExpression;\n    function isCommaListExpression(node: Node): node is CommaListExpression;\n    function isTemplateSpan(node: Node): node is TemplateSpan;\n    function isSemicolonClassElement(node: Node): node is SemicolonClassElement;\n    function isBlock(node: Node): node is Block;\n    function isVariableStatement(node: Node): node is VariableStatement;\n    function isEmptyStatement(node: Node): node is EmptyStatement;\n    function isExpressionStatement(node: Node): node is ExpressionStatement;\n    function isIfStatement(node: Node): node is IfStatement;\n    function isDoStatement(node: Node): node is DoStatement;\n    function isWhileStatement(node: Node): node is WhileStatement;\n    function isForStatement(node: Node): node is ForStatement;\n    function isForInStatement(node: Node): node is ForInStatement;\n    function isForOfStatement(node: Node): node is ForOfStatement;\n    function isContinueStatement(node: Node): node is ContinueStatement;\n    function isBreakStatement(node: Node): node is BreakStatement;\n    function isReturnStatement(node: Node): node is ReturnStatement;\n    function isWithStatement(node: Node): node is WithStatement;\n    function isSwitchStatement(node: Node): node is SwitchStatement;\n    function isLabeledStatement(node: Node): node is LabeledStatement;\n    function isThrowStatement(node: Node): node is ThrowStatement;\n    function isTryStatement(node: Node): node is TryStatement;\n    function isDebuggerStatement(node: Node): node is DebuggerStatement;\n    function isVariableDeclaration(node: Node): node is VariableDeclaration;\n    function isVariableDeclarationList(node: Node): node is VariableDeclarationList;\n    function isFunctionDeclaration(node: Node): node is FunctionDeclaration;\n    function isClassDeclaration(node: Node): node is ClassDeclaration;\n    function isInterfaceDeclaration(node: Node): node is InterfaceDeclaration;\n    function isTypeAliasDeclaration(node: Node): node is TypeAliasDeclaration;\n    function isEnumDeclaration(node: Node): node is EnumDeclaration;\n    function isModuleDeclaration(node: Node): node is ModuleDeclaration;\n    function isModuleBlock(node: Node): node is ModuleBlock;\n    function isCaseBlock(node: Node): node is CaseBlock;\n    function isNamespaceExportDeclaration(node: Node): node is NamespaceExportDeclaration;\n    function isImportEqualsDeclaration(node: Node): node is ImportEqualsDeclaration;\n    function isImportDeclaration(node: Node): node is ImportDeclaration;\n    function isImportClause(node: Node): node is ImportClause;\n    function isImportTypeAssertionContainer(node: Node): node is ImportTypeAssertionContainer;\n    /** @deprecated */\n    function isAssertClause(node: Node): node is AssertClause;\n    /** @deprecated */\n    function isAssertEntry(node: Node): node is AssertEntry;\n    function isImportAttributes(node: Node): node is ImportAttributes;\n    function isImportAttribute(node: Node): node is ImportAttribute;\n    function isNamespaceImport(node: Node): node is NamespaceImport;\n    function isNamespaceExport(node: Node): node is NamespaceExport;\n    function isNamedImports(node: Node): node is NamedImports;\n    function isImportSpecifier(node: Node): node is ImportSpecifier;\n    function isExportAssignment(node: Node): node is ExportAssignment;\n    function isExportDeclaration(node: Node): node is ExportDeclaration;\n    function isNamedExports(node: Node): node is NamedExports;\n    function isExportSpecifier(node: Node): node is ExportSpecifier;\n    function isModuleExportName(node: Node): node is ModuleExportName;\n    function isMissingDeclaration(node: Node): node is MissingDeclaration;\n    function isNotEmittedStatement(node: Node): node is NotEmittedStatement;\n    function isExternalModuleReference(node: Node): node is ExternalModuleReference;\n    function isJsxElement(node: Node): node is JsxElement;\n    function isJsxSelfClosingElement(node: Node): node is JsxSelfClosingElement;\n    function isJsxOpeningElement(node: Node): node is JsxOpeningElement;\n    function isJsxClosingElement(node: Node): node is JsxClosingElement;\n    function isJsxFragment(node: Node): node is JsxFragment;\n    function isJsxOpeningFragment(node: Node): node is JsxOpeningFragment;\n    function isJsxClosingFragment(node: Node): node is JsxClosingFragment;\n    function isJsxAttribute(node: Node): node is JsxAttribute;\n    function isJsxAttributes(node: Node): node is JsxAttributes;\n    function isJsxSpreadAttribute(node: Node): node is JsxSpreadAttribute;\n    function isJsxExpression(node: Node): node is JsxExpression;\n    function isJsxNamespacedName(node: Node): node is JsxNamespacedName;\n    function isCaseClause(node: Node): node is CaseClause;\n    function isDefaultClause(node: Node): node is DefaultClause;\n    function isHeritageClause(node: Node): node is HeritageClause;\n    function isCatchClause(node: Node): node is CatchClause;\n    function isPropertyAssignment(node: Node): node is PropertyAssignment;\n    function isShorthandPropertyAssignment(node: Node): node is ShorthandPropertyAssignment;\n    function isSpreadAssignment(node: Node): node is SpreadAssignment;\n    function isEnumMember(node: Node): node is EnumMember;\n    function isSourceFile(node: Node): node is SourceFile;\n    function isBundle(node: Node): node is Bundle;\n    function isJSDocTypeExpression(node: Node): node is JSDocTypeExpression;\n    function isJSDocNameReference(node: Node): node is JSDocNameReference;\n    function isJSDocMemberName(node: Node): node is JSDocMemberName;\n    function isJSDocLink(node: Node): node is JSDocLink;\n    function isJSDocLinkCode(node: Node): node is JSDocLinkCode;\n    function isJSDocLinkPlain(node: Node): node is JSDocLinkPlain;\n    function isJSDocAllType(node: Node): node is JSDocAllType;\n    function isJSDocUnknownType(node: Node): node is JSDocUnknownType;\n    function isJSDocNullableType(node: Node): node is JSDocNullableType;\n    function isJSDocNonNullableType(node: Node): node is JSDocNonNullableType;\n    function isJSDocOptionalType(node: Node): node is JSDocOptionalType;\n    function isJSDocFunctionType(node: Node): node is JSDocFunctionType;\n    function isJSDocVariadicType(node: Node): node is JSDocVariadicType;\n    function isJSDocNamepathType(node: Node): node is JSDocNamepathType;\n    function isJSDoc(node: Node): node is JSDoc;\n    function isJSDocTypeLiteral(node: Node): node is JSDocTypeLiteral;\n    function isJSDocSignature(node: Node): node is JSDocSignature;\n    function isJSDocAugmentsTag(node: Node): node is JSDocAugmentsTag;\n    function isJSDocAuthorTag(node: Node): node is JSDocAuthorTag;\n    function isJSDocClassTag(node: Node): node is JSDocClassTag;\n    function isJSDocCallbackTag(node: Node): node is JSDocCallbackTag;\n    function isJSDocPublicTag(node: Node): node is JSDocPublicTag;\n    function isJSDocPrivateTag(node: Node): node is JSDocPrivateTag;\n    function isJSDocProtectedTag(node: Node): node is JSDocProtectedTag;\n    function isJSDocReadonlyTag(node: Node): node is JSDocReadonlyTag;\n    function isJSDocOverrideTag(node: Node): node is JSDocOverrideTag;\n    function isJSDocOverloadTag(node: Node): node is JSDocOverloadTag;\n    function isJSDocDeprecatedTag(node: Node): node is JSDocDeprecatedTag;\n    function isJSDocSeeTag(node: Node): node is JSDocSeeTag;\n    function isJSDocEnumTag(node: Node): node is JSDocEnumTag;\n    function isJSDocParameterTag(node: Node): node is JSDocParameterTag;\n    function isJSDocReturnTag(node: Node): node is JSDocReturnTag;\n    function isJSDocThisTag(node: Node): node is JSDocThisTag;\n    function isJSDocTypeTag(node: Node): node is JSDocTypeTag;\n    function isJSDocTemplateTag(node: Node): node is JSDocTemplateTag;\n    function isJSDocTypedefTag(node: Node): node is JSDocTypedefTag;\n    function isJSDocUnknownTag(node: Node): node is JSDocUnknownTag;\n    function isJSDocPropertyTag(node: Node): node is JSDocPropertyTag;\n    function isJSDocImplementsTag(node: Node): node is JSDocImplementsTag;\n    function isJSDocSatisfiesTag(node: Node): node is JSDocSatisfiesTag;\n    function isJSDocThrowsTag(node: Node): node is JSDocThrowsTag;\n    function isJSDocImportTag(node: Node): node is JSDocImportTag;\n    function isQuestionOrExclamationToken(node: Node): node is QuestionToken | ExclamationToken;\n    function isIdentifierOrThisTypeNode(node: Node): node is Identifier | ThisTypeNode;\n    function isReadonlyKeywordOrPlusOrMinusToken(node: Node): node is ReadonlyKeyword | PlusToken | MinusToken;\n    function isQuestionOrPlusOrMinusToken(node: Node): node is QuestionToken | PlusToken | MinusToken;\n    function isModuleName(node: Node): node is ModuleName;\n    function isBinaryOperatorToken(node: Node): node is BinaryOperatorToken;\n    function setTextRange<T extends TextRange>(range: T, location: TextRange | undefined): T;\n    function canHaveModifiers(node: Node): node is HasModifiers;\n    function canHaveDecorators(node: Node): node is HasDecorators;\n    /**\n     * Invokes a callback for each child of the given node. The 'cbNode' callback is invoked for all child nodes\n     * stored in properties. If a 'cbNodes' callback is specified, it is invoked for embedded arrays; otherwise,\n     * embedded arrays are flattened and the 'cbNode' callback is invoked for each element. If a callback returns\n     * a truthy value, iteration stops and that value is returned. Otherwise, undefined is returned.\n     *\n     * @param node a given node to visit its children\n     * @param cbNode a callback to be invoked for all child nodes\n     * @param cbNodes a callback to be invoked for embedded array\n     *\n     * @remarks `forEachChild` must visit the children of a node in the order\n     * that they appear in the source code. The language service depends on this property to locate nodes by position.\n     */\n    function forEachChild<T>(node: Node, cbNode: (node: Node) => T | undefined, cbNodes?: (nodes: NodeArray<Node>) => T | undefined): T | undefined;\n    function createSourceFile(fileName: string, sourceText: string, languageVersionOrOptions: ScriptTarget | CreateSourceFileOptions, setParentNodes?: boolean, scriptKind?: ScriptKind): SourceFile;\n    function parseIsolatedEntityName(text: string, languageVersion: ScriptTarget): EntityName | undefined;\n    /**\n     * Parse json text into SyntaxTree and return node and parse errors if any\n     * @param fileName\n     * @param sourceText\n     */\n    function parseJsonText(fileName: string, sourceText: string): JsonSourceFile;\n    function isExternalModule(file: SourceFile): boolean;\n    function updateSourceFile(sourceFile: SourceFile, newText: string, textChangeRange: TextChangeRange, aggressiveChecks?: boolean): SourceFile;\n    interface CreateSourceFileOptions {\n        languageVersion: ScriptTarget;\n        /**\n         * Controls the format the file is detected as - this can be derived from only the path\n         * and files on disk, but needs to be done with a module resolution cache in scope to be performant.\n         * This is usually `undefined` for compilations that do not have `moduleResolution` values of `node16` or `nodenext`.\n         */\n        impliedNodeFormat?: ResolutionMode;\n        /**\n         * Controls how module-y-ness is set for the given file. Usually the result of calling\n         * `getSetExternalModuleIndicator` on a valid `CompilerOptions` object. If not present, the default\n         * check specified by `isFileProbablyExternalModule` will be used to set the field.\n         */\n        setExternalModuleIndicator?: (file: SourceFile) => void;\n        jsDocParsingMode?: JSDocParsingMode;\n    }\n    function parseCommandLine(commandLine: readonly string[], readFile?: (path: string) => string | undefined): ParsedCommandLine;\n    function parseBuildCommand(commandLine: readonly string[]): ParsedBuildCommand;\n    /**\n     * Reads the config file, reports errors if any and exits if the config file cannot be found\n     */\n    function getParsedCommandLineOfConfigFile(configFileName: string, optionsToExtend: CompilerOptions | undefined, host: ParseConfigFileHost, extendedConfigCache?: Map<string, ExtendedConfigCacheEntry>, watchOptionsToExtend?: WatchOptions, extraFileExtensions?: readonly FileExtensionInfo[]): ParsedCommandLine | undefined;\n    /**\n     * Read tsconfig.json file\n     * @param fileName The path to the config file\n     */\n    function readConfigFile(fileName: string, readFile: (path: string) => string | undefined): {\n        config?: any;\n        error?: Diagnostic;\n    };\n    /**\n     * Parse the text of the tsconfig.json file\n     * @param fileName The path to the config file\n     * @param jsonText The text of the config file\n     */\n    function parseConfigFileTextToJson(fileName: string, jsonText: string): {\n        config?: any;\n        error?: Diagnostic;\n    };\n    /**\n     * Read tsconfig.json file\n     * @param fileName The path to the config file\n     */\n    function readJsonConfigFile(fileName: string, readFile: (path: string) => string | undefined): TsConfigSourceFile;\n    /**\n     * Convert the json syntax tree into the json value\n     */\n    function convertToObject(sourceFile: JsonSourceFile, errors: Diagnostic[]): any;\n    /**\n     * Parse the contents of a config file (tsconfig.json).\n     * @param json The contents of the config file to parse\n     * @param host Instance of ParseConfigHost used to enumerate files in folder.\n     * @param basePath A root directory to resolve relative path entries in the config\n     *    file to. e.g. outDir\n     */\n    function parseJsonConfigFileContent(json: any, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: readonly FileExtensionInfo[], extendedConfigCache?: Map<string, ExtendedConfigCacheEntry>, existingWatchOptions?: WatchOptions): ParsedCommandLine;\n    /**\n     * Parse the contents of a config file (tsconfig.json).\n     * @param jsonNode The contents of the config file to parse\n     * @param host Instance of ParseConfigHost used to enumerate files in folder.\n     * @param basePath A root directory to resolve relative path entries in the config\n     *    file to. e.g. outDir\n     */\n    function parseJsonSourceFileConfigFileContent(sourceFile: TsConfigSourceFile, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: readonly FileExtensionInfo[], extendedConfigCache?: Map<string, ExtendedConfigCacheEntry>, existingWatchOptions?: WatchOptions): ParsedCommandLine;\n    function convertCompilerOptionsFromJson(jsonOptions: any, basePath: string, configFileName?: string): {\n        options: CompilerOptions;\n        errors: Diagnostic[];\n    };\n    function convertTypeAcquisitionFromJson(jsonOptions: any, basePath: string, configFileName?: string): {\n        options: TypeAcquisition;\n        errors: Diagnostic[];\n    };\n    /** Parsed command line for build */\n    interface ParsedBuildCommand {\n        buildOptions: BuildOptions;\n        watchOptions: WatchOptions | undefined;\n        projects: string[];\n        errors: Diagnostic[];\n    }\n    type DiagnosticReporter = (diagnostic: Diagnostic) => void;\n    /**\n     * Reports config file diagnostics\n     */\n    interface ConfigFileDiagnosticsReporter {\n        /**\n         * Reports unrecoverable error when parsing config file\n         */\n        onUnRecoverableConfigFileDiagnostic: DiagnosticReporter;\n    }\n    /**\n     * Interface extending ParseConfigHost to support ParseConfigFile that reads config file and reports errors\n     */\n    interface ParseConfigFileHost extends ParseConfigHost, ConfigFileDiagnosticsReporter {\n        getCurrentDirectory(): string;\n    }\n    interface ParsedTsconfig {\n        raw: any;\n        options?: CompilerOptions;\n        watchOptions?: WatchOptions;\n        typeAcquisition?: TypeAcquisition;\n        /**\n         * Note that the case of the config path has not yet been normalized, as no files have been imported into the project yet\n         */\n        extendedConfigPath?: string | string[];\n    }\n    interface ExtendedConfigCacheEntry {\n        extendedResult: TsConfigSourceFile;\n        extendedConfig: ParsedTsconfig | undefined;\n    }\n    function getEffectiveTypeRoots(options: CompilerOptions, host: GetEffectiveTypeRootsHost): string[] | undefined;\n    /**\n     * @param {string | undefined} containingFile - file that contains type reference directive, can be undefined if containing file is unknown.\n     * This is possible in case if resolution is performed for directives specified via 'types' parameter. In this case initial path for secondary lookups\n     * is assumed to be the same as root directory of the project.\n     */\n    function resolveTypeReferenceDirective(typeReferenceDirectiveName: string, containingFile: string | undefined, options: CompilerOptions, host: ModuleResolutionHost, redirectedReference?: ResolvedProjectReference, cache?: TypeReferenceDirectiveResolutionCache, resolutionMode?: ResolutionMode): ResolvedTypeReferenceDirectiveWithFailedLookupLocations;\n    /**\n     * Given a set of options, returns the set of type directive names\n     *   that should be included for this program automatically.\n     * This list could either come from the config file,\n     *   or from enumerating the types root + initial secondary types lookup location.\n     * More type directives might appear in the program later as a result of loading actual source files;\n     *   this list is only the set of defaults that are implicitly included.\n     */\n    function getAutomaticTypeDirectiveNames(options: CompilerOptions, host: ModuleResolutionHost): string[];\n    function createModuleResolutionCache(currentDirectory: string, getCanonicalFileName: (s: string) => string, options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache): ModuleResolutionCache;\n    function createTypeReferenceDirectiveResolutionCache(currentDirectory: string, getCanonicalFileName: (s: string) => string, options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache): TypeReferenceDirectiveResolutionCache;\n    function resolveModuleNameFromCache(moduleName: string, containingFile: string, cache: ModuleResolutionCache, mode?: ResolutionMode): ResolvedModuleWithFailedLookupLocations | undefined;\n    function resolveModuleName(moduleName: string, containingFile: string, compilerOptions: CompilerOptions, host: ModuleResolutionHost, cache?: ModuleResolutionCache, redirectedReference?: ResolvedProjectReference, resolutionMode?: ResolutionMode): ResolvedModuleWithFailedLookupLocations;\n    function bundlerModuleNameResolver(moduleName: string, containingFile: string, compilerOptions: CompilerOptions, host: ModuleResolutionHost, cache?: ModuleResolutionCache, redirectedReference?: ResolvedProjectReference): ResolvedModuleWithFailedLookupLocations;\n    function nodeModuleNameResolver(moduleName: string, containingFile: string, compilerOptions: CompilerOptions, host: ModuleResolutionHost, cache?: ModuleResolutionCache, redirectedReference?: ResolvedProjectReference): ResolvedModuleWithFailedLookupLocations;\n    function classicNameResolver(moduleName: string, containingFile: string, compilerOptions: CompilerOptions, host: ModuleResolutionHost, cache?: NonRelativeModuleNameResolutionCache, redirectedReference?: ResolvedProjectReference): ResolvedModuleWithFailedLookupLocations;\n    interface TypeReferenceDirectiveResolutionCache extends PerDirectoryResolutionCache<ResolvedTypeReferenceDirectiveWithFailedLookupLocations>, NonRelativeNameResolutionCache<ResolvedTypeReferenceDirectiveWithFailedLookupLocations>, PackageJsonInfoCache {\n    }\n    interface ModeAwareCache<T> {\n        get(key: string, mode: ResolutionMode): T | undefined;\n        set(key: string, mode: ResolutionMode, value: T): this;\n        delete(key: string, mode: ResolutionMode): this;\n        has(key: string, mode: ResolutionMode): boolean;\n        forEach(cb: (elem: T, key: string, mode: ResolutionMode) => void): void;\n        size(): number;\n    }\n    /**\n     * Cached resolutions per containing directory.\n     * This assumes that any module id will have the same resolution for sibling files located in the same folder.\n     */\n    interface PerDirectoryResolutionCache<T> {\n        getFromDirectoryCache(name: string, mode: ResolutionMode, directoryName: string, redirectedReference: ResolvedProjectReference | undefined): T | undefined;\n        getOrCreateCacheForDirectory(directoryName: string, redirectedReference?: ResolvedProjectReference): ModeAwareCache<T>;\n        clear(): void;\n        /**\n         *  Updates with the current compilerOptions the cache will operate with.\n         *  This updates the redirects map as well if needed so module resolutions are cached if they can across the projects\n         */\n        update(options: CompilerOptions): void;\n    }\n    interface NonRelativeNameResolutionCache<T> {\n        getFromNonRelativeNameCache(nonRelativeName: string, mode: ResolutionMode, directoryName: string, redirectedReference: ResolvedProjectReference | undefined): T | undefined;\n        getOrCreateCacheForNonRelativeName(nonRelativeName: string, mode: ResolutionMode, redirectedReference?: ResolvedProjectReference): PerNonRelativeNameCache<T>;\n        clear(): void;\n        /**\n         *  Updates with the current compilerOptions the cache will operate with.\n         *  This updates the redirects map as well if needed so module resolutions are cached if they can across the projects\n         */\n        update(options: CompilerOptions): void;\n    }\n    interface PerNonRelativeNameCache<T> {\n        get(directory: string): T | undefined;\n        set(directory: string, result: T): void;\n    }\n    interface ModuleResolutionCache extends PerDirectoryResolutionCache<ResolvedModuleWithFailedLookupLocations>, NonRelativeModuleNameResolutionCache, PackageJsonInfoCache {\n        getPackageJsonInfoCache(): PackageJsonInfoCache;\n    }\n    /**\n     * Stored map from non-relative module name to a table: directory -> result of module lookup in this directory\n     * We support only non-relative module names because resolution of relative module names is usually more deterministic and thus less expensive.\n     */\n    interface NonRelativeModuleNameResolutionCache extends NonRelativeNameResolutionCache<ResolvedModuleWithFailedLookupLocations>, PackageJsonInfoCache {\n        /** @deprecated Use getOrCreateCacheForNonRelativeName */\n        getOrCreateCacheForModuleName(nonRelativeModuleName: string, mode: ResolutionMode, redirectedReference?: ResolvedProjectReference): PerModuleNameCache;\n    }\n    interface PackageJsonInfoCache {\n        clear(): void;\n    }\n    type PerModuleNameCache = PerNonRelativeNameCache<ResolvedModuleWithFailedLookupLocations>;\n    /**\n     * Visits a Node using the supplied visitor, possibly returning a new Node in its place.\n     *\n     * - If the input node is undefined, then the output is undefined.\n     * - If the visitor returns undefined, then the output is undefined.\n     * - If the output node is not undefined, then it will satisfy the test function.\n     * - In order to obtain a return type that is more specific than `Node`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * @param node The Node to visit.\n     * @param visitor The callback used to visit the Node.\n     * @param test A callback to execute to verify the Node is valid.\n     * @param lift An optional callback to execute to lift a NodeArray into a valid Node.\n     */\n    function visitNode<TIn extends Node | undefined, TVisited extends Node | undefined, TOut extends Node>(node: TIn, visitor: Visitor<NonNullable<TIn>, TVisited>, test: (node: Node) => node is TOut, lift?: (node: readonly Node[]) => Node): TOut | (TIn & undefined) | (TVisited & undefined);\n    /**\n     * Visits a Node using the supplied visitor, possibly returning a new Node in its place.\n     *\n     * - If the input node is undefined, then the output is undefined.\n     * - If the visitor returns undefined, then the output is undefined.\n     * - If the output node is not undefined, then it will satisfy the test function.\n     * - In order to obtain a return type that is more specific than `Node`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * @param node The Node to visit.\n     * @param visitor The callback used to visit the Node.\n     * @param test A callback to execute to verify the Node is valid.\n     * @param lift An optional callback to execute to lift a NodeArray into a valid Node.\n     */\n    function visitNode<TIn extends Node | undefined, TVisited extends Node | undefined>(node: TIn, visitor: Visitor<NonNullable<TIn>, TVisited>, test?: (node: Node) => boolean, lift?: (node: readonly Node[]) => Node): Node | (TIn & undefined) | (TVisited & undefined);\n    /**\n     * Visits a NodeArray using the supplied visitor, possibly returning a new NodeArray in its place.\n     *\n     * - If the input node array is undefined, the output is undefined.\n     * - If the visitor can return undefined, the node it visits in the array will be reused.\n     * - If the output node array is not undefined, then its contents will satisfy the test.\n     * - In order to obtain a return type that is more specific than `NodeArray<Node>`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * @param nodes The NodeArray to visit.\n     * @param visitor The callback used to visit a Node.\n     * @param test A node test to execute for each node.\n     * @param start An optional value indicating the starting offset at which to start visiting.\n     * @param count An optional value indicating the maximum number of nodes to visit.\n     */\n    function visitNodes<TIn extends Node, TInArray extends NodeArray<TIn> | undefined, TOut extends Node>(nodes: TInArray, visitor: Visitor<TIn, Node | undefined>, test: (node: Node) => node is TOut, start?: number, count?: number): NodeArray<TOut> | (TInArray & undefined);\n    /**\n     * Visits a NodeArray using the supplied visitor, possibly returning a new NodeArray in its place.\n     *\n     * - If the input node array is undefined, the output is undefined.\n     * - If the visitor can return undefined, the node it visits in the array will be reused.\n     * - If the output node array is not undefined, then its contents will satisfy the test.\n     * - In order to obtain a return type that is more specific than `NodeArray<Node>`, a test\n     *   function _must_ be provided, and that function must be a type predicate.\n     *\n     * @param nodes The NodeArray to visit.\n     * @param visitor The callback used to visit a Node.\n     * @param test A node test to execute for each node.\n     * @param start An optional value indicating the starting offset at which to start visiting.\n     * @param count An optional value indicating the maximum number of nodes to visit.\n     */\n    function visitNodes<TIn extends Node, TInArray extends NodeArray<TIn> | undefined>(nodes: TInArray, visitor: Visitor<TIn, Node | undefined>, test?: (node: Node) => boolean, start?: number, count?: number): NodeArray<Node> | (TInArray & undefined);\n    /**\n     * Starts a new lexical environment and visits a statement list, ending the lexical environment\n     * and merging hoisted declarations upon completion.\n     */\n    function visitLexicalEnvironment(statements: NodeArray<Statement>, visitor: Visitor, context: TransformationContext, start?: number, ensureUseStrict?: boolean, nodesVisitor?: NodesVisitor): NodeArray<Statement>;\n    /**\n     * Starts a new lexical environment and visits a parameter list, suspending the lexical\n     * environment upon completion.\n     */\n    function visitParameterList(nodes: NodeArray<ParameterDeclaration>, visitor: Visitor, context: TransformationContext, nodesVisitor?: NodesVisitor): NodeArray<ParameterDeclaration>;\n    function visitParameterList(nodes: NodeArray<ParameterDeclaration> | undefined, visitor: Visitor, context: TransformationContext, nodesVisitor?: NodesVisitor): NodeArray<ParameterDeclaration> | undefined;\n    /**\n     * Resumes a suspended lexical environment and visits a function body, ending the lexical\n     * environment and merging hoisted declarations upon completion.\n     */\n    function visitFunctionBody(node: FunctionBody, visitor: Visitor, context: TransformationContext): FunctionBody;\n    /**\n     * Resumes a suspended lexical environment and visits a function body, ending the lexical\n     * environment and merging hoisted declarations upon completion.\n     */\n    function visitFunctionBody(node: FunctionBody | undefined, visitor: Visitor, context: TransformationContext): FunctionBody | undefined;\n    /**\n     * Resumes a suspended lexical environment and visits a concise body, ending the lexical\n     * environment and merging hoisted declarations upon completion.\n     */\n    function visitFunctionBody(node: ConciseBody, visitor: Visitor, context: TransformationContext): ConciseBody;\n    /**\n     * Visits an iteration body, adding any block-scoped variables required by the transformation.\n     */\n    function visitIterationBody(body: Statement, visitor: Visitor, context: TransformationContext): Statement;\n    /**\n     * Visits the elements of a {@link CommaListExpression}.\n     * @param visitor The visitor to use when visiting expressions whose result will not be discarded at runtime.\n     * @param discardVisitor The visitor to use when visiting expressions whose result will be discarded at runtime. Defaults to {@link visitor}.\n     */\n    function visitCommaListElements(elements: NodeArray<Expression>, visitor: Visitor, discardVisitor?: Visitor): NodeArray<Expression>;\n    /**\n     * Visits each child of a Node using the supplied visitor, possibly returning a new Node of the same kind in its place.\n     *\n     * @param node The Node whose children will be visited.\n     * @param visitor The callback used to visit each child.\n     * @param context A lexical environment context for the visitor.\n     */\n    function visitEachChild<T extends Node>(node: T, visitor: Visitor, context: TransformationContext | undefined): T;\n    /**\n     * Visits each child of a Node using the supplied visitor, possibly returning a new Node of the same kind in its place.\n     *\n     * @param node The Node whose children will be visited.\n     * @param visitor The callback used to visit each child.\n     * @param context A lexical environment context for the visitor.\n     */\n    function visitEachChild<T extends Node>(node: T | undefined, visitor: Visitor, context: TransformationContext | undefined, nodesVisitor?: typeof visitNodes, tokenVisitor?: Visitor): T | undefined;\n    function getTsBuildInfoEmitOutputFilePath(options: CompilerOptions): string | undefined;\n    function getOutputFileNames(commandLine: ParsedCommandLine, inputFileName: string, ignoreCase: boolean): readonly string[];\n    function createPrinter(printerOptions?: PrinterOptions, handlers?: PrintHandlers): Printer;\n    enum ProgramUpdateLevel {\n        /** Program is updated with same root file names and options */\n        Update = 0,\n        /** Loads program after updating root file names from the disk */\n        RootNamesAndUpdate = 1,\n        /**\n         * Loads program completely, including:\n         *  - re-reading contents of config file from disk\n         *  - calculating root file names for the program\n         *  - Updating the program\n         */\n        Full = 2,\n    }\n    function findConfigFile(searchPath: string, fileExists: (fileName: string) => boolean, configName?: string): string | undefined;\n    function resolveTripleslashReference(moduleName: string, containingFile: string): string;\n    function createCompilerHost(options: CompilerOptions, setParentNodes?: boolean): CompilerHost;\n    function getPreEmitDiagnostics(program: Program, sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n    function formatDiagnostics(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;\n    function formatDiagnostic(diagnostic: Diagnostic, host: FormatDiagnosticsHost): string;\n    function formatDiagnosticsWithColorAndContext(diagnostics: readonly Diagnostic[], host: FormatDiagnosticsHost): string;\n    function flattenDiagnosticMessageText(diag: string | DiagnosticMessageChain | undefined, newLine: string, indent?: number): string;\n    /**\n     * Calculates the resulting resolution mode for some reference in some file - this is generally the explicitly\n     * provided resolution mode in the reference, unless one is not present, in which case it is the mode of the containing file.\n     */\n    function getModeForFileReference(ref: FileReference | string, containingFileMode: ResolutionMode): ResolutionMode;\n    /**\n     * Use `program.getModeForResolutionAtIndex`, which retrieves the correct `compilerOptions`, instead of this function whenever possible.\n     * Calculates the final resolution mode for an import at some index within a file's `imports` list. This is the resolution mode\n     * explicitly provided via import attributes, if present, or the syntax the usage would have if emitted to JavaScript. In\n     * `--module node16` or `nodenext`, this may depend on the file's `impliedNodeFormat`. In `--module preserve`, it depends only on the\n     * input syntax of the reference. In other `module` modes, when overriding import attributes are not provided, this function returns\n     * `undefined`, as the result would have no impact on module resolution, emit, or type checking.\n     * @param file File to fetch the resolution mode within\n     * @param index Index into the file's complete resolution list to get the resolution of - this is a concatenation of the file's imports and module augmentations\n     * @param compilerOptions The compiler options for the program that owns the file. If the file belongs to a referenced project, the compiler options\n     * should be the options of the referenced project, not the referencing project.\n     */\n    function getModeForResolutionAtIndex(file: SourceFile, index: number, compilerOptions: CompilerOptions): ResolutionMode;\n    /**\n     * Use `program.getModeForUsageLocation`, which retrieves the correct `compilerOptions`, instead of this function whenever possible.\n     * Calculates the final resolution mode for a given module reference node. This function only returns a result when module resolution\n     * settings allow differing resolution between ESM imports and CJS requires, or when a mode is explicitly provided via import attributes,\n     * which cause an `import` or `require` condition to be used during resolution regardless of module resolution settings. In absence of\n     * overriding attributes, and in modes that support differing resolution, the result indicates the syntax the usage would emit to JavaScript.\n     * Some examples:\n     *\n     * ```ts\n     * // tsc foo.mts --module nodenext\n     * import {} from \"mod\";\n     * // Result: ESNext - the import emits as ESM due to `impliedNodeFormat` set by .mts file extension\n     *\n     * // tsc foo.cts --module nodenext\n     * import {} from \"mod\";\n     * // Result: CommonJS - the import emits as CJS due to `impliedNodeFormat` set by .cts file extension\n     *\n     * // tsc foo.ts --module preserve --moduleResolution bundler\n     * import {} from \"mod\";\n     * // Result: ESNext - the import emits as ESM due to `--module preserve` and `--moduleResolution bundler`\n     * // supports conditional imports/exports\n     *\n     * // tsc foo.ts --module preserve --moduleResolution node10\n     * import {} from \"mod\";\n     * // Result: undefined - the import emits as ESM due to `--module preserve`, but `--moduleResolution node10`\n     * // does not support conditional imports/exports\n     *\n     * // tsc foo.ts --module commonjs --moduleResolution node10\n     * import type {} from \"mod\" with { \"resolution-mode\": \"import\" };\n     * // Result: ESNext - conditional imports/exports always supported with \"resolution-mode\" attribute\n     * ```\n     *\n     * @param file The file the import or import-like reference is contained within\n     * @param usage The module reference string\n     * @param compilerOptions The compiler options for the program that owns the file. If the file belongs to a referenced project, the compiler options\n     * should be the options of the referenced project, not the referencing project.\n     * @returns The final resolution mode of the import\n     */\n    function getModeForUsageLocation(file: SourceFile, usage: StringLiteralLike, compilerOptions: CompilerOptions): ResolutionMode;\n    function getConfigFileParsingDiagnostics(configFileParseResult: ParsedCommandLine): readonly Diagnostic[];\n    /**\n     * A function for determining if a given file is esm or cjs format, assuming modern node module resolution rules, as configured by the\n     * `options` parameter.\n     *\n     * @param fileName The file name to check the format of (it need not exist on disk)\n     * @param [packageJsonInfoCache] A cache for package file lookups - it's best to have a cache when this function is called often\n     * @param host The ModuleResolutionHost which can perform the filesystem lookups for package json data\n     * @param options The compiler options to perform the analysis under - relevant options are `moduleResolution` and `traceResolution`\n     * @returns `undefined` if the path has no relevant implied format, `ModuleKind.ESNext` for esm format, and `ModuleKind.CommonJS` for cjs format\n     */\n    function getImpliedNodeFormatForFile(fileName: string, packageJsonInfoCache: PackageJsonInfoCache | undefined, host: ModuleResolutionHost, options: CompilerOptions): ResolutionMode;\n    /**\n     * Create a new 'Program' instance. A Program is an immutable collection of 'SourceFile's and a 'CompilerOptions'\n     * that represent a compilation unit.\n     *\n     * Creating a program proceeds from a set of root files, expanding the set of inputs by following imports and\n     * triple-slash-reference-path directives transitively. '@types' and triple-slash-reference-types are also pulled in.\n     *\n     * @param createProgramOptions - The options for creating a program.\n     * @returns A 'Program' object.\n     */\n    function createProgram(createProgramOptions: CreateProgramOptions): Program;\n    /**\n     * Create a new 'Program' instance. A Program is an immutable collection of 'SourceFile's and a 'CompilerOptions'\n     * that represent a compilation unit.\n     *\n     * Creating a program proceeds from a set of root files, expanding the set of inputs by following imports and\n     * triple-slash-reference-path directives transitively. '@types' and triple-slash-reference-types are also pulled in.\n     *\n     * @param rootNames - A set of root files.\n     * @param options - The compiler options which should be used.\n     * @param host - The host interacts with the underlying file system.\n     * @param oldProgram - Reuses an old program structure.\n     * @param configFileParsingDiagnostics - error during config file parsing\n     * @returns A 'Program' object.\n     */\n    function createProgram(rootNames: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, configFileParsingDiagnostics?: readonly Diagnostic[]): Program;\n    /**\n     * Returns the target config filename of a project reference.\n     * Note: The file might not exist.\n     */\n    function resolveProjectReferencePath(ref: ProjectReference): ResolvedConfigFileName;\n    interface FormatDiagnosticsHost {\n        getCurrentDirectory(): string;\n        getCanonicalFileName(fileName: string): string;\n        getNewLine(): string;\n    }\n    interface EmitOutput {\n        outputFiles: OutputFile[];\n        emitSkipped: boolean;\n        diagnostics: readonly Diagnostic[];\n    }\n    interface OutputFile {\n        name: string;\n        writeByteOrderMark: boolean;\n        text: string;\n    }\n    /**\n     * Create the builder to manage semantic diagnostics and cache them\n     */\n    function createSemanticDiagnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagnosticsBuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[]): SemanticDiagnosticsBuilderProgram;\n    function createSemanticDiagnosticsBuilderProgram(rootNames: readonly string[] | undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagnosticsBuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?: readonly ProjectReference[]): SemanticDiagnosticsBuilderProgram;\n    /**\n     * Create the builder that can handle the changes in program and iterate through changed files\n     * to emit the those files and manage semantic diagnostics cache as well\n     */\n    function createEmitAndSemanticDiagnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanticDiagnosticsBuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[]): EmitAndSemanticDiagnosticsBuilderProgram;\n    function createEmitAndSemanticDiagnosticsBuilderProgram(rootNames: readonly string[] | undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanticDiagnosticsBuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?: readonly ProjectReference[]): EmitAndSemanticDiagnosticsBuilderProgram;\n    /**\n     * Creates a builder thats just abstraction over program and can be used with watch\n     */\n    function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[]): BuilderProgram;\n    function createAbstractBuilder(rootNames: readonly string[] | undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?: readonly ProjectReference[]): BuilderProgram;\n    type AffectedFileResult<T> = {\n        result: T;\n        affected: SourceFile | Program;\n    } | undefined;\n    interface BuilderProgramHost {\n        /**\n         * If provided this would be used this hash instead of actual file shape text for detecting changes\n         */\n        createHash?: (data: string) => string;\n        /**\n         * When emit or emitNextAffectedFile are called without writeFile,\n         * this callback if present would be used to write files\n         */\n        writeFile?: WriteFileCallback;\n    }\n    /**\n     * Builder to manage the program state changes\n     */\n    interface BuilderProgram {\n        /**\n         * Returns current program\n         */\n        getProgram(): Program;\n        /**\n         * Get compiler options of the program\n         */\n        getCompilerOptions(): CompilerOptions;\n        /**\n         * Get the source file in the program with file name\n         */\n        getSourceFile(fileName: string): SourceFile | undefined;\n        /**\n         * Get a list of files in the program\n         */\n        getSourceFiles(): readonly SourceFile[];\n        /**\n         * Get the diagnostics for compiler options\n         */\n        getOptionsDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        /**\n         * Get the diagnostics that dont belong to any file\n         */\n        getGlobalDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        /**\n         * Get the diagnostics from config file parsing\n         */\n        getConfigFileParsingDiagnostics(): readonly Diagnostic[];\n        /**\n         * Get the syntax diagnostics, for all source files if source file is not supplied\n         */\n        getSyntacticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n        /**\n         * Get the declaration diagnostics, for all source files if source file is not supplied\n         */\n        getDeclarationDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly DiagnosticWithLocation[];\n        /**\n         * Get all the dependencies of the file\n         */\n        getAllDependencies(sourceFile: SourceFile): readonly string[];\n        /**\n         * Gets the semantic diagnostics from the program corresponding to this state of file (if provided) or whole program\n         * The semantic diagnostics are cached and managed here\n         * Note that it is assumed that when asked about semantic diagnostics through this API,\n         * the file has been taken out of affected files so it is safe to use cache or get from program and cache the diagnostics\n         * In case of SemanticDiagnosticsBuilderProgram if the source file is not provided,\n         * it will iterate through all the affected files, to ensure that cache stays valid and yet provide a way to get all semantic diagnostics\n         */\n        getSemanticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n        /**\n         * Emits the JavaScript and declaration files.\n         * When targetSource file is specified, emits the files corresponding to that source file,\n         * otherwise for the whole program.\n         * In case of EmitAndSemanticDiagnosticsBuilderProgram, when targetSourceFile is specified,\n         * it is assumed that that file is handled from affected file list. If targetSourceFile is not specified,\n         * it will only emit all the affected files instead of whole program\n         *\n         * The first of writeFile if provided, writeFile of BuilderProgramHost if provided, writeFile of compiler host\n         * in that order would be used to write the files\n         */\n        emit(targetSourceFile?: SourceFile, writeFile?: WriteFileCallback, cancellationToken?: CancellationToken, emitOnlyDtsFiles?: boolean, customTransformers?: CustomTransformers): EmitResult;\n        /**\n         * Get the current directory of the program\n         */\n        getCurrentDirectory(): string;\n    }\n    /**\n     * The builder that caches the semantic diagnostics for the program and handles the changed files and affected files\n     */\n    interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {\n        /**\n         * Gets the semantic diagnostics from the program for the next affected file and caches it\n         * Returns undefined if the iteration is complete\n         */\n        getSemanticDiagnosticsOfNextAffectedFile(cancellationToken?: CancellationToken, ignoreSourceFile?: (sourceFile: SourceFile) => boolean): AffectedFileResult<readonly Diagnostic[]>;\n    }\n    /**\n     * The builder that can handle the changes in program and iterate through changed file to emit the files\n     * The semantic diagnostics are cached per file and managed by clearing for the changed/affected files\n     */\n    interface EmitAndSemanticDiagnosticsBuilderProgram extends SemanticDiagnosticsBuilderProgram {\n        /**\n         * Emits the next affected file's emit result (EmitResult and sourceFiles emitted) or returns undefined if iteration is complete\n         * The first of writeFile if provided, writeFile of BuilderProgramHost if provided, writeFile of compiler host\n         * in that order would be used to write the files\n         */\n        emitNextAffectedFile(writeFile?: WriteFileCallback, cancellationToken?: CancellationToken, emitOnlyDtsFiles?: boolean, customTransformers?: CustomTransformers): AffectedFileResult<EmitResult>;\n    }\n    function readBuilderProgram(compilerOptions: CompilerOptions, host: ReadBuildProgramHost): EmitAndSemanticDiagnosticsBuilderProgram | undefined;\n    function createIncrementalCompilerHost(options: CompilerOptions, system?: System): CompilerHost;\n    function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>({ rootNames, options, configFileParsingDiagnostics, projectReferences, host, createProgram }: IncrementalProgramOptions<T>): T;\n    /**\n     * Create the watch compiler host for either configFile or fileNames and its options\n     */\n    function createWatchCompilerHost<T extends BuilderProgram>(configFileName: string, optionsToExtend: CompilerOptions | undefined, system: System, createProgram?: CreateProgram<T>, reportDiagnostic?: DiagnosticReporter, reportWatchStatus?: WatchStatusReporter, watchOptionsToExtend?: WatchOptions, extraFileExtensions?: readonly FileExtensionInfo[]): WatchCompilerHostOfConfigFile<T>;\n    function createWatchCompilerHost<T extends BuilderProgram>(rootFiles: string[], options: CompilerOptions, system: System, createProgram?: CreateProgram<T>, reportDiagnostic?: DiagnosticReporter, reportWatchStatus?: WatchStatusReporter, projectReferences?: readonly ProjectReference[], watchOptions?: WatchOptions): WatchCompilerHostOfFilesAndCompilerOptions<T>;\n    /**\n     * Creates the watch from the host for root files and compiler options\n     */\n    function createWatchProgram<T extends BuilderProgram>(host: WatchCompilerHostOfFilesAndCompilerOptions<T>): WatchOfFilesAndCompilerOptions<T>;\n    /**\n     * Creates the watch from the host for config file\n     */\n    function createWatchProgram<T extends BuilderProgram>(host: WatchCompilerHostOfConfigFile<T>): WatchOfConfigFile<T>;\n    interface ReadBuildProgramHost {\n        useCaseSensitiveFileNames(): boolean;\n        getCurrentDirectory(): string;\n        readFile(fileName: string): string | undefined;\n    }\n    interface IncrementalProgramOptions<T extends BuilderProgram> {\n        rootNames: readonly string[];\n        options: CompilerOptions;\n        configFileParsingDiagnostics?: readonly Diagnostic[];\n        projectReferences?: readonly ProjectReference[];\n        host?: CompilerHost;\n        createProgram?: CreateProgram<T>;\n    }\n    type WatchStatusReporter = (diagnostic: Diagnostic, newLine: string, options: CompilerOptions, errorCount?: number) => void;\n    /** Create the program with rootNames and options, if they are undefined, oldProgram and new configFile diagnostics create new program */\n    type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?: readonly ProjectReference[] | undefined) => T;\n    /** Host that has watch functionality used in --watch mode */\n    interface WatchHost {\n        /** If provided, called with Diagnostic message that informs about change in watch status */\n        onWatchStatusChange?(diagnostic: Diagnostic, newLine: string, options: CompilerOptions, errorCount?: number): void;\n        /** Used to watch changes in source files, missing files needed to update the program or config file */\n        watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions): FileWatcher;\n        /** Used to watch resolved module's failed lookup locations, config file specs, type roots where auto type reference directives are added */\n        watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions): FileWatcher;\n        /** If provided, will be used to set delayed compilation, so that multiple changes in short span are compiled together */\n        setTimeout?(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;\n        /** If provided, will be used to reset existing delayed compilation */\n        clearTimeout?(timeoutId: any): void;\n        preferNonRecursiveWatch?: boolean;\n    }\n    interface ProgramHost<T extends BuilderProgram> {\n        /**\n         * Used to create the program when need for program creation or recreation detected\n         */\n        createProgram: CreateProgram<T>;\n        useCaseSensitiveFileNames(): boolean;\n        getNewLine(): string;\n        getCurrentDirectory(): string;\n        getDefaultLibFileName(options: CompilerOptions): string;\n        getDefaultLibLocation?(): string;\n        createHash?(data: string): string;\n        /**\n         * Use to check file presence for source files and\n         * if resolveModuleNames is not provided (complier is in charge of module resolution) then module files as well\n         */\n        fileExists(path: string): boolean;\n        /**\n         * Use to read file text for source files and\n         * if resolveModuleNames is not provided (complier is in charge of module resolution) then module files as well\n         */\n        readFile(path: string, encoding?: string): string | undefined;\n        /** If provided, used for module resolution as well as to handle directory structure */\n        directoryExists?(path: string): boolean;\n        /** If provided, used in resolutions as well as handling directory structure */\n        getDirectories?(path: string): string[];\n        /** If provided, used to cache and handle directory structure modifications */\n        readDirectory?(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];\n        /** Symbol links resolution */\n        realpath?(path: string): string;\n        /** If provided would be used to write log about compilation */\n        trace?(s: string): void;\n        /** If provided is used to get the environment variable */\n        getEnvironmentVariable?(name: string): string | undefined;\n        /**\n         * @deprecated supply resolveModuleNameLiterals instead for resolution that can handle newer resolution modes like nodenext\n         *\n         * If provided, used to resolve the module names, otherwise typescript's default module resolution\n         */\n        resolveModuleNames?(moduleNames: string[], containingFile: string, reusedNames: string[] | undefined, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile?: SourceFile): (ResolvedModule | undefined)[];\n        /**\n         * @deprecated supply resolveTypeReferenceDirectiveReferences instead for resolution that can handle newer resolution modes like nodenext\n         *\n         * If provided, used to resolve type reference directives, otherwise typescript's default resolution\n         */\n        resolveTypeReferenceDirectives?(typeReferenceDirectiveNames: string[] | readonly FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: ResolutionMode): (ResolvedTypeReferenceDirective | undefined)[];\n        resolveModuleNameLiterals?(moduleLiterals: readonly StringLiteralLike[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined): readonly ResolvedModuleWithFailedLookupLocations[];\n        resolveTypeReferenceDirectiveReferences?<T extends FileReference | string>(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile | undefined, reusedNames: readonly T[] | undefined): readonly ResolvedTypeReferenceDirectiveWithFailedLookupLocations[];\n        /** If provided along with custom resolveModuleNames or resolveTypeReferenceDirectives, used to determine if unchanged file path needs to re-resolve modules/type reference directives */\n        hasInvalidatedResolutions?(filePath: Path): boolean;\n        /**\n         * Returns the module resolution cache used by a provided `resolveModuleNames` implementation so that any non-name module resolution operations (eg, package.json lookup) can reuse it\n         */\n        getModuleResolutionCache?(): ModuleResolutionCache | undefined;\n        jsDocParsingMode?: JSDocParsingMode;\n    }\n    interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {\n        /** Instead of using output d.ts file from project reference, use its source file */\n        useSourceOfProjectReferenceRedirect?(): boolean;\n        /** If provided, use this method to get parsed command lines for referenced projects */\n        getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;\n        /** If provided, callback to invoke after every new program creation */\n        afterProgramCreate?(program: T): void;\n    }\n    /**\n     * Host to create watch with root files and options\n     */\n    interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends WatchCompilerHost<T> {\n        /** root files to use to generate program */\n        rootFiles: string[];\n        /** Compiler options */\n        options: CompilerOptions;\n        watchOptions?: WatchOptions;\n        /** Project References */\n        projectReferences?: readonly ProjectReference[];\n    }\n    /**\n     * Host to create watch with config file\n     */\n    interface WatchCompilerHostOfConfigFile<T extends BuilderProgram> extends WatchCompilerHost<T>, ConfigFileDiagnosticsReporter {\n        /** Name of the config file to compile */\n        configFileName: string;\n        /** Options to extend */\n        optionsToExtend?: CompilerOptions;\n        watchOptionsToExtend?: WatchOptions;\n        extraFileExtensions?: readonly FileExtensionInfo[];\n        /**\n         * Used to generate source file names from the config file and its include, exclude, files rules\n         * and also to cache the directory stucture\n         */\n        readDirectory(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];\n    }\n    interface Watch<T> {\n        /** Synchronize with host and get updated program */\n        getProgram(): T;\n        /** Closes the watch */\n        close(): void;\n    }\n    /**\n     * Creates the watch what generates program using the config file\n     */\n    interface WatchOfConfigFile<T> extends Watch<T> {\n    }\n    /**\n     * Creates the watch that generates program using the root files and compiler options\n     */\n    interface WatchOfFilesAndCompilerOptions<T> extends Watch<T> {\n        /** Updates the root files in the program, only if this is not config file compilation */\n        updateRootFileNames(fileNames: string[]): void;\n    }\n    /**\n     * Create a function that reports watch status by writing to the system and handles the formating of the diagnostic\n     */\n    function createBuilderStatusReporter(system: System, pretty?: boolean): DiagnosticReporter;\n    function createSolutionBuilderHost<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>(system?: System, createProgram?: CreateProgram<T>, reportDiagnostic?: DiagnosticReporter, reportSolutionBuilderStatus?: DiagnosticReporter, reportErrorSummary?: ReportEmitErrorSummary): SolutionBuilderHost<T>;\n    function createSolutionBuilderWithWatchHost<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgram>(system?: System, createProgram?: CreateProgram<T>, reportDiagnostic?: DiagnosticReporter, reportSolutionBuilderStatus?: DiagnosticReporter, reportWatchStatus?: WatchStatusReporter): SolutionBuilderWithWatchHost<T>;\n    function createSolutionBuilder<T extends BuilderProgram>(host: SolutionBuilderHost<T>, rootNames: readonly string[], defaultOptions: BuildOptions): SolutionBuilder<T>;\n    function createSolutionBuilderWithWatch<T extends BuilderProgram>(host: SolutionBuilderWithWatchHost<T>, rootNames: readonly string[], defaultOptions: BuildOptions, baseWatchOptions?: WatchOptions): SolutionBuilder<T>;\n    interface BuildOptions {\n        dry?: boolean;\n        force?: boolean;\n        verbose?: boolean;\n        stopBuildOnErrors?: boolean;\n        incremental?: boolean;\n        assumeChangesOnlyAffectDirectDependencies?: boolean;\n        declaration?: boolean;\n        declarationMap?: boolean;\n        emitDeclarationOnly?: boolean;\n        sourceMap?: boolean;\n        inlineSourceMap?: boolean;\n        traceResolution?: boolean;\n        [option: string]: CompilerOptionsValue | undefined;\n    }\n    type ReportEmitErrorSummary = (errorCount: number, filesInError: (ReportFileInError | undefined)[]) => void;\n    interface ReportFileInError {\n        fileName: string;\n        line: number;\n    }\n    interface SolutionBuilderHostBase<T extends BuilderProgram> extends ProgramHost<T> {\n        createDirectory?(path: string): void;\n        /**\n         * Should provide create directory and writeFile if done of invalidatedProjects is not invoked with\n         * writeFileCallback\n         */\n        writeFile?(path: string, data: string, writeByteOrderMark?: boolean): void;\n        getCustomTransformers?: (project: string) => CustomTransformers | undefined;\n        getModifiedTime(fileName: string): Date | undefined;\n        setModifiedTime(fileName: string, date: Date): void;\n        deleteFile(fileName: string): void;\n        getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;\n        reportDiagnostic: DiagnosticReporter;\n        reportSolutionBuilderStatus: DiagnosticReporter;\n        afterProgramEmitAndDiagnostics?(program: T): void;\n    }\n    interface SolutionBuilderHost<T extends BuilderProgram> extends SolutionBuilderHostBase<T> {\n        reportErrorSummary?: ReportEmitErrorSummary;\n    }\n    interface SolutionBuilderWithWatchHost<T extends BuilderProgram> extends SolutionBuilderHostBase<T>, WatchHost {\n    }\n    interface SolutionBuilder<T extends BuilderProgram> {\n        build(project?: string, cancellationToken?: CancellationToken, writeFile?: WriteFileCallback, getCustomTransformers?: (project: string) => CustomTransformers): ExitStatus;\n        clean(project?: string): ExitStatus;\n        buildReferences(project: string, cancellationToken?: CancellationToken, writeFile?: WriteFileCallback, getCustomTransformers?: (project: string) => CustomTransformers): ExitStatus;\n        cleanReferences(project?: string): ExitStatus;\n        getNextInvalidatedProject(cancellationToken?: CancellationToken): InvalidatedProject<T> | undefined;\n    }\n    enum InvalidatedProjectKind {\n        Build = 0,\n        UpdateOutputFileStamps = 1,\n    }\n    interface InvalidatedProjectBase {\n        readonly kind: InvalidatedProjectKind;\n        readonly project: ResolvedConfigFileName;\n        /**\n         *  To dispose this project and ensure that all the necessary actions are taken and state is updated accordingly\n         */\n        done(cancellationToken?: CancellationToken, writeFile?: WriteFileCallback, customTransformers?: CustomTransformers): ExitStatus;\n        getCompilerOptions(): CompilerOptions;\n        getCurrentDirectory(): string;\n    }\n    interface UpdateOutputFileStampsProject extends InvalidatedProjectBase {\n        readonly kind: InvalidatedProjectKind.UpdateOutputFileStamps;\n        updateOutputFileStatmps(): void;\n    }\n    interface BuildInvalidedProject<T extends BuilderProgram> extends InvalidatedProjectBase {\n        readonly kind: InvalidatedProjectKind.Build;\n        getBuilderProgram(): T | undefined;\n        getProgram(): Program | undefined;\n        getSourceFile(fileName: string): SourceFile | undefined;\n        getSourceFiles(): readonly SourceFile[];\n        getOptionsDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getGlobalDiagnostics(cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getConfigFileParsingDiagnostics(): readonly Diagnostic[];\n        getSyntacticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getAllDependencies(sourceFile: SourceFile): readonly string[];\n        getSemanticDiagnostics(sourceFile?: SourceFile, cancellationToken?: CancellationToken): readonly Diagnostic[];\n        getSemanticDiagnosticsOfNextAffectedFile(cancellationToken?: CancellationToken, ignoreSourceFile?: (sourceFile: SourceFile) => boolean): AffectedFileResult<readonly Diagnostic[]>;\n        emit(targetSourceFile?: SourceFile, writeFile?: WriteFileCallback, cancellationToken?: CancellationToken, emitOnlyDtsFiles?: boolean, customTransformers?: CustomTransformers): EmitResult | undefined;\n    }\n    type InvalidatedProject<T extends BuilderProgram> = UpdateOutputFileStampsProject | BuildInvalidedProject<T>;\n    /** Returns true if commandline is --build and needs to be parsed useing parseBuildCommand */\n    function isBuildCommand(commandLineArgs: readonly string[]): boolean;\n    function getDefaultFormatCodeSettings(newLineCharacter?: string): FormatCodeSettings;\n    /**\n     * Represents an immutable snapshot of a script at a specified time.Once acquired, the\n     * snapshot is observably immutable. i.e. the same calls with the same parameters will return\n     * the same values.\n     */\n    interface IScriptSnapshot {\n        /** Gets a portion of the script snapshot specified by [start, end). */\n        getText(start: number, end: number): string;\n        /** Gets the length of this script snapshot. */\n        getLength(): number;\n        /**\n         * Gets the TextChangeRange that describe how the text changed between this text and\n         * an older version.  This information is used by the incremental parser to determine\n         * what sections of the script need to be re-parsed.  'undefined' can be returned if the\n         * change range cannot be determined.  However, in that case, incremental parsing will\n         * not happen and the entire document will be re - parsed.\n         */\n        getChangeRange(oldSnapshot: IScriptSnapshot): TextChangeRange | undefined;\n        /** Releases all resources held by this script snapshot */\n        dispose?(): void;\n    }\n    namespace ScriptSnapshot {\n        function fromString(text: string): IScriptSnapshot;\n    }\n    interface PreProcessedFileInfo {\n        referencedFiles: FileReference[];\n        typeReferenceDirectives: FileReference[];\n        libReferenceDirectives: FileReference[];\n        importedFiles: FileReference[];\n        ambientExternalModules?: string[];\n        isLibFile: boolean;\n    }\n    interface HostCancellationToken {\n        isCancellationRequested(): boolean;\n    }\n    interface InstallPackageOptions {\n        fileName: Path;\n        packageName: string;\n    }\n    interface PerformanceEvent {\n        kind: \"UpdateGraph\" | \"CreatePackageJsonAutoImportProvider\";\n        durationMs: number;\n    }\n    enum LanguageServiceMode {\n        Semantic = 0,\n        PartialSemantic = 1,\n        Syntactic = 2,\n    }\n    interface IncompleteCompletionsCache {\n        get(): CompletionInfo | undefined;\n        set(response: CompletionInfo): void;\n        clear(): void;\n    }\n    interface LanguageServiceHost extends GetEffectiveTypeRootsHost, MinimalResolutionCacheHost {\n        getCompilationSettings(): CompilerOptions;\n        getNewLine?(): string;\n        getProjectVersion?(): string;\n        getScriptFileNames(): string[];\n        getScriptKind?(fileName: string): ScriptKind;\n        getScriptVersion(fileName: string): string;\n        getScriptSnapshot(fileName: string): IScriptSnapshot | undefined;\n        getProjectReferences?(): readonly ProjectReference[] | undefined;\n        getLocalizedDiagnosticMessages?(): any;\n        getCancellationToken?(): HostCancellationToken;\n        getCurrentDirectory(): string;\n        getDefaultLibFileName(options: CompilerOptions): string;\n        log?(s: string): void;\n        trace?(s: string): void;\n        error?(s: string): void;\n        useCaseSensitiveFileNames?(): boolean;\n        readDirectory?(path: string, extensions?: readonly string[], exclude?: readonly string[], include?: readonly string[], depth?: number): string[];\n        realpath?(path: string): string;\n        readFile(path: string, encoding?: string): string | undefined;\n        fileExists(path: string): boolean;\n        getTypeRootsVersion?(): number;\n        /** @deprecated supply resolveModuleNameLiterals instead for resolution that can handle newer resolution modes like nodenext */\n        resolveModuleNames?(moduleNames: string[], containingFile: string, reusedNames: string[] | undefined, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile?: SourceFile): (ResolvedModule | undefined)[];\n        getResolvedModuleWithFailedLookupLocationsFromCache?(modulename: string, containingFile: string, resolutionMode?: ResolutionMode): ResolvedModuleWithFailedLookupLocations | undefined;\n        /** @deprecated supply resolveTypeReferenceDirectiveReferences instead for resolution that can handle newer resolution modes like nodenext */\n        resolveTypeReferenceDirectives?(typeDirectiveNames: string[] | FileReference[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingFileMode?: ResolutionMode): (ResolvedTypeReferenceDirective | undefined)[];\n        resolveModuleNameLiterals?(moduleLiterals: readonly StringLiteralLike[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined): readonly ResolvedModuleWithFailedLookupLocations[];\n        resolveTypeReferenceDirectiveReferences?<T extends FileReference | string>(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile | undefined, reusedNames: readonly T[] | undefined): readonly ResolvedTypeReferenceDirectiveWithFailedLookupLocations[];\n        getDirectories?(directoryName: string): string[];\n        /**\n         * Gets a set of custom transformers to use during emit.\n         */\n        getCustomTransformers?(): CustomTransformers | undefined;\n        isKnownTypesPackageName?(name: string): boolean;\n        installPackage?(options: InstallPackageOptions): Promise<ApplyCodeActionCommandResult>;\n        writeFile?(fileName: string, content: string): void;\n        getParsedCommandLine?(fileName: string): ParsedCommandLine | undefined;\n        jsDocParsingMode?: JSDocParsingMode | undefined;\n    }\n    type WithMetadata<T> = T & {\n        metadata?: unknown;\n    };\n    enum SemanticClassificationFormat {\n        Original = \"original\",\n        TwentyTwenty = \"2020\",\n    }\n    interface LanguageService {\n        /** This is used as a part of restarting the language service. */\n        cleanupSemanticCache(): void;\n        /**\n         * Gets errors indicating invalid syntax in a file.\n         *\n         * In English, \"this cdeo have, erorrs\" is syntactically invalid because it has typos,\n         * grammatical errors, and misplaced punctuation. Likewise, examples of syntax\n         * errors in TypeScript are missing parentheses in an `if` statement, mismatched\n         * curly braces, and using a reserved keyword as a variable name.\n         *\n         * These diagnostics are inexpensive to compute and don't require knowledge of\n         * other files. Note that a non-empty result increases the likelihood of false positives\n         * from `getSemanticDiagnostics`.\n         *\n         * While these represent the majority of syntax-related diagnostics, there are some\n         * that require the type system, which will be present in `getSemanticDiagnostics`.\n         *\n         * @param fileName A path to the file you want syntactic diagnostics for\n         */\n        getSyntacticDiagnostics(fileName: string): DiagnosticWithLocation[];\n        /**\n         * Gets warnings or errors indicating type system issues in a given file.\n         * Requesting semantic diagnostics may start up the type system and\n         * run deferred work, so the first call may take longer than subsequent calls.\n         *\n         * Unlike the other get*Diagnostics functions, these diagnostics can potentially not\n         * include a reference to a source file. Specifically, the first time this is called,\n         * it will return global diagnostics with no associated location.\n         *\n         * To contrast the differences between semantic and syntactic diagnostics, consider the\n         * sentence: \"The sun is green.\" is syntactically correct; those are real English words with\n         * correct sentence structure. However, it is semantically invalid, because it is not true.\n         *\n         * @param fileName A path to the file you want semantic diagnostics for\n         */\n        getSemanticDiagnostics(fileName: string): Diagnostic[];\n        /**\n         * Gets suggestion diagnostics for a specific file. These diagnostics tend to\n         * proactively suggest refactors, as opposed to diagnostics that indicate\n         * potentially incorrect runtime behavior.\n         *\n         * @param fileName A path to the file you want semantic diagnostics for\n         */\n        getSuggestionDiagnostics(fileName: string): DiagnosticWithLocation[];\n        /**\n         * Gets global diagnostics related to the program configuration and compiler options.\n         */\n        getCompilerOptionsDiagnostics(): Diagnostic[];\n        /** @deprecated Use getEncodedSyntacticClassifications instead. */\n        getSyntacticClassifications(fileName: string, span: TextSpan): ClassifiedSpan[];\n        getSyntacticClassifications(fileName: string, span: TextSpan, format: SemanticClassificationFormat): ClassifiedSpan[] | ClassifiedSpan2020[];\n        /** @deprecated Use getEncodedSemanticClassifications instead. */\n        getSemanticClassifications(fileName: string, span: TextSpan): ClassifiedSpan[];\n        getSemanticClassifications(fileName: string, span: TextSpan, format: SemanticClassificationFormat): ClassifiedSpan[] | ClassifiedSpan2020[];\n        /** Encoded as triples of [start, length, ClassificationType]. */\n        getEncodedSyntacticClassifications(fileName: string, span: TextSpan): Classifications;\n        /**\n         * Gets semantic highlights information for a particular file. Has two formats, an older\n         * version used by VS and a format used by VS Code.\n         *\n         * @param fileName The path to the file\n         * @param position A text span to return results within\n         * @param format Which format to use, defaults to \"original\"\n         * @returns a number array encoded as triples of [start, length, ClassificationType, ...].\n         */\n        getEncodedSemanticClassifications(fileName: string, span: TextSpan, format?: SemanticClassificationFormat): Classifications;\n        /**\n         * Gets completion entries at a particular position in a file.\n         *\n         * @param fileName The path to the file\n         * @param position A zero-based index of the character where you want the entries\n         * @param options An object describing how the request was triggered and what kinds\n         * of code actions can be returned with the completions.\n         * @param formattingSettings settings needed for calling formatting functions.\n         */\n        getCompletionsAtPosition(fileName: string, position: number, options: GetCompletionsAtPositionOptions | undefined, formattingSettings?: FormatCodeSettings): WithMetadata<CompletionInfo> | undefined;\n        /**\n         * Gets the extended details for a completion entry retrieved from `getCompletionsAtPosition`.\n         *\n         * @param fileName The path to the file\n         * @param position A zero based index of the character where you want the entries\n         * @param entryName The `name` from an existing completion which came from `getCompletionsAtPosition`\n         * @param formatOptions How should code samples in the completions be formatted, can be undefined for backwards compatibility\n         * @param source `source` property from the completion entry\n         * @param preferences User settings, can be undefined for backwards compatibility\n         * @param data `data` property from the completion entry\n         */\n        getCompletionEntryDetails(fileName: string, position: number, entryName: string, formatOptions: FormatCodeOptions | FormatCodeSettings | undefined, source: string | undefined, preferences: UserPreferences | undefined, data: CompletionEntryData | undefined): CompletionEntryDetails | undefined;\n        getCompletionEntrySymbol(fileName: string, position: number, name: string, source: string | undefined): Symbol | undefined;\n        /**\n         * Gets semantic information about the identifier at a particular position in a\n         * file. Quick info is what you typically see when you hover in an editor.\n         *\n         * @param fileName The path to the file\n         * @param position A zero-based index of the character where you want the quick info\n         * @param maximumLength Maximum length of a quickinfo text before it is truncated.\n         */\n        getQuickInfoAtPosition(fileName: string, position: number, maximumLength?: number): QuickInfo | undefined;\n        getNameOrDottedNameSpan(fileName: string, startPos: number, endPos: number): TextSpan | undefined;\n        getBreakpointStatementAtPosition(fileName: string, position: number): TextSpan | undefined;\n        getSignatureHelpItems(fileName: string, position: number, options: SignatureHelpItemsOptions | undefined): SignatureHelpItems | undefined;\n        getRenameInfo(fileName: string, position: number, preferences: UserPreferences): RenameInfo;\n        /** @deprecated Use the signature with `UserPreferences` instead. */\n        getRenameInfo(fileName: string, position: number, options?: RenameInfoOptions): RenameInfo;\n        findRenameLocations(fileName: string, position: number, findInStrings: boolean, findInComments: boolean, preferences: UserPreferences): readonly RenameLocation[] | undefined;\n        /** @deprecated Pass `providePrefixAndSuffixTextForRename` as part of a `UserPreferences` parameter. */\n        findRenameLocations(fileName: string, position: number, findInStrings: boolean, findInComments: boolean, providePrefixAndSuffixTextForRename?: boolean): readonly RenameLocation[] | undefined;\n        getSmartSelectionRange(fileName: string, position: number): SelectionRange;\n        getDefinitionAtPosition(fileName: string, position: number): readonly DefinitionInfo[] | undefined;\n        getDefinitionAndBoundSpan(fileName: string, position: number): DefinitionInfoAndBoundSpan | undefined;\n        getTypeDefinitionAtPosition(fileName: string, position: number): readonly DefinitionInfo[] | undefined;\n        getImplementationAtPosition(fileName: string, position: number): readonly ImplementationLocation[] | undefined;\n        getReferencesAtPosition(fileName: string, position: number): ReferenceEntry[] | undefined;\n        findReferences(fileName: string, position: number): ReferencedSymbol[] | undefined;\n        getDocumentHighlights(fileName: string, position: number, filesToSearch: string[]): DocumentHighlights[] | undefined;\n        getFileReferences(fileName: string): ReferenceEntry[];\n        getNavigateToItems(searchValue: string, maxResultCount?: number, fileName?: string, excludeDtsFiles?: boolean, excludeLibFiles?: boolean): NavigateToItem[];\n        getNavigationBarItems(fileName: string): NavigationBarItem[];\n        getNavigationTree(fileName: string): NavigationTree;\n        prepareCallHierarchy(fileName: string, position: number): CallHierarchyItem | CallHierarchyItem[] | undefined;\n        provideCallHierarchyIncomingCalls(fileName: string, position: number): CallHierarchyIncomingCall[];\n        provideCallHierarchyOutgoingCalls(fileName: string, position: number): CallHierarchyOutgoingCall[];\n        provideInlayHints(fileName: string, span: TextSpan, preferences: UserPreferences | undefined): InlayHint[];\n        getOutliningSpans(fileName: string): OutliningSpan[];\n        getTodoComments(fileName: string, descriptors: TodoCommentDescriptor[]): TodoComment[];\n        getBraceMatchingAtPosition(fileName: string, position: number): TextSpan[];\n        getIndentationAtPosition(fileName: string, position: number, options: EditorOptions | EditorSettings): number;\n        getFormattingEditsForRange(fileName: string, start: number, end: number, options: FormatCodeOptions | FormatCodeSettings): TextChange[];\n        getFormattingEditsForDocument(fileName: string, options: FormatCodeOptions | FormatCodeSettings): TextChange[];\n        getFormattingEditsAfterKeystroke(fileName: string, position: number, key: string, options: FormatCodeOptions | FormatCodeSettings): TextChange[];\n        getDocCommentTemplateAtPosition(fileName: string, position: number, options?: DocCommentTemplateOptions, formatOptions?: FormatCodeSettings): TextInsertion | undefined;\n        isValidBraceCompletionAtPosition(fileName: string, position: number, openingBrace: number): boolean;\n        /**\n         * This will return a defined result if the position is after the `>` of the opening tag, or somewhere in the text, of a JSXElement with no closing tag.\n         * Editors should call this after `>` is typed.\n         */\n        getJsxClosingTagAtPosition(fileName: string, position: number): JsxClosingTagInfo | undefined;\n        getLinkedEditingRangeAtPosition(fileName: string, position: number): LinkedEditingInfo | undefined;\n        getSpanOfEnclosingComment(fileName: string, position: number, onlyMultiLine: boolean): TextSpan | undefined;\n        toLineColumnOffset?(fileName: string, position: number): LineAndCharacter;\n        getCodeFixesAtPosition(fileName: string, start: number, end: number, errorCodes: readonly number[], formatOptions: FormatCodeSettings, preferences: UserPreferences): readonly CodeFixAction[];\n        getCombinedCodeFix(scope: CombinedCodeFixScope, fixId: {}, formatOptions: FormatCodeSettings, preferences: UserPreferences): CombinedCodeActions;\n        applyCodeActionCommand(action: CodeActionCommand, formatSettings?: FormatCodeSettings): Promise<ApplyCodeActionCommandResult>;\n        applyCodeActionCommand(action: CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<ApplyCodeActionCommandResult[]>;\n        applyCodeActionCommand(action: CodeActionCommand | CodeActionCommand[], formatSettings?: FormatCodeSettings): Promise<ApplyCodeActionCommandResult | ApplyCodeActionCommandResult[]>;\n        /** @deprecated `fileName` will be ignored */\n        applyCodeActionCommand(fileName: string, action: CodeActionCommand): Promise<ApplyCodeActionCommandResult>;\n        /** @deprecated `fileName` will be ignored */\n        applyCodeActionCommand(fileName: string, action: CodeActionCommand[]): Promise<ApplyCodeActionCommandResult[]>;\n        /** @deprecated `fileName` will be ignored */\n        applyCodeActionCommand(fileName: string, action: CodeActionCommand | CodeActionCommand[]): Promise<ApplyCodeActionCommandResult | ApplyCodeActionCommandResult[]>;\n        /**\n         * @param includeInteractiveActions Include refactor actions that require additional arguments to be\n         * passed when calling `getEditsForRefactor`. When true, clients should inspect the `isInteractive`\n         * property of each returned `RefactorActionInfo` and ensure they are able to collect the appropriate\n         * arguments for any interactive action before offering it.\n         */\n        getApplicableRefactors(fileName: string, positionOrRange: number | TextRange, preferences: UserPreferences | undefined, triggerReason?: RefactorTriggerReason, kind?: string, includeInteractiveActions?: boolean): ApplicableRefactorInfo[];\n        getEditsForRefactor(fileName: string, formatOptions: FormatCodeSettings, positionOrRange: number | TextRange, refactorName: string, actionName: string, preferences: UserPreferences | undefined, interactiveRefactorArguments?: InteractiveRefactorArguments): RefactorEditInfo | undefined;\n        getMoveToRefactoringFileSuggestions(fileName: string, positionOrRange: number | TextRange, preferences: UserPreferences | undefined, triggerReason?: RefactorTriggerReason, kind?: string): {\n            newFileName: string;\n            files: string[];\n        };\n        organizeImports(args: OrganizeImportsArgs, formatOptions: FormatCodeSettings, preferences: UserPreferences | undefined): readonly FileTextChanges[];\n        getEditsForFileRename(oldFilePath: string, newFilePath: string, formatOptions: FormatCodeSettings, preferences: UserPreferences | undefined): readonly FileTextChanges[];\n        getEmitOutput(fileName: string, emitOnlyDtsFiles?: boolean, forceDtsEmit?: boolean): EmitOutput;\n        getProgram(): Program | undefined;\n        toggleLineComment(fileName: string, textRange: TextRange): TextChange[];\n        toggleMultilineComment(fileName: string, textRange: TextRange): TextChange[];\n        commentSelection(fileName: string, textRange: TextRange): TextChange[];\n        uncommentSelection(fileName: string, textRange: TextRange): TextChange[];\n        getSupportedCodeFixes(fileName?: string): readonly string[];\n        dispose(): void;\n        preparePasteEditsForFile(fileName: string, copiedTextRanges: TextRange[]): boolean;\n        getPasteEdits(args: PasteEditsArgs, formatOptions: FormatCodeSettings): PasteEdits;\n    }\n    interface JsxClosingTagInfo {\n        readonly newText: string;\n    }\n    interface LinkedEditingInfo {\n        readonly ranges: TextSpan[];\n        wordPattern?: string;\n    }\n    interface CombinedCodeFixScope {\n        type: \"file\";\n        fileName: string;\n    }\n    enum OrganizeImportsMode {\n        All = \"All\",\n        SortAndCombine = \"SortAndCombine\",\n        RemoveUnused = \"RemoveUnused\",\n    }\n    interface PasteEdits {\n        edits: readonly FileTextChanges[];\n        fixId?: {};\n    }\n    interface PasteEditsArgs {\n        targetFile: string;\n        pastedText: string[];\n        pasteLocations: TextRange[];\n        copiedFrom: {\n            file: string;\n            range: TextRange[];\n        } | undefined;\n        preferences: UserPreferences;\n    }\n    interface OrganizeImportsArgs extends CombinedCodeFixScope {\n        /** @deprecated Use `mode` instead */\n        skipDestructiveCodeActions?: boolean;\n        mode?: OrganizeImportsMode;\n    }\n    type CompletionsTriggerCharacter = \".\" | '\"' | \"'\" | \"`\" | \"/\" | \"@\" | \"<\" | \"#\" | \" \";\n    enum CompletionTriggerKind {\n        /** Completion was triggered by typing an identifier, manual invocation (e.g Ctrl+Space) or via API. */\n        Invoked = 1,\n        /** Completion was triggered by a trigger character. */\n        TriggerCharacter = 2,\n        /** Completion was re-triggered as the current completion list is incomplete. */\n        TriggerForIncompleteCompletions = 3,\n    }\n    interface GetCompletionsAtPositionOptions extends UserPreferences {\n        /**\n         * If the editor is asking for completions because a certain character was typed\n         * (as opposed to when the user explicitly requested them) this should be set.\n         */\n        triggerCharacter?: CompletionsTriggerCharacter;\n        triggerKind?: CompletionTriggerKind;\n        /**\n         * Include a `symbol` property on each completion entry object.\n         * Symbols reference cyclic data structures and sometimes an entire TypeChecker instance,\n         * so use caution when serializing or retaining completion entries retrieved with this option.\n         * @default false\n         */\n        includeSymbol?: boolean;\n        /** @deprecated Use includeCompletionsForModuleExports */\n        includeExternalModuleExports?: boolean;\n        /** @deprecated Use includeCompletionsWithInsertText */\n        includeInsertTextCompletions?: boolean;\n    }\n    type SignatureHelpTriggerCharacter = \",\" | \"(\" | \"<\";\n    type SignatureHelpRetriggerCharacter = SignatureHelpTriggerCharacter | \")\";\n    interface SignatureHelpItemsOptions {\n        triggerReason?: SignatureHelpTriggerReason;\n    }\n    type SignatureHelpTriggerReason = SignatureHelpInvokedReason | SignatureHelpCharacterTypedReason | SignatureHelpRetriggeredReason;\n    /**\n     * Signals that the user manually requested signature help.\n     * The language service will unconditionally attempt to provide a result.\n     */\n    interface SignatureHelpInvokedReason {\n        kind: \"invoked\";\n        triggerCharacter?: undefined;\n    }\n    /**\n     * Signals that the signature help request came from a user typing a character.\n     * Depending on the character and the syntactic context, the request may or may not be served a result.\n     */\n    interface SignatureHelpCharacterTypedReason {\n        kind: \"characterTyped\";\n        /**\n         * Character that was responsible for triggering signature help.\n         */\n        triggerCharacter: SignatureHelpTriggerCharacter;\n    }\n    /**\n     * Signals that this signature help request came from typing a character or moving the cursor.\n     * This should only occur if a signature help session was already active and the editor needs to see if it should adjust.\n     * The language service will unconditionally attempt to provide a result.\n     * `triggerCharacter` can be `undefined` for a retrigger caused by a cursor move.\n     */\n    interface SignatureHelpRetriggeredReason {\n        kind: \"retrigger\";\n        /**\n         * Character that was responsible for triggering signature help.\n         */\n        triggerCharacter?: SignatureHelpRetriggerCharacter;\n    }\n    interface ApplyCodeActionCommandResult {\n        successMessage: string;\n    }\n    interface Classifications {\n        spans: number[];\n        endOfLineState: EndOfLineState;\n    }\n    interface ClassifiedSpan {\n        textSpan: TextSpan;\n        classificationType: ClassificationTypeNames;\n    }\n    interface ClassifiedSpan2020 {\n        textSpan: TextSpan;\n        classificationType: number;\n    }\n    /**\n     * Navigation bar interface designed for visual studio's dual-column layout.\n     * This does not form a proper tree.\n     * The navbar is returned as a list of top-level items, each of which has a list of child items.\n     * Child items always have an empty array for their `childItems`.\n     */\n    interface NavigationBarItem {\n        text: string;\n        kind: ScriptElementKind;\n        kindModifiers: string;\n        spans: TextSpan[];\n        childItems: NavigationBarItem[];\n        indent: number;\n        bolded: boolean;\n        grayed: boolean;\n    }\n    /**\n     * Node in a tree of nested declarations in a file.\n     * The top node is always a script or module node.\n     */\n    interface NavigationTree {\n        /** Name of the declaration, or a short description, e.g. \"<class>\". */\n        text: string;\n        kind: ScriptElementKind;\n        /** ScriptElementKindModifier separated by commas, e.g. \"public,abstract\" */\n        kindModifiers: string;\n        /**\n         * Spans of the nodes that generated this declaration.\n         * There will be more than one if this is the result of merging.\n         */\n        spans: TextSpan[];\n        nameSpan: TextSpan | undefined;\n        /** Present if non-empty */\n        childItems?: NavigationTree[];\n    }\n    interface CallHierarchyItem {\n        name: string;\n        kind: ScriptElementKind;\n        kindModifiers?: string;\n        file: string;\n        span: TextSpan;\n        selectionSpan: TextSpan;\n        containerName?: string;\n    }\n    interface CallHierarchyIncomingCall {\n        from: CallHierarchyItem;\n        fromSpans: TextSpan[];\n    }\n    interface CallHierarchyOutgoingCall {\n        to: CallHierarchyItem;\n        fromSpans: TextSpan[];\n    }\n    enum InlayHintKind {\n        Type = \"Type\",\n        Parameter = \"Parameter\",\n        Enum = \"Enum\",\n    }\n    interface InlayHint {\n        /** This property will be the empty string when displayParts is set. */\n        text: string;\n        position: number;\n        kind: InlayHintKind;\n        whitespaceBefore?: boolean;\n        whitespaceAfter?: boolean;\n        displayParts?: InlayHintDisplayPart[];\n    }\n    interface InlayHintDisplayPart {\n        text: string;\n        span?: TextSpan;\n        file?: string;\n    }\n    interface TodoCommentDescriptor {\n        text: string;\n        priority: number;\n    }\n    interface TodoComment {\n        descriptor: TodoCommentDescriptor;\n        message: string;\n        position: number;\n    }\n    interface TextChange {\n        span: TextSpan;\n        newText: string;\n    }\n    interface FileTextChanges {\n        fileName: string;\n        textChanges: readonly TextChange[];\n        isNewFile?: boolean;\n    }\n    interface CodeAction {\n        /** Description of the code action to display in the UI of the editor */\n        description: string;\n        /** Text changes to apply to each file as part of the code action */\n        changes: FileTextChanges[];\n        /**\n         * If the user accepts the code fix, the editor should send the action back in a `applyAction` request.\n         * This allows the language service to have side effects (e.g. installing dependencies) upon a code fix.\n         */\n        commands?: CodeActionCommand[];\n    }\n    interface CodeFixAction extends CodeAction {\n        /** Short name to identify the fix, for use by telemetry. */\n        fixName: string;\n        /**\n         * If present, one may call 'getCombinedCodeFix' with this fixId.\n         * This may be omitted to indicate that the code fix can't be applied in a group.\n         */\n        fixId?: {};\n        fixAllDescription?: string;\n    }\n    interface CombinedCodeActions {\n        changes: readonly FileTextChanges[];\n        commands?: readonly CodeActionCommand[];\n    }\n    type CodeActionCommand = InstallPackageAction;\n    interface InstallPackageAction {\n    }\n    /**\n     * A set of one or more available refactoring actions, grouped under a parent refactoring.\n     */\n    interface ApplicableRefactorInfo {\n        /**\n         * The programmatic name of the refactoring\n         */\n        name: string;\n        /**\n         * A description of this refactoring category to show to the user.\n         * If the refactoring gets inlined (see below), this text will not be visible.\n         */\n        description: string;\n        /**\n         * Inlineable refactorings can have their actions hoisted out to the top level\n         * of a context menu. Non-inlineanable refactorings should always be shown inside\n         * their parent grouping.\n         *\n         * If not specified, this value is assumed to be 'true'\n         */\n        inlineable?: boolean;\n        actions: RefactorActionInfo[];\n    }\n    /**\n     * Represents a single refactoring action - for example, the \"Extract Method...\" refactor might\n     * offer several actions, each corresponding to a surround class or closure to extract into.\n     */\n    interface RefactorActionInfo {\n        /**\n         * The programmatic name of the refactoring action\n         */\n        name: string;\n        /**\n         * A description of this refactoring action to show to the user.\n         * If the parent refactoring is inlined away, this will be the only text shown,\n         * so this description should make sense by itself if the parent is inlineable=true\n         */\n        description: string;\n        /**\n         * A message to show to the user if the refactoring cannot be applied in\n         * the current context.\n         */\n        notApplicableReason?: string;\n        /**\n         * The hierarchical dotted name of the refactor action.\n         */\n        kind?: string;\n        /**\n         * Indicates that the action requires additional arguments to be passed\n         * when calling `getEditsForRefactor`.\n         */\n        isInteractive?: boolean;\n        /**\n         * Range of code the refactoring will be applied to.\n         */\n        range?: {\n            start: {\n                line: number;\n                offset: number;\n            };\n            end: {\n                line: number;\n                offset: number;\n            };\n        };\n    }\n    /**\n     * A set of edits to make in response to a refactor action, plus an optional\n     * location where renaming should be invoked from\n     */\n    interface RefactorEditInfo {\n        edits: FileTextChanges[];\n        renameFilename?: string;\n        renameLocation?: number;\n        commands?: CodeActionCommand[];\n        notApplicableReason?: string;\n    }\n    type RefactorTriggerReason = \"implicit\" | \"invoked\";\n    interface TextInsertion {\n        newText: string;\n        /** The position in newText the caret should point to after the insertion. */\n        caretOffset: number;\n    }\n    interface DocumentSpan {\n        textSpan: TextSpan;\n        fileName: string;\n        /**\n         * If the span represents a location that was remapped (e.g. via a .d.ts.map file),\n         * then the original filename and span will be specified here\n         */\n        originalTextSpan?: TextSpan;\n        originalFileName?: string;\n        /**\n         * If DocumentSpan.textSpan is the span for name of the declaration,\n         * then this is the span for relevant declaration\n         */\n        contextSpan?: TextSpan;\n        originalContextSpan?: TextSpan;\n    }\n    interface RenameLocation extends DocumentSpan {\n        readonly prefixText?: string;\n        readonly suffixText?: string;\n    }\n    interface ReferenceEntry extends DocumentSpan {\n        isWriteAccess: boolean;\n        isInString?: true;\n    }\n    interface ImplementationLocation extends DocumentSpan {\n        kind: ScriptElementKind;\n        displayParts: SymbolDisplayPart[];\n    }\n    enum HighlightSpanKind {\n        none = \"none\",\n        definition = \"definition\",\n        reference = \"reference\",\n        writtenReference = \"writtenReference\",\n    }\n    interface HighlightSpan {\n        fileName?: string;\n        isInString?: true;\n        textSpan: TextSpan;\n        contextSpan?: TextSpan;\n        kind: HighlightSpanKind;\n    }\n    interface NavigateToItem {\n        name: string;\n        kind: ScriptElementKind;\n        kindModifiers: string;\n        matchKind: \"exact\" | \"prefix\" | \"substring\" | \"camelCase\";\n        isCaseSensitive: boolean;\n        fileName: string;\n        textSpan: TextSpan;\n        containerName: string;\n        containerKind: ScriptElementKind;\n    }\n    enum IndentStyle {\n        None = 0,\n        Block = 1,\n        Smart = 2,\n    }\n    enum SemicolonPreference {\n        Ignore = \"ignore\",\n        Insert = \"insert\",\n        Remove = \"remove\",\n    }\n    /** @deprecated - consider using EditorSettings instead */\n    interface EditorOptions {\n        BaseIndentSize?: number;\n        IndentSize: number;\n        TabSize: number;\n        NewLineCharacter: string;\n        ConvertTabsToSpaces: boolean;\n        IndentStyle: IndentStyle;\n    }\n    interface EditorSettings {\n        baseIndentSize?: number;\n        indentSize?: number;\n        tabSize?: number;\n        newLineCharacter?: string;\n        convertTabsToSpaces?: boolean;\n        indentStyle?: IndentStyle;\n        trimTrailingWhitespace?: boolean;\n    }\n    /** @deprecated - consider using FormatCodeSettings instead */\n    interface FormatCodeOptions extends EditorOptions {\n        InsertSpaceAfterCommaDelimiter: boolean;\n        InsertSpaceAfterSemicolonInForStatements: boolean;\n        InsertSpaceBeforeAndAfterBinaryOperators: boolean;\n        InsertSpaceAfterConstructor?: boolean;\n        InsertSpaceAfterKeywordsInControlFlowStatements: boolean;\n        InsertSpaceAfterFunctionKeywordForAnonymousFunctions: boolean;\n        InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: boolean;\n        InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: boolean;\n        InsertSpaceAfterOpeningAndBeforeClosingNonemptyBraces?: boolean;\n        InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: boolean;\n        InsertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces?: boolean;\n        InsertSpaceAfterTypeAssertion?: boolean;\n        InsertSpaceBeforeFunctionParenthesis?: boolean;\n        PlaceOpenBraceOnNewLineForFunctions: boolean;\n        PlaceOpenBraceOnNewLineForControlBlocks: boolean;\n        insertSpaceBeforeTypeAnnotation?: boolean;\n    }\n    interface FormatCodeSettings extends EditorSettings {\n        readonly insertSpaceAfterCommaDelimiter?: boolean;\n        readonly insertSpaceAfterSemicolonInForStatements?: boolean;\n        readonly insertSpaceBeforeAndAfterBinaryOperators?: boolean;\n        readonly insertSpaceAfterConstructor?: boolean;\n        readonly insertSpaceAfterKeywordsInControlFlowStatements?: boolean;\n        readonly insertSpaceAfterFunctionKeywordForAnonymousFunctions?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingEmptyBraces?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces?: boolean;\n        readonly insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces?: boolean;\n        readonly insertSpaceAfterTypeAssertion?: boolean;\n        readonly insertSpaceBeforeFunctionParenthesis?: boolean;\n        readonly placeOpenBraceOnNewLineForFunctions?: boolean;\n        readonly placeOpenBraceOnNewLineForControlBlocks?: boolean;\n        readonly insertSpaceBeforeTypeAnnotation?: boolean;\n        readonly indentMultiLineObjectLiteralBeginningOnBlankLine?: boolean;\n        readonly semicolons?: SemicolonPreference;\n        readonly indentSwitchCase?: boolean;\n    }\n    interface DefinitionInfo extends DocumentSpan {\n        kind: ScriptElementKind;\n        name: string;\n        containerKind: ScriptElementKind;\n        containerName: string;\n        unverified?: boolean;\n    }\n    interface DefinitionInfoAndBoundSpan {\n        definitions?: readonly DefinitionInfo[];\n        textSpan: TextSpan;\n    }\n    interface ReferencedSymbolDefinitionInfo extends DefinitionInfo {\n        displayParts: SymbolDisplayPart[];\n    }\n    interface ReferencedSymbol {\n        definition: ReferencedSymbolDefinitionInfo;\n        references: ReferencedSymbolEntry[];\n    }\n    interface ReferencedSymbolEntry extends ReferenceEntry {\n        isDefinition?: boolean;\n    }\n    enum SymbolDisplayPartKind {\n        aliasName = 0,\n        className = 1,\n        enumName = 2,\n        fieldName = 3,\n        interfaceName = 4,\n        keyword = 5,\n        lineBreak = 6,\n        numericLiteral = 7,\n        stringLiteral = 8,\n        localName = 9,\n        methodName = 10,\n        moduleName = 11,\n        operator = 12,\n        parameterName = 13,\n        propertyName = 14,\n        punctuation = 15,\n        space = 16,\n        text = 17,\n        typeParameterName = 18,\n        enumMemberName = 19,\n        functionName = 20,\n        regularExpressionLiteral = 21,\n        link = 22,\n        linkName = 23,\n        linkText = 24,\n    }\n    interface SymbolDisplayPart {\n        /**\n         * Text of an item describing the symbol.\n         */\n        text: string;\n        /**\n         * The symbol's kind (such as 'className' or 'parameterName' or plain 'text').\n         */\n        kind: string;\n    }\n    interface JSDocLinkDisplayPart extends SymbolDisplayPart {\n        target: DocumentSpan;\n    }\n    interface JSDocTagInfo {\n        name: string;\n        text?: SymbolDisplayPart[];\n    }\n    interface QuickInfo {\n        kind: ScriptElementKind;\n        kindModifiers: string;\n        textSpan: TextSpan;\n        displayParts?: SymbolDisplayPart[];\n        documentation?: SymbolDisplayPart[];\n        tags?: JSDocTagInfo[];\n        canIncreaseVerbosityLevel?: boolean;\n    }\n    type RenameInfo = RenameInfoSuccess | RenameInfoFailure;\n    interface RenameInfoSuccess {\n        canRename: true;\n        /**\n         * File or directory to rename.\n         * If set, `getEditsForFileRename` should be called instead of `findRenameLocations`.\n         */\n        fileToRename?: string;\n        displayName: string;\n        /**\n         * Full display name of item to be renamed.\n         * If item to be renamed is a file, then this is the original text of the module specifer\n         */\n        fullDisplayName: string;\n        kind: ScriptElementKind;\n        kindModifiers: string;\n        triggerSpan: TextSpan;\n    }\n    interface RenameInfoFailure {\n        canRename: false;\n        localizedErrorMessage: string;\n    }\n    /**\n     * @deprecated Use `UserPreferences` instead.\n     */\n    interface RenameInfoOptions {\n        readonly allowRenameOfImportPath?: boolean;\n    }\n    interface DocCommentTemplateOptions {\n        readonly generateReturnInDocTemplate?: boolean;\n    }\n    interface InteractiveRefactorArguments {\n        targetFile: string;\n    }\n    /**\n     * Signature help information for a single parameter\n     */\n    interface SignatureHelpParameter {\n        name: string;\n        documentation: SymbolDisplayPart[];\n        displayParts: SymbolDisplayPart[];\n        isOptional: boolean;\n        isRest?: boolean;\n    }\n    interface SelectionRange {\n        textSpan: TextSpan;\n        parent?: SelectionRange;\n    }\n    /**\n     * Represents a single signature to show in signature help.\n     * The id is used for subsequent calls into the language service to ask questions about the\n     * signature help item in the context of any documents that have been updated.  i.e. after\n     * an edit has happened, while signature help is still active, the host can ask important\n     * questions like 'what parameter is the user currently contained within?'.\n     */\n    interface SignatureHelpItem {\n        isVariadic: boolean;\n        prefixDisplayParts: SymbolDisplayPart[];\n        suffixDisplayParts: SymbolDisplayPart[];\n        separatorDisplayParts: SymbolDisplayPart[];\n        parameters: SignatureHelpParameter[];\n        documentation: SymbolDisplayPart[];\n        tags: JSDocTagInfo[];\n    }\n    /**\n     * Represents a set of signature help items, and the preferred item that should be selected.\n     */\n    interface SignatureHelpItems {\n        items: SignatureHelpItem[];\n        applicableSpan: TextSpan;\n        selectedItemIndex: number;\n        argumentIndex: number;\n        argumentCount: number;\n    }\n    enum CompletionInfoFlags {\n        None = 0,\n        MayIncludeAutoImports = 1,\n        IsImportStatementCompletion = 2,\n        IsContinuation = 4,\n        ResolvedModuleSpecifiers = 8,\n        ResolvedModuleSpecifiersBeyondLimit = 16,\n        MayIncludeMethodSnippets = 32,\n    }\n    interface CompletionInfo {\n        /** For performance telemetry. */\n        flags?: CompletionInfoFlags;\n        /** Not true for all global completions. This will be true if the enclosing scope matches a few syntax kinds. See `isSnippetScope`. */\n        isGlobalCompletion: boolean;\n        isMemberCompletion: boolean;\n        /**\n         * In the absence of `CompletionEntry[\"replacementSpan\"]`, the editor may choose whether to use\n         * this span or its default one. If `CompletionEntry[\"replacementSpan\"]` is defined, that span\n         * must be used to commit that completion entry.\n         */\n        optionalReplacementSpan?: TextSpan;\n        /**\n         * true when the current location also allows for a new identifier\n         */\n        isNewIdentifierLocation: boolean;\n        /**\n         * Indicates to client to continue requesting completions on subsequent keystrokes.\n         */\n        isIncomplete?: true;\n        entries: CompletionEntry[];\n        /**\n         * Default commit characters for the completion entries.\n         */\n        defaultCommitCharacters?: string[];\n    }\n    interface CompletionEntryDataAutoImport {\n        /**\n         * The name of the property or export in the module's symbol table. Differs from the completion name\n         * in the case of InternalSymbolName.ExportEquals and InternalSymbolName.Default.\n         */\n        exportName: string;\n        exportMapKey?: ExportMapInfoKey;\n        moduleSpecifier?: string;\n        /** The file name declaring the export's module symbol, if it was an external module */\n        fileName?: string;\n        /** The module name (with quotes stripped) of the export's module symbol, if it was an ambient module */\n        ambientModuleName?: string;\n        /** True if the export was found in the package.json AutoImportProvider */\n        isPackageJsonImport?: true;\n    }\n    interface CompletionEntryDataUnresolved extends CompletionEntryDataAutoImport {\n        exportMapKey: ExportMapInfoKey;\n    }\n    interface CompletionEntryDataResolved extends CompletionEntryDataAutoImport {\n        moduleSpecifier: string;\n    }\n    type CompletionEntryData = CompletionEntryDataUnresolved | CompletionEntryDataResolved;\n    interface CompletionEntry {\n        name: string;\n        kind: ScriptElementKind;\n        kindModifiers?: string;\n        /**\n         * A string that is used for comparing completion items so that they can be ordered. This\n         * is often the same as the name but may be different in certain circumstances.\n         */\n        sortText: string;\n        /**\n         * Text to insert instead of `name`.\n         * This is used to support bracketed completions; If `name` might be \"a-b\" but `insertText` would be `[\"a-b\"]`,\n         * coupled with `replacementSpan` to replace a dotted access with a bracket access.\n         */\n        insertText?: string;\n        /**\n         * A string that should be used when filtering a set of\n         * completion items.\n         */\n        filterText?: string;\n        /**\n         * `insertText` should be interpreted as a snippet if true.\n         */\n        isSnippet?: true;\n        /**\n         * An optional span that indicates the text to be replaced by this completion item.\n         * If present, this span should be used instead of the default one.\n         * It will be set if the required span differs from the one generated by the default replacement behavior.\n         */\n        replacementSpan?: TextSpan;\n        /**\n         * Indicates whether commiting this completion entry will require additional code actions to be\n         * made to avoid errors. The CompletionEntryDetails will have these actions.\n         */\n        hasAction?: true;\n        /**\n         * Identifier (not necessarily human-readable) identifying where this completion came from.\n         */\n        source?: string;\n        /**\n         * Human-readable description of the `source`.\n         */\n        sourceDisplay?: SymbolDisplayPart[];\n        /**\n         * Additional details for the label.\n         */\n        labelDetails?: CompletionEntryLabelDetails;\n        /**\n         * If true, this completion should be highlighted as recommended. There will only be one of these.\n         * This will be set when we know the user should write an expression with a certain type and that type is an enum or constructable class.\n         * Then either that enum/class or a namespace containing it will be the recommended symbol.\n         */\n        isRecommended?: true;\n        /**\n         * If true, this completion was generated from traversing the name table of an unchecked JS file,\n         * and therefore may not be accurate.\n         */\n        isFromUncheckedFile?: true;\n        /**\n         * If true, this completion was for an auto-import of a module not yet in the program, but listed\n         * in the project package.json. Used for telemetry reporting.\n         */\n        isPackageJsonImport?: true;\n        /**\n         * If true, this completion was an auto-import-style completion of an import statement (i.e., the\n         * module specifier was inserted along with the imported identifier). Used for telemetry reporting.\n         */\n        isImportStatementCompletion?: true;\n        /**\n         * For API purposes.\n         * Included for non-string completions only when `includeSymbol: true` option is passed to `getCompletionsAtPosition`.\n         * @example Get declaration of completion: `symbol.valueDeclaration`\n         */\n        symbol?: Symbol;\n        /**\n         * A property to be sent back to TS Server in the CompletionDetailsRequest, along with `name`,\n         * that allows TS Server to look up the symbol represented by the completion item, disambiguating\n         * items with the same name. Currently only defined for auto-import completions, but the type is\n         * `unknown` in the protocol, so it can be changed as needed to support other kinds of completions.\n         * The presence of this property should generally not be used to assume that this completion entry\n         * is an auto-import.\n         */\n        data?: CompletionEntryData;\n        /**\n         * If this completion entry is selected, typing a commit character will cause the entry to be accepted.\n         */\n        commitCharacters?: string[];\n    }\n    interface CompletionEntryLabelDetails {\n        /**\n         * An optional string which is rendered less prominently directly after\n         * {@link CompletionEntry.name name}, without any spacing. Should be\n         * used for function signatures or type annotations.\n         */\n        detail?: string;\n        /**\n         * An optional string which is rendered less prominently after\n         * {@link CompletionEntryLabelDetails.detail}. Should be used for fully qualified\n         * names or file path.\n         */\n        description?: string;\n    }\n    interface CompletionEntryDetails {\n        name: string;\n        kind: ScriptElementKind;\n        kindModifiers: string;\n        displayParts: SymbolDisplayPart[];\n        documentation?: SymbolDisplayPart[];\n        tags?: JSDocTagInfo[];\n        codeActions?: CodeAction[];\n        /** @deprecated Use `sourceDisplay` instead. */\n        source?: SymbolDisplayPart[];\n        sourceDisplay?: SymbolDisplayPart[];\n    }\n    interface OutliningSpan {\n        /** The span of the document to actually collapse. */\n        textSpan: TextSpan;\n        /** The span of the document to display when the user hovers over the collapsed span. */\n        hintSpan: TextSpan;\n        /** The text to display in the editor for the collapsed region. */\n        bannerText: string;\n        /**\n         * Whether or not this region should be automatically collapsed when\n         * the 'Collapse to Definitions' command is invoked.\n         */\n        autoCollapse: boolean;\n        /**\n         * Classification of the contents of the span\n         */\n        kind: OutliningSpanKind;\n    }\n    enum OutliningSpanKind {\n        /** Single or multi-line comments */\n        Comment = \"comment\",\n        /** Sections marked by '// #region' and '// #endregion' comments */\n        Region = \"region\",\n        /** Declarations and expressions */\n        Code = \"code\",\n        /** Contiguous blocks of import declarations */\n        Imports = \"imports\",\n    }\n    enum OutputFileType {\n        JavaScript = 0,\n        SourceMap = 1,\n        Declaration = 2,\n    }\n    enum EndOfLineState {\n        None = 0,\n        InMultiLineCommentTrivia = 1,\n        InSingleQuoteStringLiteral = 2,\n        InDoubleQuoteStringLiteral = 3,\n        InTemplateHeadOrNoSubstitutionTemplate = 4,\n        InTemplateMiddleOrTail = 5,\n        InTemplateSubstitutionPosition = 6,\n    }\n    enum TokenClass {\n        Punctuation = 0,\n        Keyword = 1,\n        Operator = 2,\n        Comment = 3,\n        Whitespace = 4,\n        Identifier = 5,\n        NumberLiteral = 6,\n        BigIntLiteral = 7,\n        StringLiteral = 8,\n        RegExpLiteral = 9,\n    }\n    interface ClassificationResult {\n        finalLexState: EndOfLineState;\n        entries: ClassificationInfo[];\n    }\n    interface ClassificationInfo {\n        length: number;\n        classification: TokenClass;\n    }\n    interface Classifier {\n        /**\n         * Gives lexical classifications of tokens on a line without any syntactic context.\n         * For instance, a token consisting of the text 'string' can be either an identifier\n         * named 'string' or the keyword 'string', however, because this classifier is not aware,\n         * it relies on certain heuristics to give acceptable results. For classifications where\n         * speed trumps accuracy, this function is preferable; however, for true accuracy, the\n         * syntactic classifier is ideal. In fact, in certain editing scenarios, combining the\n         * lexical, syntactic, and semantic classifiers may issue the best user experience.\n         *\n         * @param text                      The text of a line to classify.\n         * @param lexState                  The state of the lexical classifier at the end of the previous line.\n         * @param syntacticClassifierAbsent Whether the client is *not* using a syntactic classifier.\n         *                                  If there is no syntactic classifier (syntacticClassifierAbsent=true),\n         *                                  certain heuristics may be used in its place; however, if there is a\n         *                                  syntactic classifier (syntacticClassifierAbsent=false), certain\n         *                                  classifications which may be incorrectly categorized will be given\n         *                                  back as Identifiers in order to allow the syntactic classifier to\n         *                                  subsume the classification.\n         * @deprecated Use getLexicalClassifications instead.\n         */\n        getClassificationsForLine(text: string, lexState: EndOfLineState, syntacticClassifierAbsent: boolean): ClassificationResult;\n        getEncodedLexicalClassifications(text: string, endOfLineState: EndOfLineState, syntacticClassifierAbsent: boolean): Classifications;\n    }\n    enum ScriptElementKind {\n        unknown = \"\",\n        warning = \"warning\",\n        /** predefined type (void) or keyword (class) */\n        keyword = \"keyword\",\n        /** top level script node */\n        scriptElement = \"script\",\n        /** module foo {} */\n        moduleElement = \"module\",\n        /** class X {} */\n        classElement = \"class\",\n        /** var x = class X {} */\n        localClassElement = \"local class\",\n        /** interface Y {} */\n        interfaceElement = \"interface\",\n        /** type T = ... */\n        typeElement = \"type\",\n        /** enum E */\n        enumElement = \"enum\",\n        enumMemberElement = \"enum member\",\n        /**\n         * Inside module and script only\n         * const v = ..\n         */\n        variableElement = \"var\",\n        /** Inside function */\n        localVariableElement = \"local var\",\n        /** using foo = ... */\n        variableUsingElement = \"using\",\n        /** await using foo = ... */\n        variableAwaitUsingElement = \"await using\",\n        /**\n         * Inside module and script only\n         * function f() { }\n         */\n        functionElement = \"function\",\n        /** Inside function */\n        localFunctionElement = \"local function\",\n        /** class X { [public|private]* foo() {} } */\n        memberFunctionElement = \"method\",\n        /** class X { [public|private]* [get|set] foo:number; } */\n        memberGetAccessorElement = \"getter\",\n        memberSetAccessorElement = \"setter\",\n        /**\n         * class X { [public|private]* foo:number; }\n         * interface Y { foo:number; }\n         */\n        memberVariableElement = \"property\",\n        /** class X { [public|private]* accessor foo: number; } */\n        memberAccessorVariableElement = \"accessor\",\n        /**\n         * class X { constructor() { } }\n         * class X { static { } }\n         */\n        constructorImplementationElement = \"constructor\",\n        /** interface Y { ():number; } */\n        callSignatureElement = \"call\",\n        /** interface Y { []:number; } */\n        indexSignatureElement = \"index\",\n        /** interface Y { new():Y; } */\n        constructSignatureElement = \"construct\",\n        /** function foo(*Y*: string) */\n        parameterElement = \"parameter\",\n        typeParameterElement = \"type parameter\",\n        primitiveType = \"primitive type\",\n        label = \"label\",\n        alias = \"alias\",\n        constElement = \"const\",\n        letElement = \"let\",\n        directory = \"directory\",\n        externalModuleName = \"external module name\",\n        /**\n         * <JsxTagName attribute1 attribute2={0} />\n         * @deprecated\n         */\n        jsxAttribute = \"JSX attribute\",\n        /** String literal */\n        string = \"string\",\n        /** Jsdoc @link: in `{@link C link text}`, the before and after text \"{@link \" and \"}\" */\n        link = \"link\",\n        /** Jsdoc @link: in `{@link C link text}`, the entity name \"C\" */\n        linkName = \"link name\",\n        /** Jsdoc @link: in `{@link C link text}`, the link text \"link text\" */\n        linkText = \"link text\",\n    }\n    enum ScriptElementKindModifier {\n        none = \"\",\n        publicMemberModifier = \"public\",\n        privateMemberModifier = \"private\",\n        protectedMemberModifier = \"protected\",\n        exportedModifier = \"export\",\n        ambientModifier = \"declare\",\n        staticModifier = \"static\",\n        abstractModifier = \"abstract\",\n        optionalModifier = \"optional\",\n        deprecatedModifier = \"deprecated\",\n        dtsModifier = \".d.ts\",\n        tsModifier = \".ts\",\n        tsxModifier = \".tsx\",\n        jsModifier = \".js\",\n        jsxModifier = \".jsx\",\n        jsonModifier = \".json\",\n        dmtsModifier = \".d.mts\",\n        mtsModifier = \".mts\",\n        mjsModifier = \".mjs\",\n        dctsModifier = \".d.cts\",\n        ctsModifier = \".cts\",\n        cjsModifier = \".cjs\",\n    }\n    enum ClassificationTypeNames {\n        comment = \"comment\",\n        identifier = \"identifier\",\n        keyword = \"keyword\",\n        numericLiteral = \"number\",\n        bigintLiteral = \"bigint\",\n        operator = \"operator\",\n        stringLiteral = \"string\",\n        whiteSpace = \"whitespace\",\n        text = \"text\",\n        punctuation = \"punctuation\",\n        className = \"class name\",\n        enumName = \"enum name\",\n        interfaceName = \"interface name\",\n        moduleName = \"module name\",\n        typeParameterName = \"type parameter name\",\n        typeAliasName = \"type alias name\",\n        parameterName = \"parameter name\",\n        docCommentTagName = \"doc comment tag name\",\n        jsxOpenTagName = \"jsx open tag name\",\n        jsxCloseTagName = \"jsx close tag name\",\n        jsxSelfClosingTagName = \"jsx self closing tag name\",\n        jsxAttribute = \"jsx attribute\",\n        jsxText = \"jsx text\",\n        jsxAttributeStringLiteralValue = \"jsx attribute string literal value\",\n    }\n    enum ClassificationType {\n        comment = 1,\n        identifier = 2,\n        keyword = 3,\n        numericLiteral = 4,\n        operator = 5,\n        stringLiteral = 6,\n        regularExpressionLiteral = 7,\n        whiteSpace = 8,\n        text = 9,\n        punctuation = 10,\n        className = 11,\n        enumName = 12,\n        interfaceName = 13,\n        moduleName = 14,\n        typeParameterName = 15,\n        typeAliasName = 16,\n        parameterName = 17,\n        docCommentTagName = 18,\n        jsxOpenTagName = 19,\n        jsxCloseTagName = 20,\n        jsxSelfClosingTagName = 21,\n        jsxAttribute = 22,\n        jsxText = 23,\n        jsxAttributeStringLiteralValue = 24,\n        bigintLiteral = 25,\n    }\n    interface InlayHintsContext {\n        file: SourceFile;\n        program: Program;\n        cancellationToken: CancellationToken;\n        host: LanguageServiceHost;\n        span: TextSpan;\n        preferences: UserPreferences;\n    }\n    type ExportMapInfoKey = string & {\n        __exportInfoKey: void;\n    };\n    /** The classifier is used for syntactic highlighting in editors via the TSServer */\n    function createClassifier(): Classifier;\n    interface DocumentHighlights {\n        fileName: string;\n        highlightSpans: HighlightSpan[];\n    }\n    function createDocumentRegistry(useCaseSensitiveFileNames?: boolean, currentDirectory?: string, jsDocParsingMode?: JSDocParsingMode): DocumentRegistry;\n    /**\n     * The document registry represents a store of SourceFile objects that can be shared between\n     * multiple LanguageService instances. A LanguageService instance holds on the SourceFile (AST)\n     * of files in the context.\n     * SourceFile objects account for most of the memory usage by the language service. Sharing\n     * the same DocumentRegistry instance between different instances of LanguageService allow\n     * for more efficient memory utilization since all projects will share at least the library\n     * file (lib.d.ts).\n     *\n     * A more advanced use of the document registry is to serialize sourceFile objects to disk\n     * and re-hydrate them when needed.\n     *\n     * To create a default DocumentRegistry, use createDocumentRegistry to create one, and pass it\n     * to all subsequent createLanguageService calls.\n     */\n    interface DocumentRegistry {\n        /**\n         * Request a stored SourceFile with a given fileName and compilationSettings.\n         * The first call to acquire will call createLanguageServiceSourceFile to generate\n         * the SourceFile if was not found in the registry.\n         *\n         * @param fileName The name of the file requested\n         * @param compilationSettingsOrHost Some compilation settings like target affects the\n         * shape of a the resulting SourceFile. This allows the DocumentRegistry to store\n         * multiple copies of the same file for different compilation settings. A minimal\n         * resolution cache is needed to fully define a source file's shape when\n         * the compilation settings include `module: node16`+, so providing a cache host\n         * object should be preferred. A common host is a language service `ConfiguredProject`.\n         * @param scriptSnapshot Text of the file. Only used if the file was not found\n         * in the registry and a new one was created.\n         * @param version Current version of the file. Only used if the file was not found\n         * in the registry and a new one was created.\n         */\n        acquireDocument(fileName: string, compilationSettingsOrHost: CompilerOptions | MinimalResolutionCacheHost, scriptSnapshot: IScriptSnapshot, version: string, scriptKind?: ScriptKind, sourceFileOptions?: CreateSourceFileOptions | ScriptTarget): SourceFile;\n        acquireDocumentWithKey(fileName: string, path: Path, compilationSettingsOrHost: CompilerOptions | MinimalResolutionCacheHost, key: DocumentRegistryBucketKey, scriptSnapshot: IScriptSnapshot, version: string, scriptKind?: ScriptKind, sourceFileOptions?: CreateSourceFileOptions | ScriptTarget): SourceFile;\n        /**\n         * Request an updated version of an already existing SourceFile with a given fileName\n         * and compilationSettings. The update will in-turn call updateLanguageServiceSourceFile\n         * to get an updated SourceFile.\n         *\n         * @param fileName The name of the file requested\n         * @param compilationSettingsOrHost Some compilation settings like target affects the\n         * shape of a the resulting SourceFile. This allows the DocumentRegistry to store\n         * multiple copies of the same file for different compilation settings. A minimal\n         * resolution cache is needed to fully define a source file's shape when\n         * the compilation settings include `module: node16`+, so providing a cache host\n         * object should be preferred. A common host is a language service `ConfiguredProject`.\n         * @param scriptSnapshot Text of the file.\n         * @param version Current version of the file.\n         */\n        updateDocument(fileName: string, compilationSettingsOrHost: CompilerOptions | MinimalResolutionCacheHost, scriptSnapshot: IScriptSnapshot, version: string, scriptKind?: ScriptKind, sourceFileOptions?: CreateSourceFileOptions | ScriptTarget): SourceFile;\n        updateDocumentWithKey(fileName: string, path: Path, compilationSettingsOrHost: CompilerOptions | MinimalResolutionCacheHost, key: DocumentRegistryBucketKey, scriptSnapshot: IScriptSnapshot, version: string, scriptKind?: ScriptKind, sourceFileOptions?: CreateSourceFileOptions | ScriptTarget): SourceFile;\n        getKeyForCompilationSettings(settings: CompilerOptions): DocumentRegistryBucketKey;\n        /**\n         * Informs the DocumentRegistry that a file is not needed any longer.\n         *\n         * Note: It is not allowed to call release on a SourceFile that was not acquired from\n         * this registry originally.\n         *\n         * @param fileName The name of the file to be released\n         * @param compilationSettings The compilation settings used to acquire the file\n         * @param scriptKind The script kind of the file to be released\n         *\n         * @deprecated pass scriptKind and impliedNodeFormat for correctness\n         */\n        releaseDocument(fileName: string, compilationSettings: CompilerOptions, scriptKind?: ScriptKind): void;\n        /**\n         * Informs the DocumentRegistry that a file is not needed any longer.\n         *\n         * Note: It is not allowed to call release on a SourceFile that was not acquired from\n         * this registry originally.\n         *\n         * @param fileName The name of the file to be released\n         * @param compilationSettings The compilation settings used to acquire the file\n         * @param scriptKind The script kind of the file to be released\n         * @param impliedNodeFormat The implied source file format of the file to be released\n         */\n        releaseDocument(fileName: string, compilationSettings: CompilerOptions, scriptKind: ScriptKind, impliedNodeFormat: ResolutionMode): void;\n        /**\n         * @deprecated pass scriptKind for and impliedNodeFormat correctness */\n        releaseDocumentWithKey(path: Path, key: DocumentRegistryBucketKey, scriptKind?: ScriptKind): void;\n        releaseDocumentWithKey(path: Path, key: DocumentRegistryBucketKey, scriptKind: ScriptKind, impliedNodeFormat: ResolutionMode): void;\n        reportStats(): string;\n    }\n    type DocumentRegistryBucketKey = string & {\n        __bucketKey: any;\n    };\n    function preProcessFile(sourceText: string, readImportFiles?: boolean, detectJavaScriptImports?: boolean): PreProcessedFileInfo;\n    function transpileModule(input: string, transpileOptions: TranspileOptions): TranspileOutput;\n    function transpileDeclaration(input: string, transpileOptions: TranspileOptions): TranspileOutput;\n    function transpile(input: string, compilerOptions?: CompilerOptions, fileName?: string, diagnostics?: Diagnostic[], moduleName?: string): string;\n    interface TranspileOptions {\n        compilerOptions?: CompilerOptions;\n        fileName?: string;\n        reportDiagnostics?: boolean;\n        moduleName?: string;\n        renamedDependencies?: MapLike<string>;\n        transformers?: CustomTransformers;\n        jsDocParsingMode?: JSDocParsingMode;\n    }\n    interface TranspileOutput {\n        outputText: string;\n        diagnostics?: Diagnostic[];\n        sourceMapText?: string;\n    }\n    function toEditorSettings(options: EditorOptions | EditorSettings): EditorSettings;\n    function displayPartsToString(displayParts: SymbolDisplayPart[] | undefined): string;\n    function getDefaultCompilerOptions(): CompilerOptions;\n    function getSupportedCodeFixes(): readonly string[];\n    function createLanguageServiceSourceFile(fileName: string, scriptSnapshot: IScriptSnapshot, scriptTargetOrOptions: ScriptTarget | CreateSourceFileOptions, version: string, setNodeParents: boolean, scriptKind?: ScriptKind): SourceFile;\n    function updateLanguageServiceSourceFile(sourceFile: SourceFile, scriptSnapshot: IScriptSnapshot, version: string, textChangeRange: TextChangeRange | undefined, aggressiveChecks?: boolean): SourceFile;\n    function createLanguageService(host: LanguageServiceHost, documentRegistry?: DocumentRegistry, syntaxOnlyOrLanguageServiceMode?: boolean | LanguageServiceMode): LanguageService;\n    /**\n     * Get the path of the default library files (lib.d.ts) as distributed with the typescript\n     * node package.\n     * The functionality is not supported if the ts module is consumed outside of a node module.\n     */\n    function getDefaultLibFilePath(options: CompilerOptions): string;\n    /** The version of the language service API */\n    const servicesVersion = \"0.8\";\n    /**\n     * Transform one or more nodes using the supplied transformers.\n     * @param source A single `Node` or an array of `Node` objects.\n     * @param transformers An array of `TransformerFactory` callbacks used to process the transformation.\n     * @param compilerOptions Optional compiler options.\n     */\n    function transform<T extends Node>(source: T | T[], transformers: TransformerFactory<T>[], compilerOptions?: CompilerOptions): TransformationResult<T>;\n}\nexport = ts;\n",
    "node_modules/typescript/package.json": "{\n    \"name\": \"typescript\",\n    \"author\": \"Microsoft Corp.\",\n    \"homepage\": \"https://www.typescriptlang.org/\",\n    \"version\": \"5.9.3\",\n    \"license\": \"Apache-2.0\",\n    \"description\": \"TypeScript is a language for application scale JavaScript development\",\n    \"keywords\": [\n        \"TypeScript\",\n        \"Microsoft\",\n        \"compiler\",\n        \"language\",\n        \"javascript\"\n    ],\n    \"bugs\": {\n        \"url\": \"https://github.com/microsoft/TypeScript/issues\"\n    },\n    \"repository\": {\n        \"type\": \"git\",\n        \"url\": \"https://github.com/microsoft/TypeScript.git\"\n    },\n    \"main\": \"./lib/typescript.js\",\n    \"typings\": \"./lib/typescript.d.ts\",\n    \"bin\": {\n        \"tsc\": \"./bin/tsc\",\n        \"tsserver\": \"./bin/tsserver\"\n    },\n    \"engines\": {\n        \"node\": \">=14.17\"\n    },\n    \"files\": [\n        \"bin\",\n        \"lib\",\n        \"!lib/enu\",\n        \"LICENSE.txt\",\n        \"README.md\",\n        \"SECURITY.md\",\n        \"ThirdPartyNoticeText.txt\",\n        \"!**/.gitattributes\"\n    ],\n    \"devDependencies\": {\n        \"@dprint/formatter\": \"^0.4.1\",\n        \"@dprint/typescript\": \"0.93.4\",\n        \"@esfx/canceltoken\": \"^1.0.0\",\n        \"@eslint/js\": \"^9.20.0\",\n        \"@octokit/rest\": \"^21.1.1\",\n        \"@types/chai\": \"^4.3.20\",\n        \"@types/diff\": \"^7.0.1\",\n        \"@types/minimist\": \"^1.2.5\",\n        \"@types/mocha\": \"^10.0.10\",\n        \"@types/ms\": \"^0.7.34\",\n        \"@types/node\": \"latest\",\n        \"@types/source-map-support\": \"^0.5.10\",\n        \"@types/which\": \"^3.0.4\",\n        \"@typescript-eslint/rule-tester\": \"^8.24.1\",\n        \"@typescript-eslint/type-utils\": \"^8.24.1\",\n        \"@typescript-eslint/utils\": \"^8.24.1\",\n        \"azure-devops-node-api\": \"^14.1.0\",\n        \"c8\": \"^10.1.3\",\n        \"chai\": \"^4.5.0\",\n        \"chokidar\": \"^4.0.3\",\n        \"diff\": \"^7.0.0\",\n        \"dprint\": \"^0.49.0\",\n        \"esbuild\": \"^0.25.0\",\n        \"eslint\": \"^9.20.1\",\n        \"eslint-formatter-autolinkable-stylish\": \"^1.4.0\",\n        \"eslint-plugin-regexp\": \"^2.7.0\",\n        \"fast-xml-parser\": \"^4.5.2\",\n        \"glob\": \"^10.4.5\",\n        \"globals\": \"^15.15.0\",\n        \"hereby\": \"^1.10.0\",\n        \"jsonc-parser\": \"^3.3.1\",\n        \"knip\": \"^5.44.4\",\n        \"minimist\": \"^1.2.8\",\n        \"mocha\": \"^10.8.2\",\n        \"mocha-fivemat-progress-reporter\": \"^0.1.0\",\n        \"monocart-coverage-reports\": \"^2.12.1\",\n        \"ms\": \"^2.1.3\",\n        \"picocolors\": \"^1.1.1\",\n        \"playwright\": \"^1.50.1\",\n        \"source-map-support\": \"^0.5.21\",\n        \"tslib\": \"^2.8.1\",\n        \"typescript\": \"^5.7.3\",\n        \"typescript-eslint\": \"^8.24.1\",\n        \"which\": \"^3.0.1\"\n    },\n    \"overrides\": {\n        \"typescript@*\": \"$typescript\"\n    },\n    \"scripts\": {\n        \"test\": \"hereby runtests-parallel --light=false\",\n        \"test:eslint-rules\": \"hereby run-eslint-rules-tests\",\n        \"build\": \"npm run build:compiler && npm run build:tests\",\n        \"build:compiler\": \"hereby local\",\n        \"build:tests\": \"hereby tests\",\n        \"build:tests:notypecheck\": \"hereby tests --no-typecheck\",\n        \"clean\": \"hereby clean\",\n        \"gulp\": \"hereby\",\n        \"lint\": \"hereby lint\",\n        \"knip\": \"hereby knip\",\n        \"format\": \"dprint fmt\",\n        \"setup-hooks\": \"node scripts/link-hooks.mjs\"\n    },\n    \"browser\": {\n        \"fs\": false,\n        \"os\": false,\n        \"path\": false,\n        \"crypto\": false,\n        \"buffer\": false,\n        \"source-map-support\": false,\n        \"inspector\": false,\n        \"perf_hooks\": false\n    },\n    \"packageManager\": \"npm@8.19.4\",\n    \"volta\": {\n        \"node\": \"20.1.0\",\n        \"npm\": \"8.19.4\"\n    },\n    \"gitHead\": \"c63de15a992d37f0d6cec03ac7631872838602cb\"\n}\n",
    "node_modules/typia/lib/TypeGuardError.d.ts": "/**\n * Error thrown when type assertion fails.\n *\n * Thrown by {@link assert}, {@link assertGuard}, and other assert-family\n * functions when input doesn't match expected type `T`. Contains detailed\n * information about the first assertion failure:\n *\n * - `method`: Which typia function threw (e.g., `\"typia.assert\"`)\n * - `path`: Property path where error occurred (e.g., `\"input.user.age\"`)\n * - `expected`: Expected type string (e.g., `\"number & ExclusiveMinimum<19>\"`)\n * - `value`: Actual value that failed validation\n *\n * @template T Expected type (for type safety)\n */\nexport declare class TypeGuardError<T = any> extends Error {\n    /**\n     * Name of the typia method that threw this error.\n     *\n     * E.g., `\"typia.assert\"`, `\"typia.assertEquals\"`, `\"typia.assertGuard\"`.\n     */\n    readonly method: string;\n    /**\n     * Property path where assertion failed.\n     *\n     * Uses dot notation for nested properties. `undefined` if error occurred at\n     * root level.\n     *\n     * E.g., `\"input.age\"`, `\"input.profile.email\"`, `\"input[0].name\"`.\n     */\n    readonly path: string | undefined;\n    /**\n     * String representation of expected type.\n     *\n     * E.g., `\"string\"`, `\"number & ExclusiveMinimum<19>\"`, `\"{ name: string; age:\n     * number }\"`.\n     */\n    readonly expected: string;\n    /**\n     * Actual value that failed assertion.\n     *\n     * The raw value at the error path, useful for debugging.\n     */\n    readonly value: unknown;\n    /**\n     * Optional human-readable error description.\n     *\n     * Primarily for AI agent libraries or custom validation scenarios needing\n     * additional context. Standard assertions rely on `path`, `expected`, and\n     * `value` for error reporting.\n     */\n    readonly description?: string | undefined;\n    /**\n     * Creates a new TypeGuardError instance.\n     *\n     * @param props Error properties\n     */\n    constructor(props: TypeGuardError.IProps);\n}\nexport declare namespace TypeGuardError {\n    /** Properties for constructing a TypeGuardError. */\n    interface IProps {\n        /**\n         * Name of the typia method that threw the error.\n         *\n         * E.g., `\"typia.assert\"`, `\"typia.assertEquals\"`.\n         */\n        method: string;\n        /**\n         * Property path where assertion failed (optional).\n         *\n         * E.g., `\"input.age\"`, `\"input.profile.email\"`.\n         */\n        path?: undefined | string;\n        /**\n         * String representation of expected type.\n         *\n         * E.g., `\"string\"`, `\"number & ExclusiveMinimum<19>\"`.\n         */\n        expected: string;\n        /** Actual value that failed assertion. */\n        value: unknown;\n        /**\n         * Optional human-readable error description.\n         *\n         * For AI agent libraries or custom validation needing additional context.\n         */\n        description?: string;\n        /**\n         * Custom error message (optional).\n         *\n         * If not provided, a default message is generated from other properties.\n         */\n        message?: undefined | string;\n    }\n}\n",
    "node_modules/typia/lib/executable/TypiaGenerateWizard.d.ts": "export declare namespace TypiaGenerateWizard {\n    function generate(): Promise<void>;\n    interface IArguments {\n        input: string;\n        output: string;\n        project: string;\n    }\n}\n",
    "node_modules/typia/lib/executable/TypiaPatchWizard.d.ts": "export declare namespace TypiaPatchWizard {\n    const main: () => Promise<void>;\n    const patch: () => Promise<void>;\n}\n",
    "node_modules/typia/lib/executable/TypiaSetupWizard.d.ts": "export declare namespace TypiaSetupWizard {\n    interface IArguments {\n        manager: \"npm\" | \"pnpm\" | \"yarn\" | \"bun\";\n        project: string | null;\n    }\n    const setup: () => Promise<void>;\n}\n",
    "node_modules/typia/lib/executable/setup/ArgumentParser.d.ts": "import commander from \"commander\";\nimport inquirer from \"inquirer\";\nimport { PackageManager } from \"./PackageManager\";\nexport declare namespace ArgumentParser {\n    type Inquiry<T> = (pack: PackageManager, command: commander.Command, prompt: (opt?: inquirer.StreamOptions) => inquirer.PromptModule, action: (closure: (options: Partial<T>) => Promise<T>) => Promise<T>) => Promise<T>;\n    const parse: <T>(pack: PackageManager, inquiry: (pack: PackageManager, command: commander.Command, prompt: (opt?: inquirer.StreamOptions) => inquirer.PromptModule, action: (closure: (options: Partial<T>) => Promise<T>) => Promise<T>) => Promise<T>) => Promise<T>;\n}\n",
    "node_modules/typia/lib/executable/setup/CommandExecutor.d.ts": "export declare namespace CommandExecutor {\n    const run: (str: string) => void;\n}\n",
    "node_modules/typia/lib/executable/setup/FileRetriever.d.ts": "export declare namespace FileRetriever {\n    const directory: (props: {\n        file: string;\n        location: string;\n        depth?: number;\n    }) => string | null;\n}\n",
    "node_modules/typia/lib/executable/setup/PackageManager.d.ts": "export declare class PackageManager {\n    readonly directory: string;\n    data: Package.Data;\n    manager: Manager;\n    get file(): string;\n    static mount(): Promise<PackageManager>;\n    save(modifier: (data: Package.Data) => void): Promise<void>;\n    install(props: {\n        dev: boolean;\n        modulo: string;\n        version: string;\n    }): boolean;\n    private constructor();\n    private static load;\n}\nexport declare namespace Package {\n    interface Data {\n        scripts?: Record<string, string>;\n        dependencies?: Record<string, string>;\n        devDependencies?: Record<string, string>;\n    }\n}\ntype Manager = \"npm\" | \"pnpm\" | \"yarn\" | \"bun\";\nexport {};\n",
    "node_modules/typia/lib/executable/setup/PluginConfigurator.d.ts": "import { TypiaSetupWizard } from \"../TypiaSetupWizard\";\nexport declare namespace PluginConfigurator {\n    function configure(args: TypiaSetupWizard.IArguments): Promise<void>;\n}\n",
    "node_modules/typia/lib/executable/typia.d.ts": "#!/usr/bin/env node\ndeclare const USAGE = \"Wrong command has been detected. Use like below:\\n\\n  npx typia setup \\\\\\n    --manager (npm|pnpm|yarn) \\\\\\n    --project {tsconfig.json file path}\\n\\n    - npx typia setup\\n    - npx typia setup --manager pnpm\\n    - npx typia setup --project tsconfig.test.json\\n\\n  npx typia generate \\n    --input {directory} \\\\\\n    --output {directory}\\n\\n    --npx typia generate --input src/templates --output src/functional\\n\";\ndeclare const halt: (desc: string) => never;\ndeclare const main: () => Promise<void>;\n",
    "node_modules/typia/lib/functional.d.ts": "import { IValidation } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Wraps function to assert both parameters and return value.\n *\n * Wraps the target function and validates all parameters before calling and\n * return value after calling through {@link assert}. Throws on first mismatch.\n *\n * Error path format:\n *\n * - Parameter errors: `$input.parameters[0].property`\n * - Return errors: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link assertParameters} — Validates parameters only\n * - {@link assertReturn} — Validates return value only\n * - {@link validateFunction} — Collects all errors instead of throwing\n * - {@link assertEqualsFunction} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When parameter or return value type mismatch\n */\nexport declare function assertFunction<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to assert parameters only.\n *\n * Wraps the target function and validates all parameters before calling through\n * {@link assert}. Return value is not validated. Throws on first mismatch.\n *\n * Error path format: `$input.parameters[0].property`\n *\n * Related functions:\n *\n * - {@link assertFunction} — Also validates return value\n * - {@link assertReturn} — Validates return value only\n * - {@link validateParameters} — Collects all errors instead of throwing\n * - {@link assertEqualsParameters} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When parameter type mismatch\n */\nexport declare function assertParameters<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to assert return value only.\n *\n * Wraps the target function and validates return value after calling through\n * {@link assert}. Parameters are not validated. Throws on mismatch.\n *\n * Error path format: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link assertFunction} — Also validates parameters\n * - {@link assertParameters} — Validates parameters only\n * - {@link validateReturn} — Collects all errors instead of throwing\n * - {@link assertEqualsReturn} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When return value type mismatch\n */\nexport declare function assertReturn<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to assert parameters and return value with strict equality.\n *\n * Wraps the target function and validates through {@link assertEquals}. Also\n * rejects extra properties not defined in type. Throws on first mismatch.\n *\n * Error path format:\n *\n * - Parameter errors: `$input.parameters[0].property`\n * - Return errors: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link assertFunction} — Allows extra properties\n * - {@link assertEqualsParameters} — Validates parameters only\n * - {@link assertEqualsReturn} — Validates return value only\n * - {@link validateEqualsFunction} — Collects all errors instead of throwing\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertEqualsFunction<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to assert parameters with strict equality.\n *\n * Wraps the target function and validates parameters through\n * {@link assertEquals}. Also rejects extra properties. Return value is not\n * validated.\n *\n * Error path format: `$input.parameters[0].property`\n *\n * Related functions:\n *\n * - {@link assertParameters} — Allows extra properties\n * - {@link assertEqualsFunction} — Also validates return value\n * - {@link validateEqualsParameters} — Collects all errors instead of throwing\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertEqualsParameters<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to assert return value with strict equality.\n *\n * Wraps the target function and validates return value through\n * {@link assertEquals}. Also rejects extra properties. Parameters are not\n * validated.\n *\n * Error path format: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link assertReturn} — Allows extra properties\n * - {@link assertEqualsFunction} — Also validates parameters\n * - {@link validateEqualsReturn} — Collects all errors instead of throwing\n *\n * @template T Target function type\n * @param func Function to wrap\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Wrapped function with same signature\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertEqualsReturn<T extends (...args: any[]) => any>(func: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Wraps function to test both parameters and return value.\n *\n * Wraps the target function and checks all parameters before calling and return\n * value after calling through {@link is}. Returns `null` on mismatch.\n *\n * Related functions:\n *\n * - {@link isParameters} — Tests parameters only\n * - {@link isReturn} — Tests return value only\n * - {@link assertFunction} — Throws with error details on mismatch\n * - {@link validateFunction} — Returns all error details\n * - {@link equalsFunction} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function isFunction<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to test parameters only.\n *\n * Wraps the target function and checks all parameters before calling through\n * {@link is}. Return value is not checked. Returns `null` on mismatch.\n *\n * Related functions:\n *\n * - {@link isFunction} — Also tests return value\n * - {@link isReturn} — Tests return value only\n * - {@link assertParameters} — Throws with error details\n * - {@link validateParameters} — Returns all error details\n * - {@link equalsParameters} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function isParameters<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to test return value only.\n *\n * Wraps the target function and checks return value after calling through\n * {@link is}. Parameters are not checked. Returns `null` on mismatch.\n *\n * Related functions:\n *\n * - {@link isFunction} — Also tests parameters\n * - {@link isParameters} — Tests parameters only\n * - {@link assertReturn} — Throws with error details\n * - {@link validateReturn} — Returns all error details\n * - {@link equalsReturn} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function isReturn<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to test parameters and return value with strict equality.\n *\n * Wraps the target function and checks through {@link equals}. Also rejects\n * extra properties not defined in type. Returns `null` on mismatch.\n *\n * Related functions:\n *\n * - {@link isFunction} — Allows extra properties\n * - {@link equalsParameters} — Tests parameters only\n * - {@link equalsReturn} — Tests return value only\n * - {@link assertEqualsFunction} — Throws with error details\n * - {@link validateEqualsFunction} — Returns all error details\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function equalsFunction<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to test parameters with strict equality.\n *\n * Wraps the target function and checks parameters through {@link equals}. Also\n * rejects extra properties. Return value is not checked.\n *\n * Related functions:\n *\n * - {@link isParameters} — Allows extra properties\n * - {@link equalsFunction} — Also tests return value\n * - {@link equalsReturn} — Tests return value only\n * - {@link assertEqualsParameters} — Throws with error details\n * - {@link validateEqualsParameters} — Returns all error details\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function equalsParameters<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to test return value with strict equality.\n *\n * Wraps the target function and checks return value through {@link equals}. Also\n * rejects extra properties. Parameters are not checked.\n *\n * Related functions:\n *\n * - {@link isReturn} — Allows extra properties\n * - {@link equalsFunction} — Also tests parameters\n * - {@link equalsParameters} — Tests parameters only\n * - {@link assertEqualsReturn} — Throws with error details\n * - {@link validateEqualsReturn} — Returns all error details\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning `Output | null`\n */\nexport declare function equalsReturn<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<R | null> : (...args: Arguments) => Output | null : never;\n/**\n * Wraps function to validate both parameters and return value.\n *\n * Wraps the target function and validates all parameters before calling and\n * return value after calling through {@link validate}. Collects all errors.\n *\n * Error path format:\n *\n * - Parameter errors: `$input.parameters[0].property`\n * - Return errors: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link validateParameters} — Validates parameters only\n * - {@link validateReturn} — Validates return value only\n * - {@link assertFunction} — Throws on first error\n * - {@link validateEqualsFunction} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateFunction<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n/**\n * Wraps function to validate parameters only.\n *\n * Wraps the target function and validates all parameters before calling through\n * {@link validate}. Return value is not validated. Collects all errors.\n *\n * Error path format: `$input.parameters[0].property`\n *\n * Related functions:\n *\n * - {@link validateFunction} — Also validates return value\n * - {@link validateReturn} — Validates return value only\n * - {@link assertParameters} — Throws on first error\n * - {@link validateEqualsParameters} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateParameters<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n/**\n * Wraps function to validate return value only.\n *\n * Wraps the target function and validates return value after calling through\n * {@link validate}. Parameters are not validated. Collects all errors.\n *\n * Error path format: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link validateFunction} — Also validates parameters\n * - {@link validateParameters} — Validates parameters only\n * - {@link assertReturn} — Throws on first error\n * - {@link validateEqualsReturn} — Also rejects extra properties\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateReturn<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n/**\n * Wraps function to validate parameters and return value with strict equality.\n *\n * Wraps the target function and validates through {@link validateEquals}. Also\n * rejects extra properties not defined in type. Collects all errors.\n *\n * Error path format:\n *\n * - Parameter errors: `$input.parameters[0].property`\n * - Return errors: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link validateFunction} — Allows extra properties\n * - {@link validateEqualsParameters} — Validates parameters only\n * - {@link validateEqualsReturn} — Validates return value only\n * - {@link assertEqualsFunction} — Throws on first error\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateEqualsFunction<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n/**\n * Wraps function to validate parameters with strict equality.\n *\n * Wraps the target function and validates parameters through\n * {@link validateEquals}. Also rejects extra properties. Return value is not\n * validated.\n *\n * Error path format: `$input.parameters[0].property`\n *\n * Related functions:\n *\n * - {@link validateParameters} — Allows extra properties\n * - {@link validateEqualsFunction} — Also validates return value\n * - {@link assertEqualsParameters} — Throws on first error\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateEqualsParameters<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n/**\n * Wraps function to validate return value with strict equality.\n *\n * Wraps the target function and validates return value through\n * {@link validateEquals}. Also rejects extra properties. Parameters are not\n * validated.\n *\n * Error path format: `$input.return.property`\n *\n * Related functions:\n *\n * - {@link validateReturn} — Allows extra properties\n * - {@link validateEqualsFunction} — Also validates parameters\n * - {@link assertEqualsReturn} — Throws on first error\n *\n * @template T Target function type\n * @param func Function to wrap\n * @returns Wrapped function returning {@link IValidation}\n */\nexport declare function validateEqualsReturn<T extends (...args: any[]) => any>(func: T): T extends (...args: infer Arguments) => infer Output ? Output extends Promise<infer R> ? (...args: Arguments) => Promise<IValidation<R>> : (...args: Arguments) => IValidation<Output> : never;\n",
    "node_modules/typia/lib/http.d.ts": "import { Atomic, IReadableURLSearchParams, IValidation, Resolved } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Decodes `FormData` into type `T`.\n *\n * Parses a `FormData` instance with automatic type casting. Properties typed as\n * `boolean` or `Blob` are cast to expected types during decoding.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string`, `Blob`, `File` or their array\n *    types allowed\n * 4. No union types allowed\n *\n * Does not validate the decoded value. For validation, use:\n *\n * - {@link assertFormData} — Throws on type mismatch\n * - {@link isFormData} — Returns `null` on type mismatch\n * - {@link validateFormData} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input FormData instance to decode\n * @returns Decoded object of type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function formData<T extends object>(input: FormData): Resolved<T>;\n/**\n * Decodes `FormData` into type `T` with assertion.\n *\n * Parses a `FormData` instance with automatic type casting, then validates the\n * result via {@link assert}. Throws {@link TypeGuardError} on mismatch.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string`, `Blob`, `File` or their array\n *    types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link formData} — No validation\n * - {@link isFormData} — Returns `null` instead of throwing\n * - {@link validateFormData} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input FormData instance to decode\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Decoded object of type `T`\n * @throws {TypeGuardError} When decoded value doesn't conform to type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function assertFormData<T extends object>(input: FormData, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Resolved<T>;\n/**\n * Decodes `FormData` into type `T` with type checking.\n *\n * Parses a `FormData` instance with automatic type casting, then validates the\n * result via {@link is}. Returns `null` on type mismatch.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string`, `Blob`, `File` or their array\n *    types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link formData} — No validation\n * - {@link assertFormData} — Throws instead of returning `null`\n * - {@link validateFormData} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input FormData instance to decode\n * @returns Decoded object of type `T`, or `null` if invalid\n * @danger You must configure the generic argument `T`\n */\nexport declare function isFormData<T extends object>(input: FormData): Resolved<T> | null;\n/**\n * Decodes `FormData` into type `T` with validation.\n *\n * Parses a `FormData` instance with automatic type casting, then validates the\n * result via {@link validate}. Returns {@link IValidation.IFailure} with all\n * errors on mismatch, or {@link IValidation.ISuccess} with decoded value.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string`, `Blob`, `File` or their array\n *    types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link formData} — No validation\n * - {@link assertFormData} — Throws on first error\n * - {@link isFormData} — Returns `null` instead of error details\n *\n * @template T Target object type\n * @param input FormData instance to decode\n * @returns Validation result containing decoded value or errors\n * @danger You must configure the generic argument `T`\n */\nexport declare function validateFormData<T extends object>(input: FormData): IValidation<Resolved<T>>;\n/**\n * Decodes URL query string into type `T`.\n *\n * Parses a query string or `URLSearchParams` instance with automatic type\n * casting. Properties typed as `boolean` or `number` are cast to expected types\n * during decoding.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 4. No union types allowed\n *\n * Does not validate the decoded value. For validation, use:\n *\n * - {@link assertQuery} — Throws on type mismatch\n * - {@link isQuery} — Returns `null` on type mismatch\n * - {@link validateQuery} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Query string or URLSearchParams instance\n * @returns Decoded object of type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function query<T extends object>(input: string | IReadableURLSearchParams): Resolved<T>;\n/**\n * Decodes URL query string into type `T` with assertion.\n *\n * Parses a query string or `URLSearchParams` instance with automatic type\n * casting, then validates the result via {@link assert}. Throws\n * {@link TypeGuardError} on mismatch.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link query} — No validation\n * - {@link isQuery} — Returns `null` instead of throwing\n * - {@link validateQuery} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Query string or URLSearchParams instance\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Decoded object of type `T`\n * @throws {TypeGuardError} When decoded value doesn't conform to type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function assertQuery<T extends object>(input: string | IReadableURLSearchParams, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Resolved<T>;\n/**\n * Decodes URL query string into type `T` with type checking.\n *\n * Parses a query string or `URLSearchParams` instance with automatic type\n * casting, then validates the result via {@link is}. Returns `null` on type\n * mismatch.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link query} — No validation\n * - {@link assertQuery} — Throws instead of returning `null`\n * - {@link validateQuery} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Query string or URLSearchParams instance\n * @returns Decoded object of type `T`, or `null` if invalid\n * @danger You must configure the generic argument `T`\n */\nexport declare function isQuery<T extends object>(input: string | IReadableURLSearchParams): Resolved<T> | null;\n/**\n * Decodes URL query string into type `T` with validation.\n *\n * Parses a query string or `URLSearchParams` instance with automatic type\n * casting, then validates the result via {@link validate}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with decoded value.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 4. No union types allowed\n *\n * Related functions:\n *\n * - {@link query} — No validation\n * - {@link assertQuery} — Throws on first error\n * - {@link isQuery} — Returns `null` instead of error details\n *\n * @template T Target object type\n * @param input Query string or URLSearchParams instance\n * @returns Validation result containing decoded value or errors\n * @danger You must configure the generic argument `T`\n */\nexport declare function validateQuery<T extends object>(input: string | IReadableURLSearchParams): IValidation<Resolved<T>>;\n/**\n * Decodes HTTP headers into type `T`.\n *\n * Parses HTTP headers object with automatic type casting. Properties typed as\n * `boolean` or `number` are cast to expected types during decoding. Compatible\n * with Express and Fastify request headers.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Property keys must be lowercase\n * 4. Property values cannot be `null` (but `undefined` is allowed)\n * 5. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 6. No union types allowed\n * 7. Property `set-cookie` must be array type\n * 8. These properties cannot be array type: `age`, `authorization`,\n *    `content-length`, `content-type`, `etag`, `expires`, `from`, `host`,\n *    `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,\n *    `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`,\n *    `user-agent`\n *\n * Does not validate the decoded value. For validation, use:\n *\n * - {@link assertHeaders} — Throws on type mismatch\n * - {@link isHeaders} — Returns `null` on type mismatch\n * - {@link validateHeaders} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Headers object from HTTP request\n * @returns Decoded object of type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function headers<T extends object>(input: Record<string, string | string[] | undefined>): Resolved<T>;\n/**\n * Decodes HTTP headers into type `T` with assertion.\n *\n * Parses HTTP headers object with automatic type casting, then validates the\n * result via {@link assert}. Throws {@link TypeGuardError} on mismatch.\n * Compatible with Express and Fastify request headers.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Property keys must be lowercase\n * 4. Property values cannot be `null` (but `undefined` is allowed)\n * 5. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 6. No union types allowed\n * 7. Property `set-cookie` must be array type\n * 8. These properties cannot be array type: `age`, `authorization`,\n *    `content-length`, `content-type`, `etag`, `expires`, `from`, `host`,\n *    `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,\n *    `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`,\n *    `user-agent`\n *\n * Related functions:\n *\n * - {@link headers} — No validation\n * - {@link isHeaders} — Returns `null` instead of throwing\n * - {@link validateHeaders} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Headers object from HTTP request\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Decoded object of type `T`\n * @throws {TypeGuardError} When decoded value doesn't conform to type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function assertHeaders<T extends object>(input: Record<string, string | string[] | undefined>, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Resolved<T>;\n/**\n * Decodes HTTP headers into type `T` with type checking.\n *\n * Parses HTTP headers object with automatic type casting, then validates the\n * result via {@link is}. Returns `null` on type mismatch. Compatible with\n * Express and Fastify request headers.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Property keys must be lowercase\n * 4. Property values cannot be `null` (but `undefined` is allowed)\n * 5. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 6. No union types allowed\n * 7. Property `set-cookie` must be array type\n * 8. These properties cannot be array type: `age`, `authorization`,\n *    `content-length`, `content-type`, `etag`, `expires`, `from`, `host`,\n *    `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,\n *    `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`,\n *    `user-agent`\n *\n * Related functions:\n *\n * - {@link headers} — No validation\n * - {@link assertHeaders} — Throws instead of returning `null`\n * - {@link validateHeaders} — Returns detailed validation errors\n *\n * @template T Target object type\n * @param input Headers object from HTTP request\n * @returns Decoded object of type `T`, or `null` if invalid\n * @danger You must configure the generic argument `T`\n */\nexport declare function isHeaders<T extends object>(input: Record<string, string | string[] | undefined>): Resolved<T> | null;\n/**\n * Decodes HTTP headers into type `T` with validation.\n *\n * Parses HTTP headers object with automatic type casting, then validates the\n * result via {@link validate}. Returns {@link IValidation.IFailure} with all\n * errors on mismatch, or {@link IValidation.ISuccess} with decoded value.\n * Compatible with Express and Fastify request headers.\n *\n * Type `T` constraints:\n *\n * 1. Must be an object type\n * 2. No dynamic properties allowed\n * 3. Property keys must be lowercase\n * 4. Property values cannot be `null` (but `undefined` is allowed)\n * 5. Only `boolean`, `bigint`, `number`, `string` or their array types allowed\n * 6. No union types allowed\n * 7. Property `set-cookie` must be array type\n * 8. These properties cannot be array type: `age`, `authorization`,\n *    `content-length`, `content-type`, `etag`, `expires`, `from`, `host`,\n *    `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`,\n *    `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, `server`,\n *    `user-agent`\n *\n * Related functions:\n *\n * - {@link headers} — No validation\n * - {@link assertHeaders} — Throws on first error\n * - {@link isHeaders} — Returns `null` instead of error details\n *\n * @template T Target object type\n * @param input Headers object from HTTP request\n * @returns Validation result containing decoded value or errors\n * @danger You must configure the generic argument `T`\n */\nexport declare function validateHeaders<T extends object>(input: Record<string, string | string[] | undefined>): IValidation<Resolved<T>>;\n/**\n * Decodes URL path parameter into type `T`.\n *\n * Parses a path parameter string with automatic type casting. When type `T` is\n * `boolean` or `number`, casts the string value to the expected type. Also\n * performs type assertion via {@link assert}, throwing {@link TypeGuardError} on\n * mismatch.\n *\n * @template T Target atomic type (`boolean`, `bigint`, `number`, `string`, or\n *   `null`)\n * @param input Path parameter string\n * @returns Decoded value of type `T`\n * @throws {TypeGuardError} When decoded value doesn't conform to type `T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function parameter<T extends Atomic.Type | null>(input: string): Resolved<T>;\n/**\n * Creates reusable {@link formData} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createFormData(): never;\n/**\n * Creates reusable {@link formData} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createFormData<T extends object>(): (input: FormData) => T;\n/**\n * Creates reusable {@link assertFormData} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertFormData(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertFormData} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable decoder function\n */\nexport declare function createAssertFormData<T extends object>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: FormData) => T;\n/**\n * Creates reusable {@link isFormData} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsFormData(): never;\n/**\n * Creates reusable {@link isFormData} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createIsFormData<T extends object>(): (input: FormData) => T | null;\n/**\n * Creates reusable {@link validateFormData} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateFormData(): never;\n/**\n * Creates reusable {@link validateFormData} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createValidateFormData<T extends object>(): (input: FormData) => IValidation<Resolved<T>>;\n/**\n * Creates reusable {@link query} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createQuery(): never;\n/**\n * Creates reusable {@link query} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createQuery<T extends object>(): (input: string | IReadableURLSearchParams) => T;\n/**\n * Creates reusable {@link assertQuery} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertQuery(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertQuery} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable decoder function\n */\nexport declare function createAssertQuery<T extends object>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: string | IReadableURLSearchParams) => T;\n/**\n * Creates reusable {@link isQuery} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsQuery(): never;\n/**\n * Creates reusable {@link isQuery} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createIsQuery<T extends object>(): (input: string | IReadableURLSearchParams) => T | null;\n/**\n * Creates reusable {@link validateQuery} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateQuery(): never;\n/**\n * Creates reusable {@link validateQuery} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createValidateQuery<T extends object>(): (input: string | IReadableURLSearchParams) => IValidation<Resolved<T>>;\n/**\n * Creates reusable {@link headers} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createHeaders(): never;\n/**\n * Creates reusable {@link headers} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createHeaders<T extends object>(): (input: Record<string, string | string[] | undefined>) => T;\n/**\n * Creates reusable {@link assertHeaders} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertHeaders(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertHeaders} function.\n *\n * @template T Target object type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable decoder function\n */\nexport declare function createAssertHeaders<T extends object>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: Record<string, string | string[] | undefined>) => T;\n/**\n * Creates reusable {@link isHeaders} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsHeaders(): never;\n/**\n * Creates reusable {@link isHeaders} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createIsHeaders<T extends object>(): (input: Record<string, string | string[] | undefined>) => T | null;\n/**\n * Creates reusable {@link validateHeaders} function.\n *\n * @template T Target object type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateHeaders(): never;\n/**\n * Creates reusable {@link validateHeaders} function.\n *\n * @template T Target object type\n * @returns Reusable decoder function\n */\nexport declare function createValidateHeaders<T extends object>(): (input: Record<string, string | string[] | undefined>) => IValidation<Resolved<T>>;\n/**\n * Creates reusable {@link parameter} function.\n *\n * @template T Target atomic type\n * @danger You must configure the generic argument `T`\n */\nexport declare function createParameter(): never;\n/**\n * Creates reusable {@link parameter} function.\n *\n * @template T Target atomic type\n * @returns Reusable decoder function\n */\nexport declare function createParameter<T extends Atomic.Type | null>(): (input: string) => T;\n",
    "node_modules/typia/lib/index.d.ts": "import * as typia from \"./module\";\nexport default typia;\nexport * from \"./module\";\n",
    "node_modules/typia/lib/internal/_IProtobufWriter.d.ts": "export interface _IProtobufWriter {\n    bool(value: boolean): void;\n    int32(value: number): void;\n    sint32(value: number): void;\n    uint32(value: number): void;\n    int64(value: bigint | number): void;\n    sint64(value: bigint | number): void;\n    uint64(value: bigint | number): void;\n    float(value: number): void;\n    double(value: number): void;\n    bytes(value: Uint8Array): void;\n    string(value: string): void;\n    fork(): void;\n    ldelim(): void;\n}\n",
    "node_modules/typia/lib/internal/_ProtobufReader.d.ts": "import { ProtobufWire } from \"@typia/interface\";\nexport declare class _ProtobufReader {\n    /** Read buffer */\n    private buf;\n    /** Read buffer pointer. */\n    private ptr;\n    /** DataView for buffer. */\n    private view;\n    constructor(buf: Uint8Array);\n    index(): number;\n    size(): number;\n    uint32(): number;\n    int32(): number;\n    sint32(): number;\n    uint64(): bigint;\n    int64(): bigint;\n    sint64(): bigint;\n    bool(): boolean;\n    float(): number;\n    double(): number;\n    bytes(): Uint8Array;\n    string(): string;\n    skip(length: number): void;\n    skipType(wireType: ProtobufWire): void;\n    private varint32;\n    private varint64;\n    private u8;\n    private u8n;\n}\n",
    "node_modules/typia/lib/internal/_ProtobufSizer.d.ts": "import { _IProtobufWriter } from \"./_IProtobufWriter\";\nexport declare class _ProtobufSizer implements _IProtobufWriter {\n    /** Total length. */\n    len: number;\n    /** Position stack. */\n    readonly pos: Array<number>;\n    /** Variable length list. */\n    readonly varlen: Array<number>;\n    /** Variable length index stack. */\n    readonly varlenidx: Array<number>;\n    constructor(length?: number);\n    bool(): void;\n    int32(value: number): void;\n    sint32(value: number): void;\n    uint32(value: number): void;\n    int64(value: bigint | number): void;\n    sint64(value: bigint | number): void;\n    uint64(value: bigint | number): void;\n    float(_value: number): void;\n    double(_value: number): void;\n    bytes(value: Uint8Array): void;\n    string(value: string): void;\n    fork(): void;\n    ldelim(): void;\n    reset(): void;\n    private varint32;\n    private varint64;\n}\n",
    "node_modules/typia/lib/internal/_ProtobufWriter.d.ts": "import { _IProtobufWriter } from \"./_IProtobufWriter\";\nimport { _ProtobufSizer } from \"./_ProtobufSizer\";\nexport declare class _ProtobufWriter implements _IProtobufWriter {\n    /** Related sizer */\n    private readonly sizer;\n    /** Current pointer. */\n    private ptr;\n    /** Protobuf buffer. */\n    private buf;\n    /** DataView for buffer. */\n    private view;\n    /** Index in varlen array from sizer. */\n    private varlenidx;\n    constructor(sizer: _ProtobufSizer);\n    buffer(): Uint8Array;\n    bool(value: boolean): void;\n    byte(value: number): void;\n    int32(value: number): void;\n    sint32(value: number): void;\n    uint32(value: number): void;\n    sint64(value: number | bigint): void;\n    int64(value: number | bigint): void;\n    uint64(value: number | bigint): void;\n    float(val: number): void;\n    double(val: number): void;\n    bytes(value: Uint8Array): void;\n    string(value: string): void;\n    fork(): void;\n    ldelim(): void;\n    finish(): Uint8Array;\n    reset(): void;\n    private variant32;\n    private variant64;\n    private varlen;\n}\n",
    "node_modules/typia/lib/internal/_accessExpressionAsString.d.ts": "export declare const _accessExpressionAsString: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_assertGuard.d.ts": "import { TypeGuardError } from \"../TypeGuardError\";\nexport declare const _assertGuard: (exceptionable: boolean, props: TypeGuardError.IProps, factory?: (props: TypeGuardError.IProps) => Error) => false;\n",
    "node_modules/typia/lib/internal/_coerceLlmArguments.d.ts": "import { ILlmSchema } from \"@typia/interface\";\nexport declare const _coerceLlmArguments: <T>(value: unknown, parameters: ILlmSchema.IParameters) => T;\n",
    "node_modules/typia/lib/internal/_createStandardSchema.d.ts": "import { StandardSchemaV1 } from \"@standard-schema/spec\";\nimport { IValidation } from \"@typia/interface\";\nexport declare const _createStandardSchema: <T>(fn: (input: unknown) => IValidation<T>) => ((input: unknown) => IValidation<T>) & StandardSchemaV1<T, T>;\n",
    "node_modules/typia/lib/internal/_functionalTypeGuardErrorFactory.d.ts": "import { TypeGuardError } from \"../TypeGuardError\";\nexport declare const _functionalTypeGuardErrorFactory: (p: TypeGuardError.IProps) => TypeGuardError<any>;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadArray.d.ts": "export declare const _httpFormDataReadArray: (input: any[], alternative: null | undefined) => any[] | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadBigint.d.ts": "export declare const _httpFormDataReadBigint: (input: string | File | null) => bigint | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadBlob.d.ts": "export declare const _httpFormDataReadBlob: (input: string | Blob | null) => Blob | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadBoolean.d.ts": "export declare const _httpFormDataReadBoolean: (input: string | File | null) => boolean | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadFile.d.ts": "export declare const _httpFormDataReadFile: (input: string | File | null) => File | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadNumber.d.ts": "export declare const _httpFormDataReadNumber: (input: string | File | null) => number | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpFormDataReadString.d.ts": "export declare const _httpFormDataReadString: (input: string | File | null) => string | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpHeaderReadBigint.d.ts": "export declare const _httpHeaderReadBigint: (value: string | undefined) => string | bigint | undefined;\n",
    "node_modules/typia/lib/internal/_httpHeaderReadBoolean.d.ts": "export declare const _httpHeaderReadBoolean: (value: string | undefined) => string | boolean | undefined;\n",
    "node_modules/typia/lib/internal/_httpHeaderReadNumber.d.ts": "export declare const _httpHeaderReadNumber: (value: string | undefined) => string | number | undefined;\n",
    "node_modules/typia/lib/internal/_httpParameterReadBigint.d.ts": "export declare const _httpParameterReadBigint: (value: string) => string | bigint | null;\n",
    "node_modules/typia/lib/internal/_httpParameterReadBoolean.d.ts": "export declare const _httpParameterReadBoolean: (value: string) => string | boolean | null;\n",
    "node_modules/typia/lib/internal/_httpParameterReadNumber.d.ts": "export declare const _httpParameterReadNumber: (value: string) => string | number | null;\n",
    "node_modules/typia/lib/internal/_httpParameterReadString.d.ts": "export declare const _httpParameterReadString: (value: string) => string | null;\n",
    "node_modules/typia/lib/internal/_httpQueryParseURLSearchParams.d.ts": "import { IReadableURLSearchParams } from \"@typia/interface\";\nexport declare const _httpQueryParseURLSearchParams: (input: string | IReadableURLSearchParams) => IReadableURLSearchParams;\n",
    "node_modules/typia/lib/internal/_httpQueryReadArray.d.ts": "export declare const _httpQueryReadArray: (input: any[], alternative: null | undefined) => any[] | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpQueryReadBigint.d.ts": "export declare const _httpQueryReadBigint: (str: string | null) => bigint | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpQueryReadBoolean.d.ts": "export declare const _httpQueryReadBoolean: (str: string | null) => boolean | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpQueryReadNumber.d.ts": "export declare const _httpQueryReadNumber: (str: string | null) => number | null | undefined;\n",
    "node_modules/typia/lib/internal/_httpQueryReadString.d.ts": "export declare const _httpQueryReadString: (str: string | null) => string | null | undefined;\n",
    "node_modules/typia/lib/internal/_isBetween.d.ts": "export declare const _isBetween: (value: number, minimum: number, maximum: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isBigintString.d.ts": "export declare const _isBigintString: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatByte.d.ts": "export declare const _isFormatByte: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatDate.d.ts": "export declare const _isFormatDate: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatDateTime.d.ts": "export declare const _isFormatDateTime: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatDuration.d.ts": "export declare const _isFormatDuration: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatEmail.d.ts": "export declare const _isFormatEmail: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatHostname.d.ts": "export declare const _isFormatHostname: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIdnEmail.d.ts": "export declare const _isFormatIdnEmail: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIdnHostname.d.ts": "export declare const _isFormatIdnHostname: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIpv4.d.ts": "export declare const _isFormatIpv4: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIpv6.d.ts": "export declare const _isFormatIpv6: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIri.d.ts": "export declare const _isFormatIri: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatIriReference.d.ts": "export declare const _isFormatIriReference: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatJsonPointer.d.ts": "export declare const _isFormatJsonPointer: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatPassword.d.ts": "export declare const _isFormatPassword: () => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatRegex.d.ts": "export declare const _isFormatRegex: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatRelativeJsonPointer.d.ts": "export declare const _isFormatRelativeJsonPointer: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatTime.d.ts": "export declare const _isFormatTime: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatUri.d.ts": "export declare const _isFormatUri: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatUriReference.d.ts": "export declare const _isFormatUriReference: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatUriTemplate.d.ts": "export declare const _isFormatUriTemplate: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatUrl.d.ts": "export declare const _isFormatUrl: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isFormatUuid.d.ts": "export declare const _isFormatUuid: (str: string) => boolean;\n",
    "node_modules/typia/lib/internal/_isTypeFloat.d.ts": "export declare const _isTypeFloat: (value: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isTypeInt32.d.ts": "export declare const _isTypeInt32: (value: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isTypeInt64.d.ts": "export declare const _isTypeInt64: (value: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isTypeUint32.d.ts": "export declare const _isTypeUint32: (value: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isTypeUint64.d.ts": "export declare const _isTypeUint64: (value: number) => boolean;\n",
    "node_modules/typia/lib/internal/_isUniqueItems.d.ts": "export declare const _isUniqueItems: (elements: any[]) => boolean;\n",
    "node_modules/typia/lib/internal/_jsonStringifyNumber.d.ts": "export declare const _jsonStringifyNumber: (value: number) => number | null;\n",
    "node_modules/typia/lib/internal/_jsonStringifyRest.d.ts": "export declare const _jsonStringifyRest: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_jsonStringifyString.d.ts": "/**\n * In the past, name of `typia` was `typescript-json`, and supported JSON\n * serialization by wrapping `fast-json-stringify. `typescript-json`was a helper\n * library of`fast-json-stringify`, which can skip manual JSON schema definition\n * just by putting pure TypeScript type.\n *\n * This `$string` function is a part of `fast-json-stringify` at that time, and\n * still being used in `typia` for the string serialization.\n *\n * @reference https://github.com/fastify/fast-json-stringify/blob/master/lib/serializer.js\n * @blog https://dev.to/samchon/good-bye-typescript-is-ancestor-of-typia-20000x-faster-validator-49fi\n */\nexport declare const _jsonStringifyString: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_jsonStringifyTail.d.ts": "export declare const _jsonStringifyTail: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_llmApplicationFinalize.d.ts": "import { ILlmApplication } from \"@typia/interface\";\nexport declare const _llmApplicationFinalize: <Class extends object = any>(app: ILlmApplication.__IPrimitive<Class>, config?: Partial<Pick<ILlmApplication.IConfig, \"validate\">>) => ILlmApplication<Class>;\n",
    "node_modules/typia/lib/internal/_miscCloneAny.d.ts": "import { Resolved } from \"@typia/interface\";\nexport declare const _miscCloneAny: <T>(value: T) => Resolved<T>;\n",
    "node_modules/typia/lib/internal/_notationAny.d.ts": "export declare const _notationAny: (rename: (str: string) => string) => (input: any) => any;\n",
    "node_modules/typia/lib/internal/_notationCamel.d.ts": "export declare const _notationCamel: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_notationPascal.d.ts": "export declare const _notationPascal: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_notationSnake.d.ts": "export declare const _notationSnake: (str: string) => string;\n",
    "node_modules/typia/lib/internal/_parseLlmArguments.d.ts": "import { IJsonParseResult, ILlmSchema } from \"@typia/interface\";\nexport declare const _parseLlmArguments: <T>(input: string, parameters: ILlmSchema.IParameters) => IJsonParseResult<T>;\n",
    "node_modules/typia/lib/internal/_randomArray.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare const _randomArray: <T>(props: Omit<OpenApi.IJsonSchema.IArray, \"items\"> & {\n    element: (index: number, count: number) => T;\n}) => any[];\n",
    "node_modules/typia/lib/internal/_randomBigint.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare const _randomBigint: (props: OpenApi.IJsonSchema.IInteger) => bigint;\n",
    "node_modules/typia/lib/internal/_randomBoolean.d.ts": "export declare const _randomBoolean: () => boolean;\n",
    "node_modules/typia/lib/internal/_randomFormatByte.d.ts": "export declare const _randomFormatByte: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatDate.d.ts": "export declare const _randomFormatDate: (props?: {\n    minimum?: number;\n    maximum?: number;\n}) => string;\n",
    "node_modules/typia/lib/internal/_randomFormatDatetime.d.ts": "export declare const _randomFormatDatetime: (props?: {\n    minimum?: number;\n    maximum?: number;\n}) => string;\n",
    "node_modules/typia/lib/internal/_randomFormatDuration.d.ts": "export declare const _randomFormatDuration: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatEmail.d.ts": "export declare const _randomFormatEmail: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatHostname.d.ts": "export declare const _randomFormatHostname: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIdnEmail.d.ts": "export declare const _randomFormatIdnEmail: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIdnHostname.d.ts": "export declare const _randomFormatIdnHostname: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIpv4.d.ts": "export declare const _randomFormatIpv4: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIpv6.d.ts": "export declare const _randomFormatIpv6: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIri.d.ts": "export declare const _randomFormatIri: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatIriReference.d.ts": "export declare const _randomFormatIriReference: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatJsonPointer.d.ts": "export declare const _randomFormatJsonPointer: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatPassword.d.ts": "export declare const _randomFormatPassword: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatRegex.d.ts": "export declare const _randomFormatRegex: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatRelativeJsonPointer.d.ts": "export declare const _randomFormatRelativeJsonPointer: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatTime.d.ts": "export declare const _randomFormatTime: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatUri.d.ts": "export declare const _randomFormatUri: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatUriReference.d.ts": "export declare const _randomFormatUriReference: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatUriTemplate.d.ts": "export declare const _randomFormatUriTemplate: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatUrl.d.ts": "export declare const _randomFormatUrl: () => string;\n",
    "node_modules/typia/lib/internal/_randomFormatUuid.d.ts": "export declare const _randomFormatUuid: () => string;\n",
    "node_modules/typia/lib/internal/_randomInteger.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare const _randomInteger: (schema: OpenApi.IJsonSchema.IInteger) => number;\n",
    "node_modules/typia/lib/internal/_randomNumber.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare const _randomNumber: (schema: OpenApi.IJsonSchema.INumber) => number;\n",
    "node_modules/typia/lib/internal/_randomPattern.d.ts": "export declare const _randomPattern: (regex: RegExp) => string;\n",
    "node_modules/typia/lib/internal/_randomPick.d.ts": "export declare const _randomPick: <T>(array: T[]) => T;\n",
    "node_modules/typia/lib/internal/_randomString.d.ts": "import { OpenApi } from \"@typia/interface\";\nexport declare const _randomString: (props: OpenApi.IJsonSchema.IString) => string;\n",
    "node_modules/typia/lib/internal/_throwTypeGuardError.d.ts": "import { TypeGuardError } from \"../TypeGuardError\";\nexport declare const _throwTypeGuardError: (props: TypeGuardError.IProps) => never;\n",
    "node_modules/typia/lib/internal/_validateReport.d.ts": "import { IValidation } from \"@typia/interface\";\nexport declare const _validateReport: (array: IValidation.IError[]) => (exceptable: boolean, error: IValidation.IError) => false;\n",
    "node_modules/typia/lib/internal/private/__notationCapitalize.d.ts": "export declare const __notationCapitalize: (str: string) => string;\n",
    "node_modules/typia/lib/internal/private/__notationUnsnake.d.ts": "export declare const __notationUnsnake: (props: {\n    plain: (str: string) => string;\n    snake: (str: string, index: number) => string;\n}) => (str: string) => string;\n",
    "node_modules/typia/lib/json.d.ts": "import { IJsonSchemaApplication, IJsonSchemaCollection, IJsonSchemaUnit, IValidation, Primitive } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Generates JSON schema for type `T`.\n *\n * @danger You must configure the generic argument `Type`\n */\nexport declare function schema(): never;\n/**\n * Generates JSON schema for type `T`.\n *\n * Creates {@link IJsonSchemaUnit} containing a main schema and shared\n * components. Named types are stored in `components` for `$ref` referencing.\n *\n * Specify OpenAPI version via `Version` generic (`\"3.0\"` or `\"3.1\"`). Default\n * is `\"3.1\"`. Key difference: `\"3.1\"` supports tuple types.\n *\n * @template Type Target type\n * @template Version OpenAPI version (`\"3.0\"` | `\"3.1\"`). Default `\"3.1\"`\n * @returns JSON schema unit\n */\nexport declare function schema<Type extends unknown, Version extends \"3.0\" | \"3.1\" = \"3.1\">(): IJsonSchemaUnit<Version, Type>;\n/**\n * Generates JSON schemas for multiple types.\n *\n * @danger You must configure the generic argument `Types`\n */\nexport declare function schemas(): never;\n/**\n * Generates JSON schemas for multiple types.\n *\n * Creates {@link IJsonSchemaCollection} containing schemas for all types in the\n * tuple. Named types are stored in `components` for `$ref` referencing.\n *\n * Specify OpenAPI version via `Version` generic (`\"3.0\"` or `\"3.1\"`). Default\n * is `\"3.1\"`. Key difference: `\"3.1\"` supports tuple types.\n *\n * @template Types Tuple of target types\n * @template Version OpenAPI version (`\"3.0\"` | `\"3.1\"`). Default `\"3.1\"`\n * @returns JSON schema collection\n */\nexport declare function schemas<Types extends unknown[], Version extends \"3.0\" | \"3.1\" = \"3.1\">(): IJsonSchemaCollection<Version, Types>;\n/**\n * Generates JSON function schema application.\n *\n * @danger You must configure the generic argument `Class`\n */\nexport declare function application(): never;\n/**\n * Generates JSON function schema application from class/interface.\n *\n * Creates {@link IJsonSchemaApplication} from a TypeScript class or interface,\n * generating JSON schemas for all methods, parameters, and return types.\n * Designed for building custom LLM function calling schemas.\n *\n * The returned object contains:\n *\n * - `functions`: Array of function metadata with parameter/return schemas\n * - `components`: Shared schema components for `$ref` referencing\n *\n * Use cases:\n *\n * - Custom LLM function calling schema formats\n * - API documentation or code generation tools\n * - Alternative LLM integrations beyond built-in providers\n *\n * For standard LLM function calling, use {@link llm.application} instead, which\n * provides provider-specific schemas (ChatGPT, Claude, Gemini, etc.).\n *\n * @template Class Target class or interface type\n * @template Version OpenAPI version (`\"3.0\"` | `\"3.1\"`). Default `\"3.1\"`\n * @returns JSON function schema application\n */\nexport declare function application<Class extends object, Version extends \"3.0\" | \"3.1\" = \"3.1\">(): IJsonSchemaApplication<Version, Class>;\n/**\n * Parses JSON string with assertion.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function assertParse(input: string, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Parses JSON string with assertion.\n *\n * Combines `JSON.parse()` with {@link assert}. Throws {@link TypeGuardError} when\n * parsed value doesn't match type `T`.\n *\n * Related functions:\n *\n * - {@link isParse} — Returns `null` instead of throwing\n * - {@link validateParse} — Returns detailed validation errors\n *\n * @template T Target type for parsed value\n * @param input JSON string to parse\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Parsed value of type `T`\n * @throws {TypeGuardError} When parsed value doesn't conform to type `T`\n */\nexport declare function assertParse<T>(input: string, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Primitive<T>;\n/**\n * Parses JSON string with type checking.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function isParse(input: string): never;\n/**\n * Parses JSON string with type checking.\n *\n * Combines `JSON.parse()` with {@link is}. Returns `null` when parsed value\n * doesn't match type `T`.\n *\n * Related functions:\n *\n * - {@link assertParse} — Throws instead of returning `null`\n * - {@link validateParse} — Returns detailed validation errors\n *\n * @template T Target type for parsed value\n * @param input JSON string to parse\n * @returns Parsed value of type `T`, or `null` if invalid\n */\nexport declare function isParse<T>(input: string): Primitive<T> | null;\n/**\n * Parses JSON string with validation.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function validateParse(input: string): never;\n/**\n * Parses JSON string with validation.\n *\n * Combines `JSON.parse()` with {@link validate}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with parsed value.\n *\n * Related functions:\n *\n * - {@link assertParse} — Throws on first error\n * - {@link isParse} — Returns `null` instead of error details\n *\n * @template T Target type for parsed value\n * @param input JSON string to parse\n * @returns Validation result containing parsed value or errors\n */\nexport declare function validateParse<T>(input: string): IValidation<Primitive<T>>;\n/**\n * Converts value to JSON string (8x faster).\n *\n * Generates optimized JSON conversion code specific to type `T`, achieving ~8x\n * faster performance than native `JSON.stringify()`.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertStringify} — Throws on type mismatch\n * - {@link isStringify} — Returns `null` on type mismatch\n * - {@link validateStringify} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to stringify\n * @returns JSON string\n */\nexport declare function stringify<T>(input: T): string;\n/**\n * Converts value to JSON string with assertion (5x faster).\n *\n * Combines {@link assert} with {@link stringify}. Throws {@link TypeGuardError}\n * when input doesn't match type `T`. Achieves ~5x faster performance than\n * native `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link isStringify} — Returns `null` instead of throwing\n * - {@link validateStringify} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to assert and stringify\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns JSON string\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertStringify<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): string;\n/**\n * Converts value to JSON string with assertion (5x faster).\n *\n * Combines {@link assert} with {@link stringify}. Throws {@link TypeGuardError}\n * when input doesn't match type `T`. Achieves ~5x faster performance than\n * native `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link isStringify} — Returns `null` instead of throwing\n * - {@link validateStringify} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to assert and stringify\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns JSON string\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertStringify<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): unknown;\n/**\n * Converts value to JSON string with type checking (7x faster).\n *\n * Combines {@link is} with {@link stringify}. Returns `null` when input doesn't\n * match type `T`. Achieves ~7x faster performance than native\n * `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link assertStringify} — Throws instead of returning `null`\n * - {@link validateStringify} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to check and stringify\n * @returns JSON string, or `null` if type check fails\n */\nexport declare function isStringify<T>(input: T): string | null;\n/**\n * Converts value to JSON string with type checking (7x faster).\n *\n * Combines {@link is} with {@link stringify}. Returns `null` when input doesn't\n * match type `T`. Achieves ~7x faster performance than native\n * `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link assertStringify} — Throws instead of returning `null`\n * - {@link validateStringify} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to check and stringify\n * @returns JSON string, or `null` if type check fails\n */\nexport declare function isStringify<T>(input: unknown): string | null;\n/**\n * Converts value to JSON string with validation (5x faster).\n *\n * Combines {@link validate} with {@link stringify}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with JSON string. Achieves ~5x faster performance\n * than native `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link assertStringify} — Throws on first error\n * - {@link isStringify} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Value to validate and stringify\n * @returns Validation result containing JSON string or errors\n */\nexport declare function validateStringify<T>(input: T): IValidation<string>;\n/**\n * Converts value to JSON string with validation (5x faster).\n *\n * Combines {@link validate} with {@link stringify}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with JSON string. Achieves ~5x faster performance\n * than native `JSON.stringify()`.\n *\n * Related functions:\n *\n * - {@link stringify} — No validation\n * - {@link assertStringify} — Throws on first error\n * - {@link isStringify} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Value to validate and stringify\n * @returns Validation result containing JSON string or errors\n */\nexport declare function validateStringify<T>(input: unknown): IValidation<string>;\n/**\n * Creates reusable {@link isParse} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsParse(): never;\n/**\n * Creates reusable {@link isParse} function.\n *\n * @template T Target type for parsed value\n * @returns Reusable parser function\n */\nexport declare function createIsParse<T>(): (input: string) => Primitive<T> | null;\n/**\n * Creates reusable {@link assertParse} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertParse(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertParse} function.\n *\n * @template T Target type for parsed value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable parser function\n */\nexport declare function createAssertParse<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: string) => Primitive<T>;\n/**\n * Creates reusable {@link validateParse} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateParse(): never;\n/**\n * Creates reusable {@link validateParse} function.\n *\n * @template T Target type for parsed value\n * @returns Reusable parser function\n */\nexport declare function createValidateParse<T>(): (input: string) => IValidation<Primitive<T>>;\n/**\n * Creates reusable {@link stringify} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createStringify(): never;\n/**\n * Creates reusable {@link stringify} function.\n *\n * @template T Type of input value\n * @returns Reusable stringify function\n */\nexport declare function createStringify<T>(): (input: T) => string;\n/**\n * Creates reusable {@link assertStringify} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertStringify(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertStringify} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable stringify function\n */\nexport declare function createAssertStringify<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => string;\n/**\n * Creates reusable {@link isStringify} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsStringify(): never;\n/**\n * Creates reusable {@link isStringify} function.\n *\n * @template T Type of input value\n * @returns Reusable stringify function\n */\nexport declare function createIsStringify<T>(): (input: unknown) => string | null;\n/**\n * Creates reusable {@link validateStringify} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateStringify(): never;\n/**\n * Creates reusable {@link validateStringify} function.\n *\n * @template T Type of input value\n * @returns Reusable stringify function\n */\nexport declare function createValidateStringify<T>(): (input: unknown) => IValidation<string>;\n",
    "node_modules/typia/lib/llm.d.ts": "import { IJsonParseResult, ILlmApplication, ILlmController, ILlmSchema, ILlmStructuredOutput } from \"@typia/interface\";\n/**\n * Creates LLM function calling controller.\n *\n * @danger You must configure the generic argument `Class`\n */\nexport declare function controller(name: string, execute: object, config?: Partial<Pick<ILlmApplication.IConfig<any>, \"validate\">>): never;\n/**\n * Creates LLM function calling controller from class/interface.\n *\n * Generates {@link ILlmController} from a TypeScript class or interface,\n * containing both function calling schemas ({@link ILlmFunction}) and an\n * executor ({@link ILlmController.execute}).\n *\n * Each {@link ILlmFunction} includes a built-in {@link ILlmFunction.validate}\n * function that validates LLM-generated arguments before execution. When\n * validation fails, use `LlmJson.stringify()` from `@typia/utils` to format\n * errors for LLM feedback, enabling auto-correction.\n *\n * When passed to LLM providers (ChatGPT, Claude, Gemini, etc.), the LLM\n * automatically selects functions and fills arguments from conversation.\n * Execute the selected function via {@link ILlmController.execute}.\n *\n * Related functions:\n *\n * - {@link application} — Schemas only, without executor\n * - {@link parameters} — Single parameters schema for structured output\n * - {@link schema} — Single type schema\n *\n * @template Class Target class or interface type\n * @template Config LLM schema configuration\n * @param name Controller identifier name\n * @param execute Executor instance\n * @param config LLM application options\n * @returns LLM function calling controller\n */\nexport declare function controller<Class extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig & {\n    /**\n     * Whether to disallow superfluous properties or not.\n     *\n     * If configure as `true`, {@link validateEquals} function would be used\n     * for validation feedback, which is more strict than {@link validate}\n     * function.\n     *\n     * @default false\n     */\n    equals: boolean;\n}> = {}>(name: string, execute: Class, config?: Partial<Pick<ILlmApplication.IConfig<Class>, \"validate\">>): ILlmController<Class>;\n/**\n * Creates LLM function calling application.\n *\n * @danger You must configure the generic argument `Class`\n */\nexport declare function application(config?: Partial<Pick<ILlmApplication.IConfig<any>, \"validate\">>): never;\n/**\n * Creates LLM function calling application from class/interface.\n *\n * Generates {@link ILlmApplication} from a TypeScript class or interface,\n * containing function calling schemas ({@link ILlmFunction}). Does not include\n * an executor—use {@link controller} if you need execution capability.\n *\n * Each {@link ILlmFunction} includes a built-in {@link ILlmFunction.validate}\n * function that validates LLM-generated arguments before execution. When\n * validation fails, use `LlmJson.stringify()` from `@typia/utils` to format\n * errors for LLM feedback, enabling auto-correction.\n *\n * When passed to LLM providers (ChatGPT, Claude, Gemini, etc.), the LLM\n * automatically selects functions and fills arguments from conversation. You\n * execute the function manually with the LLM-prepared arguments.\n *\n * Related functions:\n *\n * - {@link controller} — Includes executor alongside schemas\n * - {@link parameters} — Single parameters schema for structured output\n * - {@link schema} — Single type schema\n *\n * @template Class Target class or interface type\n * @template Config LLM schema configuration\n * @param config LLM application options\n * @returns LLM function calling application\n */\nexport declare function application<Class extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig & {\n    /**\n     * Whether to disallow superfluous properties or not.\n     *\n     * If configure as `true`, {@link validateEquals} function would be used\n     * for validation feedback, which is more strict than {@link validate}\n     * function.\n     *\n     * @default false\n     */\n    equals: boolean;\n}> = {}>(config?: Partial<Pick<ILlmApplication.IConfig<Class>, \"validate\">>): ILlmApplication<Class>;\n/**\n * Creates LLM structured output interface.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function structuredOutput(): never;\n/**\n * Creates LLM structured output interface from TypeScript object type.\n *\n * Generates {@link ILlmStructuredOutput} containing everything needed for\n * handling LLM structured outputs: the JSON schema for prompting, and functions\n * for parsing, coercing, and validating responses.\n *\n * Structured outputs allow LLMs to generate data conforming to a predefined\n * schema instead of free-form text. This is useful for:\n *\n * - Extracting structured data from conversations\n * - Generating typed responses for downstream processing\n * - Ensuring consistent output formats across LLM calls\n *\n * Workflow:\n *\n * 1. Pass {@link ILlmStructuredOutput.parameters} schema to LLM provider\n * 2. Receive LLM response (JSON string or pre-parsed object)\n * 3. Use {@link ILlmStructuredOutput.parse} for raw strings or\n *    {@link ILlmStructuredOutput.coerce} for pre-parsed objects\n * 4. Use {@link ILlmStructuredOutput.validate} to check the result\n *\n * Related functions:\n *\n * - {@link parameters} — Schema only, without parse/coerce/validate\n * - {@link application} — Multiple function schemas from class/interface\n * - {@link controller} — Application with executor\n *\n * @template T Target output type (object with static properties)\n * @template Config LLM schema configuration\n * @returns LLM structured output interface\n */\nexport declare function structuredOutput<T extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig & {\n    /**\n     * Whether to disallow superfluous properties or not.\n     *\n     * If configure as `true`, {@link validateEquals} function would be used\n     * for validation feedback, which is more strict than {@link validate}\n     * function.\n     *\n     * @default false\n     */\n    equals: boolean;\n}> = {}>(): ILlmStructuredOutput<T>;\n/**\n * Creates LLM parameters schema.\n *\n * @danger You must configure the generic argument `Parameters`\n */\nexport declare function parameters(): never;\n/**\n * Creates LLM parameters schema from TypeScript object type.\n *\n * Generates {@link ILlmSchema.IParameters} for LLM function calling or\n * structured outputs. LLMs use keyworded arguments only, so the type must be an\n * object with static properties (no dynamic properties allowed).\n *\n * Use cases:\n *\n * - Function calling: LLM fills parameters from conversation\n * - Structured outputs: LLM generates structured data, not plain text\n *\n * Related functions:\n *\n * - {@link application} — Multiple function schemas from class/interface\n * - {@link controller} — Application with executor\n * - {@link schema} — Single type schema (not parameters-specific)\n *\n * @template Parameters Target parameters type (object with static properties)\n * @template Config LLM schema configuration\n * @returns LLM parameters schema\n */\nexport declare function parameters<Parameters extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig> = {}>(): ILlmSchema.IParameters;\n/**\n * Creates LLM type schema.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function schema(): never;\n/**\n * Creates LLM type schema from TypeScript type.\n *\n * Generates {@link ILlmSchema} for use in LLM function calling. For actual\n * function calling with TypeScript functions, use {@link application}. For\n * structured output generation, use {@link parameters}.\n *\n * LLM function calling flow:\n *\n * 1. LLM selects function and fills arguments from conversation\n * 2. You execute the function with LLM-prepared arguments\n * 3. Return value is passed back to LLM via system prompt\n * 4. LLM continues conversation based on return value\n *\n * Related functions:\n *\n * - {@link application} — Multiple function schemas from class/interface\n * - {@link controller} — Application with executor\n * - {@link parameters} — Parameters schema for structured output\n *\n * @template T Target type\n * @template Config LLM schema configuration\n * @param $defs Shared schema definitions for `$ref` referencing\n * @returns LLM type schema\n */\nexport declare function schema<T, Config extends Partial<ILlmSchema.IConfig> = {}>($defs: Record<string, ILlmSchema>): ILlmSchema;\n/**\n * Parse LLM response JSON with type coercion.\n *\n * @danger You must configure the generic argument `Parameters`\n */\nexport declare function parse(input: string): never;\n/**\n * Parse lenient JSON with schema-based type coercion.\n *\n * Handles incomplete or malformed JSON commonly produced by LLMs:\n *\n * - Unclosed brackets, strings, trailing commas\n * - JavaScript-style comments (`//` and multi-line)\n * - Unquoted object keys, incomplete keywords (`tru`, `fal`, `nul`)\n * - Markdown code block extraction, junk prefix skipping\n *\n * Also coerces double-stringified values based on the `Parameters` schema:\n *\n * - `\"42\"` → `42` (when schema expects number)\n * - `\"true\"` → `true` (when schema expects boolean)\n * - `\"null\"` → `null` (when schema expects null)\n * - `\"{...}\"` → `{...}` (when schema expects object)\n * - `\"[...]\"` → `[...]` (when schema expects array)\n *\n * Type validation is NOT performed—use {@link ILlmFunction.validate} or\n * `typia.validate()` for that.\n *\n * For repeated parsing, use {@link createParse} to avoid regenerating the schema\n * each time.\n *\n * Related functions:\n *\n * - {@link createParse} — Create reusable parser function\n * - {@link coerce} — Type coercion for already-parsed objects\n * - {@link parameters} — Generate parameters schema from type\n *\n * @template Parameters Target parameters type (object with static properties)\n * @template Config LLM schema configuration\n * @param input Raw JSON string (potentially incomplete or malformed)\n * @returns Parse result with typed data on success, or partial data with errors\n */\nexport declare function parse<Parameters extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig> = {}>(input: string): IJsonParseResult<Parameters>;\n/**\n * Coerce LLM arguments to match expected schema types.\n *\n * LLMs often return values with incorrect types (e.g., numbers as strings).\n * This function recursively coerces values based on the `Parameters` schema:\n *\n * - `\"42\"` → `42` (when schema expects number)\n * - `\"true\"` → `true` (when schema expects boolean)\n * - `\"null\"` → `null` (when schema expects null)\n * - `\"{...}\"` → `{...}` (when schema expects object)\n * - `\"[...]\"` → `[...]` (when schema expects array)\n *\n * Use this when your SDK provides already-parsed objects but values may have\n * wrong types. For raw JSON strings, use {@link parse} instead.\n *\n * For repeated coercion, use {@link createCoerce} to avoid regenerating the\n * schema each time.\n *\n * Type validation is NOT performed—use {@link ILlmFunction.validate} or\n * `typia.validate()` for that.\n *\n * Related functions:\n *\n * - {@link createCoerce} — Create reusable coercer function\n * - {@link parse} — Parse and coerce raw JSON strings\n * - {@link parameters} — Generate parameters schema from type\n *\n * @template Parameters Target parameters type (object with static properties)\n * @template Config LLM schema configuration\n * @param input Parsed arguments object from LLM (with potentially wrong types)\n * @returns Coerced arguments with corrected types\n */\nexport declare function coerce<Parameters extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig> = {}>(input: Parameters): Parameters;\n/**\n * Create reusable LLM JSON parser with type coercion.\n *\n * @danger You must configure the generic argument `Parameters`\n */\nexport declare function createParse(): never;\n/**\n * Create reusable lenient JSON parser with schema-based type coercion.\n *\n * Returns a parser function that handles incomplete or malformed JSON commonly\n * produced by LLMs:\n *\n * - Unclosed brackets, strings, trailing commas\n * - JavaScript-style comments (`//` and multi-line)\n * - Unquoted object keys, incomplete keywords (`tru`, `fal`, `nul`)\n * - Markdown code block extraction, junk prefix skipping\n *\n * Also coerces double-stringified values based on the `Parameters` schema:\n *\n * - `\"42\"` → `42` (when schema expects number)\n * - `\"true\"` → `true` (when schema expects boolean)\n * - `\"null\"` → `null` (when schema expects null)\n * - `\"{...}\"` → `{...}` (when schema expects object)\n * - `\"[...]\"` → `[...]` (when schema expects array)\n *\n * Use this instead of {@link parse} when parsing multiple inputs to avoid\n * regenerating the schema each time.\n *\n * Type validation is NOT performed—use {@link ILlmFunction.validate} or\n * `typia.validate()` for that.\n *\n * Related functions:\n *\n * - {@link parse} — One-shot parsing (regenerates schema each call)\n * - {@link createCoerce} — Create reusable coercer function\n * - {@link parameters} — Generate parameters schema from type\n *\n * @template Parameters Target parameters type (object with static properties)\n * @template Config LLM schema configuration\n * @returns Reusable parser function\n */\nexport declare function createParse<Parameters extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig> = {}>(): (input: string) => IJsonParseResult<Parameters>;\n/**\n * Create reusable LLM arguments coercer.\n *\n * @danger You must configure the generic argument `Parameters`\n */\nexport declare function createCoerce(): never;\n/**\n * Create reusable coercer for LLM arguments.\n *\n * Returns a coercer function that fixes incorrect types commonly returned by\n * LLMs (e.g., numbers as strings). Coerces values based on the `Parameters`\n * schema:\n *\n * - `\"42\"` → `42` (when schema expects number)\n * - `\"true\"` → `true` (when schema expects boolean)\n * - `\"null\"` → `null` (when schema expects null)\n * - `\"{...}\"` → `{...}` (when schema expects object)\n * - `\"[...]\"` → `[...]` (when schema expects array)\n *\n * Use this instead of {@link coerce} when coercing multiple inputs to avoid\n * regenerating the schema each time.\n *\n * Type validation is NOT performed—use {@link ILlmFunction.validate} or\n * `typia.validate()` for that.\n *\n * Related functions:\n *\n * - {@link coerce} — One-shot coercion (regenerates schema each call)\n * - {@link createParse} — Create reusable parser function\n * - {@link parameters} — Generate parameters schema from type\n *\n * @template Parameters Target parameters type (object with static properties)\n * @template Config LLM schema configuration\n * @returns Reusable coercer function\n */\nexport declare function createCoerce<Parameters extends Record<string, any>, Config extends Partial<ILlmSchema.IConfig> = {}>(): (input: Parameters) => Parameters;\n",
    "node_modules/typia/lib/misc.d.ts": "import { Atomic, IValidation, Resolved } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Converts union literal type to array.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function literals(): never;\n/**\n * Converts union literal type to array.\n *\n * Extracts all members of a union literal type `T` into an array at runtime.\n *\n * @template T Union literal type (e.g., `\"A\" | \"B\" | 1`)\n * @returns Array containing all union members\n */\nexport declare function literals<T extends Atomic.Type | null>(): T[];\n/**\n * Deep clones value of type `T`.\n *\n * Creates a deep copy of the input value. Class instances with methods are\n * cloned as plain objects (methods are not copied).\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertClone} — Throws on type mismatch\n * - {@link isClone} — Returns `null` on type mismatch\n * - {@link validateClone} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to clone\n * @returns Deep cloned value\n */\nexport declare function clone<T>(input: T): Resolved<T>;\n/**\n * Deep clones value with assertion.\n *\n * Creates a deep copy with {@link assert} validation. Throws\n * {@link TypeGuardError} on type mismatch. Class instances with methods are\n * cloned as plain objects.\n *\n * Related functions:\n *\n * - {@link clone} — No validation\n * - {@link isClone} — Returns `null` instead of throwing\n * - {@link validateClone} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to clone\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Deep cloned value\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertClone<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Resolved<T>;\n/**\n * Deep clones value with type checking.\n *\n * Creates a deep copy with {@link is} validation. Returns `null` on type\n * mismatch. Class instances with methods are cloned as plain objects.\n *\n * Related functions:\n *\n * - {@link clone} — No validation\n * - {@link assertClone} — Throws instead of returning `null`\n * - {@link validateClone} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Value to clone\n * @returns Deep cloned value, or `null` if invalid\n */\nexport declare function isClone<T>(input: T): Resolved<T> | null;\n/**\n * Deep clones value with validation.\n *\n * Creates a deep copy with {@link validate} validation. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with cloned value. Class instances with methods\n * are cloned as plain objects.\n *\n * Related functions:\n *\n * - {@link clone} — No validation\n * - {@link assertClone} — Throws on first error\n * - {@link isClone} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Value to clone\n * @returns Validation result containing cloned value or errors\n */\nexport declare function validateClone<T>(input: T): IValidation<Resolved<T>>;\n/**\n * Removes superfluous properties from object.\n *\n * Deletes all properties not defined in type `T`, including in nested objects.\n * Mutates the input directly—removed properties cannot be recovered.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertPrune} — Throws on type mismatch\n * - {@link isPrune} — Returns `false` on type mismatch\n * - {@link validatePrune} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to prune\n */\nexport declare function prune<T extends object>(input: T): void;\n/**\n * Removes superfluous properties with assertion.\n *\n * Combines {@link assert} with {@link prune}. Throws {@link TypeGuardError} on\n * type mismatch. Mutates the input directly—removed properties cannot be\n * recovered.\n *\n * Related functions:\n *\n * - {@link prune} — No validation\n * - {@link isPrune} — Returns `false` instead of throwing\n * - {@link validatePrune} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to assert and prune\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns The pruned input\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertPrune<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Removes superfluous properties with type checking.\n *\n * Combines {@link is} with {@link prune}. Returns `false` on type mismatch (no\n * pruning occurs). Returns `true` after successful pruning. Mutates the input\n * directly.\n *\n * Related functions:\n *\n * - {@link prune} — No validation\n * - {@link assertPrune} — Throws instead of returning `false`\n * - {@link validatePrune} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to check and prune\n * @returns `true` if valid and pruned, `false` if type mismatch\n */\nexport declare function isPrune<T>(input: T): input is T;\n/**\n * Removes superfluous properties with validation.\n *\n * Combines {@link validate} with {@link prune}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch (no pruning occurs),\n * or {@link IValidation.ISuccess} after successful pruning. Mutates the input\n * directly.\n *\n * Related functions:\n *\n * - {@link prune} — No validation\n * - {@link assertPrune} — Throws on first error\n * - {@link isPrune} — Returns `false` instead of error details\n *\n * @template T Type of input value\n * @param input Object to validate and prune\n * @returns Validation result\n */\nexport declare function validatePrune<T>(input: T): IValidation<T>;\n/**\n * Creates reusable {@link clone} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createClone(): never;\n/**\n * Creates reusable {@link clone} function.\n *\n * @template T Type of input value\n * @returns Reusable clone function\n */\nexport declare function createClone<T>(): (input: T) => Resolved<T>;\n/**\n * Creates reusable {@link assertClone} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertClone(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertClone} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable clone function\n */\nexport declare function createAssertClone<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => Resolved<T>;\n/**\n * Creates reusable {@link isClone} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsClone(): never;\n/**\n * Creates reusable {@link isClone} function.\n *\n * @template T Type of input value\n * @returns Reusable clone function\n */\nexport declare function createIsClone<T>(): (input: unknown) => Resolved<T> | null;\n/**\n * Creates reusable {@link validateClone} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateClone(): never;\n/**\n * Creates reusable {@link validateClone} function.\n *\n * @template T Type of input value\n * @returns Reusable clone function\n */\nexport declare function createValidateClone<T>(): (input: unknown) => IValidation<Resolved<T>>;\n/**\n * Creates reusable {@link prune} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createPrune(): never;\n/**\n * Creates reusable {@link prune} function.\n *\n * @template T Type of input value\n * @returns Reusable prune function\n */\nexport declare function createPrune<T extends object>(): (input: T) => void;\n/**\n * Creates reusable {@link assertPrune} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertPrune(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertPrune} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable prune function\n */\nexport declare function createAssertPrune<T extends object>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => T;\n/**\n * Creates reusable {@link isPrune} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsPrune(): never;\n/**\n * Creates reusable {@link isPrune} function.\n *\n * @template T Type of input value\n * @returns Reusable prune function\n */\nexport declare function createIsPrune<T extends object>(): (input: unknown) => input is T;\n/**\n * Creates reusable {@link validatePrune} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidatePrune(): never;\n/**\n * Creates reusable {@link validatePrune} function.\n *\n * @template T Type of input value\n * @returns Reusable prune function\n */\nexport declare function createValidatePrune<T extends object>(): (input: unknown) => IValidation<T>;\n",
    "node_modules/typia/lib/module.d.ts": "import { StandardSchemaV1 } from \"@standard-schema/spec\";\nimport { AssertionGuard, IRandomGenerator, IValidation, Resolved } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\nexport * as functional from \"./functional\";\nexport * as http from \"./http\";\nexport * as llm from \"./llm\";\nexport * as json from \"./json\";\nexport * as misc from \"./misc\";\nexport * as notations from \"./notations\";\nexport * as protobuf from \"./protobuf\";\nexport * as reflect from \"./reflect\";\nexport * from \"./TypeGuardError\";\nexport * from \"./re-exports\";\n/**\n * Asserts type `T`.\n *\n * Performs runtime type checking against compile-time type `T`. Stops at first\n * mismatch and throws {@link TypeGuardError} containing:\n *\n * - `path`: Property path where error occurred (e.g., `\"input.user.age\"`)\n * - `expected`: Expected type string (e.g., `\"number & ExclusiveMinimum<19>\"`)\n * - `value`: Actual value that failed validation\n *\n * Related functions:\n *\n * - {@link is} — Returns `boolean` instead of throwing\n * - {@link validate} — Collects all errors instead of stopping at first\n * - {@link assertGuard} — Type guard with no return value (narrows type only)\n * - {@link assertEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to assert\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns The input value typed as `T`\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assert<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Asserts type `T`.\n *\n * Performs runtime type checking against compile-time type `T`. Stops at first\n * mismatch and throws {@link TypeGuardError} containing:\n *\n * - `path`: Property path where error occurred (e.g., `\"input.user.age\"`)\n * - `expected`: Expected type string (e.g., `\"number & ExclusiveMinimum<19>\"`)\n * - `value`: Actual value that failed validation\n *\n * Related functions:\n *\n * - {@link is} — Returns `boolean` instead of throwing\n * - {@link validate} — Collects all errors instead of stopping at first\n * - {@link assertGuard} — Type guard with no return value (narrows type only)\n * - {@link assertEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to assert\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns The input value typed as `T`\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assert<T>(input: unknown, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Asserts type `T` as assertion guard.\n *\n * Unlike {@link assert}, returns nothing (`asserts input is T`). After this\n * call, TypeScript narrows `input` to type `T` in subsequent code. Useful when\n * you need type narrowing with runtime validation but don't need the return\n * value.\n *\n * Throws {@link TypeGuardError} on first mismatch with `path`, `expected`, and\n * `value`.\n *\n * Related functions:\n *\n * - {@link assert} — Same validation but returns the input value\n * - {@link is} — Returns `boolean` instead of throwing\n * - {@link validate} — Collects all errors instead of throwing\n * - {@link assertGuardEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to assert (narrowed to `T` after call)\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertGuard<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): asserts input is T;\n/**\n * Asserts type `T` as assertion guard.\n *\n * Unlike {@link assert}, returns nothing (`asserts input is T`). After this\n * call, TypeScript narrows `input` to type `T` in subsequent code. Useful when\n * you need type narrowing with runtime validation but don't need the return\n * value.\n *\n * Throws {@link TypeGuardError} on first mismatch with `path`, `expected`, and\n * `value`.\n *\n * Related functions:\n *\n * - {@link assert} — Same validation but returns the input value\n * - {@link is} — Returns `boolean` instead of throwing\n * - {@link validate} — Collects all errors instead of throwing\n * - {@link assertGuardEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to assert (narrowed to `T` after call)\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertGuard<T>(input: unknown, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): asserts input is T;\n/**\n * Tests type `T`.\n *\n * Performs runtime type checking without throwing exceptions. Acts as\n * TypeScript type guard, narrowing the input type in conditional branches when\n * result is `true`.\n *\n * Related functions:\n *\n * - {@link assert} — Throws {@link TypeGuardError} with detailed error info on\n *   mismatch\n * - {@link validate} — Returns all errors without throwing\n * - {@link equals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to check\n * @param input Value to test\n * @returns `true` if valid, `false` otherwise (type predicate `input is T`)\n */\nexport declare function is<T>(input: T): input is T;\n/**\n * Tests type `T`.\n *\n * Performs runtime type checking without throwing exceptions. Acts as\n * TypeScript type guard, narrowing the input type in conditional branches when\n * result is `true`.\n *\n * Related functions:\n *\n * - {@link assert} — Throws {@link TypeGuardError} with detailed error info on\n *   mismatch\n * - {@link validate} — Returns all errors without throwing\n * - {@link equals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to check\n * @param input Value to test\n * @returns `true` if valid, `false` otherwise (type predicate `input is T`)\n */\nexport declare function is<T>(input: unknown): input is T;\n/**\n * Validates type `T`.\n *\n * Unlike {@link assert} which throws on first error, this function continues\n * checking and collects all type mismatches into {@link IValidation.errors}\n * array. Never throws.\n *\n * Return structure:\n *\n * - `success: true` → `data` contains validated input as `T`\n * - `success: false` → `errors` array of {@link IValidation.IError} with `path`,\n *   `expected`, `value`\n *\n * Related functions:\n *\n * - {@link assert} — Throws on first error instead of collecting all\n * - {@link is} — Simple boolean check\n * - {@link validateEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to validate\n * @returns {@link IValidation} <T> containing either `data` or `errors`\n */\nexport declare function validate<T>(input: T): IValidation<T>;\n/**\n * Validates type `T`.\n *\n * Unlike {@link assert} which throws on first error, this function continues\n * checking and collects all type mismatches into {@link IValidation.errors}\n * array. Never throws.\n *\n * Return structure:\n *\n * - `success: true` → `data` contains validated input as `T`\n * - `success: false` → `errors` array of {@link IValidation.IError} with `path`,\n *   `expected`, `value`\n *\n * Related functions:\n *\n * - {@link assert} — Throws on first error instead of collecting all\n * - {@link is} — Simple boolean check\n * - {@link validateEquals} — Also rejects properties not defined in `T`\n *\n * @template T Target type to validate against\n * @param input Value to validate\n * @returns {@link IValidation} <T> containing either `data` or `errors`\n */\nexport declare function validate<T>(input: unknown): IValidation<T>;\n/**\n * Asserts type `T` with strict equality.\n *\n * Stricter than {@link assert}: also fails when input contains any property not\n * defined in type `T`. For extra property errors, `expected` will be\n * `\"undefined\"`.\n *\n * Related functions:\n *\n * - {@link assert} — Allows extra properties\n * - {@link equals} — Boolean result without throwing\n * - {@link validateEquals} — Collects all errors without throwing\n * - {@link assertGuardEquals} — Type guard version with no return value\n *\n * @template T Target type for exact match\n * @param input Value to validate\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns The input value typed as `T`\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertEquals<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Asserts type `T` with strict equality.\n *\n * Stricter than {@link assert}: also fails when input contains any property not\n * defined in type `T`. For extra property errors, `expected` will be\n * `\"undefined\"`.\n *\n * Related functions:\n *\n * - {@link assert} — Allows extra properties\n * - {@link equals} — Boolean result without throwing\n * - {@link validateEquals} — Collects all errors without throwing\n * - {@link assertGuardEquals} — Type guard version with no return value\n *\n * @template T Target type for exact match\n * @param input Value to validate\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns The input value typed as `T`\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertEquals<T>(input: unknown, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): T;\n/**\n * Asserts type `T` with strict equality as assertion guard.\n *\n * Combines {@link assertGuard} with strict equality checking. Returns nothing\n * but narrows input to type `T`. Also fails when input contains properties not\n * in `T`.\n *\n * Related functions:\n *\n * - {@link assertGuard} — Allows extra properties\n * - {@link assertEquals} — Returns value instead of type guard\n * - {@link equals} — Boolean result without throwing\n * - {@link validateEquals} — Collects all errors without throwing\n *\n * @template T Target type for exact match\n * @param input Value to assert (narrowed to `T` after call)\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertGuardEquals<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): asserts input is T;\n/**\n * Asserts type `T` with strict equality as assertion guard.\n *\n * Combines {@link assertGuard} with strict equality checking. Returns nothing\n * but narrows input to type `T`. Also fails when input contains properties not\n * in `T`.\n *\n * Related functions:\n *\n * - {@link assertGuard} — Allows extra properties\n * - {@link assertEquals} — Returns value instead of type guard\n * - {@link equals} — Boolean result without throwing\n * - {@link validateEquals} — Collects all errors without throwing\n *\n * @template T Target type for exact match\n * @param input Value to assert (narrowed to `T` after call)\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @throws {TypeGuardError} When type mismatch or extra property detected\n */\nexport declare function assertGuardEquals<T>(input: unknown, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): asserts input is T;\n/**\n * Tests type `T` with strict equality.\n *\n * Stricter than {@link is}: also returns `false` when input contains any\n * property not defined in type `T`. Useful for detecting unexpected data or\n * typos.\n *\n * Related functions:\n *\n * - {@link is} — Allows extra properties\n * - {@link assertEquals} — Throws with detailed error info on mismatch\n * - {@link validateEquals} — Returns all errors without throwing\n *\n * @template T Target type for exact match\n * @param input Value to test\n * @returns `true` if valid, `false` otherwise (type predicate `input is T`)\n */\nexport declare function equals<T>(input: T): input is T;\n/**\n * Tests type `T` with strict equality.\n *\n * Stricter than {@link is}: also returns `false` when input contains any\n * property not defined in type `T`. Useful for detecting unexpected data or\n * typos.\n *\n * Related functions:\n *\n * - {@link is} — Allows extra properties\n * - {@link assertEquals} — Throws with detailed error info on mismatch\n * - {@link validateEquals} — Returns all errors without throwing\n *\n * @template T Target type for exact match\n * @param input Value to test\n * @returns `true` if valid, `false` otherwise (type predicate `input is T`)\n */\nexport declare function equals<T>(input: unknown): input is T;\n/**\n * Validates type `T` with strict equality.\n *\n * Combines {@link validate} with strict equality checking. Collects all errors\n * including extra property violations into {@link IValidation.errors} array.\n *\n * Return structure:\n *\n * - `success: true` → `data` contains validated input as `T`\n * - `success: false` → `errors` array with `path`, `expected`, `value` for each\n *   mismatch\n *\n * Related functions:\n *\n * - {@link validate} — Allows extra properties\n * - {@link assertEquals} — Throws on first error\n * - {@link equals} — Simple boolean check\n *\n * @template T Target type for exact match\n * @param input Value to validate\n * @returns {@link IValidation} <T> containing either `data` or `errors`\n */\nexport declare function validateEquals<T>(input: T): IValidation<T>;\n/**\n * Validates type `T` with strict equality.\n *\n * Combines {@link validate} with strict equality checking. Collects all errors\n * including extra property violations into {@link IValidation.errors} array.\n *\n * Return structure:\n *\n * - `success: true` → `data` contains validated input as `T`\n * - `success: false` → `errors` array with `path`, `expected`, `value` for each\n *   mismatch\n *\n * Related functions:\n *\n * - {@link validate} — Allows extra properties\n * - {@link assertEquals} — Throws on first error\n * - {@link equals} — Simple boolean check\n *\n * @template T Target type for exact match\n * @param input Value to validate\n * @returns {@link IValidation} <T> containing either `data` or `errors`\n */\nexport declare function validateEquals<T>(input: unknown): IValidation<T>;\n/**\n * Generates random data of type `T`.\n *\n * Creates random instance conforming to compile-time type `T`. Generates only\n * primitive data; methods in `T` are ignored. If `T` has `toJSON()` method,\n * generates its return type instead.\n *\n * @template T Type of data to generate\n * @param generator Custom random generator implementing {@link IRandomGenerator}\n * @returns Randomly generated data as `Resolved<T>`\n * @danger You must configure the generic argument `T`\n */\nexport declare function random(generator?: Partial<IRandomGenerator>): never;\n/**\n * Generates random data of type `T`.\n *\n * Creates random instance conforming to compile-time type `T`. Generates only\n * primitive data; methods in `T` are ignored. If `T` has `toJSON()` method,\n * generates its return type instead.\n *\n * @template T Type of data to generate\n * @param generator Custom random generator implementing {@link IRandomGenerator}\n * @returns Randomly generated data as `Resolved<T>`\n */\nexport declare function random<T>(generator?: Partial<IRandomGenerator>): Resolved<T>;\n/**\n * Creates reusable {@link assert} function.\n *\n * Returns a function that can be called multiple times without recompilation.\n * Useful when the same type validation is needed repeatedly.\n *\n * @template T Target type to validate against\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assert function `(input: unknown) => T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssert(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assert} function.\n *\n * Returns a function that can be called multiple times without recompilation.\n * Useful when the same type validation is needed repeatedly.\n *\n * @template T Target type to validate against\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assert function `(input: unknown) => T`\n */\nexport declare function createAssert<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => T;\n/**\n * Creates reusable {@link assertGuard} function.\n *\n * Returns a reusable type guard assertion function.\n *\n * TypeScript requirement: You must declare the variable type explicitly. `const\n * fn: AssertionGuard<T> = createAssertGuard<T>()` — otherwise compile error.\n *\n * @template T Target type to validate against\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertion guard function\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertGuard(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertGuard} function.\n *\n * Returns a reusable type guard assertion function.\n *\n * TypeScript requirement: You must declare the variable type explicitly. `const\n * fn: AssertionGuard<T> = createAssertGuard<T>()` — otherwise compile error.\n *\n * @template T Target type to validate against\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertion guard function\n */\nexport declare function createAssertGuard<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => AssertionGuard<T>;\n/**\n * Creates reusable {@link is} function.\n *\n * Returns a type guard function that can be called multiple times without\n * recompilation.\n *\n * @template T Target type to check\n * @returns Reusable type guard function `(input: unknown) => input is T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIs(): never;\n/**\n * Creates reusable {@link is} function.\n *\n * Returns a type guard function that can be called multiple times without\n * recompilation.\n *\n * @template T Target type to check\n * @returns Reusable type guard function `(input: unknown) => input is T`\n */\nexport declare function createIs<T>(): (input: unknown) => input is T;\n/**\n * Creates reusable {@link validate} function.\n *\n * Returns a validation function that can be called multiple times without\n * recompilation. Also implements {@link StandardSchemaV1} interface for\n * interoperability.\n *\n * @template T Target type to validate against\n * @returns Reusable validate function `(input: unknown) => IValidation<T>`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidate(): never;\n/**\n * Creates reusable {@link validate} function.\n *\n * Returns a validation function that can be called multiple times without\n * recompilation. Also implements {@link StandardSchemaV1} interface for\n * interoperability.\n *\n * @template T Target type to validate against\n * @returns Reusable validate function `(input: unknown) => IValidation<T>`\n */\nexport declare function createValidate<T>(): ((input: unknown) => IValidation<T>) & StandardSchemaV1<T, T>;\n/**\n * Creates reusable {@link assertEquals} function.\n *\n * Returns a strict assertion function that rejects superfluous properties. Can\n * be called multiple times without recompilation.\n *\n * @template T Target type for exact match\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertEquals function `(input: unknown) => T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertEquals(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertEquals} function.\n *\n * Returns a strict assertion function that rejects superfluous properties. Can\n * be called multiple times without recompilation.\n *\n * @template T Target type for exact match\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertEquals function `(input: unknown) => T`\n */\nexport declare function createAssertEquals<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => T;\n/**\n * Creates reusable {@link assertGuardEquals} function.\n *\n * Returns a strict assertion guard that rejects superfluous properties.\n *\n * TypeScript requirement: You must declare the variable type explicitly. `const\n * fn: AssertionGuard<T> = createAssertGuardEquals<T>()` — otherwise compile\n * error.\n *\n * @template T Target type for exact match\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertion guard function\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertGuardEquals(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertGuardEquals} function.\n *\n * Returns a strict assertion guard that rejects superfluous properties.\n *\n * TypeScript requirement: You must declare the variable type explicitly. `const\n * fn: AssertionGuard<T> = createAssertGuardEquals<T>()` — otherwise compile\n * error.\n *\n * @template T Target type for exact match\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable assertion guard function\n */\nexport declare function createAssertGuardEquals<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: unknown) => AssertionGuard<T>;\n/**\n * Creates reusable {@link equals} function.\n *\n * Returns a strict type guard that rejects superfluous properties. Can be\n * called multiple times without recompilation.\n *\n * @template T Target type for exact match\n * @returns Reusable type guard function `(input: unknown) => input is T`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createEquals(): never;\n/**\n * Creates reusable {@link equals} function.\n *\n * Returns a strict type guard that rejects superfluous properties. Can be\n * called multiple times without recompilation.\n *\n * @template T Target type for exact match\n * @returns Reusable type guard function `(input: unknown) => input is T`\n */\nexport declare function createEquals<T>(): (input: unknown) => input is T;\n/**\n * Creates reusable {@link validateEquals} function.\n *\n * Returns a strict validation function that rejects superfluous properties.\n * Also implements {@link StandardSchemaV1} interface for interoperability.\n *\n * @template T Target type for exact match\n * @returns Reusable validateEquals function `(input: unknown) =>\n *   IValidation<T>`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateEquals(): never;\n/**\n * Creates reusable {@link validateEquals} function.\n *\n * Returns a strict validation function that rejects superfluous properties.\n * Also implements {@link StandardSchemaV1} interface for interoperability.\n *\n * @template T Target type for exact match\n * @returns Reusable validateEquals function `(input: unknown) =>\n *   IValidation<T>`\n */\nexport declare function createValidateEquals<T>(): ((input: unknown) => IValidation<T>) & StandardSchemaV1<T, T>;\n/**\n * Creates reusable {@link random} function.\n *\n * Returns a random data generator that can be called multiple times without\n * recompilation.\n *\n * @template T Type of data to generate\n * @param generator Custom random generator implementing {@link IRandomGenerator}\n * @returns Reusable random function `() => Resolved<T>`\n * @danger You must configure the generic argument `T`\n */\nexport declare function createRandom(generator?: Partial<IRandomGenerator>): never;\n/**\n * Creates reusable {@link random} function.\n *\n * Returns a random data generator that can be called multiple times without\n * recompilation.\n *\n * @template T Type of data to generate\n * @param generator Custom random generator implementing {@link IRandomGenerator}\n * @returns Reusable random function `() => Resolved<T>`\n */\nexport declare function createRandom<T>(generator?: Partial<IRandomGenerator>): () => Resolved<T>;\n",
    "node_modules/typia/lib/notations.d.ts": "import { CamelCase, IValidation, PascalCase, SnakeCase } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Converts property names to camelCase.\n *\n * Transforms all property names in the object (including nested) to camelCase\n * convention. Creates a new object with renamed properties.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertCamel} — Throws on type mismatch\n * - {@link isCamel} — Returns `null` on type mismatch\n * - {@link validateCamel} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with camelCase property names\n */\nexport declare function camel<T>(input: T): CamelCase<T>;\n/**\n * Converts property names to camelCase with assertion.\n *\n * Transforms all property names to camelCase with {@link assert} validation.\n * Throws {@link TypeGuardError} on type mismatch.\n *\n * Related functions:\n *\n * - {@link camel} — No validation\n * - {@link isCamel} — Returns `null` instead of throwing\n * - {@link validateCamel} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns New object with camelCase property names\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertCamel<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): CamelCase<T>;\n/**\n * Converts property names to camelCase with type checking.\n *\n * Transforms all property names to camelCase with {@link is} validation. Returns\n * `null` on type mismatch.\n *\n * Related functions:\n *\n * - {@link camel} — No validation\n * - {@link assertCamel} — Throws instead of returning `null`\n * - {@link validateCamel} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with camelCase property names, or `null` if invalid\n */\nexport declare function isCamel<T>(input: T): CamelCase<T> | null;\n/**\n * Converts property names to camelCase with validation.\n *\n * Transforms all property names to camelCase with {@link validate} validation.\n * Returns {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with converted object.\n *\n * Related functions:\n *\n * - {@link camel} — No validation\n * - {@link assertCamel} — Throws on first error\n * - {@link isCamel} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns Validation result containing converted object or errors\n */\nexport declare function validateCamel<T>(input: T): IValidation<CamelCase<T>>;\n/**\n * Converts property names to PascalCase.\n *\n * Transforms all property names in the object (including nested) to PascalCase\n * convention. Creates a new object with renamed properties.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertPascal} — Throws on type mismatch\n * - {@link isPascal} — Returns `null` on type mismatch\n * - {@link validatePascal} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with PascalCase property names\n */\nexport declare function pascal<T>(input: T): PascalCase<T>;\n/**\n * Converts property names to PascalCase with assertion.\n *\n * Transforms all property names to PascalCase with {@link assert} validation.\n * Throws {@link TypeGuardError} on type mismatch.\n *\n * Related functions:\n *\n * - {@link pascal} — No validation\n * - {@link isPascal} — Returns `null` instead of throwing\n * - {@link validatePascal} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns New object with PascalCase property names\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertPascal<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): PascalCase<T>;\n/**\n * Converts property names to PascalCase with type checking.\n *\n * Transforms all property names to PascalCase with {@link is} validation.\n * Returns `null` on type mismatch.\n *\n * Related functions:\n *\n * - {@link pascal} — No validation\n * - {@link assertPascal} — Throws instead of returning `null`\n * - {@link validatePascal} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with PascalCase property names, or `null` if invalid\n */\nexport declare function isPascal<T>(input: T): PascalCase<T> | null;\n/**\n * Converts property names to PascalCase with validation.\n *\n * Transforms all property names to PascalCase with {@link validate} validation.\n * Returns {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with converted object.\n *\n * Related functions:\n *\n * - {@link pascal} — No validation\n * - {@link assertPascal} — Throws on first error\n * - {@link isPascal} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns Validation result containing converted object or errors\n */\nexport declare function validatePascal<T>(input: T): IValidation<PascalCase<T>>;\n/**\n * Converts property names to snake_case.\n *\n * Transforms all property names in the object (including nested) to snake_case\n * convention. Creates a new object with renamed properties.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertSnake} — Throws on type mismatch\n * - {@link isSnake} — Returns `null` on type mismatch\n * - {@link validateSnake} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with snake_case property names\n */\nexport declare function snake<T>(input: T): SnakeCase<T>;\n/**\n * Converts property names to snake_case with assertion.\n *\n * Transforms all property names to snake_case with {@link assert} validation.\n * Throws {@link TypeGuardError} on type mismatch.\n *\n * Related functions:\n *\n * - {@link snake} — No validation\n * - {@link isSnake} — Returns `null` instead of throwing\n * - {@link validateSnake} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns New object with snake_case property names\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n */\nexport declare function assertSnake<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): SnakeCase<T>;\n/**\n * Converts property names to snake_case with type checking.\n *\n * Transforms all property names to snake_case with {@link is} validation.\n * Returns `null` on type mismatch.\n *\n * Related functions:\n *\n * - {@link snake} — No validation\n * - {@link assertSnake} — Throws instead of returning `null`\n * - {@link validateSnake} — Returns detailed validation errors\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns New object with snake_case property names, or `null` if invalid\n */\nexport declare function isSnake<T>(input: T): SnakeCase<T> | null;\n/**\n * Converts property names to snake_case with validation.\n *\n * Transforms all property names to snake_case with {@link validate} validation.\n * Returns {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with converted object.\n *\n * Related functions:\n *\n * - {@link snake} — No validation\n * - {@link assertSnake} — Throws on first error\n * - {@link isSnake} — Returns `null` instead of error details\n *\n * @template T Type of input value\n * @param input Object to convert\n * @returns Validation result containing converted object or errors\n */\nexport declare function validateSnake<T>(input: T): IValidation<SnakeCase<T>>;\n/**\n * Creates reusable {@link camel} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createCamel(): never;\n/**\n * Creates reusable {@link camel} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createCamel<T>(): (input: T) => CamelCase<T>;\n/**\n * Creates reusable {@link assertCamel} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertCamel(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertCamel} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable conversion function\n */\nexport declare function createAssertCamel<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: T) => CamelCase<T>;\n/**\n * Creates reusable {@link isCamel} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsCamel(): never;\n/**\n * Creates reusable {@link isCamel} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createIsCamel<T>(): (input: T) => CamelCase<T> | null;\n/**\n * Creates reusable {@link validateCamel} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateCamel(): never;\n/**\n * Creates reusable {@link validateCamel} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createValidateCamel<T>(): (input: T) => IValidation<CamelCase<T>>;\n/**\n * Creates reusable {@link pascal} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createPascal(): never;\n/**\n * Creates reusable {@link pascal} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createPascal<T>(): (input: T) => PascalCase<T>;\n/**\n * Creates reusable {@link assertPascal} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertPascal(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertPascal} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable conversion function\n */\nexport declare function createAssertPascal<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: T) => PascalCase<T>;\n/**\n * Creates reusable {@link isPascal} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsPascal(): never;\n/**\n * Creates reusable {@link isPascal} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createIsPascal<T>(): (input: T) => PascalCase<T> | null;\n/**\n * Creates reusable {@link validatePascal} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidatePascal(): never;\n/**\n * Creates reusable {@link validatePascal} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createValidatePascal<T>(): (input: T) => IValidation<PascalCase<T>>;\n/**\n * Creates reusable {@link snake} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createSnake(): never;\n/**\n * Creates reusable {@link snake} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createSnake<T>(): (input: T) => SnakeCase<T>;\n/**\n * Creates reusable {@link assertSnake} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertSnake(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertSnake} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable conversion function\n */\nexport declare function createAssertSnake<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: T) => SnakeCase<T>;\n/**\n * Creates reusable {@link isSnake} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsSnake(): never;\n/**\n * Creates reusable {@link isSnake} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createIsSnake<T>(): (input: T) => SnakeCase<T> | null;\n/**\n * Creates reusable {@link validateSnake} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateSnake(): never;\n/**\n * Creates reusable {@link validateSnake} function.\n *\n * @template T Type of input value\n * @returns Reusable conversion function\n */\nexport declare function createValidateSnake<T>(): (input: T) => IValidation<SnakeCase<T>>;\n",
    "node_modules/typia/lib/programmers/TypiaProgrammer.d.ts": "import { TypiaGenerator } from \"@typia/transform\";\n",
    "node_modules/typia/lib/protobuf.d.ts": "import { IValidation, Resolved } from \"@typia/interface\";\nimport { TypeGuardError } from \"./TypeGuardError\";\n/**\n * Generates Protocol Buffer message schema.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function message(): never;\n/**\n * Generates Protocol Buffer message schema for type `T`.\n *\n * Creates a `.proto` message definition string from a TypeScript type. Use for\n * sharing schemas with other languages/frameworks.\n *\n * Protocol Buffer has limited expressiveness compared to TypeScript.\n * Incompatible types cause compilation errors.\n *\n * @template T Target type\n * @returns Protocol Buffer message schema string\n * @see https://typia.io/docs/protobuf/message/#restrictions\n */\nexport declare function message<T>(): string;\n/**\n * Decodes Protocol Buffer binary.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function decode(input: Uint8Array): never;\n/**\n * Decodes Protocol Buffer binary to type `T`.\n *\n * Converts Protocol Buffer binary data to a TypeScript instance. Binary data\n * must have been encoded from a `T`-typed value—invalid data causes undefined\n * behavior or errors.\n *\n * For type safety, ensure data was encoded via:\n *\n * - {@link assertEncode} — Encodes with type assertion\n * - {@link isEncode} — Encodes with type checking\n * - {@link validateEncode} — Encodes with validation\n *\n * Note: Decoder validation ({@link assertDecode}, etc.) only checks custom tags\n * like `number & Minimum<7>`, not structural type safety.\n *\n * @template T Target type\n * @param input Protocol Buffer binary data\n * @returns Decoded value of type `T`\n */\nexport declare function decode<T>(input: Uint8Array): Resolved<T>;\n/**\n * Decodes Protocol Buffer binary with assertion.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function assertDecode(input: Uint8Array, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Decodes Protocol Buffer binary with assertion (partial safety).\n *\n * Combines {@link decode} with {@link assert}. Throws {@link TypeGuardError} on\n * validation failure.\n *\n * Warning: Only validates custom tags (e.g., `number & Minimum<7>`, `string &\n * Format<\"uuid\">`), not structural type correctness. Ensure source data was\n * encoded with type-safe encoders.\n *\n * Related functions:\n *\n * - {@link decode} — No validation\n * - {@link isDecode} — Returns `null` instead of throwing\n * - {@link validateDecode} — Returns detailed validation errors\n *\n * @template T Target type\n * @param input Protocol Buffer binary data\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Decoded value of type `T`\n * @throws {TypeGuardError} When custom tag validation fails\n */\nexport declare function assertDecode<T>(input: Uint8Array, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Resolved<T>;\n/**\n * Decodes Protocol Buffer binary with type checking.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function isDecode(input: Uint8Array): never;\n/**\n * Decodes Protocol Buffer binary with type checking (partial safety).\n *\n * Combines {@link decode} with {@link is}. Returns `null` on validation failure.\n *\n * Warning: Only validates custom tags (e.g., `number & Minimum<7>`, `string &\n * Format<\"uuid\">`), not structural type correctness. Ensure source data was\n * encoded with type-safe encoders.\n *\n * Related functions:\n *\n * - {@link decode} — No validation\n * - {@link assertDecode} — Throws instead of returning `null`\n * - {@link validateDecode} — Returns detailed validation errors\n *\n * @template T Target type\n * @param input Protocol Buffer binary data\n * @returns Decoded value of type `T`, or `null` if invalid\n */\nexport declare function isDecode<T>(input: Uint8Array): Resolved<T> | null;\n/**\n * Decodes Protocol Buffer binary with validation.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function validateDecode(input: Uint8Array): never;\n/**\n * Decodes Protocol Buffer binary with validation (partial safety).\n *\n * Combines {@link decode} with {@link validate}. Returns\n * {@link IValidation.IFailure} with errors on mismatch, or\n * {@link IValidation.ISuccess} with decoded value.\n *\n * Warning: Only validates custom tags (e.g., `number & Minimum<7>`, `string &\n * Format<\"uuid\">`), not structural type correctness. Ensure source data was\n * encoded with type-safe encoders.\n *\n * Related functions:\n *\n * - {@link decode} — No validation\n * - {@link assertDecode} — Throws on first error\n * - {@link isDecode} — Returns `null` instead of error details\n *\n * @template T Target type\n * @param input Protocol Buffer binary data\n * @returns Validation result containing decoded value or errors\n */\nexport declare function validateDecode<T>(input: Uint8Array): IValidation<Resolved<T>>;\n/**\n * Encodes value to Protocol Buffer binary.\n *\n * Converts a TypeScript value to Protocol Buffer binary format.\n *\n * Does not validate the input. For validation, use:\n *\n * - {@link assertEncode} — Throws on type mismatch\n * - {@link isEncode} — Returns `null` on type mismatch\n * - {@link validateEncode} — Returns detailed validation errors\n *\n * Protocol Buffer has limited expressiveness compared to TypeScript.\n * Incompatible types cause compilation errors.\n *\n * @template T Type of input value\n * @param input Value to encode\n * @returns Protocol Buffer binary data\n * @see https://typia.io/docs/protobuf/message/#restrictions\n */\nexport declare function encode<T>(input: T): Uint8Array;\n/**\n * Encodes value to Protocol Buffer binary with assertion.\n *\n * Combines {@link assert} with {@link encode}. Throws {@link TypeGuardError} on\n * type mismatch.\n *\n * Related functions:\n *\n * - {@link encode} — No validation\n * - {@link isEncode} — Returns `null` instead of throwing\n * - {@link validateEncode} — Returns detailed validation errors\n *\n * Protocol Buffer has limited expressiveness compared to TypeScript.\n * Incompatible types cause compilation errors.\n *\n * @template T Type of input value\n * @param input Value to encode\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Protocol Buffer binary data\n * @throws {TypeGuardError} When input doesn't conform to type `T`\n * @see https://typia.io/docs/protobuf/message/#restrictions\n */\nexport declare function assertEncode<T>(input: T, errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): Uint8Array;\n/**\n * Encodes value to Protocol Buffer binary with type checking.\n *\n * Combines {@link is} with {@link encode}. Returns `null` on type mismatch.\n *\n * Related functions:\n *\n * - {@link encode} — No validation\n * - {@link assertEncode} — Throws instead of returning `null`\n * - {@link validateEncode} — Returns detailed validation errors\n *\n * Protocol Buffer has limited expressiveness compared to TypeScript.\n * Incompatible types cause compilation errors.\n *\n * @template T Type of input value\n * @param input Value to encode\n * @returns Protocol Buffer binary data, or `null` if invalid\n * @see https://typia.io/docs/protobuf/message/#restrictions\n */\nexport declare function isEncode<T>(input: T): Uint8Array | null;\n/**\n * Encodes value to Protocol Buffer binary with validation.\n *\n * Combines {@link validate} with {@link encode}. Returns\n * {@link IValidation.IFailure} with all errors on mismatch, or\n * {@link IValidation.ISuccess} with binary data.\n *\n * Related functions:\n *\n * - {@link encode} — No validation\n * - {@link assertEncode} — Throws on first error\n * - {@link isEncode} — Returns `null` instead of error details\n *\n * Protocol Buffer has limited expressiveness compared to TypeScript.\n * Incompatible types cause compilation errors.\n *\n * @template T Type of input value\n * @param input Value to encode\n * @returns Validation result containing binary data or errors\n * @see https://typia.io/docs/protobuf/message/#restrictions\n */\nexport declare function validateEncode<T>(input: T): IValidation<Uint8Array>;\n/**\n * Creates reusable {@link decode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createDecode(): never;\n/**\n * Creates reusable {@link decode} function.\n *\n * @template T Target type\n * @returns Reusable decoder function\n */\nexport declare function createDecode<T>(): (input: Uint8Array) => Resolved<T>;\n/**\n * Creates reusable {@link isDecode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsDecode(): never;\n/**\n * Creates reusable {@link isDecode} function.\n *\n * @template T Target type\n * @returns Reusable decoder function\n */\nexport declare function createIsDecode<T>(): (input: Uint8Array) => Resolved<T> | null;\n/**\n * Creates reusable {@link assertDecode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertDecode(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertDecode} function.\n *\n * @template T Target type\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable decoder function\n */\nexport declare function createAssertDecode<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: Uint8Array) => Resolved<T>;\n/**\n * Creates reusable {@link validateDecode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateDecode(): never;\n/**\n * Creates reusable {@link validateDecode} function.\n *\n * @template T Target type\n * @returns Reusable decoder function\n */\nexport declare function createValidateDecode<T>(): (input: Uint8Array) => IValidation<Resolved<T>>;\n/**\n * Creates reusable {@link encode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createEncode(): never;\n/**\n * Creates reusable {@link encode} function.\n *\n * @template T Type of input value\n * @returns Reusable encoder function\n */\nexport declare function createEncode<T>(): (input: T) => Uint8Array;\n/**\n * Creates reusable {@link isEncode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createIsEncode(): never;\n/**\n * Creates reusable {@link isEncode} function.\n *\n * @template T Type of input value\n * @returns Reusable encoder function\n */\nexport declare function createIsEncode<T>(): (input: T) => Uint8Array | null;\n/**\n * Creates reusable {@link assertEncode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createAssertEncode(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): never;\n/**\n * Creates reusable {@link assertEncode} function.\n *\n * @template T Type of input value\n * @param errorFactory Custom error factory receiving\n *   {@link TypeGuardError.IProps}\n * @returns Reusable encoder function\n */\nexport declare function createAssertEncode<T>(errorFactory?: undefined | ((props: TypeGuardError.IProps) => Error)): (input: T) => Uint8Array;\n/**\n * Creates reusable {@link validateEncode} function.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function createValidateEncode(): never;\n/**\n * Creates reusable {@link validateEncode} function.\n *\n * @template T Type of input value\n * @returns Reusable encoder function\n */\nexport declare function createValidateEncode<T>(): (input: T) => IValidation<Uint8Array>;\n",
    "node_modules/typia/lib/re-exports.d.ts": "export { AssertionGuard, IJsonParseResult, IValidation, IRandomGenerator, OpenApi, IJsonSchemaCollection, IJsonSchemaUnit, ILlmController, ILlmApplication, ILlmFunction, ILlmStructuredOutput, ILlmSchema, IMetadataSchema, IMetadataSchemaCollection, IMetadataSchemaUnit, IMetadataComponents, IMetadataTypeTag, IJsDocTagInfo, Primitive, Resolved, CamelCase, PascalCase, SnakeCase, IReadableURLSearchParams, tags, } from \"@typia/interface\";\n",
    "node_modules/typia/lib/reflect.d.ts": "import { IMetadataSchemaCollection, IMetadataSchemaUnit } from \"@typia/interface\";\n/**\n * Generates metadata schemas for multiple types.\n *\n * @danger You must configure the generic argument `Types`\n */\nexport declare function schemas(): never;\n/**\n * Generates metadata schemas for multiple types.\n *\n * Creates {@link IMetadataSchemaCollection} containing metadata for all types in\n * the tuple. Collection types (Array, Tuple, Object) are stored in\n * `components`. Alias types are stored in `aliases`.\n *\n * @template Types Tuple of target types\n * @returns Metadata schema collection\n */\nexport declare function schemas<Types extends unknown[]>(): IMetadataSchemaCollection;\n/**\n * Generates metadata schema for a single type.\n *\n * @danger You must configure the generic argument `Type`\n */\nexport declare function schema(): never;\n/**\n * Generates metadata schema for a single type.\n *\n * Creates {@link IMetadataSchemaUnit} containing metadata for the type.\n *\n * @template Type Target type\n * @returns Metadata schema unit\n */\nexport declare function schema<Type>(): IMetadataSchemaUnit;\n/**\n * Gets the runtime type name of type `T`.\n *\n * @danger You must configure the generic argument `T`\n */\nexport declare function name(): never;\n/**\n * Gets the runtime type name of type `T`.\n *\n * Returns a string representation of the type name.\n *\n * @template T Target type\n * @template Regular If `true`, returns regular (normalized) name\n * @returns Type name string\n */\nexport declare function name<T, Regular extends boolean = false>(): string;\n",
    "node_modules/typia/lib/transform.d.ts": "import transform from \"@typia/transform\";\nexport default transform;\nexport * from \"@typia/transform\";\n",
    "node_modules/typia/lib/transformers/NoTransformConfigurationError.d.ts": "export {};\n",
    "node_modules/typia/package.json": "{\n  \"name\": \"typia\",\n  \"version\": \"12.0.1\",\n  \"description\": \"Superfast runtime validators with only one line\",\n  \"main\": \"lib/index.js\",\n  \"exports\": {\n    \".\": {\n      \"types\": \"./lib/index.d.ts\",\n      \"import\": \"./lib/index.mjs\",\n      \"default\": \"./lib/index.js\"\n    },\n    \"./lib/transform\": {\n      \"types\": \"./lib/transform.d.ts\",\n      \"import\": \"./lib/transform.mjs\",\n      \"default\": \"./lib/transform.js\"\n    },\n    \"./lib/internal/*\": {\n      \"types\": \"./lib/internal/*.d.ts\",\n      \"import\": \"./lib/internal/*.mjs\",\n      \"default\": \"./lib/internal/*.js\"\n    },\n    \"./package.json\": \"./package.json\"\n  },\n  \"bin\": {\n    \"typia\": \"./lib/executable/typia.js\"\n  },\n  \"tsp\": {\n    \"tscOptions\": {\n      \"parseAllJsDoc\": true\n    }\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/samchon/typia\"\n  },\n  \"author\": \"Jeongho Nam\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/samchon/typia/issues\"\n  },\n  \"homepage\": \"https://typia.io\",\n  \"dependencies\": {\n    \"@standard-schema/spec\": \"^1.0.0\",\n    \"commander\": \"^10.0.0\",\n    \"comment-json\": \"^4.2.3\",\n    \"inquirer\": \"^8.2.5\",\n    \"package-manager-detector\": \"^0.2.0\",\n    \"randexp\": \"^0.5.3\",\n    \"@typia/core\": \"^12.0.1\",\n    \"@typia/interface\": \"^12.0.1\",\n    \"@typia/transform\": \"^12.0.1\",\n    \"@typia/utils\": \"^12.0.1\"\n  },\n  \"peerDependencies\": {\n    \"typescript\": \">=4.8.0 <5.10.0\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-commonjs\": \"^29.0.0\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.3\",\n    \"@rollup/plugin-typescript\": \"^12.3.0\",\n    \"@types/inquirer\": \"^8.2.5\",\n    \"@types/node\": \"^25.3.0\",\n    \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.6.3\",\n    \"@typescript-eslint/eslint-plugin\": \"^8.1.0\",\n    \"@typescript-eslint/parser\": \"^8.1.0\",\n    \"chalk\": \"^4.0.0\",\n    \"eslint-plugin-deprecation\": \"^3.0.0\",\n    \"rimraf\": \"^6.1.2\",\n    \"rollup\": \"^4.56.0\",\n    \"rollup-plugin-auto-external\": \"^2.0.0\",\n    \"rollup-plugin-node-externals\": \"^8.1.2\",\n    \"suppress-warnings\": \"^1.0.2\",\n    \"tinyglobby\": \"^0.2.12\",\n    \"ts-node\": \"^10.9.2\",\n    \"typescript\": \"~5.9.3\"\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"README.md\",\n    \"package.json\",\n    \"lib\",\n    \"src\"\n  ],\n  \"keywords\": [\n    \"fast\",\n    \"json\",\n    \"stringify\",\n    \"typescript\",\n    \"transform\",\n    \"ajv\",\n    \"io-ts\",\n    \"zod\",\n    \"schema\",\n    \"json-schema\",\n    \"generator\",\n    \"assert\",\n    \"clone\",\n    \"is\",\n    \"validate\",\n    \"equal\",\n    \"runtime\",\n    \"type\",\n    \"typebox\",\n    \"checker\",\n    \"validator\",\n    \"safe\",\n    \"parse\",\n    \"prune\",\n    \"random\",\n    \"protobuf\",\n    \"llm\",\n    \"llm-function-calling\",\n    \"structured-output\",\n    \"openai\",\n    \"chatgpt\",\n    \"claude\",\n    \"gemini\",\n    \"llama\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"scripts\": {\n    \"build\": \"rimraf lib && tsc && rollup -c && cp ../../README.md README.md\",\n    \"dev\": \"rimraf lib && tsc --watch\"\n  },\n  \"types\": \"lib/index.d.ts\",\n  \"module\": \"lib/index.mjs\"\n}",
    "node_modules/undici-types/agent.d.ts": "import { URL } from 'url'\nimport Pool from './pool'\nimport Dispatcher from \"./dispatcher\";\n\nexport default Agent\n\ndeclare class Agent extends Dispatcher{\n  constructor(opts?: Agent.Options)\n  /** `true` after `dispatcher.close()` has been called. */\n  closed: boolean;\n  /** `true` after `dispatcher.destroyed()` has been called or `dispatcher.close()` has been called and the dispatcher shutdown has completed. */\n  destroyed: boolean;\n  /** Dispatches a request. */\n  dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;\n}\n\ndeclare namespace Agent {\n  export interface Options extends Pool.Options {\n    /** Default: `(origin, opts) => new Pool(origin, opts)`. */\n    factory?(origin: string | URL, opts: Object): Dispatcher;\n    /** Integer. Default: `0` */\n    maxRedirections?: number;\n\n    interceptors?: { Agent?: readonly Dispatcher.DispatchInterceptor[] } & Pool.Options[\"interceptors\"]\n  }\n\n  export interface DispatchOptions extends Dispatcher.DispatchOptions {\n    /** Integer. */\n    maxRedirections?: number;\n  }\n}\n",
    "node_modules/undici-types/api.d.ts": "import { URL, UrlObject } from 'url'\nimport { Duplex } from 'stream'\nimport Dispatcher from './dispatcher'\n\nexport {\n  request,\n  stream,\n  pipeline,\n  connect,\n  upgrade,\n}\n\n/** Performs an HTTP request. */\ndeclare function request(\n  url: string | URL | UrlObject,\n  options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path' | 'method'> & Partial<Pick<Dispatcher.RequestOptions, 'method'>>,\n): Promise<Dispatcher.ResponseData>;\n\n/** A faster version of `request`. */\ndeclare function stream(\n  url: string | URL | UrlObject,\n  options: { dispatcher?: Dispatcher } & Omit<Dispatcher.RequestOptions, 'origin' | 'path'>,\n  factory: Dispatcher.StreamFactory\n): Promise<Dispatcher.StreamData>;\n\n/** For easy use with `stream.pipeline`. */\ndeclare function pipeline(\n  url: string | URL | UrlObject,\n  options: { dispatcher?: Dispatcher } & Omit<Dispatcher.PipelineOptions, 'origin' | 'path'>,\n  handler: Dispatcher.PipelineHandler\n): Duplex;\n\n/** Starts two-way communications with the requested resource. */\ndeclare function connect(\n  url: string | URL | UrlObject,\n  options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.ConnectOptions, 'origin' | 'path'>\n): Promise<Dispatcher.ConnectData>;\n\n/** Upgrade to a different protocol. */\ndeclare function upgrade(\n  url: string | URL | UrlObject,\n  options?: { dispatcher?: Dispatcher } & Omit<Dispatcher.UpgradeOptions, 'origin' | 'path'>\n): Promise<Dispatcher.UpgradeData>;\n",
    "node_modules/undici-types/balanced-pool.d.ts": "import Pool from './pool'\nimport Dispatcher from './dispatcher'\nimport { URL } from 'url'\n\nexport default BalancedPool\n\ntype BalancedPoolConnectOptions = Omit<Dispatcher.ConnectOptions, \"origin\">;\n\ndeclare class BalancedPool extends Dispatcher {\n  constructor(url: string | string[] | URL | URL[], options?: Pool.Options);\n\n  addUpstream(upstream: string | URL): BalancedPool;\n  removeUpstream(upstream: string | URL): BalancedPool;\n  upstreams: Array<string>;\n\n  /** `true` after `pool.close()` has been called. */\n  closed: boolean;\n  /** `true` after `pool.destroyed()` has been called or `pool.close()` has been called and the pool shutdown has completed. */\n  destroyed: boolean;\n\n  // Override dispatcher APIs.\n  override connect(\n    options: BalancedPoolConnectOptions\n  ): Promise<Dispatcher.ConnectData>;\n  override connect(\n    options: BalancedPoolConnectOptions,\n    callback: (err: Error | null, data: Dispatcher.ConnectData) => void\n  ): void;\n}\n",
    "node_modules/undici-types/cache.d.ts": "import type { RequestInfo, Response, Request } from './fetch'\n\nexport interface CacheStorage {\n  match (request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>,\n  has (cacheName: string): Promise<boolean>,\n  open (cacheName: string): Promise<Cache>,\n  delete (cacheName: string): Promise<boolean>,\n  keys (): Promise<string[]>\n}\n\ndeclare const CacheStorage: {\n  prototype: CacheStorage\n  new(): CacheStorage\n}\n\nexport interface Cache {\n  match (request: RequestInfo, options?: CacheQueryOptions): Promise<Response | undefined>,\n  matchAll (request?: RequestInfo, options?: CacheQueryOptions): Promise<readonly Response[]>,\n  add (request: RequestInfo): Promise<undefined>,\n  addAll (requests: RequestInfo[]): Promise<undefined>,\n  put (request: RequestInfo, response: Response): Promise<undefined>,\n  delete (request: RequestInfo, options?: CacheQueryOptions): Promise<boolean>,\n  keys (request?: RequestInfo, options?: CacheQueryOptions): Promise<readonly Request[]>\n}\n\nexport interface CacheQueryOptions {\n  ignoreSearch?: boolean,\n  ignoreMethod?: boolean,\n  ignoreVary?: boolean\n}\n\nexport interface MultiCacheQueryOptions extends CacheQueryOptions {\n  cacheName?: string\n}\n\nexport declare const caches: CacheStorage\n",
    "node_modules/undici-types/client.d.ts": "import { URL } from 'url'\nimport { TlsOptions } from 'tls'\nimport Dispatcher from './dispatcher'\nimport buildConnector from \"./connector\";\n\ntype ClientConnectOptions = Omit<Dispatcher.ConnectOptions, \"origin\">;\n\n/**\n * A basic HTTP/1.1 client, mapped on top a single TCP/TLS connection. Pipelining is disabled by default.\n */\nexport class Client extends Dispatcher {\n  constructor(url: string | URL, options?: Client.Options);\n  /** Property to get and set the pipelining factor. */\n  pipelining: number;\n  /** `true` after `client.close()` has been called. */\n  closed: boolean;\n  /** `true` after `client.destroyed()` has been called or `client.close()` has been called and the client shutdown has completed. */\n  destroyed: boolean;\n\n  // Override dispatcher APIs.\n  override connect(\n    options: ClientConnectOptions\n  ): Promise<Dispatcher.ConnectData>;\n  override connect(\n    options: ClientConnectOptions,\n    callback: (err: Error | null, data: Dispatcher.ConnectData) => void\n  ): void;\n}\n\nexport declare namespace Client {\n  export interface OptionsInterceptors {\n    Client: readonly Dispatcher.DispatchInterceptor[];\n  }\n  export interface Options {\n    /** TODO */\n    interceptors?: OptionsInterceptors;\n    /** The maximum length of request headers in bytes. Default: Node.js' `--max-http-header-size` or `16384` (16KiB). */\n    maxHeaderSize?: number;\n    /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers (Node 14 and above only). Default: `300e3` milliseconds (300s). */\n    headersTimeout?: number;\n    /** @deprecated unsupported socketTimeout, use headersTimeout & bodyTimeout instead */\n    socketTimeout?: never;\n    /** @deprecated unsupported requestTimeout, use headersTimeout & bodyTimeout instead */\n    requestTimeout?: never;\n    /** TODO */\n    connectTimeout?: number;\n    /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Default: `300e3` milliseconds (300s). */\n    bodyTimeout?: number;\n    /** @deprecated unsupported idleTimeout, use keepAliveTimeout instead */\n    idleTimeout?: never;\n    /** @deprecated unsupported keepAlive, use pipelining=0 instead */\n    keepAlive?: never;\n    /** the timeout, in milliseconds, after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by *keep-alive* hints from the server. Default: `4e3` milliseconds (4s). */\n    keepAliveTimeout?: number;\n    /** @deprecated unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead */\n    maxKeepAliveTimeout?: never;\n    /** the maximum allowed `idleTimeout`, in milliseconds, when overridden by *keep-alive* hints from the server. Default: `600e3` milliseconds (10min). */\n    keepAliveMaxTimeout?: number;\n    /** A number of milliseconds subtracted from server *keep-alive* hints when overriding `idleTimeout` to account for timing inaccuracies caused by e.g. transport latency. Default: `1e3` milliseconds (1s). */\n    keepAliveTimeoutThreshold?: number;\n    /** TODO */\n    socketPath?: string;\n    /** The amount of concurrent requests to be sent over the single TCP/TLS connection according to [RFC7230](https://tools.ietf.org/html/rfc7230#section-6.3.2). Default: `1`. */\n    pipelining?: number;\n    /** @deprecated use the connect option instead */\n    tls?: never;\n    /** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */\n    strictContentLength?: boolean;\n    /** TODO */\n    maxCachedSessions?: number;\n    /** TODO */\n    maxRedirections?: number;\n    /** TODO */\n    connect?: buildConnector.BuildOptions | buildConnector.connector;\n    /** TODO */\n    maxRequestsPerClient?: number;\n    /** TODO */\n    localAddress?: string;\n    /** Max response body size in bytes, -1 is disabled */\n    maxResponseSize?: number;\n    /** Enables a family autodetection algorithm that loosely implements section 5 of RFC 8305. */\n    autoSelectFamily?: boolean;\n    /** The amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the `autoSelectFamily` option. */\n    autoSelectFamilyAttemptTimeout?: number;\n    /**\n     * @description Enables support for H2 if the server has assigned bigger priority to it through ALPN negotiation.\n     * @default false\n    */\n    allowH2?: boolean;\n    /**\n     * @description Dictates the maximum number of concurrent streams for a single H2 session. It can be overridden by a SETTINGS remote frame.\n     * @default 100\n    */\n    maxConcurrentStreams?: number\n  }\n  export interface SocketInfo {\n    localAddress?: string\n    localPort?: number\n    remoteAddress?: string\n    remotePort?: number\n    remoteFamily?: string\n    timeout?: number\n    bytesWritten?: number\n    bytesRead?: number\n  }\n}\n\nexport default Client;\n",
    "node_modules/undici-types/connector.d.ts": "import { TLSSocket, ConnectionOptions } from 'tls'\nimport { IpcNetConnectOpts, Socket, TcpNetConnectOpts } from 'net'\n\nexport default buildConnector\ndeclare function buildConnector (options?: buildConnector.BuildOptions): buildConnector.connector\n\ndeclare namespace buildConnector {\n  export type BuildOptions = (ConnectionOptions | TcpNetConnectOpts | IpcNetConnectOpts) & {\n    allowH2?: boolean;\n    maxCachedSessions?: number | null;\n    socketPath?: string | null;\n    timeout?: number | null;\n    port?: number;\n    keepAlive?: boolean | null;\n    keepAliveInitialDelay?: number | null;\n  }\n\n  export interface Options {\n    hostname: string\n    host?: string\n    protocol: string\n    port: string\n    servername?: string\n    localAddress?: string | null\n    httpSocket?: Socket\n  }\n\n  export type Callback = (...args: CallbackArgs) => void\n  type CallbackArgs = [null, Socket | TLSSocket] | [Error, null]\n\n  export interface connector {\n    (options: buildConnector.Options, callback: buildConnector.Callback): void\n  }\n}\n",
    "node_modules/undici-types/content-type.d.ts": "/// <reference types=\"node\" />\n\ninterface MIMEType {\n  type: string\n  subtype: string\n  parameters: Map<string, string>\n  essence: string\n}\n\n/**\n * Parse a string to a {@link MIMEType} object. Returns `failure` if the string\n * couldn't be parsed.\n * @see https://mimesniff.spec.whatwg.org/#parse-a-mime-type\n */\nexport function parseMIMEType (input: string): 'failure' | MIMEType\n\n/**\n * Convert a MIMEType object to a string.\n * @see https://mimesniff.spec.whatwg.org/#serialize-a-mime-type\n */\nexport function serializeAMimeType (mimeType: MIMEType): string\n",
    "node_modules/undici-types/cookies.d.ts": "/// <reference types=\"node\" />\n\nimport type { Headers } from './fetch'\n\nexport interface Cookie {\n  name: string\n  value: string\n  expires?: Date | number\n  maxAge?: number\n  domain?: string\n  path?: string\n  secure?: boolean\n  httpOnly?: boolean\n  sameSite?: 'Strict' | 'Lax' | 'None'\n  unparsed?: string[]\n}\n\nexport function deleteCookie (\n  headers: Headers,\n  name: string,\n  attributes?: { name?: string, domain?: string }\n): void\n\nexport function getCookies (headers: Headers): Record<string, string>\n\nexport function getSetCookies (headers: Headers): Cookie[]\n\nexport function setCookie (headers: Headers, cookie: Cookie): void\n",
    "node_modules/undici-types/diagnostics-channel.d.ts": "import { Socket } from \"net\";\nimport { URL } from \"url\";\nimport Connector from \"./connector\";\nimport Dispatcher from \"./dispatcher\";\n\ndeclare namespace DiagnosticsChannel {\n  interface Request {\n    origin?: string | URL;\n    completed: boolean;\n    method?: Dispatcher.HttpMethod;\n    path: string;\n    headers: any;\n  }\n  interface Response {\n    statusCode: number;\n    statusText: string;\n    headers: Array<Buffer>;\n  }\n  type Error = unknown;\n  interface ConnectParams {\n    host: URL[\"host\"];\n    hostname: URL[\"hostname\"];\n    protocol: URL[\"protocol\"];\n    port: URL[\"port\"];\n    servername: string | null;\n  }\n  type Connector = Connector.connector;\n  export interface RequestCreateMessage {\n    request: Request;\n  }\n  export interface RequestBodySentMessage {\n    request: Request;\n  }\n  export interface RequestHeadersMessage {\n    request: Request;\n    response: Response;\n  }\n  export interface RequestTrailersMessage {\n    request: Request;\n    trailers: Array<Buffer>;\n  }\n  export interface RequestErrorMessage {\n    request: Request;\n    error: Error;\n  }\n  export interface ClientSendHeadersMessage {\n    request: Request;\n    headers: string;\n    socket: Socket;\n  }\n  export interface ClientBeforeConnectMessage {\n    connectParams: ConnectParams;\n    connector: Connector;\n  }\n  export interface ClientConnectedMessage {\n    socket: Socket;\n    connectParams: ConnectParams;\n    connector: Connector;\n  }\n  export interface ClientConnectErrorMessage {\n    error: Error;\n    socket: Socket;\n    connectParams: ConnectParams;\n    connector: Connector;\n  }\n}\n",
    "node_modules/undici-types/dispatcher.d.ts": "import { URL } from 'url'\nimport { Duplex, Readable, Writable } from 'stream'\nimport { EventEmitter } from 'events'\nimport { Blob } from 'buffer'\nimport { IncomingHttpHeaders } from './header'\nimport BodyReadable from './readable'\nimport { FormData } from './formdata'\nimport Errors from './errors'\n\ntype AbortSignal = unknown;\n\nexport default Dispatcher\n\n/** Dispatcher is the core API used to dispatch requests. */\ndeclare class Dispatcher extends EventEmitter {\n  /** Dispatches a request. This API is expected to evolve through semver-major versions and is less stable than the preceding higher level APIs. It is primarily intended for library developers who implement higher level APIs on top of this. */\n  dispatch(options: Dispatcher.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;\n  /** Starts two-way communications with the requested resource. */\n  connect(options: Dispatcher.ConnectOptions): Promise<Dispatcher.ConnectData>;\n  connect(options: Dispatcher.ConnectOptions, callback: (err: Error | null, data: Dispatcher.ConnectData) => void): void;\n  /** Compose a chain of dispatchers */\n  compose(dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;\n  compose(...dispatchers: Dispatcher.DispatcherComposeInterceptor[]): Dispatcher.ComposedDispatcher;\n  /** Performs an HTTP request. */\n  request(options: Dispatcher.RequestOptions): Promise<Dispatcher.ResponseData>;\n  request(options: Dispatcher.RequestOptions, callback: (err: Error | null, data: Dispatcher.ResponseData) => void): void;\n  /** For easy use with `stream.pipeline`. */\n  pipeline(options: Dispatcher.PipelineOptions, handler: Dispatcher.PipelineHandler): Duplex;\n  /** A faster version of `Dispatcher.request`. */\n  stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory): Promise<Dispatcher.StreamData>;\n  stream(options: Dispatcher.RequestOptions, factory: Dispatcher.StreamFactory, callback: (err: Error | null, data: Dispatcher.StreamData) => void): void;\n  /** Upgrade to a different protocol. */\n  upgrade(options: Dispatcher.UpgradeOptions): Promise<Dispatcher.UpgradeData>;\n  upgrade(options: Dispatcher.UpgradeOptions, callback: (err: Error | null, data: Dispatcher.UpgradeData) => void): void;\n  /** Closes the client and gracefully waits for enqueued requests to complete before invoking the callback (or returning a promise if no callback is provided). */\n  close(): Promise<void>;\n  close(callback: () => void): void;\n  /** Destroy the client abruptly with the given err. All the pending and running requests will be asynchronously aborted and error. Waits until socket is closed before invoking the callback (or returning a promise if no callback is provided). Since this operation is asynchronously dispatched there might still be some progress on dispatched requests. */\n  destroy(): Promise<void>;\n  destroy(err: Error | null): Promise<void>;\n  destroy(callback: () => void): void;\n  destroy(err: Error | null, callback: () => void): void;\n\n  on(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  on(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  on(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  on(eventName: 'drain', callback: (origin: URL) => void): this;\n\n\n  once(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  once(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  once(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  once(eventName: 'drain', callback: (origin: URL) => void): this;\n\n\n  off(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  off(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  off(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  off(eventName: 'drain', callback: (origin: URL) => void): this;\n\n\n  addListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  addListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  addListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  addListener(eventName: 'drain', callback: (origin: URL) => void): this;\n\n  removeListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  removeListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  removeListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  removeListener(eventName: 'drain', callback: (origin: URL) => void): this;\n\n  prependListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  prependListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  prependListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  prependListener(eventName: 'drain', callback: (origin: URL) => void): this;\n\n  prependOnceListener(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this;\n  prependOnceListener(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  prependOnceListener(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void): this;\n  prependOnceListener(eventName: 'drain', callback: (origin: URL) => void): this;\n\n  listeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]\n  listeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];\n  listeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];\n  listeners(eventName: 'drain'): ((origin: URL) => void)[];\n\n  rawListeners(eventName: 'connect'): ((origin: URL, targets: readonly Dispatcher[]) => void)[]\n  rawListeners(eventName: 'disconnect'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];\n  rawListeners(eventName: 'connectionError'): ((origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => void)[];\n  rawListeners(eventName: 'drain'): ((origin: URL) => void)[];\n\n  emit(eventName: 'connect', origin: URL, targets: readonly Dispatcher[]): boolean;\n  emit(eventName: 'disconnect', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;\n  emit(eventName: 'connectionError', origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError): boolean;\n  emit(eventName: 'drain', origin: URL): boolean;\n}\n\ndeclare namespace Dispatcher {\n  export interface ComposedDispatcher extends Dispatcher {}\n  export type DispatcherComposeInterceptor = (dispatch: Dispatcher['dispatch']) => Dispatcher['dispatch'];\n  export interface DispatchOptions {\n    origin?: string | URL;\n    path: string;\n    method: HttpMethod;\n    /** Default: `null` */\n    body?: string | Buffer | Uint8Array | Readable | null | FormData;\n    /** Default: `null` */\n    headers?: IncomingHttpHeaders | string[] | Iterable<[string, string | string[] | undefined]> | null;\n    /** Query string params to be embedded in the request URL. Default: `null` */\n    query?: Record<string, any>;\n    /** Whether the requests can be safely retried or not. If `false` the request won't be sent until all preceding requests in the pipeline have completed. Default: `true` if `method` is `HEAD` or `GET`. */\n    idempotent?: boolean;\n    /** Whether the response is expected to take a long time and would end up blocking the pipeline. When this is set to `true` further pipelining will be avoided on the same connection until headers have been received. */\n    blocking?: boolean;\n    /** Upgrade the request. Should be used to specify the kind of upgrade i.e. `'Websocket'`. Default: `method === 'CONNECT' || null`. */\n    upgrade?: boolean | string | null;\n    /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers. Defaults to 300 seconds. */\n    headersTimeout?: number | null;\n    /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use 0 to disable it entirely. Defaults to 300 seconds. */\n    bodyTimeout?: number | null;\n    /** Whether the request should stablish a keep-alive or not. Default `false` */\n    reset?: boolean;\n    /** Whether Undici should throw an error upon receiving a 4xx or 5xx response from the server. Defaults to false */\n    throwOnError?: boolean;\n    /** For H2, it appends the expect: 100-continue header, and halts the request body until a 100-continue is received from the remote server*/\n    expectContinue?: boolean;\n  }\n  export interface ConnectOptions {\n    origin: string | URL;\n    path: string;\n    /** Default: `null` */\n    headers?: IncomingHttpHeaders | string[] | null;\n    /** Default: `null` */\n    signal?: AbortSignal | EventEmitter | null;\n    /** This argument parameter is passed through to `ConnectData` */\n    opaque?: unknown;\n    /** Default: 0 */\n    maxRedirections?: number;\n    /** Default: false */\n    redirectionLimitReached?: boolean;\n    /** Default: `null` */\n    responseHeader?: 'raw' | null;\n  }\n  export interface RequestOptions extends DispatchOptions {\n    /** Default: `null` */\n    opaque?: unknown;\n    /** Default: `null` */\n    signal?: AbortSignal | EventEmitter | null;\n    /** Default: 0 */\n    maxRedirections?: number;\n    /** Default: false */\n    redirectionLimitReached?: boolean;\n    /** Default: `null` */\n    onInfo?: (info: { statusCode: number, headers: Record<string, string | string[]> }) => void;\n    /** Default: `null` */\n    responseHeader?: 'raw' | null;\n    /** Default: `64 KiB` */\n    highWaterMark?: number;\n  }\n  export interface PipelineOptions extends RequestOptions {\n    /** `true` if the `handler` will return an object stream. Default: `false` */\n    objectMode?: boolean;\n  }\n  export interface UpgradeOptions {\n    path: string;\n    /** Default: `'GET'` */\n    method?: string;\n    /** Default: `null` */\n    headers?: IncomingHttpHeaders | string[] | null;\n    /** A string of comma separated protocols, in descending preference order. Default: `'Websocket'` */\n    protocol?: string;\n    /** Default: `null` */\n    signal?: AbortSignal | EventEmitter | null;\n    /** Default: 0 */\n    maxRedirections?: number;\n    /** Default: false */\n    redirectionLimitReached?: boolean;\n    /** Default: `null` */\n    responseHeader?: 'raw' | null;\n  }\n  export interface ConnectData {\n    statusCode: number;\n    headers: IncomingHttpHeaders;\n    socket: Duplex;\n    opaque: unknown;\n  }\n  export interface ResponseData {\n    statusCode: number;\n    headers: IncomingHttpHeaders;\n    body: BodyReadable & BodyMixin;\n    trailers: Record<string, string>;\n    opaque: unknown;\n    context: object;\n  }\n  export interface PipelineHandlerData {\n    statusCode: number;\n    headers: IncomingHttpHeaders;\n    opaque: unknown;\n    body: BodyReadable;\n    context: object;\n  }\n  export interface StreamData {\n    opaque: unknown;\n    trailers: Record<string, string>;\n  }\n  export interface UpgradeData {\n    headers: IncomingHttpHeaders;\n    socket: Duplex;\n    opaque: unknown;\n  }\n  export interface StreamFactoryData {\n    statusCode: number;\n    headers: IncomingHttpHeaders;\n    opaque: unknown;\n    context: object;\n  }\n  export type StreamFactory = (data: StreamFactoryData) => Writable;\n  export interface DispatchHandlers {\n    /** Invoked before request is dispatched on socket. May be invoked multiple times when a request is retried when the request at the head of the pipeline fails. */\n    onConnect?(abort: (err?: Error) => void): void;\n    /** Invoked when an error has occurred. */\n    onError?(err: Error): void;\n    /** Invoked when request is upgraded either due to a `Upgrade` header or `CONNECT` method. */\n    onUpgrade?(statusCode: number, headers: Buffer[] | string[] | null, socket: Duplex): void;\n    /** Invoked when response is received, before headers have been read. **/\n    onResponseStarted?(): void;\n    /** Invoked when statusCode and headers have been received. May be invoked multiple times due to 1xx informational headers. */\n    onHeaders?(statusCode: number, headers: Buffer[], resume: () => void, statusText: string): boolean;\n    /** Invoked when response payload data is received. */\n    onData?(chunk: Buffer): boolean;\n    /** Invoked when response payload and trailers have been received and the request has completed. */\n    onComplete?(trailers: string[] | null): void;\n    /** Invoked when a body chunk is sent to the server. May be invoked multiple times for chunked requests */\n    onBodySent?(chunkSize: number, totalBytesSent: number): void;\n  }\n  export type PipelineHandler = (data: PipelineHandlerData) => Readable;\n  export type HttpMethod = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';\n\n  /**\n   * @link https://fetch.spec.whatwg.org/#body-mixin\n   */\n  interface BodyMixin {\n    readonly body?: never;\n    readonly bodyUsed: boolean;\n    arrayBuffer(): Promise<ArrayBuffer>;\n    blob(): Promise<Blob>;\n    bytes(): Promise<Uint8Array>;\n    formData(): Promise<never>;\n    json(): Promise<unknown>;\n    text(): Promise<string>;\n  }\n\n  export interface DispatchInterceptor {\n    (dispatch: Dispatcher['dispatch']): Dispatcher['dispatch']\n  }\n}\n",
    "node_modules/undici-types/env-http-proxy-agent.d.ts": "import Agent from './agent'\nimport Dispatcher from './dispatcher'\n\nexport default EnvHttpProxyAgent\n\ndeclare class EnvHttpProxyAgent extends Dispatcher {\n  constructor(opts?: EnvHttpProxyAgent.Options)\n\n  dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;\n}\n\ndeclare namespace EnvHttpProxyAgent {\n  export interface Options extends Agent.Options {\n    /** Overrides the value of the HTTP_PROXY environment variable  */\n    httpProxy?: string;\n    /** Overrides the value of the HTTPS_PROXY environment variable  */\n    httpsProxy?: string;\n    /** Overrides the value of the NO_PROXY environment variable  */\n    noProxy?: string;\n  }\n}\n",
    "node_modules/undici-types/errors.d.ts": "import { IncomingHttpHeaders } from \"./header\";\nimport Client from './client'\n\nexport default Errors\n\ndeclare namespace Errors {\n  export class UndiciError extends Error {\n    name: string;\n    code: string;\n  }\n\n  /** Connect timeout error. */\n  export class ConnectTimeoutError extends UndiciError {\n    name: 'ConnectTimeoutError';\n    code: 'UND_ERR_CONNECT_TIMEOUT';\n  }\n\n  /** A header exceeds the `headersTimeout` option. */\n  export class HeadersTimeoutError extends UndiciError {\n    name: 'HeadersTimeoutError';\n    code: 'UND_ERR_HEADERS_TIMEOUT';\n  }\n\n  /** Headers overflow error. */\n  export class HeadersOverflowError extends UndiciError {\n    name: 'HeadersOverflowError'\n    code: 'UND_ERR_HEADERS_OVERFLOW'\n  }\n\n  /** A body exceeds the `bodyTimeout` option. */\n  export class BodyTimeoutError extends UndiciError {\n    name: 'BodyTimeoutError';\n    code: 'UND_ERR_BODY_TIMEOUT';\n  }\n\n  export class ResponseStatusCodeError extends UndiciError {\n    constructor (\n      message?: string,\n      statusCode?: number,\n      headers?: IncomingHttpHeaders | string[] | null,\n      body?: null | Record<string, any> | string\n    );\n    name: 'ResponseStatusCodeError';\n    code: 'UND_ERR_RESPONSE_STATUS_CODE';\n    body: null | Record<string, any> | string\n    status: number\n    statusCode: number\n    headers: IncomingHttpHeaders | string[] | null;\n  }\n\n  /** Passed an invalid argument. */\n  export class InvalidArgumentError extends UndiciError {\n    name: 'InvalidArgumentError';\n    code: 'UND_ERR_INVALID_ARG';\n  }\n\n  /** Returned an invalid value. */\n  export class InvalidReturnValueError extends UndiciError {\n    name: 'InvalidReturnValueError';\n    code: 'UND_ERR_INVALID_RETURN_VALUE';\n  }\n\n  /** The request has been aborted by the user. */\n  export class RequestAbortedError extends UndiciError {\n    name: 'AbortError';\n    code: 'UND_ERR_ABORTED';\n  }\n\n  /** Expected error with reason. */\n  export class InformationalError extends UndiciError {\n    name: 'InformationalError';\n    code: 'UND_ERR_INFO';\n  }\n\n  /** Request body length does not match content-length header. */\n  export class RequestContentLengthMismatchError extends UndiciError {\n    name: 'RequestContentLengthMismatchError';\n    code: 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH';\n  }\n\n  /** Response body length does not match content-length header. */\n  export class ResponseContentLengthMismatchError extends UndiciError {\n    name: 'ResponseContentLengthMismatchError';\n    code: 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH';\n  }\n\n  /** Trying to use a destroyed client. */\n  export class ClientDestroyedError extends UndiciError {\n    name: 'ClientDestroyedError';\n    code: 'UND_ERR_DESTROYED';\n  }\n\n  /** Trying to use a closed client. */\n  export class ClientClosedError extends UndiciError {\n    name: 'ClientClosedError';\n    code: 'UND_ERR_CLOSED';\n  }\n\n  /** There is an error with the socket. */\n  export class SocketError extends UndiciError {\n    name: 'SocketError';\n    code: 'UND_ERR_SOCKET';\n    socket: Client.SocketInfo | null\n  }\n\n  /** Encountered unsupported functionality. */\n  export class NotSupportedError extends UndiciError {\n    name: 'NotSupportedError';\n    code: 'UND_ERR_NOT_SUPPORTED';\n  }\n\n  /** No upstream has been added to the BalancedPool. */\n  export class BalancedPoolMissingUpstreamError extends UndiciError {\n    name: 'MissingUpstreamError';\n    code: 'UND_ERR_BPL_MISSING_UPSTREAM';\n  }\n\n  export class HTTPParserError extends UndiciError {\n    name: 'HTTPParserError';\n    code: string;\n  }\n\n  /** The response exceed the length allowed. */\n  export class ResponseExceededMaxSizeError extends UndiciError {\n    name: 'ResponseExceededMaxSizeError';\n    code: 'UND_ERR_RES_EXCEEDED_MAX_SIZE';\n  }\n\n  export class RequestRetryError extends UndiciError {\n    constructor (\n      message: string,\n      statusCode: number,\n      headers?: IncomingHttpHeaders | string[] | null,\n      body?: null | Record<string, any> | string\n    );\n    name: 'RequestRetryError';\n    code: 'UND_ERR_REQ_RETRY';\n    statusCode: number;\n    data: {\n      count: number;\n    };\n    headers: Record<string, string | string[]>;\n  }\n\n  export class SecureProxyConnectionError extends UndiciError {\n    name: 'SecureProxyConnectionError';\n    code: 'UND_ERR_PRX_TLS';\n  }\n}\n",
    "node_modules/undici-types/eventsource.d.ts": "import { MessageEvent, ErrorEvent } from './websocket'\nimport Dispatcher from './dispatcher'\n\nimport {\n  EventListenerOptions,\n  AddEventListenerOptions,\n  EventListenerOrEventListenerObject\n} from './patch'\n\ninterface EventSourceEventMap {\n  error: ErrorEvent\n  message: MessageEvent\n  open: Event\n}\n\ninterface EventSource extends EventTarget {\n  close(): void\n  readonly CLOSED: 2\n  readonly CONNECTING: 0\n  readonly OPEN: 1\n  onerror: (this: EventSource, ev: ErrorEvent) => any\n  onmessage: (this: EventSource, ev: MessageEvent) => any\n  onopen: (this: EventSource, ev: Event) => any\n  readonly readyState: 0 | 1 | 2\n  readonly url: string\n  readonly withCredentials: boolean\n\n  addEventListener<K extends keyof EventSourceEventMap>(\n    type: K,\n    listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,\n    options?: boolean | AddEventListenerOptions\n  ): void\n  addEventListener(\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | AddEventListenerOptions\n  ): void\n  removeEventListener<K extends keyof EventSourceEventMap>(\n    type: K,\n    listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,\n    options?: boolean | EventListenerOptions\n  ): void\n  removeEventListener(\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | EventListenerOptions\n  ): void\n}\n\nexport declare const EventSource: {\n  prototype: EventSource\n  new (url: string | URL, init?: EventSourceInit): EventSource\n  readonly CLOSED: 2\n  readonly CONNECTING: 0\n  readonly OPEN: 1\n}\n\ninterface EventSourceInit {\n  withCredentials?: boolean,\n  dispatcher?: Dispatcher\n}\n",
    "node_modules/undici-types/fetch.d.ts": "// based on https://github.com/Ethan-Arrowood/undici-fetch/blob/249269714db874351589d2d364a0645d5160ae71/index.d.ts (MIT license)\n// and https://github.com/node-fetch/node-fetch/blob/914ce6be5ec67a8bab63d68510aabf07cb818b6d/index.d.ts (MIT license)\n/// <reference types=\"node\" />\n\nimport { Blob } from 'buffer'\nimport { URL, URLSearchParams } from 'url'\nimport { ReadableStream } from 'stream/web'\nimport { FormData } from './formdata'\n\nimport Dispatcher from './dispatcher'\n\nexport type RequestInfo = string | URL | Request\n\nexport declare function fetch (\n  input: RequestInfo,\n  init?: RequestInit\n): Promise<Response>\n\nexport type BodyInit =\n  | ArrayBuffer\n  | AsyncIterable<Uint8Array>\n  | Blob\n  | FormData\n  | Iterable<Uint8Array>\n  | NodeJS.ArrayBufferView\n  | URLSearchParams\n  | null\n  | string\n\nexport class BodyMixin {\n  readonly body: ReadableStream | null\n  readonly bodyUsed: boolean\n\n  readonly arrayBuffer: () => Promise<ArrayBuffer>\n  readonly blob: () => Promise<Blob>\n  /**\n   * @deprecated This method is not recommended for parsing multipart/form-data bodies in server environments.\n   * It is recommended to use a library such as [@fastify/busboy](https://www.npmjs.com/package/@fastify/busboy) as follows:\n   * \n   * @example\n   * ```js\n   * import { Busboy } from '@fastify/busboy'\n   * import { Readable } from 'node:stream'\n   * \n   * const response = await fetch('...')\n   * const busboy = new Busboy({ headers: { 'content-type': response.headers.get('content-type') } })\n   * \n   * // handle events emitted from `busboy`\n   * \n   * Readable.fromWeb(response.body).pipe(busboy)\n   * ```\n   */\n  readonly formData: () => Promise<FormData>\n  readonly json: () => Promise<unknown>\n  readonly text: () => Promise<string>\n}\n\nexport interface SpecIterator<T, TReturn = any, TNext = undefined> {\n  next(...args: [] | [TNext]): IteratorResult<T, TReturn>;\n}\n\nexport interface SpecIterableIterator<T> extends SpecIterator<T> {\n  [Symbol.iterator](): SpecIterableIterator<T>;\n}\n\nexport interface SpecIterable<T> {\n  [Symbol.iterator](): SpecIterator<T>;\n}\n\nexport type HeadersInit = string[][] | Record<string, string | ReadonlyArray<string>> | Headers\n\nexport declare class Headers implements SpecIterable<[string, string]> {\n  constructor (init?: HeadersInit)\n  readonly append: (name: string, value: string) => void\n  readonly delete: (name: string) => void\n  readonly get: (name: string) => string | null\n  readonly has: (name: string) => boolean\n  readonly set: (name: string, value: string) => void\n  readonly getSetCookie: () => string[]\n  readonly forEach: (\n    callbackfn: (value: string, key: string, iterable: Headers) => void,\n    thisArg?: unknown\n  ) => void\n\n  readonly keys: () => SpecIterableIterator<string>\n  readonly values: () => SpecIterableIterator<string>\n  readonly entries: () => SpecIterableIterator<[string, string]>\n  readonly [Symbol.iterator]: () => SpecIterableIterator<[string, string]>\n}\n\nexport type RequestCache =\n  | 'default'\n  | 'force-cache'\n  | 'no-cache'\n  | 'no-store'\n  | 'only-if-cached'\n  | 'reload'\n\nexport type RequestCredentials = 'omit' | 'include' | 'same-origin'\n\ntype RequestDestination =\n  | ''\n  | 'audio'\n  | 'audioworklet'\n  | 'document'\n  | 'embed'\n  | 'font'\n  | 'image'\n  | 'manifest'\n  | 'object'\n  | 'paintworklet'\n  | 'report'\n  | 'script'\n  | 'sharedworker'\n  | 'style'\n  | 'track'\n  | 'video'\n  | 'worker'\n  | 'xslt'\n\nexport interface RequestInit {\n  method?: string\n  keepalive?: boolean\n  headers?: HeadersInit\n  body?: BodyInit | null\n  redirect?: RequestRedirect\n  integrity?: string\n  signal?: AbortSignal | null\n  credentials?: RequestCredentials\n  mode?: RequestMode\n  referrer?: string\n  referrerPolicy?: ReferrerPolicy\n  window?: null\n  dispatcher?: Dispatcher\n  duplex?: RequestDuplex\n}\n\nexport type ReferrerPolicy =\n  | ''\n  | 'no-referrer'\n  | 'no-referrer-when-downgrade'\n  | 'origin'\n  | 'origin-when-cross-origin'\n  | 'same-origin'\n  | 'strict-origin'\n  | 'strict-origin-when-cross-origin'\n  | 'unsafe-url';\n\nexport type RequestMode = 'cors' | 'navigate' | 'no-cors' | 'same-origin'\n\nexport type RequestRedirect = 'error' | 'follow' | 'manual'\n\nexport type RequestDuplex = 'half'\n\nexport declare class Request extends BodyMixin {\n  constructor (input: RequestInfo, init?: RequestInit)\n\n  readonly cache: RequestCache\n  readonly credentials: RequestCredentials\n  readonly destination: RequestDestination\n  readonly headers: Headers\n  readonly integrity: string\n  readonly method: string\n  readonly mode: RequestMode\n  readonly redirect: RequestRedirect\n  readonly referrer: string\n  readonly referrerPolicy: ReferrerPolicy\n  readonly url: string\n\n  readonly keepalive: boolean\n  readonly signal: AbortSignal\n  readonly duplex: RequestDuplex\n\n  readonly clone: () => Request\n}\n\nexport interface ResponseInit {\n  readonly status?: number\n  readonly statusText?: string\n  readonly headers?: HeadersInit\n}\n\nexport type ResponseType =\n  | 'basic'\n  | 'cors'\n  | 'default'\n  | 'error'\n  | 'opaque'\n  | 'opaqueredirect'\n\nexport type ResponseRedirectStatus = 301 | 302 | 303 | 307 | 308\n\nexport declare class Response extends BodyMixin {\n  constructor (body?: BodyInit, init?: ResponseInit)\n\n  readonly headers: Headers\n  readonly ok: boolean\n  readonly status: number\n  readonly statusText: string\n  readonly type: ResponseType\n  readonly url: string\n  readonly redirected: boolean\n\n  readonly clone: () => Response\n\n  static error (): Response\n  static json(data: any, init?: ResponseInit): Response\n  static redirect (url: string | URL, status: ResponseRedirectStatus): Response\n}\n",
    "node_modules/undici-types/file.d.ts": "// Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/File.ts (MIT)\n/// <reference types=\"node\" />\n\nimport { Blob } from 'buffer'\n\nexport interface BlobPropertyBag {\n  type?: string\n  endings?: 'native' | 'transparent'\n}\n\nexport interface FilePropertyBag extends BlobPropertyBag {\n  /**\n   * The last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight). Files without a known last modified date return the current date.\n   */\n  lastModified?: number\n}\n\nexport declare class File extends Blob {\n  /**\n   * Creates a new File instance.\n   *\n   * @param fileBits An `Array` strings, or [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer), [`ArrayBufferView`](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView), [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) objects, or a mix of any of such objects, that will be put inside the [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File).\n   * @param fileName The name of the file.\n   * @param options An options object containing optional attributes for the file.\n   */\n  constructor(fileBits: ReadonlyArray<string | NodeJS.ArrayBufferView | Blob>, fileName: string, options?: FilePropertyBag)\n\n  /**\n   * Name of the file referenced by the File object.\n   */\n  readonly name: string\n\n  /**\n   * The last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight). Files without a known last modified date return the current date.\n   */\n  readonly lastModified: number\n\n  readonly [Symbol.toStringTag]: string\n}\n",
    "node_modules/undici-types/filereader.d.ts": "/// <reference types=\"node\" />\n\nimport { Blob } from 'buffer'\nimport { DOMException, EventInit } from './patch'\n\nexport declare class FileReader {\n  __proto__: EventTarget & FileReader\n\n  constructor ()\n\n  readAsArrayBuffer (blob: Blob): void\n  readAsBinaryString (blob: Blob): void\n  readAsText (blob: Blob, encoding?: string): void\n  readAsDataURL (blob: Blob): void\n\n  abort (): void\n\n  static readonly EMPTY = 0\n  static readonly LOADING = 1\n  static readonly DONE = 2\n\n  readonly EMPTY = 0\n  readonly LOADING = 1\n  readonly DONE = 2\n\n  readonly readyState: number\n\n  readonly result: string | ArrayBuffer | null\n\n  readonly error: DOMException | null\n\n  onloadstart: null | ((this: FileReader, event: ProgressEvent) => void)\n  onprogress: null | ((this: FileReader, event: ProgressEvent) => void)\n  onload: null | ((this: FileReader, event: ProgressEvent) => void)\n  onabort: null |  ((this: FileReader, event: ProgressEvent) => void)\n  onerror: null | ((this: FileReader, event: ProgressEvent) => void)\n  onloadend: null | ((this: FileReader, event: ProgressEvent) => void)\n}\n\nexport interface ProgressEventInit extends EventInit {\n  lengthComputable?: boolean\n  loaded?: number\n  total?: number\n}\n\nexport declare class ProgressEvent {\n  __proto__: Event & ProgressEvent\n\n  constructor (type: string, eventInitDict?: ProgressEventInit)\n\n  readonly lengthComputable: boolean\n  readonly loaded: number\n  readonly total: number\n}\n",
    "node_modules/undici-types/formdata.d.ts": "// Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/FormData.ts (MIT)\n/// <reference types=\"node\" />\n\nimport { File } from './file'\nimport { SpecIterableIterator } from './fetch'\n\n/**\n * A `string` or `File` that represents a single value from a set of `FormData` key-value pairs.\n */\ndeclare type FormDataEntryValue = string | File\n\n/**\n * Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using fetch().\n */\nexport declare class FormData {\n  /**\n   * Appends a new value onto an existing key inside a FormData object,\n   * or adds the key if it does not already exist.\n   *\n   * The difference between `set()` and `append()` is that if the specified key already exists, `set()` will overwrite all existing values with the new one, whereas `append()` will append the new value onto the end of the existing set of values.\n   *\n   * @param name The name of the field whose data is contained in `value`.\n   * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)\n    or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.\n   * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is \"blob\". The default filename for File objects is the file's filename.\n   */\n  append(name: string, value: unknown, fileName?: string): void\n\n  /**\n   * Set a new value for an existing key inside FormData,\n   * or add the new field if it does not already exist.\n   *\n   * @param name The name of the field whose data is contained in `value`.\n   * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)\n    or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.\n   * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is \"blob\". The default filename for File objects is the file's filename.\n   *\n   */\n  set(name: string, value: unknown, fileName?: string): void\n\n  /**\n   * Returns the first value associated with a given key from within a `FormData` object.\n   * If you expect multiple values and want all of them, use the `getAll()` method instead.\n   *\n   * @param {string} name A name of the value you want to retrieve.\n   *\n   * @returns A `FormDataEntryValue` containing the value. If the key doesn't exist, the method returns null.\n   */\n  get(name: string): FormDataEntryValue | null\n\n  /**\n   * Returns all the values associated with a given key from within a `FormData` object.\n   *\n   * @param {string} name A name of the value you want to retrieve.\n   *\n   * @returns An array of `FormDataEntryValue` whose key matches the value passed in the `name` parameter. If the key doesn't exist, the method returns an empty list.\n   */\n  getAll(name: string): FormDataEntryValue[]\n\n  /**\n   * Returns a boolean stating whether a `FormData` object contains a certain key.\n   *\n   * @param name A string representing the name of the key you want to test for.\n   *\n   * @return A boolean value.\n   */\n  has(name: string): boolean\n\n  /**\n   * Deletes a key and its value(s) from a `FormData` object.\n   *\n   * @param name The name of the key you want to delete.\n   */\n  delete(name: string): void\n\n  /**\n   * Executes given callback function for each field of the FormData instance\n   */\n  forEach: (\n    callbackfn: (value: FormDataEntryValue, key: string, iterable: FormData) => void,\n    thisArg?: unknown\n  ) => void\n\n  /**\n   * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all keys contained in this `FormData` object.\n   * Each key is a `string`.\n   */\n  keys: () => SpecIterableIterator<string>\n\n  /**\n   * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all values contained in this object `FormData` object.\n   * Each value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).\n   */\n  values: () => SpecIterableIterator<FormDataEntryValue>\n\n  /**\n   * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through the `FormData` key/value pairs.\n   * The key of each pair is a string; the value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).\n   */\n  entries: () => SpecIterableIterator<[string, FormDataEntryValue]>\n\n  /**\n   * An alias for FormData#entries()\n   */\n  [Symbol.iterator]: () => SpecIterableIterator<[string, FormDataEntryValue]>\n\n  readonly [Symbol.toStringTag]: string\n}\n",
    "node_modules/undici-types/global-dispatcher.d.ts": "import Dispatcher from \"./dispatcher\";\n\nexport {\n  getGlobalDispatcher,\n  setGlobalDispatcher\n}\n\ndeclare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher>(dispatcher: DispatcherImplementation): void;\ndeclare function getGlobalDispatcher(): Dispatcher;\n",
    "node_modules/undici-types/global-origin.d.ts": "export {\n\tsetGlobalOrigin,\n\tgetGlobalOrigin\n}\n  \ndeclare function setGlobalOrigin(origin: string | URL | undefined): void;\ndeclare function getGlobalOrigin(): URL | undefined;",
    "node_modules/undici-types/handlers.d.ts": "import Dispatcher from \"./dispatcher\";\n\nexport declare class RedirectHandler implements Dispatcher.DispatchHandlers {\n  constructor(\n    dispatch: Dispatcher,\n    maxRedirections: number,\n    opts: Dispatcher.DispatchOptions,\n    handler: Dispatcher.DispatchHandlers,\n    redirectionLimitReached: boolean\n  );\n}\n\nexport declare class DecoratorHandler implements Dispatcher.DispatchHandlers {\n  constructor(handler: Dispatcher.DispatchHandlers);\n}\n",
    "node_modules/undici-types/header.d.ts": "/**\n * The header type declaration of `undici`.\n */\nexport type IncomingHttpHeaders = Record<string, string | string[] | undefined>;\n",
    "node_modules/undici-types/index.d.ts": "import Dispatcher from'./dispatcher'\nimport { setGlobalDispatcher, getGlobalDispatcher } from './global-dispatcher'\nimport { setGlobalOrigin, getGlobalOrigin } from './global-origin'\nimport Pool from'./pool'\nimport { RedirectHandler, DecoratorHandler } from './handlers'\n\nimport BalancedPool from './balanced-pool'\nimport Client from'./client'\nimport buildConnector from'./connector'\nimport errors from'./errors'\nimport Agent from'./agent'\nimport MockClient from'./mock-client'\nimport MockPool from'./mock-pool'\nimport MockAgent from'./mock-agent'\nimport mockErrors from'./mock-errors'\nimport ProxyAgent from'./proxy-agent'\nimport EnvHttpProxyAgent from './env-http-proxy-agent'\nimport RetryHandler from'./retry-handler'\nimport RetryAgent from'./retry-agent'\nimport { request, pipeline, stream, connect, upgrade } from './api'\nimport interceptors from './interceptors'\n\nexport * from './util'\nexport * from './cookies'\nexport * from './eventsource'\nexport * from './fetch'\nexport * from './file'\nexport * from './filereader'\nexport * from './formdata'\nexport * from './diagnostics-channel'\nexport * from './websocket'\nexport * from './content-type'\nexport * from './cache'\nexport { Interceptable } from './mock-interceptor'\n\nexport { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent }\nexport default Undici\n\ndeclare namespace Undici {\n  var Dispatcher: typeof import('./dispatcher').default\n  var Pool: typeof import('./pool').default;\n  var RedirectHandler: typeof import ('./handlers').RedirectHandler\n  var DecoratorHandler: typeof import ('./handlers').DecoratorHandler\n  var RetryHandler: typeof import ('./retry-handler').default\n  var createRedirectInterceptor: typeof import ('./interceptors').default.createRedirectInterceptor\n  var BalancedPool: typeof import('./balanced-pool').default;\n  var Client: typeof import('./client').default;\n  var buildConnector: typeof import('./connector').default;\n  var errors: typeof import('./errors').default;\n  var Agent: typeof import('./agent').default;\n  var setGlobalDispatcher: typeof import('./global-dispatcher').setGlobalDispatcher;\n  var getGlobalDispatcher: typeof import('./global-dispatcher').getGlobalDispatcher;\n  var request: typeof import('./api').request;\n  var stream: typeof import('./api').stream;\n  var pipeline: typeof import('./api').pipeline;\n  var connect: typeof import('./api').connect;\n  var upgrade: typeof import('./api').upgrade;\n  var MockClient: typeof import('./mock-client').default;\n  var MockPool: typeof import('./mock-pool').default;\n  var MockAgent: typeof import('./mock-agent').default;\n  var mockErrors: typeof import('./mock-errors').default;\n  var fetch: typeof import('./fetch').fetch;\n  var Headers: typeof import('./fetch').Headers;\n  var Response: typeof import('./fetch').Response;\n  var Request: typeof import('./fetch').Request;\n  var FormData: typeof import('./formdata').FormData;\n  var File: typeof import('./file').File;\n  var FileReader: typeof import('./filereader').FileReader;\n  var caches: typeof import('./cache').caches;\n  var interceptors: typeof import('./interceptors').default;\n}\n",
    "node_modules/undici-types/interceptors.d.ts": "import Dispatcher from \"./dispatcher\";\nimport RetryHandler from \"./retry-handler\";\n\nexport default Interceptors;\n\ndeclare namespace Interceptors {\n  export type DumpInterceptorOpts = { maxSize?: number }\n  export type RetryInterceptorOpts = RetryHandler.RetryOptions\n  export type RedirectInterceptorOpts = { maxRedirections?: number }\n  export type ResponseErrorInterceptorOpts = { throwOnError: boolean }\n\n  export function createRedirectInterceptor(opts: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor\n  export function dump(opts?: DumpInterceptorOpts): Dispatcher.DispatcherComposeInterceptor\n  export function retry(opts?: RetryInterceptorOpts): Dispatcher.DispatcherComposeInterceptor\n  export function redirect(opts?: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor\n  export function responseError(opts?: ResponseErrorInterceptorOpts): Dispatcher.DispatcherComposeInterceptor\n}\n",
    "node_modules/undici-types/mock-agent.d.ts": "import Agent from './agent'\nimport Dispatcher from './dispatcher'\nimport { Interceptable, MockInterceptor } from './mock-interceptor'\nimport MockDispatch = MockInterceptor.MockDispatch;\n\nexport default MockAgent\n\ninterface PendingInterceptor extends MockDispatch {\n  origin: string;\n}\n\n/** A mocked Agent class that implements the Agent API. It allows one to intercept HTTP requests made through undici and return mocked responses instead. */\ndeclare class MockAgent<TMockAgentOptions extends MockAgent.Options = MockAgent.Options> extends Dispatcher {\n  constructor(options?: MockAgent.Options)\n  /** Creates and retrieves mock Dispatcher instances which can then be used to intercept HTTP requests. If the number of connections on the mock agent is set to 1, a MockClient instance is returned. Otherwise a MockPool instance is returned. */\n  get<TInterceptable extends Interceptable>(origin: string): TInterceptable;\n  get<TInterceptable extends Interceptable>(origin: RegExp): TInterceptable;\n  get<TInterceptable extends Interceptable>(origin: ((origin: string) => boolean)): TInterceptable;\n  /** Dispatches a mocked request. */\n  dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;\n  /** Closes the mock agent and waits for registered mock pools and clients to also close before resolving. */\n  close(): Promise<void>;\n  /** Disables mocking in MockAgent. */\n  deactivate(): void;\n  /** Enables mocking in a MockAgent instance. When instantiated, a MockAgent is automatically activated. Therefore, this method is only effective after `MockAgent.deactivate` has been called. */\n  activate(): void;\n  /** Define host matchers so only matching requests that aren't intercepted by the mock dispatchers will be attempted. */\n  enableNetConnect(): void;\n  enableNetConnect(host: string): void;\n  enableNetConnect(host: RegExp): void;\n  enableNetConnect(host: ((host: string) => boolean)): void;\n  /** Causes all requests to throw when requests are not matched in a MockAgent intercept. */\n  disableNetConnect(): void;\n  pendingInterceptors(): PendingInterceptor[];\n  assertNoPendingInterceptors(options?: {\n    pendingInterceptorsFormatter?: PendingInterceptorsFormatter;\n  }): void;\n}\n\ninterface PendingInterceptorsFormatter {\n  format(pendingInterceptors: readonly PendingInterceptor[]): string;\n}\n\ndeclare namespace MockAgent {\n  /** MockAgent options. */\n  export interface Options extends Agent.Options {\n    /** A custom agent to be encapsulated by the MockAgent. */\n    agent?: Agent;\n  }\n}\n",
    "node_modules/undici-types/mock-client.d.ts": "import Client from './client'\nimport Dispatcher from './dispatcher'\nimport MockAgent from './mock-agent'\nimport { MockInterceptor, Interceptable } from './mock-interceptor'\n\nexport default MockClient\n\n/** MockClient extends the Client API and allows one to mock requests. */\ndeclare class MockClient extends Client implements Interceptable {\n  constructor(origin: string, options: MockClient.Options);\n  /** Intercepts any matching requests that use the same origin as this mock client. */\n  intercept(options: MockInterceptor.Options): MockInterceptor;\n  /** Dispatches a mocked request. */\n  dispatch(options: Dispatcher.DispatchOptions, handlers: Dispatcher.DispatchHandlers): boolean;\n  /** Closes the mock client and gracefully waits for enqueued requests to complete. */\n  close(): Promise<void>;\n}\n\ndeclare namespace MockClient {\n  /** MockClient options. */\n  export interface Options extends Client.Options {\n    /** The agent to associate this MockClient with. */\n    agent: MockAgent;\n  }\n}\n",
    "node_modules/undici-types/mock-errors.d.ts": "import Errors from './errors'\n\nexport default MockErrors\n\ndeclare namespace MockErrors {\n  /** The request does not match any registered mock dispatches. */\n  export class MockNotMatchedError extends Errors.UndiciError {\n    constructor(message?: string);\n    name: 'MockNotMatchedError';\n    code: 'UND_MOCK_ERR_MOCK_NOT_MATCHED';\n  }\n}\n",
    "node_modules/undici-types/mock-interceptor.d.ts": "import { IncomingHttpHeaders } from './header'\nimport Dispatcher from './dispatcher';\nimport { BodyInit, Headers } from './fetch'\n\nexport {\n  Interceptable,\n  MockInterceptor,\n  MockScope\n}\n\n/** The scope associated with a mock dispatch. */\ndeclare class MockScope<TData extends object = object> {\n  constructor(mockDispatch: MockInterceptor.MockDispatch<TData>);\n  /** Delay a reply by a set amount of time in ms. */\n  delay(waitInMs: number): MockScope<TData>;\n  /** Persist the defined mock data for the associated reply. It will return the defined mock data indefinitely. */\n  persist(): MockScope<TData>;\n  /** Define a reply for a set amount of matching requests. */\n  times(repeatTimes: number): MockScope<TData>;\n}\n\n/** The interceptor for a Mock. */\ndeclare class MockInterceptor {\n  constructor(options: MockInterceptor.Options, mockDispatches: MockInterceptor.MockDispatch[]);\n  /** Mock an undici request with the defined reply. */\n  reply<TData extends object = object>(replyOptionsCallback: MockInterceptor.MockReplyOptionsCallback<TData>): MockScope<TData>;\n  reply<TData extends object = object>(\n    statusCode: number,\n    data?: TData | Buffer | string | MockInterceptor.MockResponseDataHandler<TData>,\n    responseOptions?: MockInterceptor.MockResponseOptions\n  ): MockScope<TData>;\n  /** Mock an undici request by throwing the defined reply error. */\n  replyWithError<TError extends Error = Error>(error: TError): MockScope;\n  /** Set default reply headers on the interceptor for subsequent mocked replies. */\n  defaultReplyHeaders(headers: IncomingHttpHeaders): MockInterceptor;\n  /** Set default reply trailers on the interceptor for subsequent mocked replies. */\n  defaultReplyTrailers(trailers: Record<string, string>): MockInterceptor;\n  /** Set automatically calculated content-length header on subsequent mocked replies. */\n  replyContentLength(): MockInterceptor;\n}\n\ndeclare namespace MockInterceptor {\n  /** MockInterceptor options. */\n  export interface Options {\n    /** Path to intercept on. */\n    path: string | RegExp | ((path: string) => boolean);\n    /** Method to intercept on. Defaults to GET. */\n    method?: string | RegExp | ((method: string) => boolean);\n    /** Body to intercept on. */\n    body?: string | RegExp | ((body: string) => boolean);\n    /** Headers to intercept on. */\n    headers?: Record<string, string | RegExp | ((body: string) => boolean)> | ((headers: Record<string, string>) => boolean);\n    /** Query params to intercept on */\n    query?: Record<string, any>;\n  }\n  export interface MockDispatch<TData extends object = object, TError extends Error = Error> extends Options {\n    times: number | null;\n    persist: boolean;\n    consumed: boolean;\n    data: MockDispatchData<TData, TError>;\n  }\n  export interface MockDispatchData<TData extends object = object, TError extends Error = Error> extends MockResponseOptions {\n    error: TError | null;\n    statusCode?: number;\n    data?: TData | string;\n  }\n  export interface MockResponseOptions {\n    headers?: IncomingHttpHeaders;\n    trailers?: Record<string, string>;\n  }\n\n  export interface MockResponseCallbackOptions {\n    path: string;\n    method: string;\n    headers?: Headers | Record<string, string>;\n    origin?: string;\n    body?: BodyInit | Dispatcher.DispatchOptions['body'] | null;\n    maxRedirections?: number;\n  }\n\n  export type MockResponseDataHandler<TData extends object = object> = (\n    opts: MockResponseCallbackOptions\n  ) => TData | Buffer | string;\n\n  export type MockReplyOptionsCallback<TData extends object = object> = (\n    opts: MockResponseCallbackOptions\n  ) => { statusCode: number, data?: TData | Buffer | string, responseOptions?: MockResponseOptions }\n}\n\ninterface Interceptable extends Dispatcher {\n  /** Intercepts any matching requests that use the same origin as this mock client. */\n  intercept(options: MockInterceptor.Options): MockInterceptor;\n}\n",
    "node_modules/undici-types/mock-pool.d.ts": "import Pool from './pool'\nimport MockAgent from './mock-agent'\nimport { Interceptable, MockInterceptor } from './mock-interceptor'\nimport Dispatcher from './dispatcher'\n\nexport default MockPool\n\n/** MockPool extends the Pool API and allows one to mock requests. */\ndeclare class MockPool extends Pool implements Interceptable {\n  constructor(origin: string, options: MockPool.Options);\n  /** Intercepts any matching requests that use the same origin as this mock pool. */\n  intercept(options: MockInterceptor.Options): MockInterceptor;\n  /** Dispatches a mocked request. */\n  dispatch(options: Dispatcher.DispatchOptions, handlers: Dispatcher.DispatchHandlers): boolean;\n  /** Closes the mock pool and gracefully waits for enqueued requests to complete. */\n  close(): Promise<void>;\n}\n\ndeclare namespace MockPool {\n  /** MockPool options. */\n  export interface Options extends Pool.Options {\n    /** The agent to associate this MockPool with. */\n    agent: MockAgent;\n  }\n}\n",
    "node_modules/undici-types/package.json": "{\n  \"name\": \"undici-types\",\n  \"version\": \"6.21.0\",\n  \"description\": \"A stand-alone types package for Undici\",\n  \"homepage\": \"https://undici.nodejs.org\",\n  \"bugs\": {\n    \"url\": \"https://github.com/nodejs/undici/issues\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/nodejs/undici.git\"\n  },\n  \"license\": \"MIT\",\n  \"types\": \"index.d.ts\",\n  \"files\": [\n    \"*.d.ts\"\n  ],\n  \"contributors\": [\n    {\n      \"name\": \"Daniele Belardi\",\n      \"url\": \"https://github.com/dnlup\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Ethan Arrowood\",\n      \"url\": \"https://github.com/ethan-arrowood\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Matteo Collina\",\n      \"url\": \"https://github.com/mcollina\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Matthew Aitken\",\n      \"url\": \"https://github.com/KhafraDev\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Robert Nagy\",\n      \"url\": \"https://github.com/ronag\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Szymon Marczak\",\n      \"url\": \"https://github.com/szmarczak\",\n      \"author\": true\n    },\n    {\n      \"name\": \"Tomas Della Vedova\",\n      \"url\": \"https://github.com/delvedor\",\n      \"author\": true\n    }\n  ]\n}",
    "node_modules/undici-types/patch.d.ts": "/// <reference types=\"node\" />\n\n// See https://github.com/nodejs/undici/issues/1740\n\nexport type DOMException = typeof globalThis extends { DOMException: infer T }\n ? T\n : any\n\nexport interface EventInit {\n  bubbles?: boolean\n  cancelable?: boolean\n  composed?: boolean\n}\n\nexport interface EventListenerOptions {\n  capture?: boolean\n}\n\nexport interface AddEventListenerOptions extends EventListenerOptions {\n  once?: boolean\n  passive?: boolean\n  signal?: AbortSignal\n}\n\nexport type EventListenerOrEventListenerObject = EventListener | EventListenerObject\n\nexport interface EventListenerObject {\n  handleEvent (object: Event): void\n}\n\nexport interface EventListener {\n  (evt: Event): void\n}\n",
    "node_modules/undici-types/pool-stats.d.ts": "import Pool from \"./pool\"\n\nexport default PoolStats\n\ndeclare class PoolStats {\n  constructor(pool: Pool);\n  /** Number of open socket connections in this pool. */\n  connected: number;\n  /** Number of open socket connections in this pool that do not have an active request. */\n  free: number;\n  /** Number of pending requests across all clients in this pool. */\n  pending: number;\n  /** Number of queued requests across all clients in this pool. */\n  queued: number;\n  /** Number of currently active requests across all clients in this pool. */\n  running: number;\n  /** Number of active, pending, or queued requests across all clients in this pool. */\n  size: number;\n}\n",
    "node_modules/undici-types/pool.d.ts": "import Client from './client'\nimport TPoolStats from './pool-stats'\nimport { URL } from 'url'\nimport Dispatcher from \"./dispatcher\";\n\nexport default Pool\n\ntype PoolConnectOptions = Omit<Dispatcher.ConnectOptions, \"origin\">;\n\ndeclare class Pool extends Dispatcher {\n  constructor(url: string | URL, options?: Pool.Options)\n  /** `true` after `pool.close()` has been called. */\n  closed: boolean;\n  /** `true` after `pool.destroyed()` has been called or `pool.close()` has been called and the pool shutdown has completed. */\n  destroyed: boolean;\n  /** Aggregate stats for a Pool. */\n  readonly stats: TPoolStats;\n\n  // Override dispatcher APIs.\n  override connect(\n    options: PoolConnectOptions\n  ): Promise<Dispatcher.ConnectData>;\n  override connect(\n    options: PoolConnectOptions,\n    callback: (err: Error | null, data: Dispatcher.ConnectData) => void\n  ): void;\n}\n\ndeclare namespace Pool {\n  export type PoolStats = TPoolStats;\n  export interface Options extends Client.Options {\n    /** Default: `(origin, opts) => new Client(origin, opts)`. */\n    factory?(origin: URL, opts: object): Dispatcher;\n    /** The max number of clients to create. `null` if no limit. Default `null`. */\n    connections?: number | null;\n\n    interceptors?: { Pool?: readonly Dispatcher.DispatchInterceptor[] } & Client.Options[\"interceptors\"]\n  }\n}\n",
    "node_modules/undici-types/proxy-agent.d.ts": "import Agent from './agent'\nimport buildConnector from './connector';\nimport Dispatcher from './dispatcher'\nimport { IncomingHttpHeaders } from './header'\n\nexport default ProxyAgent\n\ndeclare class ProxyAgent extends Dispatcher {\n  constructor(options: ProxyAgent.Options | string)\n\n  dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;\n  close(): Promise<void>;\n}\n\ndeclare namespace ProxyAgent {\n  export interface Options extends Agent.Options {\n    uri: string;\n    /**\n     * @deprecated use opts.token\n     */\n    auth?: string;\n    token?: string;\n    headers?: IncomingHttpHeaders;\n    requestTls?: buildConnector.BuildOptions;\n    proxyTls?: buildConnector.BuildOptions;\n    clientFactory?(origin: URL, opts: object): Dispatcher;\n  }\n}\n",
    "node_modules/undici-types/readable.d.ts": "import { Readable } from \"stream\";\nimport { Blob } from 'buffer'\n\nexport default BodyReadable\n\ndeclare class BodyReadable extends Readable {\n  constructor(\n    resume?: (this: Readable, size: number) => void | null,\n    abort?: () => void | null,\n    contentType?: string\n  )\n\n  /** Consumes and returns the body as a string\n   *  https://fetch.spec.whatwg.org/#dom-body-text\n   */\n  text(): Promise<string>\n\n  /** Consumes and returns the body as a JavaScript Object\n   *  https://fetch.spec.whatwg.org/#dom-body-json\n   */\n  json(): Promise<unknown>\n\n  /** Consumes and returns the body as a Blob\n   *  https://fetch.spec.whatwg.org/#dom-body-blob\n   */\n  blob(): Promise<Blob>\n\n  /** Consumes and returns the body as an Uint8Array\n   *  https://fetch.spec.whatwg.org/#dom-body-bytes\n   */\n  bytes(): Promise<Uint8Array>\n\n  /** Consumes and returns the body as an ArrayBuffer\n   *  https://fetch.spec.whatwg.org/#dom-body-arraybuffer\n   */\n  arrayBuffer(): Promise<ArrayBuffer>\n\n  /** Not implemented\n   *\n   *  https://fetch.spec.whatwg.org/#dom-body-formdata\n   */\n  formData(): Promise<never>\n\n  /** Returns true if the body is not null and the body has been consumed\n   *\n   *  Otherwise, returns false\n   *\n   * https://fetch.spec.whatwg.org/#dom-body-bodyused\n   */\n  readonly bodyUsed: boolean\n\n  /** \n   * If body is null, it should return null as the body\n   *\n   *  If body is not null, should return the body as a ReadableStream\n   *\n   *  https://fetch.spec.whatwg.org/#dom-body-body\n   */\n  readonly body: never | undefined\n\n  /** Dumps the response body by reading `limit` number of bytes.\n   * @param opts.limit Number of bytes to read (optional) - Default: 262144\n   */\n  dump(opts?: { limit: number }): Promise<void>\n}\n",
    "node_modules/undici-types/retry-agent.d.ts": "import Dispatcher from './dispatcher'\nimport RetryHandler from './retry-handler'\n\nexport default RetryAgent\n\ndeclare class RetryAgent extends Dispatcher {\n  constructor(dispatcher: Dispatcher, options?: RetryHandler.RetryOptions)\n}\n",
    "node_modules/undici-types/retry-handler.d.ts": "import Dispatcher from \"./dispatcher\";\n\nexport default RetryHandler;\n\ndeclare class RetryHandler implements Dispatcher.DispatchHandlers {\n  constructor(\n    options: Dispatcher.DispatchOptions & {\n      retryOptions?: RetryHandler.RetryOptions;\n    },\n    retryHandlers: RetryHandler.RetryHandlers\n  );\n}\n\ndeclare namespace RetryHandler {\n  export type RetryState = { counter: number; };\n\n  export type RetryContext = {\n    state: RetryState;\n    opts: Dispatcher.DispatchOptions & {\n      retryOptions?: RetryHandler.RetryOptions;\n    };\n  }\n\n  export type OnRetryCallback = (result?: Error | null) => void;\n\n  export type RetryCallback = (\n    err: Error,\n    context: {\n      state: RetryState;\n      opts: Dispatcher.DispatchOptions & {\n        retryOptions?: RetryHandler.RetryOptions;\n      };\n    },\n    callback: OnRetryCallback\n  ) => number | null;\n\n  export interface RetryOptions {\n    /**\n     * Callback to be invoked on every retry iteration.\n     * It receives the error, current state of the retry object and the options object\n     * passed when instantiating the retry handler.\n     *\n     * @type {RetryCallback}\n     * @memberof RetryOptions\n     */\n    retry?: RetryCallback;\n    /**\n     * Maximum number of retries to allow.\n     *\n     * @type {number}\n     * @memberof RetryOptions\n     * @default 5\n     */\n    maxRetries?: number;\n    /**\n     * Max number of milliseconds allow between retries\n     *\n     * @type {number}\n     * @memberof RetryOptions\n     * @default 30000\n     */\n    maxTimeout?: number;\n    /**\n     * Initial number of milliseconds to wait before retrying for the first time.\n     *\n     * @type {number}\n     * @memberof RetryOptions\n     * @default 500\n     */\n    minTimeout?: number;\n    /**\n     * Factior to multiply the timeout factor between retries.\n     *\n     * @type {number}\n     * @memberof RetryOptions\n     * @default 2\n     */\n    timeoutFactor?: number;\n    /**\n     * It enables to automatically infer timeout between retries based on the `Retry-After` header.\n     *\n     * @type {boolean}\n     * @memberof RetryOptions\n     * @default true\n     */\n    retryAfter?: boolean;\n    /**\n     * HTTP methods to retry.\n     *\n     * @type {Dispatcher.HttpMethod[]}\n     * @memberof RetryOptions\n     * @default ['GET', 'HEAD', 'OPTIONS', 'PUT', 'DELETE', 'TRACE'],\n     */\n    methods?: Dispatcher.HttpMethod[];\n    /**\n     * Error codes to be retried. e.g. `ECONNRESET`, `ENOTFOUND`, `ETIMEDOUT`, `ECONNREFUSED`, etc.\n     *\n     * @type {string[]}\n     * @default ['ECONNRESET','ECONNREFUSED','ENOTFOUND','ENETDOWN','ENETUNREACH','EHOSTDOWN','EHOSTUNREACH','EPIPE']\n     */\n    errorCodes?: string[];\n    /**\n     * HTTP status codes to be retried.\n     *\n     * @type {number[]}\n     * @memberof RetryOptions\n     * @default [500, 502, 503, 504, 429],\n     */\n    statusCodes?: number[];\n  }\n\n  export interface RetryHandlers {\n    dispatch: Dispatcher[\"dispatch\"];\n    handler: Dispatcher.DispatchHandlers;\n  }\n}\n",
    "node_modules/undici-types/util.d.ts": "export namespace util {\n  /**\n   * Retrieves a header name and returns its lowercase value.\n   * @param value Header name\n   */\n  export function headerNameToString(value: string | Buffer): string;\n\n  /**\n   * Receives a header object and returns the parsed value.\n   * @param headers Header object\n   * @param obj Object to specify a proxy object. Used to assign parsed values.\n   * @returns If `obj` is specified, it is equivalent to `obj`.\n   */\n  export function parseHeaders(\n    headers: (Buffer | string | (Buffer | string)[])[],\n    obj?: Record<string, string | string[]>\n  ): Record<string, string | string[]>;\n}\n",
    "node_modules/undici-types/webidl.d.ts": "// These types are not exported, and are only used internally\n\n/**\n * Take in an unknown value and return one that is of type T\n */\ntype Converter<T> = (object: unknown) => T\n\ntype SequenceConverter<T> = (object: unknown, iterable?: IterableIterator<T>) => T[]\n\ntype RecordConverter<K extends string, V> = (object: unknown) => Record<K, V>\n\ninterface ConvertToIntOpts {\n  clamp?: boolean\n  enforceRange?: boolean\n}\n\ninterface WebidlErrors {\n  exception (opts: { header: string, message: string }): TypeError\n  /**\n   * @description Throw an error when conversion from one type to another has failed\n   */\n  conversionFailed (opts: {\n    prefix: string\n    argument: string\n    types: string[]\n  }): TypeError\n  /**\n   * @description Throw an error when an invalid argument is provided\n   */\n  invalidArgument (opts: {\n    prefix: string\n    value: string\n    type: string\n  }): TypeError\n}\n\ninterface WebidlUtil {\n  /**\n   * @see https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values\n   */\n  Type (object: unknown):\n    | 'Undefined'\n    | 'Boolean'\n    | 'String'\n    | 'Symbol'\n    | 'Number'\n    | 'BigInt'\n    | 'Null'\n    | 'Object'\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint\n   */\n  ConvertToInt (\n    V: unknown,\n    bitLength: number,\n    signedness: 'signed' | 'unsigned',\n    opts?: ConvertToIntOpts\n  ): number\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint\n   */\n  IntegerPart (N: number): number\n\n  /**\n   * Stringifies {@param V}\n   */\n  Stringify (V: any): string\n\n  /**\n   * Mark a value as uncloneable for Node.js.\n   * This is only effective in some newer Node.js versions.\n   */\n  markAsUncloneable (V: any): void\n}\n\ninterface WebidlConverters {\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-DOMString\n   */\n  DOMString (V: unknown, prefix: string, argument: string, opts?: {\n    legacyNullToEmptyString: boolean\n  }): string\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-ByteString\n   */\n  ByteString (V: unknown, prefix: string, argument: string): string\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-USVString\n   */\n  USVString (V: unknown): string\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-boolean\n   */\n  boolean (V: unknown): boolean\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-any\n   */\n  any <Value>(V: Value): Value\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-long-long\n   */\n  ['long long'] (V: unknown): number\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-unsigned-long-long\n   */\n  ['unsigned long long'] (V: unknown): number\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-unsigned-long\n   */\n  ['unsigned long'] (V: unknown): number\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-unsigned-short\n   */\n  ['unsigned short'] (V: unknown, opts?: ConvertToIntOpts): number\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#idl-ArrayBuffer\n   */\n  ArrayBuffer (V: unknown): ArrayBufferLike\n  ArrayBuffer (V: unknown, opts: { allowShared: false }): ArrayBuffer\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-buffer-source-types\n   */\n  TypedArray (\n    V: unknown,\n    TypedArray: NodeJS.TypedArray | ArrayBufferLike\n  ): NodeJS.TypedArray | ArrayBufferLike\n  TypedArray (\n    V: unknown,\n    TypedArray: NodeJS.TypedArray | ArrayBufferLike,\n    opts?: { allowShared: false }\n  ): NodeJS.TypedArray | ArrayBuffer\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-buffer-source-types\n   */\n  DataView (V: unknown, opts?: { allowShared: boolean }): DataView\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#BufferSource\n   */\n  BufferSource (\n    V: unknown,\n    opts?: { allowShared: boolean }\n  ): NodeJS.TypedArray | ArrayBufferLike | DataView\n\n  ['sequence<ByteString>']: SequenceConverter<string>\n  \n  ['sequence<sequence<ByteString>>']: SequenceConverter<string[]>\n\n  ['record<ByteString, ByteString>']: RecordConverter<string, string>\n\n  [Key: string]: (...args: any[]) => unknown\n}\n\nexport interface Webidl {\n  errors: WebidlErrors\n  util: WebidlUtil\n  converters: WebidlConverters\n\n  /**\n   * @description Performs a brand-check on {@param V} to ensure it is a\n   * {@param cls} object.\n   */\n  brandCheck <Interface>(V: unknown, cls: Interface, opts?: { strict?: boolean }): asserts V is Interface\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-sequence\n   * @description Convert a value, V, to a WebIDL sequence type.\n   */\n  sequenceConverter <Type>(C: Converter<Type>): SequenceConverter<Type>\n\n  illegalConstructor (): never\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#es-to-record\n   * @description Convert a value, V, to a WebIDL record type.\n   */\n  recordConverter <K extends string, V>(\n    keyConverter: Converter<K>,\n    valueConverter: Converter<V>\n  ): RecordConverter<K, V>\n\n  /**\n   * Similar to {@link Webidl.brandCheck} but allows skipping the check if third party\n   * interfaces are allowed.\n   */\n  interfaceConverter <Interface>(cls: Interface): (\n    V: unknown,\n    opts?: { strict: boolean }\n  ) => asserts V is typeof cls\n\n  // TODO(@KhafraDev): a type could likely be implemented that can infer the return type\n  // from the converters given?\n  /**\n   * Converts a value, V, to a WebIDL dictionary types. Allows limiting which keys are\n   * allowed, values allowed, optional and required keys. Auto converts the value to\n   * a type given a converter.\n   */\n  dictionaryConverter (converters: {\n    key: string,\n    defaultValue?: () => unknown,\n    required?: boolean,\n    converter: (...args: unknown[]) => unknown,\n    allowedValues?: unknown[]\n  }[]): (V: unknown) => Record<string, unknown>\n\n  /**\n   * @see https://webidl.spec.whatwg.org/#idl-nullable-type\n   * @description allows a type, V, to be null\n   */\n  nullableConverter <T>(\n    converter: Converter<T>\n  ): (V: unknown) => ReturnType<typeof converter> | null\n\n  argumentLengthCheck (args: { length: number }, min: number, context: string): void\n}\n",
    "node_modules/undici-types/websocket.d.ts": "/// <reference types=\"node\" />\n\nimport type { Blob } from 'buffer'\nimport type { MessagePort } from 'worker_threads'\nimport {\n  EventInit,\n  EventListenerOptions,\n  AddEventListenerOptions,\n  EventListenerOrEventListenerObject\n} from './patch'\nimport Dispatcher from './dispatcher'\nimport { HeadersInit } from './fetch'\n\nexport type BinaryType = 'blob' | 'arraybuffer'\n\ninterface WebSocketEventMap {\n  close: CloseEvent\n  error: ErrorEvent\n  message: MessageEvent\n  open: Event\n}\n\ninterface WebSocket extends EventTarget {\n  binaryType: BinaryType\n  \n  readonly bufferedAmount: number\n  readonly extensions: string\n\n  onclose: ((this: WebSocket, ev: WebSocketEventMap['close']) => any) | null\n  onerror: ((this: WebSocket, ev: WebSocketEventMap['error']) => any) | null\n  onmessage: ((this: WebSocket, ev: WebSocketEventMap['message']) => any) | null\n  onopen: ((this: WebSocket, ev: WebSocketEventMap['open']) => any) | null\n\n  readonly protocol: string\n  readonly readyState: number\n  readonly url: string\n\n  close(code?: number, reason?: string): void\n  send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void\n\n  readonly CLOSED: number\n  readonly CLOSING: number\n  readonly CONNECTING: number\n  readonly OPEN: number\n\n  addEventListener<K extends keyof WebSocketEventMap>(\n    type: K,\n    listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any,\n    options?: boolean | AddEventListenerOptions\n  ): void\n  addEventListener(\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | AddEventListenerOptions\n  ): void\n  removeEventListener<K extends keyof WebSocketEventMap>(\n    type: K,\n    listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any,\n    options?: boolean | EventListenerOptions\n  ): void\n  removeEventListener(\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | EventListenerOptions\n  ): void\n}\n\nexport declare const WebSocket: {\n  prototype: WebSocket\n  new (url: string | URL, protocols?: string | string[] | WebSocketInit): WebSocket\n  readonly CLOSED: number\n  readonly CLOSING: number\n  readonly CONNECTING: number\n  readonly OPEN: number\n}\n\ninterface CloseEventInit extends EventInit {\n  code?: number\n  reason?: string\n  wasClean?: boolean\n}\n\ninterface CloseEvent extends Event {\n  readonly code: number\n  readonly reason: string\n  readonly wasClean: boolean\n}\n\nexport declare const CloseEvent: {\n  prototype: CloseEvent\n  new (type: string, eventInitDict?: CloseEventInit): CloseEvent\n}\n\ninterface MessageEventInit<T = any> extends EventInit {\n  data?: T\n  lastEventId?: string\n  origin?: string\n  ports?: (typeof MessagePort)[]\n  source?: typeof MessagePort | null\n}\n\ninterface MessageEvent<T = any> extends Event {\n  readonly data: T\n  readonly lastEventId: string\n  readonly origin: string\n  readonly ports: ReadonlyArray<typeof MessagePort>\n  readonly source: typeof MessagePort | null\n  initMessageEvent(\n    type: string,\n    bubbles?: boolean,\n    cancelable?: boolean,\n    data?: any,\n    origin?: string,\n    lastEventId?: string,\n    source?: typeof MessagePort | null,\n    ports?: (typeof MessagePort)[]\n  ): void;\n}\n\nexport declare const MessageEvent: {\n  prototype: MessageEvent\n  new<T>(type: string, eventInitDict?: MessageEventInit<T>): MessageEvent<T>\n}\n\ninterface ErrorEventInit extends EventInit {\n  message?: string\n  filename?: string\n  lineno?: number\n  colno?: number\n  error?: any\n}\n\ninterface ErrorEvent extends Event {\n  readonly message: string\n  readonly filename: string\n  readonly lineno: number\n  readonly colno: number\n  readonly error: any\n}\n\nexport declare const ErrorEvent: {\n  prototype: ErrorEvent\n  new (type: string, eventInitDict?: ErrorEventInit): ErrorEvent\n}\n\ninterface WebSocketInit {\n  protocols?: string | string[],\n  dispatcher?: Dispatcher,\n  headers?: HeadersInit\n}\n",
    "node_modules/util-deprecate/package.json": "{\n  \"name\": \"util-deprecate\",\n  \"version\": \"1.0.2\",\n  \"description\": \"The Node.js `util.deprecate()` function with browser support\",\n  \"main\": \"node.js\",\n  \"browser\": \"browser.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/TooTallNate/util-deprecate.git\"\n  },\n  \"keywords\": [\n    \"util\",\n    \"deprecate\",\n    \"browserify\",\n    \"browser\",\n    \"node\"\n  ],\n  \"author\": \"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/TooTallNate/util-deprecate/issues\"\n  },\n  \"homepage\": \"https://github.com/TooTallNate/util-deprecate\"\n}\n",
    "node_modules/wcwidth/package.json": "{\n  \"name\": \"wcwidth\",\n  \"version\": \"1.0.1\",\n  \"description\": \"Port of C's wcwidth() and wcswidth()\",\n  \"author\": \"Tim Oxley\",\n  \"contributors\": [\n    \"Woong Jun <woong.jun@gmail.com> (http://code.woong.org/)\"\n  ],\n  \"main\": \"index.js\",\n  \"dependencies\": {\n    \"defaults\": \"^1.0.3\"\n  },\n  \"devDependencies\": {\n    \"tape\": \"^4.5.1\"\n  },\n  \"license\": \"MIT\",\n  \"keywords\": [\n    \"wide character\",\n    \"wc\",\n    \"wide character string\",\n    \"wcs\",\n    \"terminal\",\n    \"width\",\n    \"wcwidth\",\n    \"wcswidth\"\n  ],\n  \"directories\": {\n    \"doc\": \"docs\",\n    \"test\": \"test\"\n  },\n  \"scripts\": {\n    \"test\": \"tape test/*.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/timoxley/wcwidth.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/timoxley/wcwidth/issues\"\n  },\n  \"homepage\": \"https://github.com/timoxley/wcwidth#readme\"\n}\n",
    "node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"6.2.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^2.4.2\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^3.0.0\",\n\t\t\"nyc\": \"^14.1.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n"
}
